From d778bea7f638fddc94b82952a907e122512be148 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 18 Sep 2024 14:23:55 +0000 Subject: [PATCH 01/46] fix typo --- counterparty-core/counterpartycore/protocol_changes.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/protocol_changes.json b/counterparty-core/counterpartycore/protocol_changes.json index 47a7f2b975..af48992f88 100644 --- a/counterparty-core/counterpartycore/protocol_changes.json +++ b/counterparty-core/counterpartycore/protocol_changes.json @@ -551,7 +551,7 @@ }, "dispenser_must_be_created_by_source": { "minimum_version_major": 10, - "minimum_version_minor": 2, + "minimum_version_minor": 4, "minimum_version_revision": 0, "block_index": 866000, "testnet_block_index": 2925800 From 5acb232b4b1c15af65e81f01a3afeb4e74ed89ba Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 16 Sep 2024 13:10:56 +0000 Subject: [PATCH 02/46] fix API not caught error --- counterparty-core/counterpartycore/lib/transaction.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index 73ec26d68c..d8b3532450 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -1201,13 +1201,16 @@ def compose_transaction( # params[address_name] = pkhshs pass else: - provided_pubkeys += script.extract_pubkeys(address) - params[address_name] = script.make_pubkeyhash(address) + try: + provided_pubkeys += script.extract_pubkeys(address) + params[address_name] = script.make_pubkeyhash(address) + except Exception as e: + raise exceptions.ComposeError(f"invalid address: {address}") from e # Check validity of collected pubkeys. for pubkey in provided_pubkeys: if not script.is_fully_valid(binascii.unhexlify(pubkey)): - raise script.AddressError(f"invalid public key: {pubkey}") + raise exceptions.ComposeError(f"invalid public key: {pubkey}") compose_method = sys.modules[f"counterpartycore.lib.messages.{name}"].compose compose_params = inspect.getfullargspec(compose_method)[0] From 3f77d315ec39112964bc14ff35cb3d5c2c149952 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 18 Sep 2024 14:37:13 +0000 Subject: [PATCH 03/46] Fix DivisionByZero error --- counterparty-core/counterpartycore/lib/api/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/api/util.py b/counterparty-core/counterpartycore/lib/api/util.py index e83d2922a3..d2e1898df0 100644 --- a/counterparty-core/counterpartycore/lib/api/util.py +++ b/counterparty-core/counterpartycore/lib/api/util.py @@ -287,7 +287,7 @@ def to_json(obj, indent=None): def divide(value1, value2): decimal.getcontext().prec = 8 - if value2 == 0: + if value2 == 0 or value1 == 0: return D(0) return D(value1) / D(value2) From 2f574f55ab2e5ddab2c62afdd690e59e72f54629 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 18 Sep 2024 14:43:34 +0000 Subject: [PATCH 04/46] Don't report to Sentry expected errors in API v1 --- counterparty-core/counterpartycore/lib/api/api_v1.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_v1.py b/counterparty-core/counterpartycore/lib/api/api_v1.py index eccdaaa2a4..2a3b51ee23 100644 --- a/counterparty-core/counterpartycore/lib/api/api_v1.py +++ b/counterparty-core/counterpartycore/lib/api/api_v1.py @@ -60,7 +60,6 @@ from flask_httpauth import HTTPBasicAuth from jsonrpc import dispatcher from jsonrpc.exceptions import JSONRPCDispatchException -from sentry_sdk import capture_exception from sentry_sdk import configure_scope as configure_sentry_scope from werkzeug.serving import make_server from xmltodict import unparse as serialize_to_xml @@ -1105,8 +1104,7 @@ def handle_rpc_post(request_json): and request_data["method"] ) # params may be omitted - except Exception as error: # noqa: E722 - capture_exception(error) + except Exception: # noqa: E722 obj_error = jsonrpc.exceptions.JSONRPCInvalidRequest( data="Invalid JSON-RPC 2.0 request format" ) From 13f8499174f1ee8abb8494680ca207673ff6550b Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 18 Sep 2024 15:15:09 +0000 Subject: [PATCH 05/46] support and document 'custom_inputs' parameter --- .../counterpartycore/lib/transaction.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index d8b3532450..2953547bfa 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -1120,6 +1120,11 @@ def get_dust_return_pubkey(source, provided_pubkeys, encoding): False, "Return only the data part of the transaction", ), + "custom_inputs": ( + str, + "", + "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + ), } @@ -1188,6 +1193,19 @@ def compose_transaction( else: raise exceptions.TransactionError("Invalid pubkey.") + if isinstance(custom_inputs, str): + new_custom_inputs = [] + for str_input in custom_inputs.split(","): + if not util.is_utxo_format(str_input): + raise exceptions.ComposeError(f"invalid UTXO: {str_input}") + new_custom_inputs.append( + { + "txid": str_input.split(":")[0], + "vout": int(str_input.split(":")[1]), + } + ) + custom_inputs = new_custom_inputs + # Get additional pubkeys from `source` and `destination` params. # Convert `source` and `destination` to pubkeyhash form. for address_name in ["source", "destination"]: From 54e985e08cbe8855e56633ac12e4645ea50e3b8f Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 18 Sep 2024 15:18:57 +0000 Subject: [PATCH 06/46] trace instead warning for 'Prefetch queue is empty.' --- 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 056a67bf6b..7fd4937a46 100644 --- a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py +++ b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py @@ -88,7 +88,7 @@ def get_prefetched_block(self, height): logger.debug(f"Looking for Block {height} in prefetch queue...") while height not in self.prefetch_queue: if self.prefetch_queue_size == 0 and self.prefetch_queue_initialized: - logger.warning("Prefetch queue is empty.") + logger.trace("Prefetch queue is empty.") logger.debug(f"Block {height} not found in prefetch queue. Waiting...") time.sleep(0.1) block = self.prefetch_queue.pop(height) From 056385b32d113f0f6afbce83f8143b90908a64a1 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 18 Sep 2024 18:33:58 +0000 Subject: [PATCH 07/46] Catch invalid raw transaction in '/transactions/info' endpoint --- counterparty-core/counterpartycore/lib/transaction.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index 2953547bfa..eb8cf0a637 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -2061,9 +2061,13 @@ def info(db, rawtransaction: str, block_index: int = None): :param rawtransaction: Raw transaction in hex format (e.g. $RAW_TRANSACTION_1) :param block_index: Block index mandatory for transactions before block 335000 """ - decoded_tx = deserialize.deserialize_tx( - rawtransaction, use_txid=util.enabled("correct_segwit_txids", block_index) - ) + try: + decoded_tx = deserialize.deserialize_tx( + rawtransaction, use_txid=util.enabled("correct_segwit_txids", block_index) + ) + except Exception as e: + raise exceptions.ComposeError("Invalid rawtransaction") from e + source, destination, btc_amount, fee, data, _dispensers_outs, _utxos_info = ( gettxinfo.get_tx_info( db, From ce72f2b8cb42b772c7515f817c5f35b28b6fc07c Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 18 Sep 2024 18:38:38 +0000 Subject: [PATCH 08/46] use debug for expected and handled error --- 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 e13bebdd98..276cf38504 100644 --- a/counterparty-core/counterpartycore/lib/api/api_watcher.py +++ b/counterparty-core/counterpartycore/lib/api/api_watcher.py @@ -693,7 +693,7 @@ def apply_migration(): # Apply any outstanding migrations backend.apply_migrations(backend.to_apply(migrations)) except LockTimeout: - logger.error("API Watcher - Migration lock timeout. Breaking lock and retrying...") + logger.debug("API Watcher - Migration lock timeout. Breaking lock and retrying...") backend.break_lock() backend.apply_migrations(backend.to_apply(migrations)) backend.connection.close() From d02708ff7d2b14ab351982348d412b9760e154fd Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 18 Sep 2024 18:45:35 +0000 Subject: [PATCH 09/46] fix fixtures --- .../test/fixtures/api_v2_fixtures.json | 126 ++++++++++++++++++ 1 file changed, 126 insertions(+) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index dac6834153..dd39d4d54e 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -10054,6 +10054,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "custom_inputs", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -10230,6 +10237,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "custom_inputs", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -10388,6 +10402,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "custom_inputs", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -10553,6 +10574,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "custom_inputs", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -10711,6 +10739,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "custom_inputs", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -10881,6 +10916,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "custom_inputs", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11077,6 +11119,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "custom_inputs", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11247,6 +11296,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "custom_inputs", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11446,6 +11502,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "custom_inputs", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11630,6 +11693,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "custom_inputs", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11818,6 +11888,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "custom_inputs", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12009,6 +12086,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "custom_inputs", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12179,6 +12263,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "custom_inputs", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12343,6 +12434,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "custom_inputs", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12613,6 +12711,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "custom_inputs", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12778,6 +12883,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "custom_inputs", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12949,6 +13061,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "custom_inputs", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -13119,6 +13238,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "custom_inputs", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", From 32d495016ef6a2a6db3b0914bc9f4a34f95ad8a9 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 19 Sep 2024 08:38:03 +0000 Subject: [PATCH 10/46] exclude Python 3.12 --- counterparty-core/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/pyproject.toml b/counterparty-core/pyproject.toml index c8a6d2f58a..c5e6c06803 100644 --- a/counterparty-core/pyproject.toml +++ b/counterparty-core/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "counterparty-core" -requires-python = ">= 3.10" +requires-python = ">= 3.10, < 3.12" dynamic = ["version", "dependencies"] description = "Counterparty Protocol Reference Implementation" readme = "../README.md" From 0d9d3c806a45972022b60ce17967e4dbb4cc5635 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 19 Sep 2024 09:15:19 +0000 Subject: [PATCH 11/46] fix default args; don't use upper bound for python version --- apiary.apib | 3410 +++++++++-------- .../counterpartycore/lib/api/api_server.py | 5 +- .../counterpartycore/lib/transaction.py | 12 +- .../test/regtest/apidoc/apicache.json | 2972 +++++++------- counterparty-core/pyproject.toml | 2 +- 5 files changed, 3221 insertions(+), 3180 deletions(-) diff --git a/apiary.apib b/apiary.apib index 187effe965..f23a282987 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-09-16 18:05:36.857735. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-09-19 09:13:08.405600. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -179,15 +179,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", "block_index": 193, - "block_time": 1726509912, + "block_time": 1726737169, "difficulty": 545259519, - "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e" + "previous_block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf" }, "tx_hash": null, "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 } ], "next_cursor": 518, @@ -204,17 +204,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", "block_index": 193, - "block_time": 1726509912, + "block_time": 1726737169, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "tx_index": 59, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -234,9 +234,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 } ], "next_cursor": 519, @@ -255,16 +255,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "destination": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "out_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", "tx_index": 33, - "block_time": 1726509701, + "block_time": 1726736947, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", "block_index": 146, - "block_time": 1726509701 + "block_time": 1726736947 } ], "next_cursor": 237, @@ -282,15 +282,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", + "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", "transaction_count": 1, - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "block_time": 1726509912 + "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", + "block_time": 1726737169 }, "tx_hash": null, "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 } ], "next_cursor": 529, @@ -308,12 +308,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "tx_index": 59 }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 } ], "next_cursor": 528, @@ -333,15 +333,15 @@ Here is a list of events classified by theme and for each an example response: "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 193, - "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "event": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -351,9 +351,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 } ], "next_cursor": 525, @@ -370,16 +370,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -389,9 +389,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 } ], "next_cursor": 524, @@ -410,14 +410,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "memo": null, "quantity": 10000, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "status": "valid", - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03", + "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a", "tx_index": 53, - "block_time": 1726509886, + "block_time": 1726737134, "asset_info": { "divisible": true, "asset_longname": null, @@ -427,9 +427,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03", + "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a", "block_index": 187, - "block_time": 1726509886 + "block_time": 1726737134 } ], "next_cursor": null, @@ -448,15 +448,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "status": "valid", - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "tx_index": 54, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "divisible": true, "asset_longname": null, @@ -466,9 +466,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "block_time": 1726509890 + "block_time": 1726737138 } ], "next_cursor": 495, @@ -506,20 +506,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "status": "valid", - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, - "block_time": 1726509908, + "block_time": 1726737165, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 } ], "next_cursor": null, @@ -541,15 +541,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": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "status": "valid", - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", "tx_index": 40, - "block_time": 1726509732, + "block_time": 1726736978, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -563,9 +563,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": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", "block_index": 153, - "block_time": 1726509732 + "block_time": 1726736978 } ], "next_cursor": null, @@ -598,11 +598,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": 159, - "block_time": 1726509780 + "block_time": 1726737024 }, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", "block_index": 159, - "block_time": 1726509780 + "block_time": 1726737024 } ], "next_cursor": 367, @@ -630,22 +630,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": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "status": "valid", "transfer": false, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", "tx_index": 46, - "block_time": 1726509780, + "block_time": 1726737024, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", "block_index": 159, - "block_time": 1726509780 + "block_time": 1726737024 } ], "next_cursor": 374, @@ -665,12 +665,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "status": "valid", "tag": "64657374726f79", - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "tx_index": 59, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -680,9 +680,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 } ], "next_cursor": 157, @@ -714,11 +714,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": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "status": "open", - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "tx_index": 57, - "block_time": 1726509903, + "block_time": 1726737160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -742,9 +742,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": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "block_time": 1726509903 + "block_time": 1726737160 } ], "next_cursor": 502, @@ -767,20 +767,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": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", "tx0_index": 49, - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "tx1_index": 52, - "block_time": 1726509871, + "block_time": 1726737130, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -799,9 +799,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": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "block_index": 186, - "block_time": 1726509871 + "block_time": 1726737130 } ], "next_cursor": 461, @@ -819,11 +819,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2" + "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861" }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726737147 } ], "next_cursor": 476, @@ -841,11 +841,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a" + "tx_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a" }, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", "block_index": 185, - "block_time": 1726509867 + "block_time": 1726737126 } ], "next_cursor": null, @@ -862,13 +862,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "status": "completed" }, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", "block_index": 185, - "block_time": 1726509867 + "block_time": 1726737126 } ], "next_cursor": 440, @@ -887,18 +887,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "status": "valid", - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", "tx_index": 51, - "block_time": 1726509867, + "block_time": 1726737126, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", "block_index": 185, - "block_time": 1726509867 + "block_time": 1726737126 } ], "next_cursor": null, @@ -916,16 +916,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "status": "valid", - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "tx_index": 56, - "block_time": 1726509899 + "block_time": 1726737147 }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726737147 } ], "next_cursor": null, @@ -943,13 +943,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "block_time": 1726509796 + "order_hash": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "block_time": 1726737039 }, "tx_hash": null, "block_index": 182, - "block_time": 1726509796 + "block_time": 1726737039 } ], "next_cursor": 446, @@ -967,14 +967,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "block_time": 1726509796 + "order_match_id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "block_time": 1726737039 }, "tx_hash": null, "block_index": 182, - "block_time": 1726509796 + "block_time": 1726737039 } ], "next_cursor": null, @@ -999,14 +999,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": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "satoshirate": 1, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "status": 0, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", "tx_index": 32, - "block_time": 1726509697, + "block_time": 1726736943, "asset_info": { "divisible": true, "asset_longname": null, @@ -1019,9 +1019,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": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", "block_index": 145, - "block_time": 1726509697 + "block_time": 1726736943 } ], "next_cursor": 254, @@ -1041,9 +1041,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "status": 0, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", "asset_info": { "divisible": true, "asset_longname": null, @@ -1053,9 +1053,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", "block_index": 146, - "block_time": 1726509701 + "block_time": 1726736947 } ], "next_cursor": 260, @@ -1074,13 +1074,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mnLwb4LAYvLe6gesyGs1d34NnRaSRpScfq", + "destination": "mm9iEM6Zd8MsTTeQYBytE5NgVcLxeewVdf", "dispense_quantity": 10, - "dispenser_tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "tx_hash": "962792bfe558b1042295417f1b88d03dfa7547cb82ab870bbd57854561acf3b5", + "dispenser_tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx_hash": "3509b22642f2e8b091100d07ba3ece1aeaa96297a8eeade7e78a68f83c8cbc96", "tx_index": 31, - "block_time": 1726509693, + "block_time": 1726736939, "asset_info": { "divisible": true, "asset_longname": null, @@ -1090,9 +1090,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "962792bfe558b1042295417f1b88d03dfa7547cb82ab870bbd57854561acf3b5", + "tx_hash": "3509b22642f2e8b091100d07ba3ece1aeaa96297a8eeade7e78a68f83c8cbc96", "block_index": 144, - "block_time": 1726509693 + "block_time": 1726736939 } ], "next_cursor": null, @@ -1112,14 +1112,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", "tx_index": 33, - "block_time": 1726509701, + "block_time": 1726736947, "asset_info": { "divisible": true, "asset_longname": null, @@ -1130,9 +1130,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", "block_index": 146, - "block_time": 1726509701 + "block_time": 1726736947 } ], "next_cursor": 240, @@ -1154,19 +1154,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": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a", + "tx_hash": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d", "tx_index": 25, "value": 66600.0, - "block_time": 1726509656, + "block_time": 1726736913, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a", + "tx_hash": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d", "block_index": 138, - "block_time": 1726509656 + "block_time": 1726736913 } ], "next_cursor": 213, @@ -1204,16 +1204,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "start_block": 0, "status": "open", - "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", "tx_index": 22, - "block_time": 1726509644 + "block_time": 1726736900 }, - "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", "block_index": 135, - "block_time": 1726509644 + "block_time": 1726736900 } ], "next_cursor": 161, @@ -1231,11 +1231,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16" + "tx_hash": "c4de72bddcecc2b88f8e0746e02446a566b0fca27fe3e4b9bd4c20e550f9089a" }, "tx_hash": null, "block_index": 130, - "block_time": 1726509613 + "block_time": 1726736879 } ], "next_cursor": 110, @@ -1256,24 +1256,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "fairminter_tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", "paid_quantity": 34, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "status": "valid", - "tx_hash": "a899b1a361e0514262442a4a300d7571606a3462d50819092e649c490fbcb1e6", + "tx_hash": "661c344111ceedee5cbe79a2043e49979922a9af9ced08540254cf13090082ac", "tx_index": 23, - "block_time": 1726509648, + "block_time": 1726736905, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } }, - "tx_hash": "a899b1a361e0514262442a4a300d7571606a3462d50819092e649c490fbcb1e6", + "tx_hash": "661c344111ceedee5cbe79a2043e49979922a9af9ced08540254cf13090082ac", "block_index": 136, - "block_time": 1726509648 + "block_time": 1726736905 } ], "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": 151, - "destination": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1", + "destination": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "status": "valid", - "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "tx_hash": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", "tx_index": 38, - "block_time": 1726509724, + "block_time": 1726736969, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "tx_hash": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", "block_index": 151, - "block_time": 1726509724 + "block_time": 1726736969 } ], "next_cursor": 291, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0", + "destination": "bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88:0", + "source": "35f402483a54a03e637b77b2ff618642d6e435f34c3c89219374add7f500dc22:0", "status": "valid", - "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba", + "tx_hash": "0c30ebe84e9981d88766592125043c857961de991168503a78e10fa95416df3b", "tx_index": 37, - "block_time": 1726509719, + "block_time": 1726736965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba", + "tx_hash": "0c30ebe84e9981d88766592125043c857961de991168503a78e10fa95416df3b", "block_index": 150, - "block_time": 1726509719 + "block_time": 1726736965 } ], "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": 155, - "destination": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1", + "destination": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147:1", "msg_index": 1, "quantity": 1500000000, - "source": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0", + "source": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5:0", "status": "valid", - "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", "tx_index": 42, - "block_time": 1726509741, + "block_time": 1726736988, "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": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", "block_index": 155, - "block_time": 1726509741 + "block_time": 1726736988 } ], "next_cursor": 346, @@ -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": "bcrt1qyzyw25seaw22494hrmtlwsm3d5mqyp93fd25da", + "source": "bcrt1qvf529w4jc36v4txgxtthdzc2jvgzn0qpkdd8tw", "status": "valid", - "tx_hash": "2504c4bdafa1c2cab23605685e6a8040748f7d6df91f857b42f1cb259d3a91e0", + "tx_hash": "accb843c4f0dc47c8feaca2ac467eb476f25798fa16c2133aa4f15da2e62a5e5", "tx_index": 9, - "block_time": 1726509573, + "block_time": 1726736841, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "2504c4bdafa1c2cab23605685e6a8040748f7d6df91f857b42f1cb259d3a91e0", + "tx_hash": "accb843c4f0dc47c8feaca2ac467eb476f25798fa16c2133aa4f15da2e62a5e5", "block_index": 121, - "block_time": 1726509573 + "block_time": 1726736841 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_time": 1726737169, + "previous_block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", "difficulty": 545259519, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", + "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", + "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", - "block_time": 1726509908, - "previous_block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", + "block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", + "block_time": 1726737165, + "previous_block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", "difficulty": 545259519, - "ledger_hash": "a352fa09b0c8621cb30776de9b016c7b433da3453f51a01610e0d8a706b94c7e", - "txlist_hash": "83367c52c5808cc55d9902d446542239ae36c22d7b7d92678f128ad83f58aaea", - "messages_hash": "3172cc5949c44703a36181b1b938faf388d0cf72e686932ee5ee218ee893e4a6", + "ledger_hash": "113b4ac64bf9ac160f8e8708650a5d11015244d91fd17d01b3de1fe04be70c78", + "txlist_hash": "558fec084db1e752436b64f7b0a16b3d23bf95d65f565c7bde658319eeb33077", + "messages_hash": "e5e85dcca0aa0aa18c5bd712553a8598a4d416411dc2dacbd84c40a2c8d16364", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", - "block_time": 1726509903, - "previous_block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017", + "block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", + "block_time": 1726737160, + "previous_block_hash": "183beca9c1ae5f954cb62ccbcb7ab1d73a8c48927fe3ba9543532d5b9ce910a3", "difficulty": 545259519, - "ledger_hash": "20f305d9381284d270d7c1d22ba897f66d072d2f1df42dfeeffdf903e9627921", - "txlist_hash": "57455bb363a21c6f49fa641f5bedf87e9eedc785270ddc90711b98f54eb0f113", - "messages_hash": "2f8a089ba7d158feab1cd9daea1fc5a85d43e2de099feb80f384f9fafe9efbb5", + "ledger_hash": "e81ac0e53866984f932b80f2481beac540f6cc62a16e792fd5056b013d9fc368", + "txlist_hash": "d429caa4bda24381dc9fd8efe17f587c45fe10a0f370ab48e62444a53da33cba", + "messages_hash": "a0f05767e14a8d26fd1451e64665fe70bcc522860d08bc04b455175e7199d414", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017", - "block_time": 1726509899, - "previous_block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b", + "block_hash": "183beca9c1ae5f954cb62ccbcb7ab1d73a8c48927fe3ba9543532d5b9ce910a3", + "block_time": 1726737147, + "previous_block_hash": "0ce6237c027d6772c41adb9614ce3b0d9186a8717abe802fc140e2388d92a79c", "difficulty": 545259519, - "ledger_hash": "5dac3b61245453c5448b8e8ef6eaf53e9ca0a371d3b6524ca97ef99e40551036", - "txlist_hash": "5caba1ce46d6c7e9d5a7cb1c794b331dd473323683be48d62b3e03fef3a9cb75", - "messages_hash": "a3d30ea5b4343aac41752e3cbe083b2f9a5070adb3e28d3cf3b586d60b13f937", + "ledger_hash": "f2adce4e7e612e6ae389add9f0a919d791cfb4cbea7689f82caafa294c330b13", + "txlist_hash": "95250702feb0be119b1a92970c680ea45a022baeec5f15f5c2b7456912db0ce1", + "messages_hash": "b0206ae41b307f14e98b1207f8d922b3a15d8eda41c476236a094f7c3c175aae", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b", - "block_time": 1726509894, - "previous_block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780", + "block_hash": "0ce6237c027d6772c41adb9614ce3b0d9186a8717abe802fc140e2388d92a79c", + "block_time": 1726737143, + "previous_block_hash": "20fc4d1702a5f56963ec395c69b45622b30c4a6f58fa15a26a7d15d06d9cc299", "difficulty": 545259519, - "ledger_hash": "3f97c50ca5edc66440c05c58badb6d8f26237669ef20c001a05e476404900c94", - "txlist_hash": "ed6472060345e91ae8e05a0f6d7a9a0e657098f47eae73e2e644fc7e455e67d3", - "messages_hash": "9f629d60ea05b595361922207a4b99e144e342dcc0cef5755d71e920ec551ba7", + "ledger_hash": "36d4783cd8aea1ea7b029dd8d1eea5f46adea1ef5d654fa2dea650c59e90332e", + "txlist_hash": "939204c57db25fa23f6522046856c4e3e84de481fe58083f6f111f10a769a049", + "messages_hash": "e57ab6f69b0cff918442af68a2ed4fdcfef1108674370c8291235532833c2d84", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_time": 1726737169, + "previous_block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", "difficulty": 545259519, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", + "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", + "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58` (str, required) - The index of the block to return + + block_hash: `404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0` (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": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_time": 1726737169, + "previous_block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", "difficulty": 545259519, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", + "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", + "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_time": 1726737169, + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1706,11 +1706,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "a352fa09b0c8621cb30776de9b016c7b433da3453f51a01610e0d8a706b94c7e", - "messages_hash": "3172cc5949c44703a36181b1b938faf388d0cf72e686932ee5ee218ee893e4a6", + "ledger_hash": "113b4ac64bf9ac160f8e8708650a5d11015244d91fd17d01b3de1fe04be70c78", + "messages_hash": "e5e85dcca0aa0aa18c5bd712553a8598a4d416411dc2dacbd84c40a2c8d16364", "transaction_count": 1, - "txlist_hash": "83367c52c5808cc55d9902d446542239ae36c22d7b7d92678f128ad83f58aaea", - "block_time": 1726509908 + "txlist_hash": "558fec084db1e752436b64f7b0a16b3d23bf95d65f565c7bde658319eeb33077", + "block_time": 1726737165 }, "tx_hash": null }, @@ -1719,43 +1719,43 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58 }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "status": "valid", - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, - "block_time": 1726509908, + "block_time": 1726737165, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -1765,22 +1765,22 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "XCP", "block_index": 192, - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -1790,7 +1790,7 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" } ], "next_cursor": 524, @@ -1873,16 +1873,16 @@ Returns the events of a block filtered by event "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -1892,57 +1892,57 @@ Returns the events of a block filtered by event }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" } ], "next_cursor": null, @@ -2005,16 +2005,16 @@ Returns the credits of a block "result": [ { "block_index": 192, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,20 +2026,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2047,20 +2047,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2116,16 +2116,16 @@ Returns the debits of a block "result": [ { "block_index": 193, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "event": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -2165,24 +2165,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "object_id": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", "block_index": 182, "confirmed": true, - "block_time": 1726509796 + "block_time": 1726737039 }, { "type": "order", - "object_id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", + "object_id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", "block_index": 182, "confirmed": true, - "block_time": 1726509796 + "block_time": 1726737039 }, { "type": "order_match", - "object_id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "object_id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", "block_index": 182, "confirmed": true, - "block_time": 1726509796 + "block_time": 1726737039 } ], "next_cursor": null, @@ -2214,13 +2214,13 @@ Returns the cancels of a block "result": [ { "tx_index": 56, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "status": "valid", "confirmed": true, - "block_time": 1726509899 + "block_time": 1726737147 } ], "next_cursor": null, @@ -2252,15 +2252,15 @@ Returns the destructions of a block "result": [ { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -2300,14 +2300,14 @@ Returns the issuances of a block "result": [ { "tx_index": 46, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -2322,7 +2322,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509780, + "block_time": 1726737024, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2356,10 +2356,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2367,7 +2367,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "divisible": true, "asset_longname": null, @@ -2380,10 +2380,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2391,11 +2391,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2404,10 +2404,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2415,11 +2415,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2457,27 +2457,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2492,7 +2492,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726509701, + "block_time": 1726736947, "asset_info": { "divisible": true, "asset_longname": null, @@ -2533,16 +2533,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "fee_paid_normalized": "0.00600000" } ], @@ -2576,17 +2576,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a", + "tx_hash": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d", "block_index": 138, - "block_hash": "453294ea1f1df8257210f9e7a253332b3347be306ceef8957771aff657052d9f", - "block_time": 1726509656, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "block_hash": "7e45acb73fcefa7403009355078611bc9181758c2aba38ea6c5674b00813e95a", + "block_time": 1726736913, + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a:1", + "utxos_info": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2611,25 +2611,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 51, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", "block_index": 185, - "block_hash": "7bb18fb36cb1bd5cb99d781fabe17b43d4b67ee7530bd6ab46356fdb3e139fa6", - "block_time": 1726509867, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "4cf4464c33d15629e0bd0b037dd008ce660191a9b79778db1087bc9214247f38", + "block_time": 1726737126, + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "btc_amount": 2000, "fee": 10000, - "data": "0b675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "data": "0b5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "supported": true, - "utxos_info": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d:0", + "utxos_info": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "status": "valid" } }, @@ -2644,23 +2644,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "block_index": 190, - "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017", - "block_time": 1726509899, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "183beca9c1ae5f954cb62ccbcb7ab1d73a8c48927fe3ba9543532d5b9ce910a3", + "block_time": 1726737147, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "465e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "data": "460dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "supported": true, - "utxos_info": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec:1", + "utxos_info": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "status": "valid" } }, @@ -2675,17 +2675,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_time": 1726737169, + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2715,17 +2715,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 32, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", "block_index": 145, - "block_hash": "08bdc1edfb36f1d85bc67defec2acfd268f4883895a7c3d6fe6817a5438a4f25", - "block_time": 1726509697, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "block_hash": "5a1fddd926c162cbb2e49d165e7606e6a605f1983946530be746dd7a170c6a19", + "block_time": 1726736943, + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c00000000000000010000000000000001000000000000271000000000000000010080feeb565d4498d6075cf256c2b70c424b5f5c0a04", + "data": "0c00000000000000010000000000000001000000000000271000000000000000010080bf447925768a63c1bdf7d15051c4f4704b2ca54b", "supported": true, - "utxos_info": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d:1", + "utxos_info": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2737,7 +2737,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "status": "valid", "asset_info": { "divisible": true, @@ -2761,17 +2761,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", "block_index": 146, - "block_hash": "4de0e42039680e9c42b597fd03acd28e9a5efe8146eeb01f3fdc17e0544a27e8", - "block_time": 1726509701, - "source": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", - "destination": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "block_hash": "5aae8081748439fb42fccc2fdec0c9c2f714f056b807c7196d8f3bc6fc268d57", + "block_time": 1726736947, + "source": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", + "destination": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "btc_amount": 10000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535:0", + "utxos_info": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 40, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", "block_index": 153, - "block_hash": "7e887e2e71767fce9ed7d481be87683d41eaed909607ad9a84d0cdaf822fd36f", - "block_time": 1726509732, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "006b8118bd7d7af418ab681b8d3b0439c7326e7eece9aa487598d029ff8848e0", + "block_time": 1726736978, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00:1", + "utxos_info": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2814,7 +2814,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2839,17 +2839,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 46, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", "block_index": 159, - "block_hash": "6ba4729ba0f996337647b47d49e898b2ef75467f46f5f7e51e78ee5eb306574f", - "block_time": 1726509780, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "176e6b907d3b247e4dac4aa49f72fd3151cc5091907ec1759507bee8b6593e52", + "block_time": 1726737024, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491:1", + "utxos_info": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2881,17 +2881,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", - "block_time": 1726509903, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", + "block_time": 1726737160, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1", + "utxos_info": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2934,17 +2934,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03", + "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a", "block_index": 187, - "block_hash": "12f9ec3b5f8f740e948b461f074122b7c4d9311edf891749685e732e798b4124", - "block_time": 1726509886, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "block_hash": "2fa7eb69a70fb82c7aa8230c8a709b8fd0e155bb523d6e58a34263ce9470fd60", + "block_time": 1726737134, + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080ae2b0c1095bbdf23747f76b242be716817701b78", + "data": "020000000000000001000000000000271080e816f5562a0ee9cab6015173bbded2ef7b58ca5d", "supported": true, - "utxos_info": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03:1", + "utxos_info": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2952,7 +2952,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "memo": null, "asset_info": { "divisible": true, @@ -2975,17 +2975,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780", - "block_time": 1726509890, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "20fc4d1702a5f56963ec395c69b45622b30c4a6f58fa15a26a7d15d06d9cc299", + "block_time": 1726737138, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038057841d54055a90ed31a47e9821fd3118e6e78592808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f9280ae2b0c1095bbdf23747f76b242be716817701b78400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a65050a67bf322ed4c4b1bf06798d4b6cefea9f3803e32791d2b81299971b964239daaa0099a94570880e816f5562a0ee9cab6015173bbded2ef7b58ca5d400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f:0", + "utxos_info": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2993,14 +2993,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -3008,7 +3008,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3034,23 +3034,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", - "block_time": 1726509908, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", + "block_time": 1726737165, + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480ae2b0c1095bbdf23747f76b242be716817701b78017377656570206d7920617373657473", + "data": "0480e816f5562a0ee9cab6015173bbded2ef7b58ca5d017377656570206d7920617373657473", "supported": true, - "utxos_info": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b:1", + "utxos_info": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "flags": 1, "memo": "sweep my assets" } @@ -3083,17 +3083,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_time": 1726737169, + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3116,23 +3116,23 @@ Returns the list of the last ten transactions }, { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", - "block_time": 1726509908, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", + "block_time": 1726737165, + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480ae2b0c1095bbdf23747f76b242be716817701b78017377656570206d7920617373657473", + "data": "0480e816f5562a0ee9cab6015173bbded2ef7b58ca5d017377656570206d7920617373657473", "supported": true, - "utxos_info": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b:1", + "utxos_info": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "flags": 1, "memo": "sweep my assets" } @@ -3150,7 +3150,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `0200000000010113f4625e1516c944a8463d27d826a53f0fcbba50aced60bf5eb00888663ce56e0000000000ffffffff020000000000000000356a332354da0a2986e439d6bf246d84f86ee1f3d79bd9604d9ff8543c944eead26bc52dcc129be40851375a2c04808350b9e7608862f0ca052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e024730440220192675f05c9144776192e2c92db009e8ed5fcedd0c45fbcda89a84a2320f2af30220196bac09bfaedbea9e4458ec76ad50697d0cb659327702787f2ceb8f11832daf0121038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616900000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001015ba723defaf396451676e61776a9cd1c1f8fd9586cc4db78a3b6293d79e53ae40000000000ffffffff020000000000000000356a332c447795bb02a14b1b76de7c17a84bc37fc8666996c601931b77ca60bb5a3dd22a967c31687ef49a736c008c79421a3bd09ba6f0ca052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e0247304402201697d85478fe87d570f56161af58d66d7304e8850f79d0bd7b855e9d3765d76c02202501c7b254170cb724cd7277f8a49a4967c67b96f89441df23d6072886de2aac01210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce00000000` (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. @@ -3163,7 +3163,7 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, @@ -3174,7 +3174,7 @@ Returns Counterparty information from a raw transaction in hex format. "coinbase": false, "vin": [ { - "hash": "13f4625e1516c944a8463d27d826a53f0fcbba50aced60bf5eb00888663ce56e", + "hash": "5ba723defaf396451676e61776a9cd1c1f8fd9586cc4db78a3b6293d79e53ae4", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3184,20 +3184,20 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a332354da0a2986e439d6bf246d84f86ee1f3d79bd9604d9ff8543c944eead26bc52dcc129be40851375a2c04808350b9e7608862" + "script_pub_key": "6a332c447795bb02a14b1b76de7c17a84bc37fc8666996c601931b77ca60bb5a3dd22a967c31687ef49a736c008c79421a3bd09ba6" }, { "value": 4999990000, - "script_pub_key": "00147ed28f21558ee8ecd78a339105e7756213901b6e" + "script_pub_key": "00147cf09b00afd181c7e4a3698f41aa73c50e0fe44e" } ], "vtxinwit": [ - "30440220192675f05c9144776192e2c92db009e8ed5fcedd0c45fbcda89a84a2320f2af30220196bac09bfaedbea9e4458ec76ad50697d0cb659327702787f2ceb8f11832daf01", - "038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a9387076169" + "304402201697d85478fe87d570f56161af58d66d7304e8850f79d0bd7b855e9d3765d76c02202501c7b254170cb724cd7277f8a49a4967c67b96f89441df23d6072886de2aac01", + "0375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce" ], "lock_time": 0, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", - "tx_id": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232" + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_id": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625" }, "unpacked_data": { "message_type": "order", @@ -3278,17 +3278,17 @@ Returns a transaction by its index. { "result": { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_time": 1726737169, + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3317,7 +3317,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce` (str, required) - The hash of the transaction + + tx_hash: `71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24` (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. @@ -3329,17 +3329,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_time": 1726737169, + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3392,47 +3392,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58 }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "status": "valid", - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, - "block_time": 1726509908, + "block_time": 1726737165, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -3442,24 +3442,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "XCP", "block_index": 192, - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -3469,36 +3469,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 } ], "next_cursor": 523, @@ -3511,7 +3511,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b` (str, required) - The hash of the transaction to return + + tx_hash: `d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -3535,47 +3535,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58 }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "status": "valid", - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, - "block_time": 1726509908, + "block_time": 1726737165, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -3585,24 +3585,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "XCP", "block_index": 192, - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -3612,36 +3612,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 } ], "next_cursor": 523, @@ -3654,7 +3654,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f` (str, required) - The hash of the transaction to return + + tx_hash: `cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e` (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 @@ -3673,10 +3673,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -3684,7 +3684,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "divisible": true, "asset_longname": null, @@ -3697,10 +3697,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3708,11 +3708,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -3721,10 +3721,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3732,11 +3732,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -3754,7 +3754,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535` (str, required) - The hash of the transaction to return + + tx_hash: `7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2` (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 @@ -3774,27 +3774,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3809,7 +3809,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726509701, + "block_time": 1726736947, "asset_info": { "divisible": true, "asset_longname": null, @@ -3853,16 +3853,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -3872,63 +3872,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 } ], "next_cursor": null, @@ -3941,7 +3941,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b` (str, required) - The hash of the transaction to return + + tx_hash: `d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `535` (str, optional) - The last event index to return + Default: `None` @@ -3963,16 +3963,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -3982,63 +3982,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 } ], "next_cursor": null, @@ -4053,7 +4053,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj,bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c,bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (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 @@ -4077,7 +4077,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4087,7 +4087,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -4098,7 +4098,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4108,7 +4108,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -4119,7 +4119,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4129,7 +4129,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -4140,7 +4140,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4150,7 +4150,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -4161,7 +4161,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4171,7 +4171,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -4188,7 +4188,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj,bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c,bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (str, required) - Comma separated list of addresses to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4207,17 +4207,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", - "block_time": 1726509903, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", + "block_time": 1726737160, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1", + "utxos_info": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4253,23 +4253,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "block_index": 190, - "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017", - "block_time": 1726509899, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "183beca9c1ae5f954cb62ccbcb7ab1d73a8c48927fe3ba9543532d5b9ce910a3", + "block_time": 1726737147, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "465e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "data": "460dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "supported": true, - "utxos_info": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec:1", + "utxos_info": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "status": "valid" } }, @@ -4277,17 +4277,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "block_index": 189, - "block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b", - "block_time": 1726509894, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "0ce6237c027d6772c41adb9614ce3b0d9186a8717abe802fc140e2388d92a79c", + "block_time": 1726737143, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2:1", + "utxos_info": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4323,17 +4323,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780", - "block_time": 1726509890, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "20fc4d1702a5f56963ec395c69b45622b30c4a6f58fa15a26a7d15d06d9cc299", + "block_time": 1726737138, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038057841d54055a90ed31a47e9821fd3118e6e78592808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f9280ae2b0c1095bbdf23747f76b242be716817701b78400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a65050a67bf322ed4c4b1bf06798d4b6cefea9f3803e32791d2b81299971b964239daaa0099a94570880e816f5562a0ee9cab6015173bbded2ef7b58ca5d400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f:0", + "utxos_info": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4341,14 +4341,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -4356,7 +4356,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4375,25 +4375,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 51, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", "block_index": 185, - "block_hash": "7bb18fb36cb1bd5cb99d781fabe17b43d4b67ee7530bd6ab46356fdb3e139fa6", - "block_time": 1726509867, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "4cf4464c33d15629e0bd0b037dd008ce660191a9b79778db1087bc9214247f38", + "block_time": 1726737126, + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "btc_amount": 2000, "fee": 10000, - "data": "0b675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "data": "0b5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "supported": true, - "utxos_info": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d:0", + "utxos_info": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "status": "valid" } }, @@ -4410,7 +4410,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj,bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c,bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -4446,11 +4446,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "status": "open", - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "tx_index": 57, - "block_time": 1726509903, + "block_time": 1726737160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4474,24 +4474,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "block_time": 1726509903 + "block_time": 1726737160 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "block_index": 191, - "event": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "event": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1726509903, + "block_time": 1726737160, "asset_info": { "divisible": true, "asset_longname": null, @@ -4501,25 +4501,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "block_time": 1726509903 + "block_time": 1726737160 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", + "block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", "block_index": 191, - "block_time": 1726509903, + "block_time": 1726737160, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "tx_index": 57, - "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1", + "utxos_info": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4551,40 +4551,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "block_time": 1726509903 + "block_time": 1726737160 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "status": "valid", - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "tx_index": 56, - "block_time": 1726509899 + "block_time": 1726737147 }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726737147 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726509899, + "block_time": 1726737147, "asset_info": { "divisible": true, "asset_longname": null, @@ -4594,9 +4594,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726737147 } ], "next_cursor": 506, @@ -4609,7 +4609,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2,bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw,bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs` (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 @@ -4625,17 +4625,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "memo": null, "quantity": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "status": "valid", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "tx_index": 60, "asset_info": { "divisible": true, @@ -4648,19 +4648,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "CREDIT", "params": { - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -4672,19 +4672,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 193, - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -4696,27 +4696,27 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726509917.0831685, + "block_time": 1726737173.5878787, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f92", + "data": "0200000000000000010000000000002710803e32791d2b81299971b964239daaa0099a945708", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "tx_index": 60, - "utxos_info": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6:1", + "utxos_info": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "memo": null, "asset_info": { "divisible": true, @@ -4742,7 +4742,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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 @@ -4762,7 +4762,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4770,14 +4770,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4785,14 +4785,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4807,7 +4807,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4815,7 +4815,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -4832,7 +4832,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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` @@ -4844,7 +4844,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4866,7 +4866,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4916,16 +4916,16 @@ Returns the credits of an address "result": [ { "block_index": 190, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509899, + "block_time": 1726737147, "asset_info": { "divisible": true, "asset_longname": null, @@ -4937,16 +4937,16 @@ Returns the credits of an address }, { "block_index": 182, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", + "event": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509796, + "block_time": 1726737039, "asset_info": { "divisible": true, "asset_longname": null, @@ -4958,20 +4958,20 @@ Returns the credits of an address }, { "block_index": 159, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "event": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509780, + "block_time": 1726737024, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -4979,20 +4979,20 @@ Returns the credits of an address }, { "block_index": 156, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "23d681cb0c9d9310fd8150fcabf440c84cae363db926d0fcde70cbe12373f96f", + "event": "2ee2bf2492eaafe424159ad97df4e43df151dd3c12ffe7c393b7bf9256b9bb32", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509746, + "block_time": 1726736992, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5004,16 +5004,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "event": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", "tx_index": 38, - "utxo": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1", - "utxo_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "utxo": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9:1", + "utxo_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "confirmed": true, - "block_time": 1726509724, + "block_time": 1726736969, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5030,7 +5030,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5069,16 +5069,16 @@ Returns the debits of an address "result": [ { "block_index": 191, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "event": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509903, + "block_time": 1726737160, "asset_info": { "divisible": true, "asset_longname": null, @@ -5090,16 +5090,16 @@ Returns the debits of an address }, { "block_index": 189, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509894, + "block_time": 1726737143, "asset_info": { "divisible": true, "asset_longname": null, @@ -5111,16 +5111,16 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "event": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "divisible": true, "asset_longname": null, @@ -5132,20 +5132,20 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "event": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5153,16 +5153,16 @@ Returns the debits of an address }, { "block_index": 183, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "event": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509858, + "block_time": 1726737108, "asset_info": { "divisible": true, "asset_longname": null, @@ -5183,7 +5183,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address of the feed + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5218,7 +5218,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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 @@ -5237,9 +5237,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "1629a61f230d38e661231eeaac724d9336e9413ce0a9f145c49d57030ae05b8d", + "tx_hash": "b1010bdab734a9e4cce02ad65bcf68fbc73fe1bb28f21c9b91d6cf68c1a62186", "block_index": 137, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5247,7 +5247,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726509652, + "block_time": 1726736909, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5261,7 +5261,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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 @@ -5280,14 +5280,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "84cfd2ae481d0a4171e66009619eda93802914d5ccbb4bc52a5b76fd06d2dd79", + "tx_hash": "80605ddcc2da09e5d557ad4b486390da9dfaa0ef1c6f175b1957db2b332a81e1", "block_index": 112, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1726509535, + "block_time": 1726736804, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5302,7 +5302,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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 @@ -5321,10 +5321,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5332,7 +5332,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "divisible": true, "asset_longname": null, @@ -5345,10 +5345,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5356,11 +5356,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5369,10 +5369,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5380,11 +5380,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5393,10 +5393,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 38, - "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "tx_hash": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", "block_index": 151, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5404,11 +5404,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509724, + "block_time": 1726736969, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5417,10 +5417,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 35, - "tx_hash": "523006a2ff042bd1708eb4642871fe8df38dbb0d40fc0b07f7c4d78ea57fff6d", + "tx_hash": "4a3b965c548a45221fb21c895a5983dd531696c8c62d09ca2a19954c14446c82", "block_index": 148, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "d2f3afeb63580aa006eee4e055138c2903f7e8172876f688b7241e2ebbe5f172:1", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "7c7028f67836beaa5fb2de94c6daea92f4efba5aeae1c1b193c994c5ac14cf51:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5428,11 +5428,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509710, + "block_time": 1726736956, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5450,7 +5450,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0` (str, required) - The address to return + + address: `bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m` (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 @@ -5469,10 +5469,10 @@ Returns the receives of an address "result": [ { "tx_index": 37, - "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba", + "tx_hash": "0c30ebe84e9981d88766592125043c857961de991168503a78e10fa95416df3b", "block_index": 150, - "source": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88:0", - "destination": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0", + "source": "35f402483a54a03e637b77b2ff618642d6e435f34c3c89219374add7f500dc22:0", + "destination": "bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5480,11 +5480,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509719, + "block_time": 1726736965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5502,7 +5502,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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` @@ -5522,10 +5522,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5533,11 +5533,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5546,10 +5546,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5557,11 +5557,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5570,10 +5570,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 38, - "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "tx_hash": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", "block_index": 151, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5581,11 +5581,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509724, + "block_time": 1726736969, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5594,10 +5594,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 35, - "tx_hash": "523006a2ff042bd1708eb4642871fe8df38dbb0d40fc0b07f7c4d78ea57fff6d", + "tx_hash": "4a3b965c548a45221fb21c895a5983dd531696c8c62d09ca2a19954c14446c82", "block_index": 148, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "d2f3afeb63580aa006eee4e055138c2903f7e8172876f688b7241e2ebbe5f172:1", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "7c7028f67836beaa5fb2de94c6daea92f4efba5aeae1c1b193c994c5ac14cf51:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5605,11 +5605,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509710, + "block_time": 1726736956, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5627,7 +5627,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0` (str, required) - The address to return + + address: `bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m` (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` @@ -5647,10 +5647,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 37, - "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba", + "tx_hash": "0c30ebe84e9981d88766592125043c857961de991168503a78e10fa95416df3b", "block_index": 150, - "source": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88:0", - "destination": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0", + "source": "35f402483a54a03e637b77b2ff618642d6e435f34c3c89219374add7f500dc22:0", + "destination": "bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5658,11 +5658,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509719, + "block_time": 1726736965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5680,7 +5680,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5707,9 +5707,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5718,7 +5718,7 @@ Returns the dispensers of an address "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5728,7 +5728,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726736939, "asset_info": { "divisible": true, "asset_longname": null, @@ -5744,9 +5744,9 @@ Returns the dispensers of an address }, { "tx_index": 26, - "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5755,7 +5755,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5765,7 +5765,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -5790,7 +5790,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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` @@ -5803,9 +5803,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5814,7 +5814,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5824,7 +5824,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726736939, "asset_info": { "divisible": true, "asset_longname": null, @@ -5846,7 +5846,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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 @@ -5866,19 +5866,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5886,7 +5886,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5901,7 +5901,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -5915,19 +5915,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5935,7 +5935,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5950,7 +5950,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726736922, "asset_info": { "divisible": true, "asset_longname": null, @@ -5972,7 +5972,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address to return + + address: `bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (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 @@ -5992,19 +5992,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6012,7 +6012,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6027,7 +6027,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -6041,19 +6041,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6061,7 +6061,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6076,7 +6076,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726736922, "asset_info": { "divisible": true, "asset_longname": null, @@ -6098,7 +6098,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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` @@ -6119,19 +6119,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6139,7 +6139,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6154,7 +6154,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -6168,19 +6168,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6188,7 +6188,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6203,7 +6203,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726736922, "asset_info": { "divisible": true, "asset_longname": null, @@ -6225,7 +6225,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address to return + + address: `bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (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` @@ -6246,19 +6246,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6266,7 +6266,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6281,7 +6281,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -6295,19 +6295,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6315,7 +6315,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6330,7 +6330,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726736922, "asset_info": { "divisible": true, "asset_longname": null, @@ -6352,7 +6352,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2` (str, required) - The address to return + + address: `bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw` (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 @@ -6371,16 +6371,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "fee_paid_normalized": "0.00600000" } ], @@ -6394,7 +6394,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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 @@ -6413,14 +6413,14 @@ Returns the issuances of an address "result": [ { "tx_index": 46, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -6435,20 +6435,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509780, + "block_time": 1726737024, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "99d6840da9077ad147d3cb8e3a527ebcb05445b5e72d0fa4f9429f91a2ed5f9f", + "tx_hash": "d7cbe9778e884b6f2582d7a57940b012bf1ddb5b700e7dd072c69bedd7e9b3a8", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -6463,20 +6463,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726509775, + "block_time": 1726737011, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "edf7eb0a60e46ad53360d769c00fbd350628dff893bb6f1869570c9fdcfc71af", + "tx_hash": "fc3408b9506f75d2a3f1a65d6fe00a222a56fde09335e34953794e0293f63afe", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "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": 1726509760, + "block_time": 1726736996, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "23d681cb0c9d9310fd8150fcabf440c84cae363db926d0fcde70cbe12373f96f", + "tx_hash": "2ee2bf2492eaafe424159ad97df4e43df151dd3c12ffe7c393b7bf9256b9bb32", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -6519,20 +6519,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509746, + "block_time": 1726736992, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "73ed3c167032f8d2648710f1bceb54e23fc9faf80658565c8e897ea0fa7bcf35", + "tx_hash": "ee33216b42c4c6088fdf31e58c26a41d776c7f1c22d36fba1e6120663c74f3ed", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -6547,7 +6547,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509706, + "block_time": 1726736952, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -6562,7 +6562,7 @@ Returns the issuances of an address Returns the valid assets of an issuer + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The issuer to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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 @@ -6585,8 +6585,8 @@ Returns the valid assets of an issuer "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 10000000000, @@ -6594,16 +6594,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726509746, - "last_issuance_block_time": 1726509775, + "first_issuance_block_time": 1726736992, + "last_issuance_block_time": 1726737011, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -6611,16 +6611,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726509706, - "last_issuance_block_time": 1726509706, + "first_issuance_block_time": 1726736952, + "last_issuance_block_time": 1726736952, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 40, @@ -6628,16 +6628,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726509644, - "last_issuance_block_time": 1726509648, + "first_issuance_block_time": 1726736900, + "last_issuance_block_time": 1726736905, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 19, @@ -6645,16 +6645,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726509617, - "last_issuance_block_time": 1726509639, + "first_issuance_block_time": 1726736883, + "last_issuance_block_time": 1726736896, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 0, @@ -6662,8 +6662,8 @@ Returns the valid assets of an issuer "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1726509596, - "last_issuance_block_time": 1726509613, + "first_issuance_block_time": 1726736862, + "last_issuance_block_time": 1726736879, "supply_normalized": "0.00000000" } ], @@ -6677,7 +6677,7 @@ Returns the valid assets of an issuer Returns the transactions of an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -6696,17 +6696,17 @@ Returns the transactions of an address "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", - "block_time": 1726509903, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", + "block_time": 1726737160, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1", + "utxos_info": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6742,23 +6742,23 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "block_index": 190, - "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017", - "block_time": 1726509899, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "183beca9c1ae5f954cb62ccbcb7ab1d73a8c48927fe3ba9543532d5b9ce910a3", + "block_time": 1726737147, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "465e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "data": "460dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "supported": true, - "utxos_info": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec:1", + "utxos_info": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "status": "valid" } }, @@ -6766,17 +6766,17 @@ Returns the transactions of an address }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "block_index": 189, - "block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b", - "block_time": 1726509894, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "0ce6237c027d6772c41adb9614ce3b0d9186a8717abe802fc140e2388d92a79c", + "block_time": 1726737143, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2:1", + "utxos_info": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6812,17 +6812,17 @@ Returns the transactions of an address }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780", - "block_time": 1726509890, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "20fc4d1702a5f56963ec395c69b45622b30c4a6f58fa15a26a7d15d06d9cc299", + "block_time": 1726737138, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038057841d54055a90ed31a47e9821fd3118e6e78592808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f9280ae2b0c1095bbdf23747f76b242be716817701b78400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a65050a67bf322ed4c4b1bf06798d4b6cefea9f3803e32791d2b81299971b964239daaa0099a94570880e816f5562a0ee9cab6015173bbded2ef7b58ca5d400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f:0", + "utxos_info": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -6830,14 +6830,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -6845,7 +6845,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -6864,17 +6864,17 @@ Returns the transactions of an address }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", "block_index": 183, - "block_hash": "266c58f4906e9a1c4f81f972d7728ac8f370b75de6c542c61c838013ad48749d", - "block_time": 1726509858, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "06325114bf09180c9fe86186dea01039a4c7dd402c5a9f006adbb24731015015", + "block_time": 1726737108, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1:1", + "utxos_info": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6919,7 +6919,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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 @@ -6938,20 +6938,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 40, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", "block_index": 153, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726736978, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -6976,7 +6976,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7003,9 +7003,9 @@ Returns the orders of an address "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7020,7 +7020,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509903, + "block_time": 1726737160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7046,9 +7046,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7063,7 +7063,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726509899, + "block_time": 1726737147, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7089,9 +7089,9 @@ Returns the orders of an address }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", "block_index": 186, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7106,7 +7106,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726737130, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7132,9 +7132,9 @@ Returns the orders of an address }, { "tx_index": 47, - "tx_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", + "tx_hash": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", "block_index": 182, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7149,7 +7149,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1726509796, + "block_time": 1726737039, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7184,7 +7184,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The source of the fairminter to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7202,10 +7202,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7230,13 +7230,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509644 + "block_time": 1726736900 }, { - "tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7261,13 +7261,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509617 + "block_time": 1726736883 }, { - "tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16", + "tx_hash": "c4de72bddcecc2b88f8e0746e02446a566b0fca27fe3e4b9bd4c20e550f9089a", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7292,13 +7292,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509613 + "block_time": 1726736879 }, { - "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7323,7 +7323,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509592 + "block_time": 1726736859 } ], "next_cursor": null, @@ -7336,7 +7336,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address of the mints to return + + address: `bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7354,127 +7354,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "a899b1a361e0514262442a4a300d7571606a3462d50819092e649c490fbcb1e6", + "tx_hash": "661c344111ceedee5cbe79a2043e49979922a9af9ced08540254cf13090082ac", "tx_index": 23, "block_index": 136, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "fairminter_tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509648, + "block_time": 1726736905, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } }, { - "tx_hash": "43b87a7de82b3deb9845abcc6d33d3d9b61c21d58377115c5edefeabc763c9ae", + "tx_hash": "532d67517eb2c751de2c553a82aab3168f9fe2252232a50926c6bf10c0926357", "tx_index": 21, "block_index": 134, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "fairminter_tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509639, + "block_time": 1726736896, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } }, { - "tx_hash": "1148cccc0b0535df22ffd1571672abb937ff57bcefafc7af5d797405c8ce0b7f", + "tx_hash": "022c8e67569b246e08ef1818ccc12b3591109f44a3fb34dd3867360868caa2c6", "tx_index": 20, "block_index": 133, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "fairminter_tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509625, + "block_time": 1726736892, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } }, { - "tx_hash": "a82d30ebc85da3571118450b2e29b8230ff34da2ee40ff7df9452727b80de1be", + "tx_hash": "679cd46764ea30300b6b5cc103c11d81633ec81ceb08a156ef5429207dbc2e6b", "tx_index": 19, "block_index": 132, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "fairminter_tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509620, + "block_time": 1726736888, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } }, { - "tx_hash": "2fe7ff0c16953b4aff424432759c2e48819f92f9c4440a7047e3c86f9ca21161", + "tx_hash": "25f9745a24829f09fe2f511cac829379903961a21dcf3324daad294b9d9b502e", "tx_index": 15, "block_index": 127, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "fairminter_tx_hash": "c4de72bddcecc2b88f8e0746e02446a566b0fca27fe3e4b9bd4c20e550f9089a", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509599, + "block_time": 1726736866, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } }, { - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", "tx_index": 11, "block_index": 123, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726736850, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } @@ -7490,7 +7490,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address of the mints to return + + address: `bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (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` @@ -7509,22 +7509,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", "tx_index": 11, "block_index": 123, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726736850, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } @@ -7558,13 +7558,13 @@ By default the default value of the `encoding` parameter detailed above is `auto - Sign the transaction following the `Bitcoinjs-lib on javascript, signing a P2SH redeeming transaction` section - **NOTE**: Don't leave pretxs hanging without transmitting the second transaction as this pollutes the UTXO set and risks making bitcoin harder to run on low spec nodes. -### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&custom_inputs}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a bet against a feed. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will make the bet - + feed_address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address that will make the bet + + feed_address: `bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (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) @@ -7607,9 +7607,11 @@ Composes a transaction to issue a bet against a feed. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + custom_inputs (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -7623,12 +7625,12 @@ Composes a transaction to issue a bet against a feed. } ``` -### Compose Broadcast [GET /v2/addresses/{address}/compose/broadcast{?timestamp}{&value}{&fee_fraction}{&text}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Broadcast [GET /v2/addresses/{address}/compose/broadcast{?timestamp}{&value}{&fee_fraction}{&text}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&custom_inputs}{&verbose}{&show_unconfirmed}] Composes a transaction to broadcast textual and numerical information to the network. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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) @@ -7666,9 +7668,11 @@ Composes a transaction to broadcast textual and numerical information to the net + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + custom_inputs (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -7679,9 +7683,9 @@ Composes a transaction to broadcast textual and numerical information to the net ``` { "result": { - "rawtransaction": "02000000000101b649c4e7fa40f164c03cd4447f8be4c3bbeb5ab6b102b0040141900933aac6ab000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff0200000000000000002b6a298a111578002e35f209d5778a06bfbacec513f992cc18166b895017e5651e3d9a9c8abe27c32de9bd6334b1052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101bfd9d0339ebb1cad61e9fc89066f141a165e042afd044ca512e90f4dac0ad858000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff0200000000000000002b6a29c2ee9987af5831d7348cee95680e02f5b1a9f16b78c5d7d960b240f9f113817ad4db1edc13aa9827824ab1052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7692,13 +7696,13 @@ Composes a transaction to broadcast textual and numerical information to the net } ``` -### Compose BTCPay [GET /v2/addresses/{address}/compose/btcpay{?order_match_id}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose BTCPay [GET /v2/addresses/{address}/compose/btcpay{?order_match_id}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&custom_inputs}{&verbose}{&show_unconfirmed}] Composes a transaction to pay for a BTC order match. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be sending the payment - + order_match_id: `675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21` (str, required) - The ID of the order match to pay for + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address that will be sending the payment + + order_match_id: `5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543` (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) @@ -7732,9 +7736,11 @@ Composes a transaction to pay for a BTC order match. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + custom_inputs (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -7745,22 +7751,22 @@ Composes a transaction to pay for a BTC order match. ``` { "result": { - "rawtransaction": "020000000001014fca2cccbcf61bd93889e6594b5f5676eb7ccec2f792a180f5f069af357b7616000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff03b80b0000000000001600147ed28f21558ee8ecd78a339105e7756213901b6e00000000000000004b6a491bea0194c274239cce2dec48099450c2d32bb382ddfb3b81015ad5ec232bd55868ef141b018286e0bca6432cf028cefc16bae7d9d0f81d7cc89e7f1247e0f068e2c07fc713509850fad093052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101cd2f9f22e79cce4fb01fa897d6a1230dc3e51e1f08396840e2ded9bf4ed0fe3e000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff03b80b0000000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e00000000000000004b6a490fdb3d753a82eaad9cd34afe5f1305746b956ac41e8052e51f59797fd09de81db452050c70fe0214d12facb16da53b94b959811a60b62c14c98d1ebd05f8547490e1f6248b5c8559aaec93052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21" + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543" }, "name": "btcpay" } } ``` -### Compose Burn [GET /v2/addresses/{address}/compose/burn{?quantity}{&overburn}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Burn [GET /v2/addresses/{address}/compose/burn{?quantity}{&overburn}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&custom_inputs}{&verbose}{&show_unconfirmed}] Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, possible between blocks 278310 and 283810; on testnet it is still available). + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address with the BTC to burn + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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` @@ -7797,9 +7803,11 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + custom_inputs (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -7810,9 +7818,9 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss ``` { "result": { - "rawtransaction": "020000000001016fe1241c086889236a07a814417e56dab847abd58d96050d2ef16d394acb7071000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88acdab1052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101319f1699a94398f2c120f2fe873d7ca467fa29859e6cdd19607f056a6936b7fd000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88aceeb1052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "quantity": 1000, "overburn": false }, @@ -7821,13 +7829,13 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss } ``` -### Compose Cancel [GET /v2/addresses/{address}/compose/cancel{?offer_hash}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Cancel [GET /v2/addresses/{address}/compose/cancel{?offer_hash}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&custom_inputs}{&verbose}{&show_unconfirmed}] Composes a transaction to cancel an open order or bet. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625` (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) @@ -7861,9 +7869,11 @@ Composes a transaction to cancel an open order or bet. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + custom_inputs (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -7874,22 +7884,22 @@ Composes a transaction to cancel an open order or bet. ``` { "result": { - "rawtransaction": "0200000000010175b4c418d03015dec817aad5fcb40a67eb01ab8c7f9b2434e0aeae3f2c7327e5000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff0200000000000000002b6a296a415035fc0e352ad913bcc9368104122e748b6b983f39533d639f2642afa98318345f31fc54c82b4434b1052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101eceee2cd7a6adcc3f3e00509598b4e0de4b70c2b45f38aa4905776f17cd677a8000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff0200000000000000002b6a293348289a27b6d9f4e11ca2640ca3d8d38f15443457929b21bdd49d01bd71e1610a84d4b787d34f6b384ab1052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "offer_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232" + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "offer_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625" }, "name": "cancel" } } ``` -### Compose Destroy [GET /v2/addresses/{address}/compose/destroy{?asset}{&quantity}{&tag}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Destroy [GET /v2/addresses/{address}/compose/destroy{?asset}{&quantity}{&tag}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&custom_inputs}{&verbose}{&show_unconfirmed}] Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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 @@ -7926,9 +7936,11 @@ Composes a transaction to destroy a quantity of an asset. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + custom_inputs (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -7939,9 +7951,9 @@ Composes a transaction to destroy a quantity of an asset. ``` { "result": { - "rawtransaction": "02000000000101b6ee35e1324d5089f8d7d56494bef5bcffa8b7c4a7e486d0af9d225461966691000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000226a207b5b354f4bb56aadb60d34352b229414425ea46fd9be1edf6ea98bd29a7472df9db3052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "0200000000010113f95b606575562d2fbe71cebd953337c2738d0a1bcae5fa0bf6877b1d6fb545000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000226a20da2ecfadfdb1591b9c22a85b00012f89f1322f37ed0e4d51a768c47cffa4486bb2b3052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -7959,12 +7971,12 @@ Composes a transaction to destroy a quantity of an asset. } ``` -### Compose Dispenser [GET /v2/addresses/{address}/compose/dispenser{?asset}{&give_quantity}{&escrow_quantity}{&mainchainrate}{&status}{&open_address}{&oracle_address}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Dispenser [GET /v2/addresses/{address}/compose/dispenser{?asset}{&give_quantity}{&escrow_quantity}{&mainchainrate}{&status}{&open_address}{&oracle_address}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&custom_inputs}{&verbose}{&show_unconfirmed}] Composes a transaction to opens or closes a dispenser for a given asset at a given rate of main chain asset (BTC). Escrowed quantity on open must be equal or greater than give_quantity. It is suggested that you escrow multiples of give_quantity to ease dispenser operation. + Parameters - + address: `bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa` (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) @@ -8007,9 +8019,11 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + custom_inputs (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8020,9 +8034,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv ``` { "result": { - "rawtransaction": "020000000001013535818da2dc8007a59f5067eb9607b1ebdae92c65ceb00a7aa84795be59615102000000160014f8303fb1d45fb1391c65bcbef0035ec2924b52ccffffffff0200000000000000002c6a2abf7584d7e313e8d8dd088940a821ea5a8220cba87c96c52763c53a2847b0809129a37280769f24c74047404b0a2701000000160014f8303fb1d45fb1391c65bcbef0035ec2924b52cc02000000000000", + "rawtransaction": "02000000000101b27726999fa786c887828705e322c7e4ea192b2a59e6d05b82d771d73d005a7f0200000016001490f20356500ceced9ca8be9d3a8e373ba700c91effffffff0200000000000000002c6a2a1a9e2fc8bf4e4e6fa674b28e26a7d152d09a9a07d4b2348381905c2efdcaa182b21b73682325ab93227a564b0a270100000016001490f20356500ceced9ca8be9d3a8e373ba700c91e02000000000000", "params": { - "source": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8045,12 +8059,12 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv } ``` -### Compose Dividend [GET /v2/addresses/{address}/compose/dividend{?quantity_per_unit}{&asset}{÷nd_asset}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Dividend [GET /v2/addresses/{address}/compose/dividend{?quantity_per_unit}{&asset}{÷nd_asset}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&custom_inputs}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a dividend to holders of a given asset. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (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: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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 @@ -8087,9 +8101,11 @@ Composes a transaction to issue a dividend to holders of a given asset. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + custom_inputs (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8100,16 +8116,16 @@ Composes a transaction to issue a dividend to holders of a given asset. ``` { "result": { - "rawtransaction": "02000000000101351dc0ca5529e3f5913ab348c8a5b0dab37120eb3a5362bf1edbd938a12afaa9000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000236a214c12bd38bfe6d74349de8861a285ce801c0df1aea0c2341213c29c0488e3b51bf459b3052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "0200000000010181423a4c1b323f96cb29070c085de3e886a3b4bed10d684eb61d066d4e1228cc000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000236a2180564be672da49d108745f6fb58356ab5eb69538bb846d5b60a4fd7efe733f2d806eb3052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -8127,15 +8143,15 @@ Composes a transaction to issue a dividend to holders of a given asset. } ``` -### Compose Issuance [GET /v2/addresses/{address}/compose/issuance{?asset}{&quantity}{&transfer_destination}{&divisible}{&lock}{&reset}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Issuance [GET /v2/addresses/{address}/compose/issuance{?asset}{&quantity}{&transfer_destination}{&divisible}{&lock}{&reset}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&custom_inputs}{&verbose}{&show_unconfirmed}] Composes a transaction to Issue a new asset, issue more of an existing asset, lock an asset, reset existing supply, or transfer the ownership of an asset. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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` @@ -8178,9 +8194,11 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + custom_inputs (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8191,12 +8209,12 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo ``` { "result": { - "rawtransaction": "020000000001018c2c4aec7dc8917d96c67ca0080178a22f670265ea42df5f51b4cf18143f8d33000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff0322020000000000001600147ed28f21558ee8ecd78a339105e7756213901b6e0000000000000000236a2161361954172494529a3d38abfce581faf126d5f844d56d0f9ff51438a6ee05c1681ca8052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "0200000000010144135aae7f4b5e57666e0a958bfb165d94695bb6d93d93fa76f7427ff0b69348000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff0322020000000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e0000000000000000236a211beada5554cafb42451ccfe23872901d81f923678587f0e17234cd58f03e0f9e3e34a8052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "transfer_destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "lock": false, "reset": false, @@ -8208,14 +8226,14 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo } ``` -### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&custom_inputs}{&verbose}{&show_unconfirmed}] Composes a transaction to send multiple payments to multiple addresses. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj,bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c,bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (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` @@ -8254,9 +8272,11 @@ Composes a transaction to send multiple payments to multiple addresses. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + custom_inputs (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8267,18 +8287,18 @@ Composes a transaction to send multiple payments to multiple addresses. ``` { "result": { - "rawtransaction": "02000000000104408d3617b81bce0c32909fc2def0c597a56244508180e231a57cd368ef04aca6000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff17bda3cda72e5b5f1532ba6749ecd58427332ebcf282c79cd16c8375a9e4a215000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffc51fabedc80ce42d8f455f8cc69c88e82938707ddda14f7a68f33094383c23f4000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff6da23b7041e4c4b6b8d7cae88d1b4fbdad16503cf3dcfe3f6c85e0ae150c17a7000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff03e80300000000000069512102c9169a3c7845490a815acdd720f2c894bb916b00b6987b846b31895a38e2814d21027759538aaa3307bc8d576cc9ae8b5cfeb4f89eecb554cbecc42baa629bc084ea21038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aee80300000000000069512102c6169a3c7845490a8179babad2e07e3ab844e5e8565a6a3c4d146e2f5af111ab21036c379bdd2e2e53b9d7c789f80af5c4df49c9840a52d15963e663cf0ef7afa8d521038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953ae47d016a8040000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000002000002000002000000000000", + "rawtransaction": "020000000001041eab5adb0bb5bc395d7db523b9b51aca2ad7fe19abbff6c1eca80b02ff312c11000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff860e9bfc9dc9da5315bdfa7a840499ca44590d1403220a5a234273499b01745b000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff08ce002b16344514671bff8471091da6f15f3205d84e272fccc9e3d5d0b2030f000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff7d196ad9685fe541bd12dbd09b4f828c39f57e7f0ad08959f2a000ae2807fd86000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff03e803000000000000695121021543326b5fc44d2ef3f6fe91dca0bf1b647653e75fa7c89f7993859f368996722102a76f0f8a5542fd628da34fdda4486350023413ed1985b501511dbc9fa42fa2a0210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53aee803000000000000695121031a43326b5fc44d2ef3d589fc2eb02ba1465982669456f07d41f22fecf387997e21034321c72c05125b197e81aa91ef5393379ae0a723e72c468e7355d9f3c8408e55210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53ae98d016a8040000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000002000002000002000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", 1 ], [ "MYASSETA", - "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", 2 ] ], @@ -8290,12 +8310,12 @@ Composes a transaction to send multiple payments to multiple addresses. } ``` -### Compose Order [GET /v2/addresses/{address}/compose/order{?give_asset}{&give_quantity}{&get_asset}{&get_quantity}{&expiration}{&fee_required}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Order [GET /v2/addresses/{address}/compose/order{?give_asset}{&give_quantity}{&get_asset}{&get_quantity}{&expiration}{&fee_required}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&custom_inputs}{&verbose}{&show_unconfirmed}] Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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 @@ -8335,9 +8355,11 @@ Composes a transaction to place an order on the distributed exchange. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + custom_inputs (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8348,9 +8370,9 @@ Composes a transaction to place an order on the distributed exchange. ``` { "result": { - "rawtransaction": "02000000000101c07bf8106610b1b623cb978c0aba88af7803750f54a05c0005f982825d88d475000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000356a334143661d91daa75e926ff6d79759f0577584c1a37635e27e463babf031a6b24bdcd4d41d8aebadcc6eb12b58fa950c86172ab287ae052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101357979f3d01f82c0bbea7bea3c7c3036df493768ffd3f950ce9a92d75ab46800000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000356a3305ec2b3ec06d93eefc7cc7697d5e64bc9cc362d5820ebadb8ce90ac826357dc5cf6ede8721851ae1c99a9e348677ec2e58ccbf9eae052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8367,7 +8389,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -8380,13 +8402,13 @@ Composes a transaction to place an order on the distributed exchange. } ``` -### Compose Send [GET /v2/addresses/{address}/compose/send{?destination}{&asset}{&quantity}{&memo}{&memo_is_hex}{&use_enhanced_send}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Send [GET /v2/addresses/{address}/compose/send{?destination}{&asset}{&quantity}{&memo}{&memo_is_hex}{&use_enhanced_send}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&custom_inputs}{&verbose}{&show_unconfirmed}] Composes a transaction to send a quantity of an asset to another address. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address that will be receiving the asset + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (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 @@ -8428,9 +8450,11 @@ Composes a transaction to send a quantity of an asset to another address. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + custom_inputs (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8441,10 +8465,10 @@ Composes a transaction to send a quantity of an asset to another address. ``` { "result": { - "rawtransaction": "02000000000101d1ed4e6a2b26727a08b51181f172b8a5c8dd24188e57f543702dac89c942bd12000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000306a2eb930bb587d4fd62cbc52cc09eacb8b0dfbb418f08631a6360d98cf5ce3120e46955c4c3d48c01ca4c9bbe19f3103deaf052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101324f0796cb6aa649671c885ae444171d29ec6eb87641c94b557d29f806b97412000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000306a2e8a694ebcf06f71b568e08cdad92e6d9f358570de1dfdf1dc8a082b8b0e1cdc1d24c4e9d80b9258292e0535f17b6af4af052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8464,13 +8488,13 @@ Composes a transaction to send a quantity of an asset to another address. } ``` -### Compose Sweep [GET /v2/addresses/{address}/compose/sweep{?destination}{&flags}{&memo}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Sweep [GET /v2/addresses/{address}/compose/sweep{?destination}{&flags}{&memo}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&custom_inputs}{&verbose}{&show_unconfirmed}] Composes a transaction to Sends all assets and/or transfer ownerships to a destination address. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be sending - + destination: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address that will be sending + + destination: `bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (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 @@ -8506,9 +8530,11 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + custom_inputs (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8519,10 +8545,10 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti ``` { "result": { - "rawtransaction": "02000000000101b562c0730715780ae991157f93d3a949c1cfaba285b7f621eea8d3dda79da50c000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000236a218a5634f40393d59bc3c1a4c12be1661951369bb953fbb8da7bd34ffdc310d0a1fe59b3052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101b1f29da89ff781645e4d4569890b4ea11c348df771227e76e632abe62a2c18d6000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000236a21a50aaca7afa248c34a7a84375d92596f2d74cf120035819eccae8aa29430289f846eb3052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "flags": 7, "memo": "FFFF" }, @@ -8531,13 +8557,13 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti } ``` -### Compose Dispense [GET /v2/addresses/{address}/compose/dispense{?dispenser}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Dispense [GET /v2/addresses/{address}/compose/dispense{?dispenser}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&custom_inputs}{&verbose}{&show_unconfirmed}] Composes a transaction to send BTC to a dispenser. + Parameters - + address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs` (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` @@ -8572,9 +8598,11 @@ Composes a transaction to send BTC to a dispenser. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + custom_inputs (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8585,10 +8613,10 @@ Composes a transaction to send BTC to a dispenser. ``` { "result": { - "rawtransaction": "020000000001014d628a3e65cc9537aa62c9b42db1b2df0e61d973978cac54482a0953d6fe49d70200000016001457841d54055a90ed31a47e9821fd3118e6e78592ffffffff03e803000000000000160014ae2b0c1095bbdf23747f76b242be716817701b7800000000000000000c6a0ac17afa5cc1158f0972f85fb808270100000016001457841d54055a90ed31a47e9821fd3118e6e7859202000000000000", + "rawtransaction": "02000000000101b4bd5c6d249d8383a77c633e9949fed0f40d6cc2478eff7f2160d71bd487524002000000160014a65050a67bf322ed4c4b1bf06798d4b6cefea9f3ffffffff03e803000000000000160014e816f5562a0ee9cab6015173bbded2ef7b58ca5d00000000000000000c6a0a91fca4a7d199133b19e075b8082701000000160014a65050a67bf322ed4c4b1bf06798d4b6cefea9f302000000000000", "params": { - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "quantity": 1000 }, "name": "dispense" @@ -8596,12 +8624,12 @@ Composes a transaction to send BTC to a dispenser. } ``` -### Compose Fairminter [GET /v2/addresses/{address}/compose/fairminter{?asset}{&asset_parent}{&price}{&quantity_by_price}{&max_mint_per_tx}{&hard_cap}{&premint_quantity}{&start_block}{&end_block}{&soft_cap}{&soft_cap_deadline_block}{&minted_asset_commission}{&burn_payment}{&lock_description}{&lock_quantity}{&divisible}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Fairminter [GET /v2/addresses/{address}/compose/fairminter{?asset}{&asset_parent}{&price}{&quantity_by_price}{&max_mint_per_tx}{&hard_cap}{&premint_quantity}{&start_block}{&end_block}{&soft_cap}{&soft_cap_deadline_block}{&minted_asset_commission}{&burn_payment}{&lock_description}{&lock_quantity}{&divisible}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&custom_inputs}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be issuing the asset + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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: `` @@ -8668,9 +8696,11 @@ Composes a transaction to issue a new asset using the FairMinter protocol. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + custom_inputs (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8681,9 +8711,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. ``` { "result": { - "rawtransaction": "02000000000101fbdb9417de62f10b9120f7e3e29518b3e1b564d76efe4eeb9f5fb40810cb2695000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000316a2f1a876d6cad75159c126a8d28d8dba1389dc8a65bf6ccf9207d08f02f106901dfa932f2675b34d4dd1b20eaa13bd61e99af052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101aeda8bbe594a7913d8ad56178c4c467b20eff1a87547a9adf01e71349594065f000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000316a2fa94f05654938d4eaede6a1121b5274fb3a0bb6ac0271243baeb6e1ad194f5755e07e69b60436552fb263d504bd5d35afaf052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -8707,12 +8737,12 @@ Composes a transaction to issue a new asset using the FairMinter protocol. } ``` -### Compose Fairmint [GET /v2/addresses/{address}/compose/fairmint{?asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Fairmint [GET /v2/addresses/{address}/compose/fairmint{?asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&custom_inputs}{&verbose}{&show_unconfirmed}] Composes a transaction to mint a quantity of an asset using the FairMinter protocol. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be minting the asset + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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` @@ -8749,9 +8779,11 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + custom_inputs (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8762,15 +8794,15 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto ``` { "result": { - "rawtransaction": "02000000000101ebc7922edff8bf7972bfbfc17ef1d69520687cb4a252ed0c25bc335b176b630a000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000166a14e8c879a220caa9210c9d86643046c47edc54aa60d4b6052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "0200000000010102b43726d6440d15a446ff68fb899f2776c2d02e6abd5ef231ebea43be54ee76000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000166a14829f320d966192391e5cec28e80f9d5ebb721b85e8b6052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -8781,15 +8813,15 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto } ``` -### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&custom_inputs}{&verbose}{&show_unconfirmed}] Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address from which the assets are attached + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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: `7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1` (str, optional) - The utxo to attach the assets to + + destination: `08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -8824,9 +8856,11 @@ Composes a transaction to attach assets from an address to UTXO. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + custom_inputs (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8837,10 +8871,10 @@ Composes a transaction to attach assets from an address to UTXO. ``` { "result": { - "rawtransaction": "02000000000106fe554038ba01c7f82d1ded9634c1ef501e0c316f39b2f6af7d80141bcaca2bd0000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffdc2ead4b27cfb424aa6e8cc185a5e4a96185af16e10e61164e0f07e4c2b5a317000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffc0f4470bf4218838b2ade8b3782b44678183b2e5fe80c83c5b14ec65bf014a89000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffcdf72a8e033e6ffc183a3728a3842c94648a627ae5438f47b8c8f13022d6d1dd000000001600147ed28f21558ee8ecd78a339105e7756213901b6efffffffffecec22cad05d1f474cdd73f8e9ffa05eb64cf664aebe3b08aaf0bb644770738000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffb9441e2420b5197ae1b9eddcc48ff658d0a1da2e5a5cd889e1fb8c60ea4609e3000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff04e803000000000000695121029f655253bae89cf966929abd462a943a4654655b5b0150b83790569507fe3ae3210295b3c028a258fedebd0f039dac617ac2b59e7194e21ac9a98db0f47cd8943e1c21038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aee803000000000000695121029f655253bae89cf966c2c8bd0c67962840003b055e0406bc3cc5008756f22bdc2103c5fc8e2de81af98aea4800ccfb2233cdf7d466d9b64d93e38eb4a5798d9d6bb421038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aee80300000000000069512102b5655253bae89cf96692caed066494372e7a53405d5652bc04fd63e262ca4fb32103a7cbb74fd12c9bb3897964fbc91002afc2e402e0867ea3d5bad2c34cecac0ec421038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aec13922fc060000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106804cd9b18bf60a573fb2d1c03c710381c44515511ad156a3bc37121fc70892a1000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffffdfd14dd8e88ab621ea37029093596baf7383b544360acc5ac59421b73e896b18000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff3d0d0ee5fe6c149771f9d6f83ca13ae7c1598b2defbd7f814c69e14b17ff79f0000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff72885bbf9c43e8754b7d174e37ebeed41f5ecdb3274f3571d97d311b5e26be1d000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44efffffffff2b3ec057be470c3f5a203e305950a74ca80f5afae0fba1bc09b9c82f6a96cab000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffffb93a1f9570a28a602720f880f42dd7165bfa9bec5369840067e039e0955c3e3f000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff04e803000000000000695121028e35a0199edd3a15ec7aad606b3346020f1a60adafe9e5688ef272573d8f6b5c210396f977f73f9d46f02b0320ab49bd6b8ce88b94f4d446162b6ac19522941d24d0210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53aee803000000000000695121038e35a0199edd3a15ec26fa667a7340105a1035fca7fcbd398cba331b6bdb6bd3210385ae6cad68d846fb765926f50de26cc3a9d183a0df4d43326fc89573974b21ba210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53aee80300000000000069512102a435a0199edd3a15ec7cf9312c7d460f673753b7f5a8ec68b88a03220dea52a02102e49d0fcf0aef749e4560159338d10ef69fb3e1c2ba7475575af9a012a17f407e210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53ae3a3a22fc060000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -8857,13 +8891,13 @@ Composes a transaction to attach assets from an address to UTXO. } ``` -### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?destination}{&asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?destination}{&asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&custom_inputs}{&verbose}{&show_unconfirmed}] Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to detach the assets to + + utxo: `e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147:1` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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 @@ -8899,9 +8933,11 @@ Composes a transaction to detach assets from UTXO to an address. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + custom_inputs (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8912,10 +8948,10 @@ Composes a transaction to detach assets from UTXO to an address. ``` { "result": { - "rawtransaction": "02000000000101a7f3d5ff6cad0216060a55b7ad0a1b032687857cd0e9603223a183e5cd328ff4010000001600141811a7fe8c4732c201737549ba5dabb9e5ba8b76ffffffff04e80300000000000069512102d9e4e3e9266c080644ed9f64fec2af0f526747fd0c4bac4dddd10d11f9417b2f2102eb2503919a6e96ca62d48ebfdc837a09e9ba0e366a64d1c0e6b2e3405da3f1b2210305d4947b8fd51fc782076336b7006bffdd6e0ea462eb4be146901788a6ffdd1153aee80300000000000069512102d9e4e3e9266c080644e89d66a5c2fa59046511a90342fc008d814c57fe002ec22102bf2754919e6497c138d3cfeadbc72a41ffbc1920383cd086e0e4b00013feb4b9210305d4947b8fd51fc782076336b7006bffdd6e0ea462eb4be146901788a6ffdd1153aee80300000000000069512102f3e4e3e9266c080644f38a24a2c0f641694072b40548fd4cefe23e23cf711ea82102d24133a6f956a3f255e6b88fefb2183988db6a545d51e4f08782d5716b93c378210305d4947b8fd51fc782076336b7006bffdd6e0ea462eb4be146901788a6ffdd1153aee8980827010000001600141811a7fe8c4732c201737549ba5dabb9e5ba8b7602000000000000", + "rawtransaction": "0200000000010147c14072d859a1217ab947cd9fe3c2ba27b292be1f64ab8b0e8d732056a3b4e701000000160014677f6f646ff49ca15f79040ba01dd48ab687297dffffffff04e803000000000000695121034669afa3fd6d5ad1d6fd42375e3646b439d65a9ca6a0232089686a8a9b4df881210300538bca331bb5cee933094d40fd40afb7d4b060425a97858537b56c641041612103cbce06898feb5b045a9b357cf60583501fff9ff959e0f2498c545dfa32bd2bfb53aee803000000000000695121024669afa3fd6d5ad1d6ac1e64043515b33c835998a6a92a38db6e209ccb5efec321035a018bc3271bb79aa3704b1f44a700aefcd5e3711400ce848938a532300b07f92103cbce06898feb5b045a9b357cf60583501fff9ff959e0f2498c545dfa32bd2bfb53aee803000000000000695121026c69afa3fd6d5ad1d6a15236523044fb54a338d0a0a32b74b90d52e8fa2fce0721023462eda8562287acdb013e2f219e72ca84edd603266ea0e7bc00d45e557170eb2103cbce06898feb5b045a9b357cf60583501fff9ff959e0f2498c545dfa32bd2bfb53ae0f99082701000000160014677f6f646ff49ca15f79040ba01dd48ab687297d02000000000000", "params": { - "source": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1", - "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147:1", + "destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -8975,8 +9011,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 10000000000, @@ -8984,16 +9020,16 @@ Returns the valid assets "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726509746, - "last_issuance_block_time": 1726509775, + "first_issuance_block_time": 1726736992, + "last_issuance_block_time": 1726737011, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", - "owner": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", + "issuer": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", + "owner": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", "divisible": true, "locked": false, "supply": 100000000000, @@ -9001,16 +9037,16 @@ Returns the valid assets "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1726509741, - "last_issuance_block_time": 1726509741, + "first_issuance_block_time": 1726736988, + "last_issuance_block_time": 1726736988, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -9018,16 +9054,16 @@ Returns the valid assets "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726509706, - "last_issuance_block_time": 1726509706, + "first_issuance_block_time": 1726736952, + "last_issuance_block_time": 1726736952, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 40, @@ -9035,16 +9071,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726509644, - "last_issuance_block_time": 1726509648, + "first_issuance_block_time": 1726736900, + "last_issuance_block_time": 1726736905, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 19, @@ -9052,8 +9088,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726509617, - "last_issuance_block_time": 1726509639, + "first_issuance_block_time": 1726736883, + "last_issuance_block_time": 1726736896, "supply_normalized": "0.00000019" } ], @@ -9081,8 +9117,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 10000000000, @@ -9090,8 +9126,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1726509578, - "last_issuance_block_time": 1726509592, + "first_issuance_block_time": 1726736846, + "last_issuance_block_time": 1726736859, "supply_normalized": "100.00000000" } } @@ -9122,7 +9158,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9130,14 +9166,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9145,7 +9181,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -9162,7 +9198,7 @@ Returns the asset balances Returns the balance of an address and asset + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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` @@ -9174,7 +9210,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -9223,9 +9259,9 @@ Returns the orders of an asset "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9240,7 +9276,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509903, + "block_time": 1726737160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9266,9 +9302,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9283,7 +9319,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726509899, + "block_time": 1726737147, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9309,9 +9345,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "block_index": 186, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -9326,7 +9362,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726737130, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9352,9 +9388,9 @@ Returns the orders of an asset }, { "tx_index": 50, - "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "tx_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "block_index": 185, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -9369,7 +9405,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726737126, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9395,9 +9431,9 @@ Returns the orders of an asset }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", "block_index": 186, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9412,7 +9448,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726737130, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9472,13 +9508,13 @@ Returns the orders of an asset { "result": [ { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 52, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -9492,7 +9528,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726737130, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9512,13 +9548,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 50, - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -9532,7 +9568,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726737126, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9552,13 +9588,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", "tx0_index": 47, - "tx0_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 48, - "tx1_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -9572,7 +9608,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726509796, + "block_time": 1726737039, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9652,20 +9688,20 @@ Returns the credits of an asset "result": [ { "block_index": 192, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -9673,20 +9709,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "60c597d6868e45719209ae17a0338cb00c81d5d64d82363d6dc68744ecf36351", + "event": "695e264b5af5d3a47a74b0af34231b677ac87beea166322a05cb6a6347abafac", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509592, + "block_time": 1726736859, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -9694,20 +9730,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17", + "event": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509587, + "block_time": 1726736854, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -9715,20 +9751,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "event": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509587, + "block_time": 1726736854, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -9740,16 +9776,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17", + "event": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509587, + "block_time": 1726736854, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -9805,16 +9841,16 @@ Returns the debits of an asset "result": [ { "block_index": 193, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "event": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -9826,16 +9862,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -9847,16 +9883,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -9868,16 +9904,16 @@ Returns the debits of an asset }, { "block_index": 191, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "event": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509903, + "block_time": 1726737160, "asset_info": { "divisible": true, "asset_longname": null, @@ -9889,16 +9925,16 @@ Returns the debits of an asset }, { "block_index": 189, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509894, + "block_time": 1726737143, "asset_info": { "divisible": true, "asset_longname": null, @@ -9938,20 +9974,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 40, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", "block_index": 153, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726736978, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -9995,14 +10031,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "60c597d6868e45719209ae17a0338cb00c81d5d64d82363d6dc68744ecf36351", + "tx_hash": "695e264b5af5d3a47a74b0af34231b677ac87beea166322a05cb6a6347abafac", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -10017,20 +10053,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726509592, + "block_time": 1726736859, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17", + "tx_hash": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -10045,20 +10081,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726509587, + "block_time": 1726736854, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -10073,20 +10109,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726736850, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -10101,7 +10137,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1726509578, + "block_time": 1726736846, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10135,10 +10171,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10146,7 +10182,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "divisible": true, "asset_longname": null, @@ -10159,10 +10195,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 53, - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03", + "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a", "block_index": 187, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10170,7 +10206,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509886, + "block_time": 1726737134, "asset_info": { "divisible": true, "asset_longname": null, @@ -10183,10 +10219,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 42, - "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", "block_index": 155, - "source": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0", - "destination": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1", + "source": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5:0", + "destination": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10194,7 +10230,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509741, + "block_time": 1726736988, "asset_info": { "divisible": true, "asset_longname": null, @@ -10207,10 +10243,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 41, - "tx_hash": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b", + "tx_hash": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5", "block_index": 154, - "source": "9d34a868637906281a292d50facdb8551872a2d08cd28cf7a895f10f80cb0b32:0", - "destination": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0", + "source": "0e5ef2ca6efc97a98e3cfc14841e15218cffff5e3997610098a146a1a32d3e4c:0", + "destination": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10218,7 +10254,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509735, + "block_time": 1726736983, "asset_info": { "divisible": true, "asset_longname": null, @@ -10267,18 +10303,18 @@ Returns the dispensers of an asset "result": [ { "tx_index": 32, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10288,7 +10324,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726509701, + "block_time": 1726736947, "asset_info": { "divisible": true, "asset_longname": null, @@ -10304,9 +10340,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10315,7 +10351,7 @@ Returns the dispensers of an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10325,7 +10361,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726736939, "asset_info": { "divisible": true, "asset_longname": null, @@ -10341,9 +10377,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "ee65a85736487849d0d1ac06ea09424e477194edd27c7c31afbe06f4fbb6142c", + "tx_hash": "5a9a68441db332e17f18f00c8ea2794b8e8357f65ba5c4a19f5c761c07c18a77", "block_index": 142, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10352,7 +10388,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "origin": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10362,7 +10398,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509684, + "block_time": 1726736931, "asset_info": { "divisible": true, "asset_longname": null, @@ -10378,9 +10414,9 @@ Returns the dispensers of an asset }, { "tx_index": 26, - "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10389,7 +10425,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10399,7 +10435,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -10424,7 +10460,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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` @@ -10437,9 +10473,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10448,7 +10484,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10458,7 +10494,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726736939, "asset_info": { "divisible": true, "asset_longname": null, @@ -10508,7 +10544,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -10516,7 +10552,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -10525,7 +10561,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -10533,7 +10569,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -10542,7 +10578,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -10550,7 +10586,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -10559,7 +10595,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -10596,27 +10632,27 @@ Returns the dispenses of an asset { "tx_index": 33, "dispense_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10631,7 +10667,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726509701, + "block_time": 1726736947, "asset_info": { "divisible": true, "asset_longname": null, @@ -10645,19 +10681,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10665,7 +10701,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10680,7 +10716,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -10694,19 +10730,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10714,7 +10750,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10729,7 +10765,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726736922, "asset_info": { "divisible": true, "asset_longname": null, @@ -10772,8 +10808,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 0, @@ -10781,8 +10817,8 @@ Returns asset subassets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1726509760, - "last_issuance_block_time": 1726509760, + "first_issuance_block_time": 1726736996, + "last_issuance_block_time": 1726736996, "supply_normalized": "0.00000000" } ], @@ -10814,10 +10850,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -10842,7 +10878,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509592 + "block_time": 1726736859 } ], "next_cursor": null, @@ -10873,64 +10909,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "60c597d6868e45719209ae17a0338cb00c81d5d64d82363d6dc68744ecf36351", + "tx_hash": "695e264b5af5d3a47a74b0af34231b677ac87beea166322a05cb6a6347abafac", "tx_index": 13, "block_index": 125, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509592, + "block_time": 1726736859, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } }, { - "tx_hash": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17", + "tx_hash": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8", "tx_index": 12, "block_index": 124, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509587, + "block_time": 1726736854, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } }, { - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", "tx_index": 11, "block_index": 123, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726736850, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } @@ -10946,7 +10982,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address of the mints to return + + address: `bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (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` @@ -10965,22 +11001,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", "tx_index": 11, "block_index": 123, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726736850, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } @@ -11024,9 +11060,9 @@ Returns all the orders "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11041,7 +11077,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509903, + "block_time": 1726737160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11067,9 +11103,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11084,7 +11120,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726509899, + "block_time": 1726737147, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11110,9 +11146,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "block_index": 186, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11127,7 +11163,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726737130, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11153,9 +11189,9 @@ Returns all the orders }, { "tx_index": 50, - "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "tx_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "block_index": 185, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11170,7 +11206,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726737126, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11196,9 +11232,9 @@ Returns all the orders }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", "block_index": 186, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11213,7 +11249,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726737130, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11248,7 +11284,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232` (str, required) - The hash of the transaction that created the order + + order_hash: `08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625` (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. @@ -11260,9 +11296,9 @@ Returns the information of an order { "result": { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11277,7 +11313,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509903, + "block_time": 1726737160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11309,7 +11345,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1` (str, required) - The hash of the transaction that created the order + + order_hash: `5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60` (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 @@ -11334,13 +11370,13 @@ Returns the order matches of an order { "result": [ { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 52, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11354,7 +11390,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726737130, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11374,13 +11410,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 50, - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11394,7 +11430,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726737126, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11424,7 +11460,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1` (str, required) - The hash of the transaction that created the order + + order_hash: `5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60` (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 @@ -11443,15 +11479,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 51, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", "block_index": 185, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "btc_amount": 2000, - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "status": "valid", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726737126, "btc_amount_normalized": "0.00002000" } ], @@ -11493,9 +11529,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11513,7 +11549,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509903, + "block_time": 1726737160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11539,9 +11575,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11559,7 +11595,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509899, + "block_time": 1726737147, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11585,9 +11621,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "block_index": 186, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11605,7 +11641,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726509871, + "block_time": 1726737130, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11631,9 +11667,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "tx_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "block_index": 185, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11651,7 +11687,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726509867, + "block_time": 1726737126, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11677,9 +11713,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", "block_index": 186, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11697,7 +11733,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509871, + "block_time": 1726737130, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11758,13 +11794,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 52, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11781,7 +11817,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509871, + "block_time": 1726737130, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11801,13 +11837,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 50, - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11824,7 +11860,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509867, + "block_time": 1726737126, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11844,13 +11880,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", "tx0_index": 47, - "tx0_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 48, - "tx1_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -11867,7 +11903,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509796, + "block_time": 1726737039, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11923,13 +11959,13 @@ Returns all the order matches { "result": [ { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 52, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11943,7 +11979,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726737130, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11963,13 +11999,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 50, - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11983,7 +12019,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726737126, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12003,13 +12039,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", "tx0_index": 47, - "tx0_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 48, - "tx1_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12023,7 +12059,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726509796, + "block_time": 1726737039, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12191,66 +12227,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "2504c4bdafa1c2cab23605685e6a8040748f7d6df91f857b42f1cb259d3a91e0", + "tx_hash": "accb843c4f0dc47c8feaca2ac467eb476f25798fa16c2133aa4f15da2e62a5e5", "block_index": 121, - "source": "bcrt1qyzyw25seaw22494hrmtlwsm3d5mqyp93fd25da", + "source": "bcrt1qvf529w4jc36v4txgxtthdzc2jvgzn0qpkdd8tw", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1726509573, + "block_time": 1726736841, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "6322f2e8e202acc14afc1b22b19ac8ab56b27f17712400d116568a1da72222cc", + "tx_hash": "20782a298e51d2d1a7f9c3b920f9c72b51d9a574c6f77e02e6adb87410bc6b1a", "block_index": 120, - "source": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", + "source": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1726509569, + "block_time": 1726736837, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "38fc46963011e93a419c7d62e149905064cd942d143e7452ee3a67a6183f9e98", + "tx_hash": "bd3f991a5d7dbc12e586a84d6642b6b84a89782953a4cffffa667c9f1ff937df", "block_index": 119, - "source": "bcrt1qqt2dxp9pmcgvjrckeyuy29myfghay5le53hl0d", + "source": "bcrt1qpf2m3cll06k4j3gqerdgh90e6zqeshl6k209nc", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1726509565, + "block_time": 1726736834, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "f8d15199587f10cbe7ee5233aba5c8fcc99d9ba2e1c6995360c80912f6eb2a6c", + "tx_hash": "88e6ae087135607c1cd02b944bfcaad8743c914c1876d257b136888cb052591e", "block_index": 118, - "source": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1726509560, + "block_time": 1726736829, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "7b45fa1f2e5deab279659946a3af0948830f02d9df9dd929afc3d897f23384ef", + "tx_hash": "3421718e44114f29c722f2912b34cefecfdc22b80b7272624ed2c2116f97d5f1", "block_index": 117, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1726509556, + "block_time": 1726736825, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12293,18 +12329,18 @@ Returns all dispensers "result": [ { "tx_index": 32, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -12314,7 +12350,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726509701, + "block_time": 1726736947, "asset_info": { "divisible": true, "asset_longname": null, @@ -12330,9 +12366,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -12341,7 +12377,7 @@ Returns all dispensers "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12351,7 +12387,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726736939, "asset_info": { "divisible": true, "asset_longname": null, @@ -12367,9 +12403,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "ee65a85736487849d0d1ac06ea09424e477194edd27c7c31afbe06f4fbb6142c", + "tx_hash": "5a9a68441db332e17f18f00c8ea2794b8e8357f65ba5c4a19f5c761c07c18a77", "block_index": 142, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12378,7 +12414,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "origin": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12388,7 +12424,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509684, + "block_time": 1726736931, "asset_info": { "divisible": true, "asset_longname": null, @@ -12404,9 +12440,9 @@ Returns all dispensers }, { "tx_index": 26, - "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12415,7 +12451,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12425,7 +12461,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -12450,7 +12486,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e` (str, required) - The hash of the dispenser to return + + dispenser_hash: `2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9` (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. @@ -12462,9 +12498,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12473,7 +12509,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12483,7 +12519,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -12505,7 +12541,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e` (str, required) - The hash of the dispenser to return + + dispenser_hash: `2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9` (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 @@ -12525,19 +12561,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12545,7 +12581,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12560,7 +12596,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -12574,19 +12610,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12594,7 +12630,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12609,7 +12645,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726736922, "asset_info": { "divisible": true, "asset_longname": null, @@ -12651,20 +12687,20 @@ Returns all the dividends "result": [ { "tx_index": 40, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", "block_index": 153, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726736978, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -12689,7 +12725,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00` (str, required) - The hash of the dividend to return + + dividend_hash: `b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61` (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. @@ -12701,20 +12737,20 @@ Returns a dividend by its hash { "result": { "tx_index": 40, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", "block_index": 153, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726736978, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -12736,7 +12772,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61` (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 @@ -12759,12 +12795,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "event": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", "tx_index": 40, - "utxo": "9d34a868637906281a292d50facdb8551872a2d08cd28cf7a895f10f80cb0b32:0", - "utxo_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "utxo": "0e5ef2ca6efc97a98e3cfc14841e15218cffff5e3997610098a146a1a32d3e4c:0", + "utxo_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726736978, "asset_info": { "divisible": true, "asset_longname": null, @@ -12776,16 +12812,16 @@ Returns a dividend distribution by its hash }, { "block_index": 153, - "address": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0", + "address": "bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "event": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509732, + "block_time": 1726736978, "asset_info": { "divisible": true, "asset_longname": null, @@ -12831,27 +12867,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", + "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", "transaction_count": 1, - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "block_time": 1726509912 + "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", + "block_time": 1726737169 }, "tx_hash": null, "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "tx_index": 59 }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 }, { "event_index": 533, @@ -12860,12 +12896,12 @@ Returns all events "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "status": "valid", "tag": "64657374726f79", - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "tx_index": 59, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -12875,24 +12911,24 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 193, - "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "event": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -12902,25 +12938,25 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", "block_index": 193, - "block_time": 1726509912, + "block_time": 1726737169, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "tx_index": 59, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -12940,9 +12976,9 @@ Returns all events }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 } ], "next_cursor": 530, @@ -12970,15 +13006,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", + "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", "transaction_count": 1, - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "block_time": 1726509912 + "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", + "block_time": 1726737169 }, "tx_hash": null, "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 } } ``` @@ -13056,16 +13092,16 @@ Returns the events filtered by event name "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -13075,78 +13111,78 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726509899, + "block_time": 1726737147, "asset_info": { "divisible": true, "asset_longname": null, @@ -13156,24 +13192,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726737147 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "event": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "divisible": true, "asset_longname": null, @@ -13183,9 +13219,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "block_time": 1726509890 + "block_time": 1726737138 } ], "next_cursor": 490, @@ -13241,27 +13277,27 @@ Returns all the dispenses { "tx_index": 33, "dispense_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13276,7 +13312,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726509701, + "block_time": 1726736947, "asset_info": { "divisible": true, "asset_longname": null, @@ -13290,19 +13326,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13310,7 +13346,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13325,7 +13361,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -13339,19 +13375,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13359,7 +13395,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13374,7 +13410,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726736922, "asset_info": { "divisible": true, "asset_longname": null, @@ -13416,10 +13452,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -13427,7 +13463,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "divisible": true, "asset_longname": null, @@ -13440,10 +13476,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13451,11 +13487,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -13464,10 +13500,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13475,11 +13511,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -13488,10 +13524,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 53, - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03", + "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a", "block_index": 187, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -13499,7 +13535,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509886, + "block_time": 1726737134, "asset_info": { "divisible": true, "asset_longname": null, @@ -13512,10 +13548,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 42, - "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", "block_index": 155, - "source": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0", - "destination": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1", + "source": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5:0", + "destination": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -13523,7 +13559,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509741, + "block_time": 1726736988, "asset_info": { "divisible": true, "asset_longname": null, @@ -13565,14 +13601,14 @@ Returns all the issuances "result": [ { "tx_index": 46, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -13587,20 +13623,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509780, + "block_time": 1726737024, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "99d6840da9077ad147d3cb8e3a527ebcb05445b5e72d0fa4f9429f91a2ed5f9f", + "tx_hash": "d7cbe9778e884b6f2582d7a57940b012bf1ddb5b700e7dd072c69bedd7e9b3a8", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -13615,20 +13651,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726509775, + "block_time": 1726737011, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "edf7eb0a60e46ad53360d769c00fbd350628dff893bb6f1869570c9fdcfc71af", + "tx_hash": "fc3408b9506f75d2a3f1a65d6fe00a222a56fde09335e34953794e0293f63afe", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -13643,20 +13679,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509760, + "block_time": 1726736996, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "23d681cb0c9d9310fd8150fcabf440c84cae363db926d0fcde70cbe12373f96f", + "tx_hash": "2ee2bf2492eaafe424159ad97df4e43df151dd3c12ffe7c393b7bf9256b9bb32", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -13671,20 +13707,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509746, + "block_time": 1726736992, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", - "issuer": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", + "source": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", + "issuer": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", "transfer": false, "callable": false, "call_date": 0, @@ -13699,7 +13735,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509741, + "block_time": 1726736988, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -13714,7 +13750,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491` (str, required) - The hash of the transaction to return + + tx_hash: `d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c` (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. @@ -13726,14 +13762,14 @@ Returns the issuances of a block { "result": { "tx_index": 46, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -13748,7 +13784,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509780, + "block_time": 1726737024, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -13780,16 +13816,16 @@ Returns all sweeps "result": [ { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "fee_paid_normalized": "0.00600000" } ], @@ -13803,7 +13839,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b` (str, required) - The hash of the transaction to return + + tx_hash: `d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9` (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. @@ -13816,16 +13852,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "fee_paid_normalized": "0.00600000" } ], @@ -13859,9 +13895,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a", + "tx_hash": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d", "block_index": 138, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -13869,14 +13905,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726509656, + "block_time": 1726736913, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "1629a61f230d38e661231eeaac724d9336e9413ce0a9f145c49d57030ae05b8d", + "tx_hash": "b1010bdab734a9e4cce02ad65bcf68fbc73fe1bb28f21c9b91d6cf68c1a62186", "block_index": 137, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -13884,7 +13920,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726509652, + "block_time": 1726736909, "fee_fraction_int_normalized": "0.00000000" } ], @@ -13898,7 +13934,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a` (str, required) - The hash of the transaction to return + + tx_hash: `05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d` (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. @@ -13910,9 +13946,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a", + "tx_hash": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d", "block_index": 138, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -13920,7 +13956,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726509656, + "block_time": 1726736913, "fee_fraction_int_normalized": "0.00000000" } } @@ -13950,10 +13986,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -13978,13 +14014,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509644 + "block_time": 1726736900 }, { - "tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14009,13 +14045,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509617 + "block_time": 1726736883 }, { - "tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16", + "tx_hash": "c4de72bddcecc2b88f8e0746e02446a566b0fca27fe3e4b9bd4c20e550f9089a", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14040,13 +14076,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509613 + "block_time": 1726736879 }, { - "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14071,7 +14107,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509592 + "block_time": 1726736859 } ], "next_cursor": null, @@ -14114,7 +14150,7 @@ Returns the mints by fairminter Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p,bcrt1qqt2dxp9pmcgvjrckeyuy29myfghay5le53hl0d` (str, required) - The addresses to search for + + addresses: `bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa,bcrt1qpf2m3cll06k4j3gqerdgh90e6zqeshl6k209nc` (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. @@ -14133,8 +14169,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", - "address": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p" + "txid": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "address": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa" }, { "vout": 2, @@ -14142,8 +14178,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", - "address": "bcrt1qqt2dxp9pmcgvjrckeyuy29myfghay5le53hl0d" + "txid": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", + "address": "bcrt1qpf2m3cll06k4j3gqerdgh90e6zqeshl6k209nc" } ], "next_cursor": null, @@ -14156,7 +14192,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2` (str, required) - The address to search for + + address: `bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw` (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 @@ -14172,28 +14208,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03" + "tx_hash": "35f402483a54a03e637b77b2ff618642d6e435f34c3c89219374add7f500dc22" }, { - "tx_hash": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17" + "tx_hash": "214738c81dae0c37908684349735808636cb192d94e707070ce65e195da93129" }, { - "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21" + "tx_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543" }, { - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "7c7028f67836beaa5fb2de94c6daea92f4efba5aeae1c1b193c994c5ac14cf51" }, { - "tx_hash": "d2f3afeb63580aa006eee4e055138c2903f7e8172876f688b7241e2ebbe5f172" + "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a" }, { - "tx_hash": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88" + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" }, { - "tx_hash": "58f41fb8b8ec22f12daa5aad5a4f72194f54f652542abd409766afe4de2798b9" + "tx_hash": "b8e39db42ecddab4c8ad0e1a4b6eb762874e130b8210de94b4478870955b1bab" }, { - "tx_hash": "cd209fe04d43a38dcf842ad0d74fd71e123c66549db03f3650099a7e5f0297be" + "tx_hash": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8" } ], "next_cursor": null, @@ -14206,7 +14242,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99` (str, required) - The address to search for. + + address: `bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r` (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. @@ -14219,8 +14255,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 1, - "tx_hash": "39808e5b91587a72ae37c23d618a8526cf4c292592c2681dd3400837654b0786" + "block_index": 5, + "tx_hash": "b50e711e978f5a5477fc4cf4e91bb2d3b9dac77d07cf870bf425744458692f65" } } ``` @@ -14230,7 +14266,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p` (str, required) - The address to search for + + address: `bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa` (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 @@ -14251,7 +14287,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535" + "txid": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2" } ], "next_cursor": null, @@ -14264,7 +14300,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - Address to get pubkey for. + + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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. @@ -14276,7 +14312,7 @@ Get pubkey for an address. ``` { - "result": "038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a9387076169" + "result": "0375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce" } ``` @@ -14285,7 +14321,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce` (str, required) - The transaction hash + + tx_hash: `71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24` (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. @@ -14297,7 +14333,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101ba21bea38dc876b1215be6872f0c75a77328eb90aea0f5e5f5d687b38e7ca5050300000000ffffffff020000000000000000226a20e661db2d032f2a3e7844cfb698121f85b2b30cced7b8b215b0e8fe1f5fd1a779680b0a2701000000160014ae2b0c1095bbdf23747f76b242be716817701b780247304402205f232b082605ae63445a865c556deef60158bbdf42b4ac8953b712ef33fe80a202203c7aebb1b51e30698a54c8e0177213dcbcd480529ede188b0a18129a80637fef0121035352a3478786437bb2f973478638b43a6bee4a925c1b0efd94dc193e94b198b500000000" + "result": "020000000001013bdf1654a90fe1783a50681199de6179853c042521596687d881994ee8eb300c0300000000ffffffff020000000000000000226a205780b5fb5db97431be86268e03356b0778fabaeb4ebdeeec9c70b454de905fd7680b0a2701000000160014e816f5562a0ee9cab6015173bbded2ef7b58ca5d02473044022043f9fd67ea65c1aef5456a374bfa1ae33b4ada4f72edb7ad41d1fb5d888a2a6f022032e44ab507cf7bc3aaa686b96288e3b68a4599ea1d7a08af3f3a1c008c077b400121038ef0fcfc05b3050b57c3e601c310e1a138a8d148b1ea0c333eff1fe919f4999c00000000" } ``` @@ -14319,7 +14355,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 68546 + "result": 68456 } ``` @@ -14390,26 +14426,26 @@ Returns all mempool events { "result": [ { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "tx_index": 60 } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "memo": null, "quantity": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "status": "valid", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "tx_index": 60, "asset_info": { "divisible": true, @@ -14422,19 +14458,19 @@ Returns all mempool events } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "CREDIT", "params": { - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -14446,19 +14482,19 @@ Returns all mempool events } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 193, - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -14470,27 +14506,27 @@ Returns all mempool events } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726509917.0831685, + "block_time": 1726737173.5878787, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f92", + "data": "0200000000000000010000000000002710803e32791d2b81299971b964239daaa0099a945708", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "tx_index": 60, - "utxos_info": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6:1", + "utxos_info": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "memo": null, "asset_info": { "divisible": true, @@ -14534,19 +14570,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "CREDIT", "params": { - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -14568,7 +14604,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6` (str, required) - The hash of the transaction to return + + tx_hash: `8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24` (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 @@ -14588,26 +14624,26 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "tx_index": 60 } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "memo": null, "quantity": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "status": "valid", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "tx_index": 60, "asset_info": { "divisible": true, @@ -14620,19 +14656,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "CREDIT", "params": { - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -14644,19 +14680,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 193, - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -14668,27 +14704,27 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726509917.0831685, + "block_time": 1726737173.5878787, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f92", + "data": "0200000000000000010000000000002710803e32791d2b81299971b964239daaa0099a945708", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "tx_index": 60, - "utxos_info": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6:1", + "utxos_info": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "memo": null, "asset_info": { "divisible": true, diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index cd122bab0b..4b7c07e069 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -322,8 +322,9 @@ def handle_route(**kwargs): except Exception as e: capture_exception(e) logger.error("Error in API: %s", e) - # import traceback - # print(traceback.format_exc()) # for debugging + import traceback + + print(traceback.format_exc()) # for debugging return return_result( 503, error="Unknown error", start_time=start_time, query_args=query_args ) diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index eb8cf0a637..3547416ab2 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -385,7 +385,11 @@ def construct_coin_selection( make_outkey(output) not in filter_unspents_utxo_locks and self.make_outkey_vin_txid(output["txid"], output["vout"]) not in filter_unspents_p2sh_locks - and f"{output['txid']}:{output['vout']}" not in exclude_utxos.split(",") + and ( + not exclude_utxos + or not isinstance(exclude_utxos, str) + or f"{output['txid']}:{output['vout']}" not in exclude_utxos.split(",") + ) ): filtered_unspent.append(output) unspent = filtered_unspent @@ -1112,7 +1116,7 @@ def get_dust_return_pubkey(source, provided_pubkeys, encoding): ), "exclude_utxos": ( str, - "", + None, "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", ), "return_only_data": ( @@ -1122,7 +1126,7 @@ def get_dust_return_pubkey(source, provided_pubkeys, encoding): ), "custom_inputs": ( str, - "", + None, "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", ), } @@ -1193,7 +1197,7 @@ def compose_transaction( else: raise exceptions.TransactionError("Invalid pubkey.") - if isinstance(custom_inputs, str): + if isinstance(custom_inputs, str) and custom_inputs: new_custom_inputs = [] for str_input in custom_inputs.split(","): if not util.is_utxo_format(str_input): diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 6e744f2a6d..ab73bfc931 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": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_time": 1726737169, + "previous_block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", "difficulty": 545259519, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", + "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", + "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", - "block_time": 1726509908, - "previous_block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", + "block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", + "block_time": 1726737165, + "previous_block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", "difficulty": 545259519, - "ledger_hash": "a352fa09b0c8621cb30776de9b016c7b433da3453f51a01610e0d8a706b94c7e", - "txlist_hash": "83367c52c5808cc55d9902d446542239ae36c22d7b7d92678f128ad83f58aaea", - "messages_hash": "3172cc5949c44703a36181b1b938faf388d0cf72e686932ee5ee218ee893e4a6", + "ledger_hash": "113b4ac64bf9ac160f8e8708650a5d11015244d91fd17d01b3de1fe04be70c78", + "txlist_hash": "558fec084db1e752436b64f7b0a16b3d23bf95d65f565c7bde658319eeb33077", + "messages_hash": "e5e85dcca0aa0aa18c5bd712553a8598a4d416411dc2dacbd84c40a2c8d16364", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", - "block_time": 1726509903, - "previous_block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017", + "block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", + "block_time": 1726737160, + "previous_block_hash": "183beca9c1ae5f954cb62ccbcb7ab1d73a8c48927fe3ba9543532d5b9ce910a3", "difficulty": 545259519, - "ledger_hash": "20f305d9381284d270d7c1d22ba897f66d072d2f1df42dfeeffdf903e9627921", - "txlist_hash": "57455bb363a21c6f49fa641f5bedf87e9eedc785270ddc90711b98f54eb0f113", - "messages_hash": "2f8a089ba7d158feab1cd9daea1fc5a85d43e2de099feb80f384f9fafe9efbb5", + "ledger_hash": "e81ac0e53866984f932b80f2481beac540f6cc62a16e792fd5056b013d9fc368", + "txlist_hash": "d429caa4bda24381dc9fd8efe17f587c45fe10a0f370ab48e62444a53da33cba", + "messages_hash": "a0f05767e14a8d26fd1451e64665fe70bcc522860d08bc04b455175e7199d414", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017", - "block_time": 1726509899, - "previous_block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b", + "block_hash": "183beca9c1ae5f954cb62ccbcb7ab1d73a8c48927fe3ba9543532d5b9ce910a3", + "block_time": 1726737147, + "previous_block_hash": "0ce6237c027d6772c41adb9614ce3b0d9186a8717abe802fc140e2388d92a79c", "difficulty": 545259519, - "ledger_hash": "5dac3b61245453c5448b8e8ef6eaf53e9ca0a371d3b6524ca97ef99e40551036", - "txlist_hash": "5caba1ce46d6c7e9d5a7cb1c794b331dd473323683be48d62b3e03fef3a9cb75", - "messages_hash": "a3d30ea5b4343aac41752e3cbe083b2f9a5070adb3e28d3cf3b586d60b13f937", + "ledger_hash": "f2adce4e7e612e6ae389add9f0a919d791cfb4cbea7689f82caafa294c330b13", + "txlist_hash": "95250702feb0be119b1a92970c680ea45a022baeec5f15f5c2b7456912db0ce1", + "messages_hash": "b0206ae41b307f14e98b1207f8d922b3a15d8eda41c476236a094f7c3c175aae", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b", - "block_time": 1726509894, - "previous_block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780", + "block_hash": "0ce6237c027d6772c41adb9614ce3b0d9186a8717abe802fc140e2388d92a79c", + "block_time": 1726737143, + "previous_block_hash": "20fc4d1702a5f56963ec395c69b45622b30c4a6f58fa15a26a7d15d06d9cc299", "difficulty": 545259519, - "ledger_hash": "3f97c50ca5edc66440c05c58badb6d8f26237669ef20c001a05e476404900c94", - "txlist_hash": "ed6472060345e91ae8e05a0f6d7a9a0e657098f47eae73e2e644fc7e455e67d3", - "messages_hash": "9f629d60ea05b595361922207a4b99e144e342dcc0cef5755d71e920ec551ba7", + "ledger_hash": "36d4783cd8aea1ea7b029dd8d1eea5f46adea1ef5d654fa2dea650c59e90332e", + "txlist_hash": "939204c57db25fa23f6522046856c4e3e84de481fe58083f6f111f10a769a049", + "messages_hash": "e57ab6f69b0cff918442af68a2ed4fdcfef1108674370c8291235532833c2d84", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_time": 1726737169, + "previous_block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", "difficulty": 545259519, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", + "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", + "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_time": 1726737169, + "previous_block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", "difficulty": 545259519, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", + "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", + "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_time": 1726737169, + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -139,11 +139,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "a352fa09b0c8621cb30776de9b016c7b433da3453f51a01610e0d8a706b94c7e", - "messages_hash": "3172cc5949c44703a36181b1b938faf388d0cf72e686932ee5ee218ee893e4a6", + "ledger_hash": "113b4ac64bf9ac160f8e8708650a5d11015244d91fd17d01b3de1fe04be70c78", + "messages_hash": "e5e85dcca0aa0aa18c5bd712553a8598a4d416411dc2dacbd84c40a2c8d16364", "transaction_count": 1, - "txlist_hash": "83367c52c5808cc55d9902d446542239ae36c22d7b7d92678f128ad83f58aaea", - "block_time": 1726509908 + "txlist_hash": "558fec084db1e752436b64f7b0a16b3d23bf95d65f565c7bde658319eeb33077", + "block_time": 1726737165 }, "tx_hash": null }, @@ -152,43 +152,43 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58 }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "status": "valid", - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, - "block_time": 1726509908, + "block_time": 1726737165, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -198,22 +198,22 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "XCP", "block_index": 192, - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -223,7 +223,7 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" } ], "next_cursor": 524, @@ -261,16 +261,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -280,57 +280,57 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" } ], "next_cursor": null, @@ -340,16 +340,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -361,20 +361,20 @@ }, { "block_index": 192, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -382,20 +382,20 @@ }, { "block_index": 192, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -409,16 +409,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "event": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -436,24 +436,24 @@ "result": [ { "type": "order", - "object_id": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "object_id": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", "block_index": 182, "confirmed": true, - "block_time": 1726509796 + "block_time": 1726737039 }, { "type": "order", - "object_id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", + "object_id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", "block_index": 182, "confirmed": true, - "block_time": 1726509796 + "block_time": 1726737039 }, { "type": "order_match", - "object_id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "object_id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", "block_index": 182, "confirmed": true, - "block_time": 1726509796 + "block_time": 1726737039 } ], "next_cursor": null, @@ -463,13 +463,13 @@ "result": [ { "tx_index": 56, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "status": "valid", "confirmed": true, - "block_time": 1726509899 + "block_time": 1726737147 } ], "next_cursor": null, @@ -479,15 +479,15 @@ "result": [ { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -505,14 +505,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -527,7 +527,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509780, + "block_time": 1726737024, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -539,10 +539,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -550,7 +550,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "divisible": true, "asset_longname": null, @@ -563,10 +563,10 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -574,11 +574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -587,10 +587,10 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -598,11 +598,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -618,27 +618,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -653,7 +653,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726509701, + "block_time": 1726736947, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,16 +672,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "fee_paid_normalized": "0.00600000" } ], @@ -692,17 +692,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_time": 1726737169, + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -725,23 +725,23 @@ }, { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", - "block_time": 1726509908, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", + "block_time": 1726737165, + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480ae2b0c1095bbdf23747f76b242be716817701b78017377656570206d7920617373657473", + "data": "0480e816f5562a0ee9cab6015173bbded2ef7b58ca5d017377656570206d7920617373657473", "supported": true, - "utxos_info": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b:1", + "utxos_info": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "flags": 1, "memo": "sweep my assets" } @@ -754,7 +754,7 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, @@ -765,7 +765,7 @@ "coinbase": false, "vin": [ { - "hash": "13f4625e1516c944a8463d27d826a53f0fcbba50aced60bf5eb00888663ce56e", + "hash": "5ba723defaf396451676e61776a9cd1c1f8fd9586cc4db78a3b6293d79e53ae4", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -775,20 +775,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a332354da0a2986e439d6bf246d84f86ee1f3d79bd9604d9ff8543c944eead26bc52dcc129be40851375a2c04808350b9e7608862" + "script_pub_key": "6a332c447795bb02a14b1b76de7c17a84bc37fc8666996c601931b77ca60bb5a3dd22a967c31687ef49a736c008c79421a3bd09ba6" }, { "value": 4999990000, - "script_pub_key": "00147ed28f21558ee8ecd78a339105e7756213901b6e" + "script_pub_key": "00147cf09b00afd181c7e4a3698f41aa73c50e0fe44e" } ], "vtxinwit": [ - "30440220192675f05c9144776192e2c92db009e8ed5fcedd0c45fbcda89a84a2320f2af30220196bac09bfaedbea9e4458ec76ad50697d0cb659327702787f2ceb8f11832daf01", - "038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a9387076169" + "304402201697d85478fe87d570f56161af58d66d7304e8850f79d0bd7b855e9d3765d76c02202501c7b254170cb724cd7277f8a49a4967c67b96f89441df23d6072886de2aac01", + "0375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce" ], "lock_time": 0, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", - "tx_id": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232" + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_id": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625" }, "unpacked_data": { "message_type": "order", @@ -835,17 +835,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_time": 1726737169, + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -870,17 +870,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_time": 1726737169, + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -909,47 +909,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58 }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "status": "valid", - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, - "block_time": 1726509908, + "block_time": 1726737165, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -959,24 +959,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "XCP", "block_index": 192, - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -986,36 +986,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 } ], "next_cursor": 523, @@ -1028,47 +1028,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58 }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "status": "valid", - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, - "block_time": 1726509908, + "block_time": 1726737165, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -1078,24 +1078,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "XCP", "block_index": 192, - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -1105,36 +1105,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 } ], "next_cursor": 523, @@ -1144,10 +1144,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -1155,7 +1155,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "divisible": true, "asset_longname": null, @@ -1168,10 +1168,10 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1179,11 +1179,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -1192,10 +1192,10 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1203,11 +1203,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -1223,27 +1223,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -1258,7 +1258,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726509701, + "block_time": 1726736947, "asset_info": { "divisible": true, "asset_longname": null, @@ -1279,16 +1279,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -1298,63 +1298,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 } ], "next_cursor": null, @@ -1366,16 +1366,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -1385,63 +1385,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 } ], "next_cursor": null, @@ -1454,7 +1454,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1464,7 +1464,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -1475,7 +1475,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1485,7 +1485,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -1496,7 +1496,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1506,7 +1506,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -1517,7 +1517,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1527,7 +1527,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -1538,7 +1538,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1548,7 +1548,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -1562,17 +1562,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", - "block_time": 1726509903, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", + "block_time": 1726737160, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1", + "utxos_info": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1608,23 +1608,23 @@ }, { "tx_index": 56, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "block_index": 190, - "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017", - "block_time": 1726509899, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "183beca9c1ae5f954cb62ccbcb7ab1d73a8c48927fe3ba9543532d5b9ce910a3", + "block_time": 1726737147, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "465e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "data": "460dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "supported": true, - "utxos_info": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec:1", + "utxos_info": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "status": "valid" } }, @@ -1632,17 +1632,17 @@ }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "block_index": 189, - "block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b", - "block_time": 1726509894, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "0ce6237c027d6772c41adb9614ce3b0d9186a8717abe802fc140e2388d92a79c", + "block_time": 1726737143, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2:1", + "utxos_info": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1678,17 +1678,17 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780", - "block_time": 1726509890, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "20fc4d1702a5f56963ec395c69b45622b30c4a6f58fa15a26a7d15d06d9cc299", + "block_time": 1726737138, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038057841d54055a90ed31a47e9821fd3118e6e78592808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f9280ae2b0c1095bbdf23747f76b242be716817701b78400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a65050a67bf322ed4c4b1bf06798d4b6cefea9f3803e32791d2b81299971b964239daaa0099a94570880e816f5562a0ee9cab6015173bbded2ef7b58ca5d400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f:0", + "utxos_info": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1696,14 +1696,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -1711,7 +1711,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1730,25 +1730,25 @@ }, { "tx_index": 51, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", "block_index": 185, - "block_hash": "7bb18fb36cb1bd5cb99d781fabe17b43d4b67ee7530bd6ab46356fdb3e139fa6", - "block_time": 1726509867, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "4cf4464c33d15629e0bd0b037dd008ce660191a9b79778db1087bc9214247f38", + "block_time": 1726737126, + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "btc_amount": 2000, "fee": 10000, - "data": "0b675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "data": "0b5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "supported": true, - "utxos_info": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d:0", + "utxos_info": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "status": "valid" } }, @@ -1777,11 +1777,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "status": "open", - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "tx_index": 57, - "block_time": 1726509903, + "block_time": 1726737160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1805,24 +1805,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "block_time": 1726509903 + "block_time": 1726737160 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "block_index": 191, - "event": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "event": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1726509903, + "block_time": 1726737160, "asset_info": { "divisible": true, "asset_longname": null, @@ -1832,25 +1832,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "block_time": 1726509903 + "block_time": 1726737160 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", + "block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", "block_index": 191, - "block_time": 1726509903, + "block_time": 1726737160, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "tx_index": 57, - "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1", + "utxos_info": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1882,40 +1882,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "block_time": 1726509903 + "block_time": 1726737160 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "status": "valid", - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "tx_index": 56, - "block_time": 1726509899 + "block_time": 1726737147 }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726737147 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726509899, + "block_time": 1726737147, "asset_info": { "divisible": true, "asset_longname": null, @@ -1925,9 +1925,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726737147 } ], "next_cursor": 506, @@ -1936,17 +1936,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "memo": null, "quantity": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "status": "valid", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "tx_index": 60, "asset_info": { "divisible": true, @@ -1959,19 +1959,19 @@ } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "CREDIT", "params": { - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -1983,19 +1983,19 @@ } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 193, - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -2007,27 +2007,27 @@ } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726509917.0831685, + "block_time": 1726737173.5878787, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f92", + "data": "0200000000000000010000000000002710803e32791d2b81299971b964239daaa0099a945708", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "tx_index": 60, - "utxos_info": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6:1", + "utxos_info": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "memo": null, "asset_info": { "divisible": true, @@ -2049,7 +2049,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2057,14 +2057,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2072,14 +2072,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2094,7 +2094,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2102,7 +2102,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2114,7 +2114,7 @@ }, "/v2/addresses/
/balances/": { "result": { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2133,16 +2133,16 @@ "result": [ { "block_index": 190, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509899, + "block_time": 1726737147, "asset_info": { "divisible": true, "asset_longname": null, @@ -2154,16 +2154,16 @@ }, { "block_index": 182, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", + "event": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509796, + "block_time": 1726737039, "asset_info": { "divisible": true, "asset_longname": null, @@ -2175,20 +2175,20 @@ }, { "block_index": 159, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "event": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509780, + "block_time": 1726737024, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2196,20 +2196,20 @@ }, { "block_index": 156, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "23d681cb0c9d9310fd8150fcabf440c84cae363db926d0fcde70cbe12373f96f", + "event": "2ee2bf2492eaafe424159ad97df4e43df151dd3c12ffe7c393b7bf9256b9bb32", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509746, + "block_time": 1726736992, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2221,16 +2221,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "event": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", "tx_index": 38, - "utxo": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1", - "utxo_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "utxo": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9:1", + "utxo_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "confirmed": true, - "block_time": 1726509724, + "block_time": 1726736969, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2244,16 +2244,16 @@ "result": [ { "block_index": 191, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "event": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509903, + "block_time": 1726737160, "asset_info": { "divisible": true, "asset_longname": null, @@ -2265,16 +2265,16 @@ }, { "block_index": 189, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509894, + "block_time": 1726737143, "asset_info": { "divisible": true, "asset_longname": null, @@ -2286,16 +2286,16 @@ }, { "block_index": 188, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "event": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "divisible": true, "asset_longname": null, @@ -2307,20 +2307,20 @@ }, { "block_index": 188, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "event": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2328,16 +2328,16 @@ }, { "block_index": 183, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "event": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509858, + "block_time": 1726737108, "asset_info": { "divisible": true, "asset_longname": null, @@ -2360,9 +2360,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "1629a61f230d38e661231eeaac724d9336e9413ce0a9f145c49d57030ae05b8d", + "tx_hash": "b1010bdab734a9e4cce02ad65bcf68fbc73fe1bb28f21c9b91d6cf68c1a62186", "block_index": 137, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2370,7 +2370,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726509652, + "block_time": 1726736909, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2381,14 +2381,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "84cfd2ae481d0a4171e66009619eda93802914d5ccbb4bc52a5b76fd06d2dd79", + "tx_hash": "80605ddcc2da09e5d557ad4b486390da9dfaa0ef1c6f175b1957db2b332a81e1", "block_index": 112, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1726509535, + "block_time": 1726736804, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2400,10 +2400,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2411,7 +2411,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "divisible": true, "asset_longname": null, @@ -2424,10 +2424,10 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2435,11 +2435,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2448,10 +2448,10 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2459,11 +2459,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2472,10 +2472,10 @@ }, { "tx_index": 38, - "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "tx_hash": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", "block_index": 151, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2483,11 +2483,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509724, + "block_time": 1726736969, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2496,10 +2496,10 @@ }, { "tx_index": 35, - "tx_hash": "523006a2ff042bd1708eb4642871fe8df38dbb0d40fc0b07f7c4d78ea57fff6d", + "tx_hash": "4a3b965c548a45221fb21c895a5983dd531696c8c62d09ca2a19954c14446c82", "block_index": 148, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "d2f3afeb63580aa006eee4e055138c2903f7e8172876f688b7241e2ebbe5f172:1", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "7c7028f67836beaa5fb2de94c6daea92f4efba5aeae1c1b193c994c5ac14cf51:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2507,11 +2507,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509710, + "block_time": 1726736956, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2526,10 +2526,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba", + "tx_hash": "0c30ebe84e9981d88766592125043c857961de991168503a78e10fa95416df3b", "block_index": 150, - "source": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88:0", - "destination": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0", + "source": "35f402483a54a03e637b77b2ff618642d6e435f34c3c89219374add7f500dc22:0", + "destination": "bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2537,11 +2537,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509719, + "block_time": 1726736965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2556,10 +2556,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2567,11 +2567,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2580,10 +2580,10 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2591,11 +2591,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2604,10 +2604,10 @@ }, { "tx_index": 38, - "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "tx_hash": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", "block_index": 151, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2615,11 +2615,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509724, + "block_time": 1726736969, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2628,10 +2628,10 @@ }, { "tx_index": 35, - "tx_hash": "523006a2ff042bd1708eb4642871fe8df38dbb0d40fc0b07f7c4d78ea57fff6d", + "tx_hash": "4a3b965c548a45221fb21c895a5983dd531696c8c62d09ca2a19954c14446c82", "block_index": 148, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "d2f3afeb63580aa006eee4e055138c2903f7e8172876f688b7241e2ebbe5f172:1", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "7c7028f67836beaa5fb2de94c6daea92f4efba5aeae1c1b193c994c5ac14cf51:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2639,11 +2639,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509710, + "block_time": 1726736956, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2658,10 +2658,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba", + "tx_hash": "0c30ebe84e9981d88766592125043c857961de991168503a78e10fa95416df3b", "block_index": 150, - "source": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88:0", - "destination": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0", + "source": "35f402483a54a03e637b77b2ff618642d6e435f34c3c89219374add7f500dc22:0", + "destination": "bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2669,11 +2669,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509719, + "block_time": 1726736965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -2688,9 +2688,9 @@ "result": [ { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2699,7 +2699,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2709,7 +2709,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726736939, "asset_info": { "divisible": true, "asset_longname": null, @@ -2725,9 +2725,9 @@ }, { "tx_index": 26, - "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2736,7 +2736,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2746,7 +2746,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -2767,9 +2767,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2778,7 +2778,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2788,7 +2788,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726736939, "asset_info": { "divisible": true, "asset_longname": null, @@ -2808,19 +2808,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2828,7 +2828,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2843,7 +2843,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -2857,19 +2857,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2877,7 +2877,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2892,7 +2892,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726736922, "asset_info": { "divisible": true, "asset_longname": null, @@ -2912,19 +2912,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2932,7 +2932,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2947,7 +2947,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -2961,19 +2961,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2981,7 +2981,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2996,7 +2996,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726736922, "asset_info": { "divisible": true, "asset_longname": null, @@ -3016,19 +3016,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3036,7 +3036,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3051,7 +3051,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -3065,19 +3065,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3085,7 +3085,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3100,7 +3100,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726736922, "asset_info": { "divisible": true, "asset_longname": null, @@ -3120,19 +3120,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3140,7 +3140,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3155,7 +3155,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -3169,19 +3169,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3189,7 +3189,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3204,7 +3204,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726736922, "asset_info": { "divisible": true, "asset_longname": null, @@ -3223,16 +3223,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "fee_paid_normalized": "0.00600000" } ], @@ -3243,14 +3243,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -3265,20 +3265,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509780, + "block_time": 1726737024, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "99d6840da9077ad147d3cb8e3a527ebcb05445b5e72d0fa4f9429f91a2ed5f9f", + "tx_hash": "d7cbe9778e884b6f2582d7a57940b012bf1ddb5b700e7dd072c69bedd7e9b3a8", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -3293,20 +3293,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726509775, + "block_time": 1726737011, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "edf7eb0a60e46ad53360d769c00fbd350628dff893bb6f1869570c9fdcfc71af", + "tx_hash": "fc3408b9506f75d2a3f1a65d6fe00a222a56fde09335e34953794e0293f63afe", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -3321,20 +3321,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509760, + "block_time": 1726736996, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "23d681cb0c9d9310fd8150fcabf440c84cae363db926d0fcde70cbe12373f96f", + "tx_hash": "2ee2bf2492eaafe424159ad97df4e43df151dd3c12ffe7c393b7bf9256b9bb32", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -3349,20 +3349,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509746, + "block_time": 1726736992, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "73ed3c167032f8d2648710f1bceb54e23fc9faf80658565c8e897ea0fa7bcf35", + "tx_hash": "ee33216b42c4c6088fdf31e58c26a41d776c7f1c22d36fba1e6120663c74f3ed", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -3377,7 +3377,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509706, + "block_time": 1726736952, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -3391,8 +3391,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 10000000000, @@ -3400,16 +3400,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726509746, - "last_issuance_block_time": 1726509775, + "first_issuance_block_time": 1726736992, + "last_issuance_block_time": 1726737011, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -3417,16 +3417,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726509706, - "last_issuance_block_time": 1726509706, + "first_issuance_block_time": 1726736952, + "last_issuance_block_time": 1726736952, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 40, @@ -3434,16 +3434,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726509644, - "last_issuance_block_time": 1726509648, + "first_issuance_block_time": 1726736900, + "last_issuance_block_time": 1726736905, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 19, @@ -3451,16 +3451,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726509617, - "last_issuance_block_time": 1726509639, + "first_issuance_block_time": 1726736883, + "last_issuance_block_time": 1726736896, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 0, @@ -3468,8 +3468,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1726509596, - "last_issuance_block_time": 1726509613, + "first_issuance_block_time": 1726736862, + "last_issuance_block_time": 1726736879, "supply_normalized": "0.00000000" } ], @@ -3480,17 +3480,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", - "block_time": 1726509903, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", + "block_time": 1726737160, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1", + "utxos_info": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3526,23 +3526,23 @@ }, { "tx_index": 56, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "block_index": 190, - "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017", - "block_time": 1726509899, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "183beca9c1ae5f954cb62ccbcb7ab1d73a8c48927fe3ba9543532d5b9ce910a3", + "block_time": 1726737147, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "465e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "data": "460dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "supported": true, - "utxos_info": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec:1", + "utxos_info": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "status": "valid" } }, @@ -3550,17 +3550,17 @@ }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "block_index": 189, - "block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b", - "block_time": 1726509894, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "0ce6237c027d6772c41adb9614ce3b0d9186a8717abe802fc140e2388d92a79c", + "block_time": 1726737143, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2:1", + "utxos_info": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3596,17 +3596,17 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780", - "block_time": 1726509890, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "20fc4d1702a5f56963ec395c69b45622b30c4a6f58fa15a26a7d15d06d9cc299", + "block_time": 1726737138, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038057841d54055a90ed31a47e9821fd3118e6e78592808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f9280ae2b0c1095bbdf23747f76b242be716817701b78400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a65050a67bf322ed4c4b1bf06798d4b6cefea9f3803e32791d2b81299971b964239daaa0099a94570880e816f5562a0ee9cab6015173bbded2ef7b58ca5d400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f:0", + "utxos_info": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3614,14 +3614,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -3629,7 +3629,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3648,17 +3648,17 @@ }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", "block_index": 183, - "block_hash": "266c58f4906e9a1c4f81f972d7728ac8f370b75de6c542c61c838013ad48749d", - "block_time": 1726509858, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "06325114bf09180c9fe86186dea01039a4c7dd402c5a9f006adbb24731015015", + "block_time": 1726737108, + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1:1", + "utxos_info": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3700,20 +3700,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", "block_index": 153, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726736978, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -3735,9 +3735,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3752,7 +3752,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509903, + "block_time": 1726737160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3778,9 +3778,9 @@ }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3795,7 +3795,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726509899, + "block_time": 1726737147, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3821,9 +3821,9 @@ }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", "block_index": 186, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3838,7 +3838,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726737130, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3864,9 +3864,9 @@ }, { "tx_index": 47, - "tx_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", + "tx_hash": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", "block_index": 182, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3881,7 +3881,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1726509796, + "block_time": 1726737039, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3912,10 +3912,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -3940,13 +3940,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509644 + "block_time": 1726736900 }, { - "tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -3971,13 +3971,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509617 + "block_time": 1726736883 }, { - "tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16", + "tx_hash": "c4de72bddcecc2b88f8e0746e02446a566b0fca27fe3e4b9bd4c20e550f9089a", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4002,13 +4002,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509613 + "block_time": 1726736879 }, { - "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4033,7 +4033,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509592 + "block_time": 1726736859 } ], "next_cursor": null, @@ -4042,127 +4042,127 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "a899b1a361e0514262442a4a300d7571606a3462d50819092e649c490fbcb1e6", + "tx_hash": "661c344111ceedee5cbe79a2043e49979922a9af9ced08540254cf13090082ac", "tx_index": 23, "block_index": 136, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "fairminter_tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509648, + "block_time": 1726736905, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } }, { - "tx_hash": "43b87a7de82b3deb9845abcc6d33d3d9b61c21d58377115c5edefeabc763c9ae", + "tx_hash": "532d67517eb2c751de2c553a82aab3168f9fe2252232a50926c6bf10c0926357", "tx_index": 21, "block_index": 134, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "fairminter_tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509639, + "block_time": 1726736896, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } }, { - "tx_hash": "1148cccc0b0535df22ffd1571672abb937ff57bcefafc7af5d797405c8ce0b7f", + "tx_hash": "022c8e67569b246e08ef1818ccc12b3591109f44a3fb34dd3867360868caa2c6", "tx_index": 20, "block_index": 133, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "fairminter_tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509625, + "block_time": 1726736892, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } }, { - "tx_hash": "a82d30ebc85da3571118450b2e29b8230ff34da2ee40ff7df9452727b80de1be", + "tx_hash": "679cd46764ea30300b6b5cc103c11d81633ec81ceb08a156ef5429207dbc2e6b", "tx_index": 19, "block_index": 132, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "fairminter_tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509620, + "block_time": 1726736888, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } }, { - "tx_hash": "2fe7ff0c16953b4aff424432759c2e48819f92f9c4440a7047e3c86f9ca21161", + "tx_hash": "25f9745a24829f09fe2f511cac829379903961a21dcf3324daad294b9d9b502e", "tx_index": 15, "block_index": 127, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "fairminter_tx_hash": "c4de72bddcecc2b88f8e0746e02446a566b0fca27fe3e4b9bd4c20e550f9089a", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509599, + "block_time": 1726736866, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } }, { - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", "tx_index": 11, "block_index": 123, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726736850, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } @@ -4174,22 +4174,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", "tx_index": 11, "block_index": 123, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726736850, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } @@ -4203,9 +4203,9 @@ }, "/v2/addresses/
/compose/broadcast": { "result": { - "rawtransaction": "02000000000101b649c4e7fa40f164c03cd4447f8be4c3bbeb5ab6b102b0040141900933aac6ab000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff0200000000000000002b6a298a111578002e35f209d5778a06bfbacec513f992cc18166b895017e5651e3d9a9c8abe27c32de9bd6334b1052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101bfd9d0339ebb1cad61e9fc89066f141a165e042afd044ca512e90f4dac0ad858000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff0200000000000000002b6a29c2ee9987af5831d7348cee95680e02f5b1a9f16b78c5d7d960b240f9f113817ad4db1edc13aa9827824ab1052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4216,19 +4216,19 @@ }, "/v2/addresses/
/compose/btcpay": { "result": { - "rawtransaction": "020000000001014fca2cccbcf61bd93889e6594b5f5676eb7ccec2f792a180f5f069af357b7616000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff03b80b0000000000001600147ed28f21558ee8ecd78a339105e7756213901b6e00000000000000004b6a491bea0194c274239cce2dec48099450c2d32bb382ddfb3b81015ad5ec232bd55868ef141b018286e0bca6432cf028cefc16bae7d9d0f81d7cc89e7f1247e0f068e2c07fc713509850fad093052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101cd2f9f22e79cce4fb01fa897d6a1230dc3e51e1f08396840e2ded9bf4ed0fe3e000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff03b80b0000000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e00000000000000004b6a490fdb3d753a82eaad9cd34afe5f1305746b956ac41e8052e51f59797fd09de81db452050c70fe0214d12facb16da53b94b959811a60b62c14c98d1ebd05f8547490e1f6248b5c8559aaec93052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21" + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543" }, "name": "btcpay" } }, "/v2/addresses/
/compose/burn": { "result": { - "rawtransaction": "020000000001016fe1241c086889236a07a814417e56dab847abd58d96050d2ef16d394acb7071000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88acdab1052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101319f1699a94398f2c120f2fe873d7ca467fa29859e6cdd19607f056a6936b7fd000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88aceeb1052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "quantity": 1000, "overburn": false }, @@ -4237,19 +4237,19 @@ }, "/v2/addresses/
/compose/cancel": { "result": { - "rawtransaction": "0200000000010175b4c418d03015dec817aad5fcb40a67eb01ab8c7f9b2434e0aeae3f2c7327e5000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff0200000000000000002b6a296a415035fc0e352ad913bcc9368104122e748b6b983f39533d639f2642afa98318345f31fc54c82b4434b1052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101eceee2cd7a6adcc3f3e00509598b4e0de4b70c2b45f38aa4905776f17cd677a8000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff0200000000000000002b6a293348289a27b6d9f4e11ca2640ca3d8d38f15443457929b21bdd49d01bd71e1610a84d4b787d34f6b384ab1052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "offer_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232" + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "offer_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625" }, "name": "cancel" } }, "/v2/addresses/
/compose/destroy": { "result": { - "rawtransaction": "02000000000101b6ee35e1324d5089f8d7d56494bef5bcffa8b7c4a7e486d0af9d225461966691000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000226a207b5b354f4bb56aadb60d34352b229414425ea46fd9be1edf6ea98bd29a7472df9db3052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "0200000000010113f95b606575562d2fbe71cebd953337c2738d0a1bcae5fa0bf6877b1d6fb545000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000226a20da2ecfadfdb1591b9c22a85b00012f89f1322f37ed0e4d51a768c47cffa4486bb2b3052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4267,9 +4267,9 @@ }, "/v2/addresses/
/compose/dispenser": { "result": { - "rawtransaction": "020000000001013535818da2dc8007a59f5067eb9607b1ebdae92c65ceb00a7aa84795be59615102000000160014f8303fb1d45fb1391c65bcbef0035ec2924b52ccffffffff0200000000000000002c6a2abf7584d7e313e8d8dd088940a821ea5a8220cba87c96c52763c53a2847b0809129a37280769f24c74047404b0a2701000000160014f8303fb1d45fb1391c65bcbef0035ec2924b52cc02000000000000", + "rawtransaction": "02000000000101b27726999fa786c887828705e322c7e4ea192b2a59e6d05b82d771d73d005a7f0200000016001490f20356500ceced9ca8be9d3a8e373ba700c91effffffff0200000000000000002c6a2a1a9e2fc8bf4e4e6fa674b28e26a7d152d09a9a07d4b2348381905c2efdcaa182b21b73682325ab93227a564b0a270100000016001490f20356500ceced9ca8be9d3a8e373ba700c91e02000000000000", "params": { - "source": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4292,16 +4292,16 @@ }, "/v2/addresses/
/compose/dividend": { "result": { - "rawtransaction": "02000000000101351dc0ca5529e3f5913ab348c8a5b0dab37120eb3a5362bf1edbd938a12afaa9000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000236a214c12bd38bfe6d74349de8861a285ce801c0df1aea0c2341213c29c0488e3b51bf459b3052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "0200000000010181423a4c1b323f96cb29070c085de3e886a3b4bed10d684eb61d066d4e1228cc000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000236a2180564be672da49d108745f6fb58356ab5eb69538bb846d5b60a4fd7efe733f2d806eb3052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -4319,12 +4319,12 @@ }, "/v2/addresses/
/compose/issuance": { "result": { - "rawtransaction": "020000000001018c2c4aec7dc8917d96c67ca0080178a22f670265ea42df5f51b4cf18143f8d33000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff0322020000000000001600147ed28f21558ee8ecd78a339105e7756213901b6e0000000000000000236a2161361954172494529a3d38abfce581faf126d5f844d56d0f9ff51438a6ee05c1681ca8052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "0200000000010144135aae7f4b5e57666e0a958bfb165d94695bb6d93d93fa76f7427ff0b69348000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff0322020000000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e0000000000000000236a211beada5554cafb42451ccfe23872901d81f923678587f0e17234cd58f03e0f9e3e34a8052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "transfer_destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "lock": false, "reset": false, @@ -4336,18 +4336,18 @@ }, "/v2/addresses/
/compose/mpma": { "result": { - "rawtransaction": "02000000000104408d3617b81bce0c32909fc2def0c597a56244508180e231a57cd368ef04aca6000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff17bda3cda72e5b5f1532ba6749ecd58427332ebcf282c79cd16c8375a9e4a215000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffc51fabedc80ce42d8f455f8cc69c88e82938707ddda14f7a68f33094383c23f4000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff6da23b7041e4c4b6b8d7cae88d1b4fbdad16503cf3dcfe3f6c85e0ae150c17a7000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff03e80300000000000069512102c9169a3c7845490a815acdd720f2c894bb916b00b6987b846b31895a38e2814d21027759538aaa3307bc8d576cc9ae8b5cfeb4f89eecb554cbecc42baa629bc084ea21038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aee80300000000000069512102c6169a3c7845490a8179babad2e07e3ab844e5e8565a6a3c4d146e2f5af111ab21036c379bdd2e2e53b9d7c789f80af5c4df49c9840a52d15963e663cf0ef7afa8d521038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953ae47d016a8040000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000002000002000002000000000000", + "rawtransaction": "020000000001041eab5adb0bb5bc395d7db523b9b51aca2ad7fe19abbff6c1eca80b02ff312c11000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff860e9bfc9dc9da5315bdfa7a840499ca44590d1403220a5a234273499b01745b000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff08ce002b16344514671bff8471091da6f15f3205d84e272fccc9e3d5d0b2030f000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff7d196ad9685fe541bd12dbd09b4f828c39f57e7f0ad08959f2a000ae2807fd86000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff03e803000000000000695121021543326b5fc44d2ef3f6fe91dca0bf1b647653e75fa7c89f7993859f368996722102a76f0f8a5542fd628da34fdda4486350023413ed1985b501511dbc9fa42fa2a0210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53aee803000000000000695121031a43326b5fc44d2ef3d589fc2eb02ba1465982669456f07d41f22fecf387997e21034321c72c05125b197e81aa91ef5393379ae0a723e72c468e7355d9f3c8408e55210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53ae98d016a8040000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000002000002000002000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", 1 ], [ "MYASSETA", - "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", 2 ] ], @@ -4359,9 +4359,9 @@ }, "/v2/addresses/
/compose/order": { "result": { - "rawtransaction": "02000000000101c07bf8106610b1b623cb978c0aba88af7803750f54a05c0005f982825d88d475000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000356a334143661d91daa75e926ff6d79759f0577584c1a37635e27e463babf031a6b24bdcd4d41d8aebadcc6eb12b58fa950c86172ab287ae052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101357979f3d01f82c0bbea7bea3c7c3036df493768ffd3f950ce9a92d75ab46800000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000356a3305ec2b3ec06d93eefc7cc7697d5e64bc9cc362d5820ebadb8ce90ac826357dc5cf6ede8721851ae1c99a9e348677ec2e58ccbf9eae052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4378,7 +4378,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -4391,10 +4391,10 @@ }, "/v2/addresses/
/compose/send": { "result": { - "rawtransaction": "02000000000101d1ed4e6a2b26727a08b51181f172b8a5c8dd24188e57f543702dac89c942bd12000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000306a2eb930bb587d4fd62cbc52cc09eacb8b0dfbb418f08631a6360d98cf5ce3120e46955c4c3d48c01ca4c9bbe19f3103deaf052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101324f0796cb6aa649671c885ae444171d29ec6eb87641c94b557d29f806b97412000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000306a2e8a694ebcf06f71b568e08cdad92e6d9f358570de1dfdf1dc8a082b8b0e1cdc1d24c4e9d80b9258292e0535f17b6af4af052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4414,10 +4414,10 @@ }, "/v2/addresses/
/compose/sweep": { "result": { - "rawtransaction": "02000000000101b562c0730715780ae991157f93d3a949c1cfaba285b7f621eea8d3dda79da50c000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000236a218a5634f40393d59bc3c1a4c12be1661951369bb953fbb8da7bd34ffdc310d0a1fe59b3052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101b1f29da89ff781645e4d4569890b4ea11c348df771227e76e632abe62a2c18d6000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000236a21a50aaca7afa248c34a7a84375d92596f2d74cf120035819eccae8aa29430289f846eb3052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "flags": 7, "memo": "FFFF" }, @@ -4426,10 +4426,10 @@ }, "/v2/addresses/
/compose/dispense": { "result": { - "rawtransaction": "020000000001014d628a3e65cc9537aa62c9b42db1b2df0e61d973978cac54482a0953d6fe49d70200000016001457841d54055a90ed31a47e9821fd3118e6e78592ffffffff03e803000000000000160014ae2b0c1095bbdf23747f76b242be716817701b7800000000000000000c6a0ac17afa5cc1158f0972f85fb808270100000016001457841d54055a90ed31a47e9821fd3118e6e7859202000000000000", + "rawtransaction": "02000000000101b4bd5c6d249d8383a77c633e9949fed0f40d6cc2478eff7f2160d71bd487524002000000160014a65050a67bf322ed4c4b1bf06798d4b6cefea9f3ffffffff03e803000000000000160014e816f5562a0ee9cab6015173bbded2ef7b58ca5d00000000000000000c6a0a91fca4a7d199133b19e075b8082701000000160014a65050a67bf322ed4c4b1bf06798d4b6cefea9f302000000000000", "params": { - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "quantity": 1000 }, "name": "dispense" @@ -4437,9 +4437,9 @@ }, "/v2/addresses/
/compose/fairminter": { "result": { - "rawtransaction": "02000000000101fbdb9417de62f10b9120f7e3e29518b3e1b564d76efe4eeb9f5fb40810cb2695000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000316a2f1a876d6cad75159c126a8d28d8dba1389dc8a65bf6ccf9207d08f02f106901dfa932f2675b34d4dd1b20eaa13bd61e99af052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101aeda8bbe594a7913d8ad56178c4c467b20eff1a87547a9adf01e71349594065f000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000316a2fa94f05654938d4eaede6a1121b5274fb3a0bb6ac0271243baeb6e1ad194f5755e07e69b60436552fb263d504bd5d35afaf052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4463,15 +4463,15 @@ }, "/v2/addresses/
/compose/fairmint": { "result": { - "rawtransaction": "02000000000101ebc7922edff8bf7972bfbfc17ef1d69520687cb4a252ed0c25bc335b176b630a000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000166a14e8c879a220caa9210c9d86643046c47edc54aa60d4b6052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "0200000000010102b43726d6440d15a446ff68fb899f2776c2d02e6abd5ef231ebea43be54ee76000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000166a14829f320d966192391e5cec28e80f9d5ebb721b85e8b6052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -4482,10 +4482,10 @@ }, "/v2/addresses/
/compose/attach": { "result": { - "rawtransaction": "02000000000106fe554038ba01c7f82d1ded9634c1ef501e0c316f39b2f6af7d80141bcaca2bd0000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffdc2ead4b27cfb424aa6e8cc185a5e4a96185af16e10e61164e0f07e4c2b5a317000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffc0f4470bf4218838b2ade8b3782b44678183b2e5fe80c83c5b14ec65bf014a89000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffcdf72a8e033e6ffc183a3728a3842c94648a627ae5438f47b8c8f13022d6d1dd000000001600147ed28f21558ee8ecd78a339105e7756213901b6efffffffffecec22cad05d1f474cdd73f8e9ffa05eb64cf664aebe3b08aaf0bb644770738000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffb9441e2420b5197ae1b9eddcc48ff658d0a1da2e5a5cd889e1fb8c60ea4609e3000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff04e803000000000000695121029f655253bae89cf966929abd462a943a4654655b5b0150b83790569507fe3ae3210295b3c028a258fedebd0f039dac617ac2b59e7194e21ac9a98db0f47cd8943e1c21038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aee803000000000000695121029f655253bae89cf966c2c8bd0c67962840003b055e0406bc3cc5008756f22bdc2103c5fc8e2de81af98aea4800ccfb2233cdf7d466d9b64d93e38eb4a5798d9d6bb421038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aee80300000000000069512102b5655253bae89cf96692caed066494372e7a53405d5652bc04fd63e262ca4fb32103a7cbb74fd12c9bb3897964fbc91002afc2e402e0867ea3d5bad2c34cecac0ec421038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aec13922fc060000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106804cd9b18bf60a573fb2d1c03c710381c44515511ad156a3bc37121fc70892a1000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffffdfd14dd8e88ab621ea37029093596baf7383b544360acc5ac59421b73e896b18000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff3d0d0ee5fe6c149771f9d6f83ca13ae7c1598b2defbd7f814c69e14b17ff79f0000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff72885bbf9c43e8754b7d174e37ebeed41f5ecdb3274f3571d97d311b5e26be1d000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44efffffffff2b3ec057be470c3f5a203e305950a74ca80f5afae0fba1bc09b9c82f6a96cab000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffffb93a1f9570a28a602720f880f42dd7165bfa9bec5369840067e039e0955c3e3f000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff04e803000000000000695121028e35a0199edd3a15ec7aad606b3346020f1a60adafe9e5688ef272573d8f6b5c210396f977f73f9d46f02b0320ab49bd6b8ce88b94f4d446162b6ac19522941d24d0210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53aee803000000000000695121038e35a0199edd3a15ec26fa667a7340105a1035fca7fcbd398cba331b6bdb6bd3210385ae6cad68d846fb765926f50de26cc3a9d183a0df4d43326fc89573974b21ba210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53aee80300000000000069512102a435a0199edd3a15ec7cf9312c7d460f673753b7f5a8ec68b88a03220dea52a02102e49d0fcf0aef749e4560159338d10ef69fb3e1c2ba7475575af9a012a17f407e210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53ae3a3a22fc060000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4502,10 +4502,10 @@ }, "/v2/utxos//compose/detach": { "result": { - "rawtransaction": "02000000000101a7f3d5ff6cad0216060a55b7ad0a1b032687857cd0e9603223a183e5cd328ff4010000001600141811a7fe8c4732c201737549ba5dabb9e5ba8b76ffffffff04e80300000000000069512102d9e4e3e9266c080644ed9f64fec2af0f526747fd0c4bac4dddd10d11f9417b2f2102eb2503919a6e96ca62d48ebfdc837a09e9ba0e366a64d1c0e6b2e3405da3f1b2210305d4947b8fd51fc782076336b7006bffdd6e0ea462eb4be146901788a6ffdd1153aee80300000000000069512102d9e4e3e9266c080644e89d66a5c2fa59046511a90342fc008d814c57fe002ec22102bf2754919e6497c138d3cfeadbc72a41ffbc1920383cd086e0e4b00013feb4b9210305d4947b8fd51fc782076336b7006bffdd6e0ea462eb4be146901788a6ffdd1153aee80300000000000069512102f3e4e3e9266c080644f38a24a2c0f641694072b40548fd4cefe23e23cf711ea82102d24133a6f956a3f255e6b88fefb2183988db6a545d51e4f08782d5716b93c378210305d4947b8fd51fc782076336b7006bffdd6e0ea462eb4be146901788a6ffdd1153aee8980827010000001600141811a7fe8c4732c201737549ba5dabb9e5ba8b7602000000000000", + "rawtransaction": "0200000000010147c14072d859a1217ab947cd9fe3c2ba27b292be1f64ab8b0e8d732056a3b4e701000000160014677f6f646ff49ca15f79040ba01dd48ab687297dffffffff04e803000000000000695121034669afa3fd6d5ad1d6fd42375e3646b439d65a9ca6a0232089686a8a9b4df881210300538bca331bb5cee933094d40fd40afb7d4b060425a97858537b56c641041612103cbce06898feb5b045a9b357cf60583501fff9ff959e0f2498c545dfa32bd2bfb53aee803000000000000695121024669afa3fd6d5ad1d6ac1e64043515b33c835998a6a92a38db6e209ccb5efec321035a018bc3271bb79aa3704b1f44a700aefcd5e3711400ce848938a532300b07f92103cbce06898feb5b045a9b357cf60583501fff9ff959e0f2498c545dfa32bd2bfb53aee803000000000000695121026c69afa3fd6d5ad1d6a15236523044fb54a338d0a0a32b74b90d52e8fa2fce0721023462eda8562287acdb013e2f219e72ca84edd603266ea0e7bc00d45e557170eb2103cbce06898feb5b045a9b357cf60583501fff9ff959e0f2498c545dfa32bd2bfb53ae0f99082701000000160014677f6f646ff49ca15f79040ba01dd48ab687297d02000000000000", "params": { - "source": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1", - "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147:1", + "destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4526,8 +4526,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 10000000000, @@ -4535,16 +4535,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726509746, - "last_issuance_block_time": 1726509775, + "first_issuance_block_time": 1726736992, + "last_issuance_block_time": 1726737011, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", - "owner": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", + "issuer": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", + "owner": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", "divisible": true, "locked": false, "supply": 100000000000, @@ -4552,16 +4552,16 @@ "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1726509741, - "last_issuance_block_time": 1726509741, + "first_issuance_block_time": 1726736988, + "last_issuance_block_time": 1726736988, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -4569,16 +4569,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726509706, - "last_issuance_block_time": 1726509706, + "first_issuance_block_time": 1726736952, + "last_issuance_block_time": 1726736952, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 40, @@ -4586,16 +4586,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726509644, - "last_issuance_block_time": 1726509648, + "first_issuance_block_time": 1726736900, + "last_issuance_block_time": 1726736905, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 19, @@ -4603,8 +4603,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726509617, - "last_issuance_block_time": 1726509639, + "first_issuance_block_time": 1726736883, + "last_issuance_block_time": 1726736896, "supply_normalized": "0.00000019" } ], @@ -4616,8 +4616,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 10000000000, @@ -4625,15 +4625,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1726509578, - "last_issuance_block_time": 1726509592, + "first_issuance_block_time": 1726736846, + "last_issuance_block_time": 1726736859, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4641,14 +4641,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4656,7 +4656,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -4668,7 +4668,7 @@ }, "/v2/assets//balances/
": { "result": { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4687,9 +4687,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4704,7 +4704,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509903, + "block_time": 1726737160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4730,9 +4730,9 @@ }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4747,7 +4747,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726509899, + "block_time": 1726737147, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4773,9 +4773,9 @@ }, { "tx_index": 52, - "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "block_index": 186, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -4790,7 +4790,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726737130, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4816,9 +4816,9 @@ }, { "tx_index": 50, - "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "tx_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "block_index": 185, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -4833,7 +4833,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726737126, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4859,9 +4859,9 @@ }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", "block_index": 186, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4876,7 +4876,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726737130, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4907,13 +4907,13 @@ "/v2/assets//matches": { "result": [ { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 52, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -4927,7 +4927,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726737130, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4947,13 +4947,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 50, - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -4967,7 +4967,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726737126, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4987,13 +4987,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", "tx0_index": 47, - "tx0_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 48, - "tx1_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5007,7 +5007,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726509796, + "block_time": 1726737039, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5034,20 +5034,20 @@ "result": [ { "block_index": 192, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5055,20 +5055,20 @@ }, { "block_index": 125, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "60c597d6868e45719209ae17a0338cb00c81d5d64d82363d6dc68744ecf36351", + "event": "695e264b5af5d3a47a74b0af34231b677ac87beea166322a05cb6a6347abafac", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509592, + "block_time": 1726736859, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5076,20 +5076,20 @@ }, { "block_index": 124, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17", + "event": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509587, + "block_time": 1726736854, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5097,20 +5097,20 @@ }, { "block_index": 124, - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "event": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509587, + "block_time": 1726736854, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5122,16 +5122,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17", + "event": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509587, + "block_time": 1726736854, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5145,16 +5145,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "event": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -5166,16 +5166,16 @@ }, { "block_index": 192, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -5187,16 +5187,16 @@ }, { "block_index": 192, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -5208,16 +5208,16 @@ }, { "block_index": 191, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "event": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509903, + "block_time": 1726737160, "asset_info": { "divisible": true, "asset_longname": null, @@ -5229,16 +5229,16 @@ }, { "block_index": 189, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509894, + "block_time": 1726737143, "asset_info": { "divisible": true, "asset_longname": null, @@ -5256,20 +5256,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", "block_index": 153, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726736978, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5291,14 +5291,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "60c597d6868e45719209ae17a0338cb00c81d5d64d82363d6dc68744ecf36351", + "tx_hash": "695e264b5af5d3a47a74b0af34231b677ac87beea166322a05cb6a6347abafac", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -5313,20 +5313,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726509592, + "block_time": 1726736859, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17", + "tx_hash": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -5341,20 +5341,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726509587, + "block_time": 1726736854, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -5369,20 +5369,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726736850, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -5397,7 +5397,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1726509578, + "block_time": 1726736846, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5409,10 +5409,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5420,7 +5420,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "divisible": true, "asset_longname": null, @@ -5433,10 +5433,10 @@ }, { "tx_index": 53, - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03", + "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a", "block_index": 187, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5444,7 +5444,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509886, + "block_time": 1726737134, "asset_info": { "divisible": true, "asset_longname": null, @@ -5457,10 +5457,10 @@ }, { "tx_index": 42, - "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", "block_index": 155, - "source": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0", - "destination": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1", + "source": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5:0", + "destination": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5468,7 +5468,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509741, + "block_time": 1726736988, "asset_info": { "divisible": true, "asset_longname": null, @@ -5481,10 +5481,10 @@ }, { "tx_index": 41, - "tx_hash": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b", + "tx_hash": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5", "block_index": 154, - "source": "9d34a868637906281a292d50facdb8551872a2d08cd28cf7a895f10f80cb0b32:0", - "destination": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0", + "source": "0e5ef2ca6efc97a98e3cfc14841e15218cffff5e3997610098a146a1a32d3e4c:0", + "destination": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5492,7 +5492,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509735, + "block_time": 1726736983, "asset_info": { "divisible": true, "asset_longname": null, @@ -5511,18 +5511,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5532,7 +5532,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726509701, + "block_time": 1726736947, "asset_info": { "divisible": true, "asset_longname": null, @@ -5548,9 +5548,9 @@ }, { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5559,7 +5559,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5569,7 +5569,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726736939, "asset_info": { "divisible": true, "asset_longname": null, @@ -5585,9 +5585,9 @@ }, { "tx_index": 29, - "tx_hash": "ee65a85736487849d0d1ac06ea09424e477194edd27c7c31afbe06f4fbb6142c", + "tx_hash": "5a9a68441db332e17f18f00c8ea2794b8e8357f65ba5c4a19f5c761c07c18a77", "block_index": 142, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5596,7 +5596,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "origin": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5606,7 +5606,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509684, + "block_time": 1726736931, "asset_info": { "divisible": true, "asset_longname": null, @@ -5622,9 +5622,9 @@ }, { "tx_index": 26, - "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5633,7 +5633,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5643,7 +5643,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -5664,9 +5664,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5675,7 +5675,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5685,7 +5685,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726736939, "asset_info": { "divisible": true, "asset_longname": null, @@ -5713,7 +5713,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5721,7 +5721,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -5730,7 +5730,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5738,7 +5738,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -5747,7 +5747,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5755,7 +5755,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -5764,7 +5764,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -5779,27 +5779,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5814,7 +5814,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726509701, + "block_time": 1726736947, "asset_info": { "divisible": true, "asset_longname": null, @@ -5828,19 +5828,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5848,7 +5848,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5863,7 +5863,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -5877,19 +5877,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5897,7 +5897,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5912,7 +5912,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726736922, "asset_info": { "divisible": true, "asset_longname": null, @@ -5933,8 +5933,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false, "supply": 0, @@ -5942,8 +5942,8 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1726509760, - "last_issuance_block_time": 1726509760, + "first_issuance_block_time": 1726736996, + "last_issuance_block_time": 1726736996, "supply_normalized": "0.00000000" } ], @@ -5953,10 +5953,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -5981,7 +5981,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509592 + "block_time": 1726736859 } ], "next_cursor": null, @@ -5990,64 +5990,64 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "60c597d6868e45719209ae17a0338cb00c81d5d64d82363d6dc68744ecf36351", + "tx_hash": "695e264b5af5d3a47a74b0af34231b677ac87beea166322a05cb6a6347abafac", "tx_index": 13, "block_index": 125, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509592, + "block_time": 1726736859, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } }, { - "tx_hash": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17", + "tx_hash": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8", "tx_index": 12, "block_index": 124, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509587, + "block_time": 1726736854, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } }, { - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", "tx_index": 11, "block_index": 123, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726736850, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } @@ -6059,22 +6059,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", "tx_index": 11, "block_index": 123, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726736850, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } @@ -6087,9 +6087,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6104,7 +6104,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509903, + "block_time": 1726737160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6130,9 +6130,9 @@ }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6147,7 +6147,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726509899, + "block_time": 1726737147, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6173,9 +6173,9 @@ }, { "tx_index": 52, - "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "block_index": 186, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6190,7 +6190,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726737130, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6216,9 +6216,9 @@ }, { "tx_index": 50, - "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "tx_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "block_index": 185, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6233,7 +6233,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726737126, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6259,9 +6259,9 @@ }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", "block_index": 186, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6276,7 +6276,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726737130, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6307,9 +6307,9 @@ "/v2/orders/": { "result": { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6324,7 +6324,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509903, + "block_time": 1726737160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6352,13 +6352,13 @@ "/v2/orders//matches": { "result": [ { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 52, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6372,7 +6372,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726737130, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6392,13 +6392,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 50, - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6412,7 +6412,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726737126, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6439,15 +6439,15 @@ "result": [ { "tx_index": 51, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", "block_index": 185, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "btc_amount": 2000, - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "status": "valid", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726737126, "btc_amount_normalized": "0.00002000" } ], @@ -6458,9 +6458,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6478,7 +6478,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509903, + "block_time": 1726737160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6504,9 +6504,9 @@ }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6524,7 +6524,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509899, + "block_time": 1726737147, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6550,9 +6550,9 @@ }, { "tx_index": 52, - "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "block_index": 186, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6570,7 +6570,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726509871, + "block_time": 1726737130, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6596,9 +6596,9 @@ }, { "tx_index": 50, - "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "tx_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "block_index": 185, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6616,7 +6616,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726509867, + "block_time": 1726737126, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6642,9 +6642,9 @@ }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", "block_index": 186, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6662,7 +6662,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509871, + "block_time": 1726737130, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6693,13 +6693,13 @@ "/v2/orders///matches": { "result": [ { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 52, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6716,7 +6716,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509871, + "block_time": 1726737130, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6736,13 +6736,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 50, - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6759,7 +6759,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509867, + "block_time": 1726737126, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6779,13 +6779,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", "tx0_index": 47, - "tx0_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 48, - "tx1_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6802,7 +6802,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509796, + "block_time": 1726737039, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6828,13 +6828,13 @@ "/v2/order_matches": { "result": [ { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 52, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6848,7 +6848,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726737130, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6868,13 +6868,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 50, - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6888,7 +6888,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726737126, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6908,13 +6908,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", "tx0_index": 47, - "tx0_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx1_index": 48, - "tx1_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6928,7 +6928,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726509796, + "block_time": 1726737039, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6973,66 +6973,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "2504c4bdafa1c2cab23605685e6a8040748f7d6df91f857b42f1cb259d3a91e0", + "tx_hash": "accb843c4f0dc47c8feaca2ac467eb476f25798fa16c2133aa4f15da2e62a5e5", "block_index": 121, - "source": "bcrt1qyzyw25seaw22494hrmtlwsm3d5mqyp93fd25da", + "source": "bcrt1qvf529w4jc36v4txgxtthdzc2jvgzn0qpkdd8tw", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1726509573, + "block_time": 1726736841, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "6322f2e8e202acc14afc1b22b19ac8ab56b27f17712400d116568a1da72222cc", + "tx_hash": "20782a298e51d2d1a7f9c3b920f9c72b51d9a574c6f77e02e6adb87410bc6b1a", "block_index": 120, - "source": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", + "source": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1726509569, + "block_time": 1726736837, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "38fc46963011e93a419c7d62e149905064cd942d143e7452ee3a67a6183f9e98", + "tx_hash": "bd3f991a5d7dbc12e586a84d6642b6b84a89782953a4cffffa667c9f1ff937df", "block_index": 119, - "source": "bcrt1qqt2dxp9pmcgvjrckeyuy29myfghay5le53hl0d", + "source": "bcrt1qpf2m3cll06k4j3gqerdgh90e6zqeshl6k209nc", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1726509565, + "block_time": 1726736834, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "f8d15199587f10cbe7ee5233aba5c8fcc99d9ba2e1c6995360c80912f6eb2a6c", + "tx_hash": "88e6ae087135607c1cd02b944bfcaad8743c914c1876d257b136888cb052591e", "block_index": 118, - "source": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1726509560, + "block_time": 1726736829, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "7b45fa1f2e5deab279659946a3af0948830f02d9df9dd929afc3d897f23384ef", + "tx_hash": "3421718e44114f29c722f2912b34cefecfdc22b80b7272624ed2c2116f97d5f1", "block_index": 117, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1726509556, + "block_time": 1726736825, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7044,18 +7044,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7065,7 +7065,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726509701, + "block_time": 1726736947, "asset_info": { "divisible": true, "asset_longname": null, @@ -7081,9 +7081,9 @@ }, { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7092,7 +7092,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7102,7 +7102,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726736939, "asset_info": { "divisible": true, "asset_longname": null, @@ -7118,9 +7118,9 @@ }, { "tx_index": 29, - "tx_hash": "ee65a85736487849d0d1ac06ea09424e477194edd27c7c31afbe06f4fbb6142c", + "tx_hash": "5a9a68441db332e17f18f00c8ea2794b8e8357f65ba5c4a19f5c761c07c18a77", "block_index": 142, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7129,7 +7129,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "origin": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7139,7 +7139,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509684, + "block_time": 1726736931, "asset_info": { "divisible": true, "asset_longname": null, @@ -7155,9 +7155,9 @@ }, { "tx_index": 26, - "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7166,7 +7166,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7176,7 +7176,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -7197,9 +7197,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7208,7 +7208,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7218,7 +7218,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -7238,19 +7238,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7258,7 +7258,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7273,7 +7273,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -7287,19 +7287,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7307,7 +7307,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7322,7 +7322,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726736922, "asset_info": { "divisible": true, "asset_longname": null, @@ -7341,20 +7341,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", "block_index": 153, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726736978, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -7375,20 +7375,20 @@ "/v2/dividends/": { "result": { "tx_index": 40, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", "block_index": 153, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726736978, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -7411,12 +7411,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "event": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", "tx_index": 40, - "utxo": "9d34a868637906281a292d50facdb8551872a2d08cd28cf7a895f10f80cb0b32:0", - "utxo_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "utxo": "0e5ef2ca6efc97a98e3cfc14841e15218cffff5e3997610098a146a1a32d3e4c:0", + "utxo_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726736978, "asset_info": { "divisible": true, "asset_longname": null, @@ -7428,16 +7428,16 @@ }, { "block_index": 153, - "address": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0", + "address": "bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "event": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509732, + "block_time": 1726736978, "asset_info": { "divisible": true, "asset_longname": null, @@ -7458,27 +7458,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", + "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", "transaction_count": 1, - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "block_time": 1726509912 + "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", + "block_time": 1726737169 }, "tx_hash": null, "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "tx_index": 59 }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 }, { "event_index": 533, @@ -7487,12 +7487,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "status": "valid", "tag": "64657374726f79", - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "tx_index": 59, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -7502,24 +7502,24 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 193, - "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "event": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -7529,25 +7529,25 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", "block_index": 193, - "block_time": 1726509912, + "block_time": 1726737169, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "tx_index": 59, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -7567,9 +7567,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 } ], "next_cursor": 530, @@ -7581,15 +7581,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", + "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", "transaction_count": 1, - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "block_time": 1726509912 + "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", + "block_time": 1726737169 }, "tx_hash": null, "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 } }, "/v2/events/counts": { @@ -7624,16 +7624,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -7643,78 +7643,78 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726509899, + "block_time": 1726737147, "asset_info": { "divisible": true, "asset_longname": null, @@ -7724,24 +7724,24 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726737147 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "event": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "divisible": true, "asset_longname": null, @@ -7751,9 +7751,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "block_time": 1726509890 + "block_time": 1726737138 } ], "next_cursor": 490, @@ -7770,27 +7770,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7805,7 +7805,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726509701, + "block_time": 1726736947, "asset_info": { "divisible": true, "asset_longname": null, @@ -7819,19 +7819,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7839,7 +7839,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7854,7 +7854,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726736926, "asset_info": { "divisible": true, "asset_longname": null, @@ -7868,19 +7868,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7888,7 +7888,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7903,7 +7903,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726736922, "asset_info": { "divisible": true, "asset_longname": null, @@ -7922,10 +7922,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -7933,7 +7933,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "divisible": true, "asset_longname": null, @@ -7946,10 +7946,10 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -7957,11 +7957,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -7970,10 +7970,10 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -7981,11 +7981,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -7994,10 +7994,10 @@ }, { "tx_index": 53, - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03", + "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a", "block_index": 187, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -8005,7 +8005,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509886, + "block_time": 1726737134, "asset_info": { "divisible": true, "asset_longname": null, @@ -8018,10 +8018,10 @@ }, { "tx_index": 42, - "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", "block_index": 155, - "source": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0", - "destination": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1", + "source": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5:0", + "destination": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8029,7 +8029,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509741, + "block_time": 1726736988, "asset_info": { "divisible": true, "asset_longname": null, @@ -8048,14 +8048,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -8070,20 +8070,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509780, + "block_time": 1726737024, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "99d6840da9077ad147d3cb8e3a527ebcb05445b5e72d0fa4f9429f91a2ed5f9f", + "tx_hash": "d7cbe9778e884b6f2582d7a57940b012bf1ddb5b700e7dd072c69bedd7e9b3a8", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -8098,20 +8098,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726509775, + "block_time": 1726737011, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "edf7eb0a60e46ad53360d769c00fbd350628dff893bb6f1869570c9fdcfc71af", + "tx_hash": "fc3408b9506f75d2a3f1a65d6fe00a222a56fde09335e34953794e0293f63afe", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -8126,20 +8126,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509760, + "block_time": 1726736996, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "23d681cb0c9d9310fd8150fcabf440c84cae363db926d0fcde70cbe12373f96f", + "tx_hash": "2ee2bf2492eaafe424159ad97df4e43df151dd3c12ffe7c393b7bf9256b9bb32", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -8154,20 +8154,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509746, + "block_time": 1726736992, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", - "issuer": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", + "source": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", + "issuer": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", "transfer": false, "callable": false, "call_date": 0, @@ -8182,7 +8182,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509741, + "block_time": 1726736988, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8193,14 +8193,14 @@ "/v2/issuances/": { "result": { "tx_index": 46, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "transfer": false, "callable": false, "call_date": 0, @@ -8215,7 +8215,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509780, + "block_time": 1726737024, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8224,16 +8224,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "fee_paid_normalized": "0.00600000" } ], @@ -8244,16 +8244,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726737165, "fee_paid_normalized": "0.00600000" } ], @@ -8264,9 +8264,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a", + "tx_hash": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d", "block_index": 138, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8274,14 +8274,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726509656, + "block_time": 1726736913, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "1629a61f230d38e661231eeaac724d9336e9413ce0a9f145c49d57030ae05b8d", + "tx_hash": "b1010bdab734a9e4cce02ad65bcf68fbc73fe1bb28f21c9b91d6cf68c1a62186", "block_index": 137, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8289,7 +8289,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726509652, + "block_time": 1726736909, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8299,9 +8299,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a", + "tx_hash": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d", "block_index": 138, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8309,17 +8309,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726509656, + "block_time": 1726736913, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8344,13 +8344,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509644 + "block_time": 1726736900 }, { - "tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8375,13 +8375,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509617 + "block_time": 1726736883 }, { - "tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16", + "tx_hash": "c4de72bddcecc2b88f8e0746e02446a566b0fca27fe3e4b9bd4c20e550f9089a", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8406,13 +8406,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509613 + "block_time": 1726736879 }, { - "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8437,7 +8437,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509592 + "block_time": 1726736859 } ], "next_cursor": null, @@ -8451,8 +8451,8 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", - "address": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p" + "txid": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "address": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa" }, { "vout": 2, @@ -8460,8 +8460,8 @@ "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", - "address": "bcrt1qqt2dxp9pmcgvjrckeyuy29myfghay5le53hl0d" + "txid": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", + "address": "bcrt1qpf2m3cll06k4j3gqerdgh90e6zqeshl6k209nc" } ], "next_cursor": null, @@ -8470,28 +8470,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03" + "tx_hash": "35f402483a54a03e637b77b2ff618642d6e435f34c3c89219374add7f500dc22" }, { - "tx_hash": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17" + "tx_hash": "214738c81dae0c37908684349735808636cb192d94e707070ce65e195da93129" }, { - "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21" + "tx_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543" }, { - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "7c7028f67836beaa5fb2de94c6daea92f4efba5aeae1c1b193c994c5ac14cf51" }, { - "tx_hash": "d2f3afeb63580aa006eee4e055138c2903f7e8172876f688b7241e2ebbe5f172" + "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a" }, { - "tx_hash": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88" + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" }, { - "tx_hash": "58f41fb8b8ec22f12daa5aad5a4f72194f54f652542abd409766afe4de2798b9" + "tx_hash": "b8e39db42ecddab4c8ad0e1a4b6eb762874e130b8210de94b4478870955b1bab" }, { - "tx_hash": "cd209fe04d43a38dcf842ad0d74fd71e123c66549db03f3650099a7e5f0297be" + "tx_hash": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8" } ], "next_cursor": null, @@ -8499,8 +8499,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 1, - "tx_hash": "39808e5b91587a72ae37c23d618a8526cf4c292592c2681dd3400837654b0786" + "block_index": 5, + "tx_hash": "b50e711e978f5a5477fc4cf4e91bb2d3b9dac77d07cf870bf425744458692f65" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -8511,20 +8511,20 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535" + "txid": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a9387076169" + "result": "0375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101ba21bea38dc876b1215be6872f0c75a77328eb90aea0f5e5f5d687b38e7ca5050300000000ffffffff020000000000000000226a20e661db2d032f2a3e7844cfb698121f85b2b30cced7b8b215b0e8fe1f5fd1a779680b0a2701000000160014ae2b0c1095bbdf23747f76b242be716817701b780247304402205f232b082605ae63445a865c556deef60158bbdf42b4ac8953b712ef33fe80a202203c7aebb1b51e30698a54c8e0177213dcbcd480529ede188b0a18129a80637fef0121035352a3478786437bb2f973478638b43a6bee4a925c1b0efd94dc193e94b198b500000000" + "result": "020000000001013bdf1654a90fe1783a50681199de6179853c042521596687d881994ee8eb300c0300000000ffffffff020000000000000000226a205780b5fb5db97431be86268e03356b0778fabaeb4ebdeeec9c70b454de905fd7680b0a2701000000160014e816f5562a0ee9cab6015173bbded2ef7b58ca5d02473044022043f9fd67ea65c1aef5456a374bfa1ae33b4ada4f72edb7ad41d1fb5d888a2a6f022032e44ab507cf7bc3aaa686b96288e3b68a4599ea1d7a08af3f3a1c008c077b400121038ef0fcfc05b3050b57c3e601c310e1a138a8d148b1ea0c333eff1fe919f4999c00000000" }, "/v2/bitcoin/estimatesmartfee": { - "result": 68546 + "result": 68456 }, "/v2/bitcoin/getmempoolinfo": { "result": { @@ -8544,26 +8544,26 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "tx_index": 60 } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "memo": null, "quantity": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "status": "valid", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "tx_index": 60, "asset_info": { "divisible": true, @@ -8576,19 +8576,19 @@ } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "CREDIT", "params": { - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -8600,19 +8600,19 @@ } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 193, - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -8624,27 +8624,27 @@ } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726509917.0831685, + "block_time": 1726737173.5878787, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f92", + "data": "0200000000000000010000000000002710803e32791d2b81299971b964239daaa0099a945708", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "tx_index": 60, - "utxos_info": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6:1", + "utxos_info": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "memo": null, "asset_info": { "divisible": true, @@ -8666,19 +8666,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "CREDIT", "params": { - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -8696,26 +8696,26 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "tx_index": 60 } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "memo": null, "quantity": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "status": "valid", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "tx_index": 60, "asset_info": { "divisible": true, @@ -8728,19 +8728,19 @@ } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "CREDIT", "params": { - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -8752,19 +8752,19 @@ } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 193, - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -8776,27 +8776,27 @@ } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726509917.0831685, + "block_time": 1726737173.5878787, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f92", + "data": "0200000000000000010000000000002710803e32791d2b81299971b964239daaa0099a945708", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", "tx_index": 60, - "utxos_info": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6:1", + "utxos_info": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "memo": null, "asset_info": { "divisible": true, @@ -8831,15 +8831,15 @@ "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", "block_index": 193, - "block_time": 1726509912, + "block_time": 1726737169, "difficulty": 545259519, - "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e" + "previous_block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf" }, "tx_hash": null, "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 } ], "next_cursor": 518, @@ -8851,17 +8851,17 @@ "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", + "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", "block_index": 193, - "block_time": 1726509912, + "block_time": 1726737169, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "tx_index": 59, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8881,9 +8881,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 } ], "next_cursor": 519, @@ -8897,16 +8897,16 @@ "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "destination": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "out_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", "tx_index": 33, - "block_time": 1726509701, + "block_time": 1726736947, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", "block_index": 146, - "block_time": 1726509701 + "block_time": 1726736947 } ], "next_cursor": 237, @@ -8919,15 +8919,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", + "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", "transaction_count": 1, - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "block_time": 1726509912 + "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", + "block_time": 1726737169 }, "tx_hash": null, "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 } ], "next_cursor": 529, @@ -8940,12 +8940,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "tx_index": 59 }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 } ], "next_cursor": 528, @@ -8958,15 +8958,15 @@ "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 193, - "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "event": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -8976,9 +8976,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 } ], "next_cursor": 525, @@ -8990,16 +8990,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726737165, "asset_info": { "divisible": true, "asset_longname": null, @@ -9009,9 +9009,9 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 } ], "next_cursor": 524, @@ -9025,14 +9025,14 @@ "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "memo": null, "quantity": 10000, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "status": "valid", - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03", + "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a", "tx_index": 53, - "block_time": 1726509886, + "block_time": 1726737134, "asset_info": { "divisible": true, "asset_longname": null, @@ -9042,9 +9042,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03", + "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a", "block_index": 187, - "block_time": 1726509886 + "block_time": 1726737134 } ], "next_cursor": null, @@ -9058,15 +9058,15 @@ "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "status": "valid", - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "tx_index": 54, - "block_time": 1726509890, + "block_time": 1726737138, "asset_info": { "divisible": true, "asset_longname": null, @@ -9076,9 +9076,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", "block_index": 188, - "block_time": 1726509890 + "block_time": 1726737138 } ], "next_cursor": 495, @@ -9101,20 +9101,20 @@ "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "status": "valid", - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "tx_index": 58, - "block_time": 1726509908, + "block_time": 1726737165, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726737165 } ], "next_cursor": null, @@ -9131,15 +9131,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "status": "valid", - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", "tx_index": 40, - "block_time": 1726509732, + "block_time": 1726736978, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, @@ -9153,9 +9153,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", "block_index": 153, - "block_time": 1726509732 + "block_time": 1726736978 } ], "next_cursor": null, @@ -9176,11 +9176,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 159, - "block_time": 1726509780 + "block_time": 1726737024 }, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", "block_index": 159, - "block_time": 1726509780 + "block_time": 1726737024 } ], "next_cursor": 367, @@ -9203,22 +9203,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "status": "valid", "transfer": false, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", "tx_index": 46, - "block_time": 1726509780, + "block_time": 1726737024, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", "block_index": 159, - "block_time": 1726509780 + "block_time": 1726737024 } ], "next_cursor": 374, @@ -9233,12 +9233,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", "status": "valid", "tag": "64657374726f79", - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "tx_index": 59, - "block_time": 1726509912, + "block_time": 1726737169, "asset_info": { "divisible": true, "asset_longname": null, @@ -9248,9 +9248,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726737169 } ], "next_cursor": 157, @@ -9275,11 +9275,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "status": "open", - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "tx_index": 57, - "block_time": 1726509903, + "block_time": 1726737160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9303,9 +9303,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", "block_index": 191, - "block_time": 1726509903 + "block_time": 1726737160 } ], "next_cursor": 502, @@ -9323,20 +9323,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", "tx0_index": 49, - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "tx1_index": 52, - "block_time": 1726509871, + "block_time": 1726737130, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9355,9 +9355,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", "block_index": 186, - "block_time": 1726509871 + "block_time": 1726737130 } ], "next_cursor": 461, @@ -9370,11 +9370,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2" + "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861" }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726737147 } ], "next_cursor": 476, @@ -9387,11 +9387,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a" + "tx_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a" }, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", "block_index": 185, - "block_time": 1726509867 + "block_time": 1726737126 } ], "next_cursor": null, @@ -9403,13 +9403,13 @@ "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", "status": "completed" }, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", "block_index": 185, - "block_time": 1726509867 + "block_time": 1726737126 } ], "next_cursor": 440, @@ -9423,18 +9423,18 @@ "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "status": "valid", - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", "tx_index": 51, - "block_time": 1726509867, + "block_time": 1726737126, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", "block_index": 185, - "block_time": 1726509867 + "block_time": 1726737126 } ], "next_cursor": null, @@ -9447,16 +9447,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "status": "valid", - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "tx_index": 56, - "block_time": 1726509899 + "block_time": 1726737147 }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726737147 } ], "next_cursor": null, @@ -9469,13 +9469,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "block_time": 1726509796 + "order_hash": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "block_time": 1726737039 }, "tx_hash": null, "block_index": 182, - "block_time": 1726509796 + "block_time": 1726737039 } ], "next_cursor": 446, @@ -9488,14 +9488,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "block_time": 1726509796 + "order_match_id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "block_time": 1726737039 }, "tx_hash": null, "block_index": 182, - "block_time": 1726509796 + "block_time": 1726737039 } ], "next_cursor": null, @@ -9513,14 +9513,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "satoshirate": 1, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "status": 0, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", "tx_index": 32, - "block_time": 1726509697, + "block_time": 1726736943, "asset_info": { "divisible": true, "asset_longname": null, @@ -9533,9 +9533,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", "block_index": 145, - "block_time": 1726509697 + "block_time": 1726736943 } ], "next_cursor": 254, @@ -9550,9 +9550,9 @@ "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "status": 0, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", "asset_info": { "divisible": true, "asset_longname": null, @@ -9562,9 +9562,9 @@ }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", "block_index": 146, - "block_time": 1726509701 + "block_time": 1726736947 } ], "next_cursor": 260, @@ -9578,13 +9578,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mnLwb4LAYvLe6gesyGs1d34NnRaSRpScfq", + "destination": "mm9iEM6Zd8MsTTeQYBytE5NgVcLxeewVdf", "dispense_quantity": 10, - "dispenser_tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "tx_hash": "962792bfe558b1042295417f1b88d03dfa7547cb82ab870bbd57854561acf3b5", + "dispenser_tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx_hash": "3509b22642f2e8b091100d07ba3ece1aeaa96297a8eeade7e78a68f83c8cbc96", "tx_index": 31, - "block_time": 1726509693, + "block_time": 1726736939, "asset_info": { "divisible": true, "asset_longname": null, @@ -9594,9 +9594,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "962792bfe558b1042295417f1b88d03dfa7547cb82ab870bbd57854561acf3b5", + "tx_hash": "3509b22642f2e8b091100d07ba3ece1aeaa96297a8eeade7e78a68f83c8cbc96", "block_index": 144, - "block_time": 1726509693 + "block_time": 1726736939 } ], "next_cursor": null, @@ -9611,14 +9611,14 @@ "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", "tx_index": 33, - "block_time": 1726509701, + "block_time": 1726736947, "asset_info": { "divisible": true, "asset_longname": null, @@ -9629,9 +9629,9 @@ "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", "block_index": 146, - "block_time": 1726509701 + "block_time": 1726736947 } ], "next_cursor": 240, @@ -9646,19 +9646,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a", + "tx_hash": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d", "tx_index": 25, "value": 66600.0, - "block_time": 1726509656, + "block_time": 1726736913, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a", + "tx_hash": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d", "block_index": 138, - "block_time": 1726509656 + "block_time": 1726736913 } ], "next_cursor": 213, @@ -9689,16 +9689,16 @@ "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "start_block": 0, "status": "open", - "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", "tx_index": 22, - "block_time": 1726509644 + "block_time": 1726736900 }, - "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", "block_index": 135, - "block_time": 1726509644 + "block_time": 1726736900 } ], "next_cursor": 161, @@ -9711,11 +9711,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16" + "tx_hash": "c4de72bddcecc2b88f8e0746e02446a566b0fca27fe3e4b9bd4c20e550f9089a" }, "tx_hash": null, "block_index": 130, - "block_time": 1726509613 + "block_time": 1726736879 } ], "next_cursor": 110, @@ -9731,24 +9731,24 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "fairminter_tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", "paid_quantity": 34, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", "status": "valid", - "tx_hash": "a899b1a361e0514262442a4a300d7571606a3462d50819092e649c490fbcb1e6", + "tx_hash": "661c344111ceedee5cbe79a2043e49979922a9af9ced08540254cf13090082ac", "tx_index": 23, - "block_time": 1726509648, + "block_time": 1726736905, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false } }, - "tx_hash": "a899b1a361e0514262442a4a300d7571606a3462d50819092e649c490fbcb1e6", + "tx_hash": "661c344111ceedee5cbe79a2043e49979922a9af9ced08540254cf13090082ac", "block_index": 136, - "block_time": 1726509648 + "block_time": 1726736905 } ], "next_cursor": 190, @@ -9762,28 +9762,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1", + "destination": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "status": "valid", - "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "tx_hash": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", "tx_index": 38, - "block_time": 1726509724, + "block_time": 1726736969, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "tx_hash": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", "block_index": 151, - "block_time": 1726509724 + "block_time": 1726736969 } ], "next_cursor": 291, @@ -9797,28 +9797,28 @@ "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0", + "destination": "bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88:0", + "source": "35f402483a54a03e637b77b2ff618642d6e435f34c3c89219374add7f500dc22:0", "status": "valid", - "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba", + "tx_hash": "0c30ebe84e9981d88766592125043c857961de991168503a78e10fa95416df3b", "tx_index": 37, - "block_time": 1726509719, + "block_time": 1726736965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba", + "tx_hash": "0c30ebe84e9981d88766592125043c857961de991168503a78e10fa95416df3b", "block_index": 150, - "block_time": 1726509719 + "block_time": 1726736965 } ], "next_cursor": null, @@ -9832,14 +9832,14 @@ "params": { "asset": "XCP", "block_index": 155, - "destination": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1", + "destination": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147:1", "msg_index": 1, "quantity": 1500000000, - "source": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0", + "source": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5:0", "status": "valid", - "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", "tx_index": 42, - "block_time": 1726509741, + "block_time": 1726736988, "asset_info": { "divisible": true, "asset_longname": null, @@ -9849,9 +9849,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", "block_index": 155, - "block_time": 1726509741 + "block_time": 1726736988 } ], "next_cursor": 346, @@ -9866,17 +9866,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qyzyw25seaw22494hrmtlwsm3d5mqyp93fd25da", + "source": "bcrt1qvf529w4jc36v4txgxtthdzc2jvgzn0qpkdd8tw", "status": "valid", - "tx_hash": "2504c4bdafa1c2cab23605685e6a8040748f7d6df91f857b42f1cb259d3a91e0", + "tx_hash": "accb843c4f0dc47c8feaca2ac467eb476f25798fa16c2133aa4f15da2e62a5e5", "tx_index": 9, - "block_time": 1726509573, + "block_time": 1726736841, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "2504c4bdafa1c2cab23605685e6a8040748f7d6df91f857b42f1cb259d3a91e0", + "tx_hash": "accb843c4f0dc47c8feaca2ac467eb476f25798fa16c2133aa4f15da2e62a5e5", "block_index": 121, - "block_time": 1726509573 + "block_time": 1726736841 } ], "next_cursor": 65, diff --git a/counterparty-core/pyproject.toml b/counterparty-core/pyproject.toml index c5e6c06803..e513b96296 100644 --- a/counterparty-core/pyproject.toml +++ b/counterparty-core/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "counterparty-core" -requires-python = ">= 3.10, < 3.12" +requires-python = ">= 3.10, != 3.12" dynamic = ["version", "dependencies"] description = "Counterparty Protocol Reference Implementation" readme = "../README.md" From da991f913a082bb824d0cb1a008251f73a135ebe Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 19 Sep 2024 10:40:21 +0000 Subject: [PATCH 12/46] Add route to get info by tx_hash; fixes --- apiary.apib | 3397 +++++++++-------- .../counterpartycore/lib/api/routes.py | 1 + .../counterpartycore/lib/backend/bitcoind.py | 5 + .../counterpartycore/lib/transaction.py | 19 + .../test/regtest/apidoc/apicache.json | 3051 +++++++-------- .../scenarios/scenario_last_mempool.py | 51 + .../test/regtest/testscenarios.py | 12 +- dredd.yml | 1 + 8 files changed, 3356 insertions(+), 3181 deletions(-) diff --git a/apiary.apib b/apiary.apib index f23a282987..5ec4cdcfc1 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-09-19 09:13:08.405600. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-09-19 10:37:17.989867. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -179,15 +179,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", "block_index": 193, - "block_time": 1726737169, + "block_time": 1726742211, "difficulty": 545259519, - "previous_block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf" + "previous_block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f" }, "tx_hash": null, "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 } ], "next_cursor": 518, @@ -204,17 +204,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", "block_index": 193, - "block_time": 1726737169, + "block_time": 1726742211, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "tx_index": 59, - "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", + "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -234,9 +234,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 } ], "next_cursor": 519, @@ -255,16 +255,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "destination": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "out_index": 0, - "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", "tx_index": 33, - "block_time": 1726736947, + "block_time": 1726742026, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", "block_index": 146, - "block_time": 1726736947 + "block_time": 1726742026 } ], "next_cursor": 237, @@ -282,15 +282,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", - "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", + "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", + "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", "transaction_count": 1, - "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", - "block_time": 1726737169 + "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", + "block_time": 1726742211 }, "tx_hash": null, "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 } ], "next_cursor": 529, @@ -308,12 +308,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "tx_index": 59 }, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 } ], "next_cursor": 528, @@ -333,15 +333,15 @@ Here is a list of events classified by theme and for each an example response: "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 193, - "event": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "event": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -351,9 +351,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 } ], "next_cursor": 525, @@ -370,16 +370,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -389,9 +389,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 } ], "next_cursor": 524, @@ -410,14 +410,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "memo": null, "quantity": 10000, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "status": "valid", - "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a", + "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a", "tx_index": 53, - "block_time": 1726737134, + "block_time": 1726742186, "asset_info": { "divisible": true, "asset_longname": null, @@ -427,9 +427,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a", + "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a", "block_index": 187, - "block_time": 1726737134 + "block_time": 1726742186 } ], "next_cursor": null, @@ -448,15 +448,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "status": "valid", - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "tx_index": 54, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "divisible": true, "asset_longname": null, @@ -466,9 +466,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "block_time": 1726737138 + "block_time": 1726742190 } ], "next_cursor": 495, @@ -506,20 +506,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "status": "valid", - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, - "block_time": 1726737165, + "block_time": 1726742207, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 } ], "next_cursor": null, @@ -541,15 +541,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": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "status": "valid", - "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", + "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", "tx_index": 40, - "block_time": 1726736978, + "block_time": 1726742056, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -563,9 +563,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": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", + "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", "block_index": 153, - "block_time": 1726736978 + "block_time": 1726742056 } ], "next_cursor": null, @@ -598,11 +598,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": 159, - "block_time": 1726737024 + "block_time": 1726742082 }, - "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", + "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", "block_index": 159, - "block_time": 1726737024 + "block_time": 1726742082 } ], "next_cursor": 367, @@ -630,22 +630,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": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "status": "valid", "transfer": false, - "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", + "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", "tx_index": 46, - "block_time": 1726737024, + "block_time": 1726742082, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", + "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", "block_index": 159, - "block_time": 1726737024 + "block_time": 1726742082 } ], "next_cursor": 374, @@ -665,12 +665,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "status": "valid", "tag": "64657374726f79", - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "tx_index": 59, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -680,9 +680,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 } ], "next_cursor": 157, @@ -714,11 +714,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": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "status": "open", - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "tx_index": 57, - "block_time": 1726737160, + "block_time": 1726742203, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -742,9 +742,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": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "block_time": 1726737160 + "block_time": 1726742203 } ], "next_cursor": 502, @@ -767,20 +767,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": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", "tx0_index": 49, - "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "tx1_index": 52, - "block_time": 1726737130, + "block_time": 1726742182, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -799,9 +799,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": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "tx_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "block_index": 186, - "block_time": 1726737130 + "block_time": 1726742182 } ], "next_cursor": 461, @@ -819,11 +819,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861" + "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0" }, - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "block_index": 190, - "block_time": 1726737147 + "block_time": 1726742198 } ], "next_cursor": 476, @@ -841,11 +841,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a" + "tx_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac" }, - "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", + "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", "block_index": 185, - "block_time": 1726737126 + "block_time": 1726742178 } ], "next_cursor": null, @@ -862,13 +862,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", - "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "status": "completed" }, - "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", + "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", "block_index": 185, - "block_time": 1726737126 + "block_time": 1726742178 } ], "next_cursor": 440, @@ -887,18 +887,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "status": "valid", - "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", + "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", "tx_index": 51, - "block_time": 1726737126, + "block_time": 1726742178, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", + "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", "block_index": 185, - "block_time": 1726737126 + "block_time": 1726742178 } ], "next_cursor": null, @@ -916,16 +916,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "status": "valid", - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "tx_index": 56, - "block_time": 1726737147 + "block_time": 1726742198 }, - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "block_index": 190, - "block_time": 1726737147 + "block_time": 1726742198 } ], "next_cursor": null, @@ -943,13 +943,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "block_time": 1726737039 + "order_hash": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "block_time": 1726742099 }, "tx_hash": null, "block_index": 182, - "block_time": 1726737039 + "block_time": 1726742099 } ], "next_cursor": 446, @@ -967,14 +967,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "block_time": 1726737039 + "order_match_id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "block_time": 1726742099 }, "tx_hash": null, "block_index": 182, - "block_time": 1726737039 + "block_time": 1726742099 } ], "next_cursor": null, @@ -999,14 +999,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": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", - "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "satoshirate": 1, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "status": 0, - "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", "tx_index": 32, - "block_time": 1726736943, + "block_time": 1726742021, "asset_info": { "divisible": true, "asset_longname": null, @@ -1019,9 +1019,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": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", "block_index": 145, - "block_time": 1726736943 + "block_time": 1726742021 } ], "next_cursor": 254, @@ -1041,9 +1041,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "status": 0, - "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", "asset_info": { "divisible": true, "asset_longname": null, @@ -1053,9 +1053,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", "block_index": 146, - "block_time": 1726736947 + "block_time": 1726742026 } ], "next_cursor": 260, @@ -1074,13 +1074,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mm9iEM6Zd8MsTTeQYBytE5NgVcLxeewVdf", + "destination": "mvp1Wt3dDXLsTRMaAirFTs5YbHsGGJvZUe", "dispense_quantity": 10, - "dispenser_tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "tx_hash": "3509b22642f2e8b091100d07ba3ece1aeaa96297a8eeade7e78a68f83c8cbc96", + "dispenser_tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx_hash": "9695b1501e32ae3c6f4f24caeca727bd3bfa7c6d0ddb866fab4880ba12f4f658", "tx_index": 31, - "block_time": 1726736939, + "block_time": 1726742017, "asset_info": { "divisible": true, "asset_longname": null, @@ -1090,9 +1090,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "3509b22642f2e8b091100d07ba3ece1aeaa96297a8eeade7e78a68f83c8cbc96", + "tx_hash": "9695b1501e32ae3c6f4f24caeca727bd3bfa7c6d0ddb866fab4880ba12f4f658", "block_index": 144, - "block_time": 1726736939 + "block_time": 1726742017 } ], "next_cursor": null, @@ -1112,14 +1112,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", + "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", - "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", "tx_index": 33, - "block_time": 1726736947, + "block_time": 1726742026, "asset_info": { "divisible": true, "asset_longname": null, @@ -1130,9 +1130,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", "block_index": 146, - "block_time": 1726736947 + "block_time": 1726742026 } ], "next_cursor": 240, @@ -1154,19 +1154,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": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d", + "tx_hash": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696", "tx_index": 25, "value": 66600.0, - "block_time": 1726736913, + "block_time": 1726741991, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d", + "tx_hash": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696", "block_index": 138, - "block_time": 1726736913 + "block_time": 1726741991 } ], "next_cursor": 213, @@ -1204,16 +1204,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "start_block": 0, "status": "open", - "tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", + "tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", "tx_index": 22, - "block_time": 1726736900 + "block_time": 1726741978 }, - "tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", + "tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", "block_index": 135, - "block_time": 1726736900 + "block_time": 1726741978 } ], "next_cursor": 161, @@ -1231,11 +1231,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "c4de72bddcecc2b88f8e0746e02446a566b0fca27fe3e4b9bd4c20e550f9089a" + "tx_hash": "ac047163f3cd9094f4ee2103b832d0064228aa5f2a7fc8e3104ee775fb181f84" }, "tx_hash": null, "block_index": 130, - "block_time": 1726736879 + "block_time": 1726741947 } ], "next_cursor": 110, @@ -1256,24 +1256,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", + "fairminter_tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", "paid_quantity": 34, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "status": "valid", - "tx_hash": "661c344111ceedee5cbe79a2043e49979922a9af9ced08540254cf13090082ac", + "tx_hash": "4ef19e15a942cd317edd6f0705b17761dac9a1c56bd3d92c4b636cf5b7102c7c", "tx_index": 23, - "block_time": 1726736905, + "block_time": 1726741983, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } }, - "tx_hash": "661c344111ceedee5cbe79a2043e49979922a9af9ced08540254cf13090082ac", + "tx_hash": "4ef19e15a942cd317edd6f0705b17761dac9a1c56bd3d92c4b636cf5b7102c7c", "block_index": 136, - "block_time": 1726736905 + "block_time": 1726741983 } ], "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": 151, - "destination": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9:1", + "destination": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "status": "valid", - "tx_hash": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", + "tx_hash": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", "tx_index": 38, - "block_time": 1726736969, + "block_time": 1726742048, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", + "tx_hash": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", "block_index": 151, - "block_time": 1726736969 + "block_time": 1726742048 } ], "next_cursor": 291, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m", + "destination": "bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "35f402483a54a03e637b77b2ff618642d6e435f34c3c89219374add7f500dc22:0", + "source": "daabc4181b5c356b166fd9efb6056720fec8a1d81871b9c5b091a499e81e663f:0", "status": "valid", - "tx_hash": "0c30ebe84e9981d88766592125043c857961de991168503a78e10fa95416df3b", + "tx_hash": "e4c8f0c552dea7470e5d2ef98ff6568f869c3e95231b43879b3a1fabea2cff64", "tx_index": 37, - "block_time": 1726736965, + "block_time": 1726742043, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "0c30ebe84e9981d88766592125043c857961de991168503a78e10fa95416df3b", + "tx_hash": "e4c8f0c552dea7470e5d2ef98ff6568f869c3e95231b43879b3a1fabea2cff64", "block_index": 150, - "block_time": 1726736965 + "block_time": 1726742043 } ], "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": 155, - "destination": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147:1", + "destination": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0:1", "msg_index": 1, "quantity": 1500000000, - "source": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5:0", + "source": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53:0", "status": "valid", - "tx_hash": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", + "tx_hash": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", "tx_index": 42, - "block_time": 1726736988, + "block_time": 1726742065, "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": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", + "tx_hash": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", "block_index": 155, - "block_time": 1726736988 + "block_time": 1726742065 } ], "next_cursor": 346, @@ -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": "bcrt1qvf529w4jc36v4txgxtthdzc2jvgzn0qpkdd8tw", + "source": "bcrt1qzg7g6s9ckm9rsj4q55s6l4fjzlnzjs60l2vdx3", "status": "valid", - "tx_hash": "accb843c4f0dc47c8feaca2ac467eb476f25798fa16c2133aa4f15da2e62a5e5", + "tx_hash": "9f284d873f6c69ac2600ac8d935d6f4a50e0fff2ed36747baffff21663a4e8cb", "tx_index": 9, - "block_time": 1726736841, + "block_time": 1726741908, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "accb843c4f0dc47c8feaca2ac467eb476f25798fa16c2133aa4f15da2e62a5e5", + "tx_hash": "9f284d873f6c69ac2600ac8d935d6f4a50e0fff2ed36747baffff21663a4e8cb", "block_index": 121, - "block_time": 1726736841 + "block_time": 1726741908 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 193, - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", - "block_time": 1726737169, - "previous_block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_time": 1726742211, + "previous_block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", "difficulty": 545259519, - "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", - "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", - "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", + "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", + "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", + "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", - "block_time": 1726737165, - "previous_block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", + "block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", + "block_time": 1726742207, + "previous_block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", "difficulty": 545259519, - "ledger_hash": "113b4ac64bf9ac160f8e8708650a5d11015244d91fd17d01b3de1fe04be70c78", - "txlist_hash": "558fec084db1e752436b64f7b0a16b3d23bf95d65f565c7bde658319eeb33077", - "messages_hash": "e5e85dcca0aa0aa18c5bd712553a8598a4d416411dc2dacbd84c40a2c8d16364", + "ledger_hash": "0a2bdb38999b534fd2b576ff3c06e3eee38ebf1647458e5728700cedd6efcaed", + "txlist_hash": "7e202711cfe7c8b899866f52138b5f970ae744974e861db8fe7d22b284b88dbf", + "messages_hash": "48160ef2e284595aa7d8f136206cd029ffd17325ffe6584f96a3113dc2f097b5", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", - "block_time": 1726737160, - "previous_block_hash": "183beca9c1ae5f954cb62ccbcb7ab1d73a8c48927fe3ba9543532d5b9ce910a3", + "block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", + "block_time": 1726742203, + "previous_block_hash": "54cd9caaa8fce8a78011bf573033e5c66827b4f054205f1a89eb72cf7264f412", "difficulty": 545259519, - "ledger_hash": "e81ac0e53866984f932b80f2481beac540f6cc62a16e792fd5056b013d9fc368", - "txlist_hash": "d429caa4bda24381dc9fd8efe17f587c45fe10a0f370ab48e62444a53da33cba", - "messages_hash": "a0f05767e14a8d26fd1451e64665fe70bcc522860d08bc04b455175e7199d414", + "ledger_hash": "6e9a0d3d0c0ba20e2081bb9a2dacbdffcf05aaf850bb5ea1debda78f465e48a4", + "txlist_hash": "55c720e469b176ebab9b107f55fa2fa4b81a7b709f5d0d320aec4d0418b30ced", + "messages_hash": "7230316bb7908deaf56674f65e5f861f91d1870c5239f1b17708d290d18d940d", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "183beca9c1ae5f954cb62ccbcb7ab1d73a8c48927fe3ba9543532d5b9ce910a3", - "block_time": 1726737147, - "previous_block_hash": "0ce6237c027d6772c41adb9614ce3b0d9186a8717abe802fc140e2388d92a79c", + "block_hash": "54cd9caaa8fce8a78011bf573033e5c66827b4f054205f1a89eb72cf7264f412", + "block_time": 1726742198, + "previous_block_hash": "49dc4ddb70d192b54a5ca94706a766771f5d75e7013ccde319624e804335bc20", "difficulty": 545259519, - "ledger_hash": "f2adce4e7e612e6ae389add9f0a919d791cfb4cbea7689f82caafa294c330b13", - "txlist_hash": "95250702feb0be119b1a92970c680ea45a022baeec5f15f5c2b7456912db0ce1", - "messages_hash": "b0206ae41b307f14e98b1207f8d922b3a15d8eda41c476236a094f7c3c175aae", + "ledger_hash": "2faa91e8fbe01eb0b87717d897b1f78e3f12a5842cc77bf58dc38fd3f37a3482", + "txlist_hash": "e52ebece08054449aa8a477cd7c19b1542b342af81df4f866eb76be8f24284fd", + "messages_hash": "a1e98cfa9d9ad01e5c9ea206c95f169a6be5152237df625e719b8f648a50ec4a", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "0ce6237c027d6772c41adb9614ce3b0d9186a8717abe802fc140e2388d92a79c", - "block_time": 1726737143, - "previous_block_hash": "20fc4d1702a5f56963ec395c69b45622b30c4a6f58fa15a26a7d15d06d9cc299", + "block_hash": "49dc4ddb70d192b54a5ca94706a766771f5d75e7013ccde319624e804335bc20", + "block_time": 1726742194, + "previous_block_hash": "1223a9ebf3f56e035752b5244d0710e06d19b8d943c71c76b43631da6557211c", "difficulty": 545259519, - "ledger_hash": "36d4783cd8aea1ea7b029dd8d1eea5f46adea1ef5d654fa2dea650c59e90332e", - "txlist_hash": "939204c57db25fa23f6522046856c4e3e84de481fe58083f6f111f10a769a049", - "messages_hash": "e57ab6f69b0cff918442af68a2ed4fdcfef1108674370c8291235532833c2d84", + "ledger_hash": "7f3d92b28bcfa9cb4f9fe9cf2704a600db7cb3775f3d60b40df6ebbf3190c01b", + "txlist_hash": "0ed5cbda0c2184cbfa3c21efaf00573bb0f99adb32b260680a69892879d63afd", + "messages_hash": "eb0dbf67a7c239e8a9800ca126627178fffcefff09d7867dd7a1e9c2de4380fd", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 193, - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", - "block_time": 1726737169, - "previous_block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_time": 1726742211, + "previous_block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", "difficulty": 545259519, - "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", - "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", - "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", + "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", + "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", + "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0` (str, required) - The index of the block to return + + block_hash: `7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd` (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": 193, - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", - "block_time": 1726737169, - "previous_block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_time": 1726742211, + "previous_block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", "difficulty": 545259519, - "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", - "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", - "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", + "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", + "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", + "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 59, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", - "block_time": 1726737169, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_time": 1726742211, + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", + "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1706,11 +1706,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "113b4ac64bf9ac160f8e8708650a5d11015244d91fd17d01b3de1fe04be70c78", - "messages_hash": "e5e85dcca0aa0aa18c5bd712553a8598a4d416411dc2dacbd84c40a2c8d16364", + "ledger_hash": "0a2bdb38999b534fd2b576ff3c06e3eee38ebf1647458e5728700cedd6efcaed", + "messages_hash": "48160ef2e284595aa7d8f136206cd029ffd17325ffe6584f96a3113dc2f097b5", "transaction_count": 1, - "txlist_hash": "558fec084db1e752436b64f7b0a16b3d23bf95d65f565c7bde658319eeb33077", - "block_time": 1726737165 + "txlist_hash": "7e202711cfe7c8b899866f52138b5f970ae744974e861db8fe7d22b284b88dbf", + "block_time": 1726742207 }, "tx_hash": null }, @@ -1719,43 +1719,43 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58 }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "status": "valid", - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, - "block_time": 1726737165, + "block_time": 1726742207, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -1765,22 +1765,22 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "XCP", "block_index": 192, - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -1790,7 +1790,7 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" } ], "next_cursor": 524, @@ -1873,16 +1873,16 @@ Returns the events of a block filtered by event "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -1892,57 +1892,57 @@ Returns the events of a block filtered by event }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" } ], "next_cursor": null, @@ -2005,16 +2005,16 @@ Returns the credits of a block "result": [ { "block_index": 192, - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,20 +2026,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2047,20 +2047,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2116,16 +2116,16 @@ Returns the debits of a block "result": [ { "block_index": 193, - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "event": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -2165,24 +2165,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "object_id": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", "block_index": 182, "confirmed": true, - "block_time": 1726737039 + "block_time": 1726742099 }, { "type": "order", - "object_id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", + "object_id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", "block_index": 182, "confirmed": true, - "block_time": 1726737039 + "block_time": 1726742099 }, { "type": "order_match", - "object_id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "object_id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", "block_index": 182, "confirmed": true, - "block_time": 1726737039 + "block_time": 1726742099 } ], "next_cursor": null, @@ -2214,13 +2214,13 @@ Returns the cancels of a block "result": [ { "tx_index": 56, - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "block_index": 190, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "status": "valid", "confirmed": true, - "block_time": 1726737147 + "block_time": 1726742198 } ], "next_cursor": null, @@ -2252,15 +2252,15 @@ Returns the destructions of a block "result": [ { "tx_index": 59, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -2300,14 +2300,14 @@ Returns the issuances of a block "result": [ { "tx_index": 46, - "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", + "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -2322,7 +2322,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726737024, + "block_time": 1726742082, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2356,10 +2356,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2367,7 +2367,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "divisible": true, "asset_longname": null, @@ -2380,10 +2380,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2391,11 +2391,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2404,10 +2404,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2415,11 +2415,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2457,27 +2457,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", - "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "last_status_tx_hash": null, - "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2492,7 +2492,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726736947, + "block_time": 1726742026, "asset_info": { "divisible": true, "asset_longname": null, @@ -2533,16 +2533,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 58, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "fee_paid_normalized": "0.00600000" } ], @@ -2576,17 +2576,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d", + "tx_hash": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696", "block_index": 138, - "block_hash": "7e45acb73fcefa7403009355078611bc9181758c2aba38ea6c5674b00813e95a", - "block_time": 1726736913, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "block_hash": "647a8b592e07b4e44323c9f8cc00cfd55804bbc1e54298977e8e6a7095c8639c", + "block_time": 1726741991, + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d:1", + "utxos_info": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2611,25 +2611,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 51, - "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", + "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", "block_index": 185, - "block_hash": "4cf4464c33d15629e0bd0b037dd008ce660191a9b79778db1087bc9214247f38", - "block_time": 1726737126, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "592f49ff43d18849d9b56671fedc5a4de889bebd46b34f08efcc8fa908b1e928", + "block_time": 1726742178, + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "btc_amount": 2000, "fee": 10000, - "data": "0b5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "data": "0b4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "supported": true, - "utxos_info": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4:0", + "utxos_info": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", - "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", - "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "status": "valid" } }, @@ -2644,23 +2644,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "block_index": 190, - "block_hash": "183beca9c1ae5f954cb62ccbcb7ab1d73a8c48927fe3ba9543532d5b9ce910a3", - "block_time": 1726737147, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "54cd9caaa8fce8a78011bf573033e5c66827b4f054205f1a89eb72cf7264f412", + "block_time": 1726742198, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "data": "46975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "supported": true, - "utxos_info": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe:1", + "utxos_info": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "status": "valid" } }, @@ -2675,17 +2675,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", - "block_time": 1726737169, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_time": 1726742211, + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", + "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2715,17 +2715,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 32, - "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", "block_index": 145, - "block_hash": "5a1fddd926c162cbb2e49d165e7606e6a605f1983946530be746dd7a170c6a19", - "block_time": 1726736943, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "block_hash": "78b23f6904604532f3b6bb7ec8565e2ba4b3701295e761f8ac9271c0e087628a", + "block_time": 1726742021, + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c00000000000000010000000000000001000000000000271000000000000000010080bf447925768a63c1bdf7d15051c4f4704b2ca54b", + "data": "0c00000000000000010000000000000001000000000000271000000000000000010080811a085375d61029cc6716db8f89076467dc91a6", "supported": true, - "utxos_info": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192:1", + "utxos_info": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2737,7 +2737,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "status": "valid", "asset_info": { "divisible": true, @@ -2761,17 +2761,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", "block_index": 146, - "block_hash": "5aae8081748439fb42fccc2fdec0c9c2f714f056b807c7196d8f3bc6fc268d57", - "block_time": 1726736947, - "source": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", - "destination": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "block_hash": "35eadbc6e30d4ee1de99b3c477150bfc633a78c2193e56bd3c7b570578cb3b87", + "block_time": 1726742026, + "source": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", + "destination": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "btc_amount": 10000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2:0", + "utxos_info": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 40, - "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", + "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", "block_index": 153, - "block_hash": "006b8118bd7d7af418ab681b8d3b0439c7326e7eece9aa487598d029ff8848e0", - "block_time": 1726736978, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "3c5f4025ab216fcb035812b273ba6d6f0d1eafba3e557abd82363a6f88e5675c", + "block_time": 1726742056, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61:1", + "utxos_info": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2814,7 +2814,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2839,17 +2839,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 46, - "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", + "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", "block_index": 159, - "block_hash": "176e6b907d3b247e4dac4aa49f72fd3151cc5091907ec1759507bee8b6593e52", - "block_time": 1726737024, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "1bf735a34e324308ea61b0796c04368c2e21d739e6849ae0358dfcb5af82a74c", + "block_time": 1726742082, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c:1", + "utxos_info": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2881,17 +2881,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", - "block_time": 1726737160, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", + "block_time": 1726742203, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1", + "utxos_info": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2934,17 +2934,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a", + "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a", "block_index": 187, - "block_hash": "2fa7eb69a70fb82c7aa8230c8a709b8fd0e155bb523d6e58a34263ce9470fd60", - "block_time": 1726737134, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "block_hash": "285315ff557984d1bbd62b9c8128ec38c668ebd078ef964e36bb7bb2e11e9384", + "block_time": 1726742186, + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080e816f5562a0ee9cab6015173bbded2ef7b58ca5d", + "data": "020000000000000001000000000000271080b77441a3eca05c136080e504fe32114fa79f4406", "supported": true, - "utxos_info": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a:1", + "utxos_info": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2952,7 +2952,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "memo": null, "asset_info": { "divisible": true, @@ -2975,17 +2975,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "block_hash": "20fc4d1702a5f56963ec395c69b45622b30c4a6f58fa15a26a7d15d06d9cc299", - "block_time": 1726737138, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "1223a9ebf3f56e035752b5244d0710e06d19b8d943c71c76b43631da6557211c", + "block_time": 1726742190, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a65050a67bf322ed4c4b1bf06798d4b6cefea9f3803e32791d2b81299971b964239daaa0099a94570880e816f5562a0ee9cab6015173bbded2ef7b58ca5d400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380b886678b2158112c9d7fe7b214a12943c2cabd96809668fa89c3fb02c8b7a891003a3773f6eed4a65680b77441a3eca05c136080e504fe32114fa79f4406400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e:0", + "utxos_info": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2993,14 +2993,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -3008,7 +3008,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3034,23 +3034,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", - "block_time": 1726737165, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", + "block_time": 1726742207, + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480e816f5562a0ee9cab6015173bbded2ef7b58ca5d017377656570206d7920617373657473", + "data": "0480b77441a3eca05c136080e504fe32114fa79f4406017377656570206d7920617373657473", "supported": true, - "utxos_info": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9:1", + "utxos_info": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "flags": 1, "memo": "sweep my assets" } @@ -3083,17 +3083,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 59, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", - "block_time": 1726737169, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_time": 1726742211, + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", + "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3116,23 +3116,23 @@ Returns the list of the last ten transactions }, { "tx_index": 58, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", - "block_time": 1726737165, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", + "block_time": 1726742207, + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480e816f5562a0ee9cab6015173bbded2ef7b58ca5d017377656570206d7920617373657473", + "data": "0480b77441a3eca05c136080e504fe32114fa79f4406017377656570206d7920617373657473", "supported": true, - "utxos_info": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9:1", + "utxos_info": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "flags": 1, "memo": "sweep my assets" } @@ -3150,7 +3150,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001015ba723defaf396451676e61776a9cd1c1f8fd9586cc4db78a3b6293d79e53ae40000000000ffffffff020000000000000000356a332c447795bb02a14b1b76de7c17a84bc37fc8666996c601931b77ca60bb5a3dd22a967c31687ef49a736c008c79421a3bd09ba6f0ca052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e0247304402201697d85478fe87d570f56161af58d66d7304e8850f79d0bd7b855e9d3765d76c02202501c7b254170cb724cd7277f8a49a4967c67b96f89441df23d6072886de2aac01210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce00000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000101159e5bce4910b972c4249dc33c13ae5fe75ee185d307e6325bdafbed87e010ff0000000000ffffffff0200000000000000002b6a293ed0ca3029ff2c8f070c17ff890726fb793d285f135e406302d8976dac8ff094cf5e43f144a3cb6415f0ca052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea20247304402204cf558337aadef48e62a90c2848843eaf973ec9c1ff085e03b54ba7475ef1510022016a10b12483d62657e732914303de9992f85b31466ce65c08395514996dcec4e012103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb00000000` (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. @@ -3163,18 +3163,18 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "46975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "5ba723defaf396451676e61776a9cd1c1f8fd9586cc4db78a3b6293d79e53ae4", + "hash": "159e5bce4910b972c4249dc33c13ae5fe75ee185d307e6325bdafbed87e010ff", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3184,49 +3184,102 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a332c447795bb02a14b1b76de7c17a84bc37fc8666996c601931b77ca60bb5a3dd22a967c31687ef49a736c008c79421a3bd09ba6" + "script_pub_key": "6a293ed0ca3029ff2c8f070c17ff890726fb793d285f135e406302d8976dac8ff094cf5e43f144a3cb6415" }, { "value": 4999990000, - "script_pub_key": "00147cf09b00afd181c7e4a3698f41aa73c50e0fe44e" + "script_pub_key": "00148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2" } ], "vtxinwit": [ - "304402201697d85478fe87d570f56161af58d66d7304e8850f79d0bd7b855e9d3765d76c02202501c7b254170cb724cd7277f8a49a4967c67b96f89441df23d6072886de2aac01", - "0375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce" + "304402204cf558337aadef48e62a90c2848843eaf973ec9c1ff085e03b54ba7475ef1510022016a10b12483d62657e732914303de9992f85b31466ce65c08395514996dcec4e01", + "03c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb" ], "lock_time": 0, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", - "tx_id": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625" + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_id": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259" }, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, + "message_type": "cancel", + "message_type_id": 70, "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { + "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "status": "valid" + } + }, + "btc_amount_normalized": "0.00000000" + } + } + ``` + +### Info By Tx Hash [GET /v2/transactions/{tx_hash}/info{?verbose}{&show_unconfirmed}] + +Returns Counterparty information from a transaction hash. + ++ Parameters + + tx_hash: `b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b` (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. + + Default: `false` + ++ Response 200 (application/json) + + ``` + { + "result": { + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0200000000000000010000000000002710809668fa89c3fb02c8b7a891003a3773f6eed4a656", + "decoded_tx": { + "version": 2, + "segwit": true, + "coinbase": false, + "vin": [ + { + "hash": "b410f63beba7150a70c9ca77621daec478e35967e9fb5930a286282a4ddb74e9", + "n": 1, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + } + ], + "vout": [ + { + "value": 0, + "script_pub_key": "6a2e98cf313c9ed5ec29068907f1acd16b2d287938482a6520b2c97f45ad202f62336365b41cb5095ee0585590fa3497" + }, + { + "value": 4999955000, + "script_pub_key": "0014b77441a3eca05c136080e504fe32114fa79f4406" + } + ], + "vtxinwit": [ + "3044022014031a3a825f819044df4c2c522ffe97c5b3b26ab6821fc1702a9ba53a8da7b502201e860baf96d0171a8f3d7707eed0b99646404e1df10dfc90a26d4912f617066a01", + "03c00ed866f6a66b1786e3fdf10ad429bdfef2bf782fe2eae745580ae546dcb963" + ], + "lock_time": 0, + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_id": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b" + }, + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 10000, + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "memo": null, + "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" + "quantity_normalized": "0.00010000" } }, "btc_amount_normalized": "0.00000000" @@ -3278,17 +3331,17 @@ Returns a transaction by its index. { "result": { "tx_index": 59, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", - "block_time": 1726737169, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_time": 1726742211, + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", + "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3317,7 +3370,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24` (str, required) - The hash of the transaction + + tx_hash: `672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02` (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. @@ -3329,17 +3382,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 59, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", - "block_time": 1726737169, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_time": 1726742211, + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", + "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3392,47 +3445,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58 }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "status": "valid", - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, - "block_time": 1726737165, + "block_time": 1726742207, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -3442,24 +3495,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "XCP", "block_index": 192, - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -3469,36 +3522,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 } ], "next_cursor": 523, @@ -3511,7 +3564,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9` (str, required) - The hash of the transaction to return + + tx_hash: `1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -3535,47 +3588,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58 }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "status": "valid", - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, - "block_time": 1726737165, + "block_time": 1726742207, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -3585,24 +3638,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "XCP", "block_index": 192, - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -3612,36 +3665,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 } ], "next_cursor": 523, @@ -3654,7 +3707,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e` (str, required) - The hash of the transaction to return + + tx_hash: `550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff` (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 @@ -3673,10 +3726,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -3684,7 +3737,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "divisible": true, "asset_longname": null, @@ -3697,10 +3750,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3708,11 +3761,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -3721,10 +3774,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3732,11 +3785,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -3754,7 +3807,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2` (str, required) - The hash of the transaction to return + + tx_hash: `363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503` (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 @@ -3774,27 +3827,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", - "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "last_status_tx_hash": null, - "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3809,7 +3862,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726736947, + "block_time": 1726742026, "asset_info": { "divisible": true, "asset_longname": null, @@ -3853,16 +3906,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -3872,63 +3925,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 } ], "next_cursor": null, @@ -3941,7 +3994,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9` (str, required) - The hash of the transaction to return + + tx_hash: `1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `535` (str, optional) - The last event index to return + Default: `None` @@ -3963,16 +4016,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -3982,63 +4035,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 } ], "next_cursor": null, @@ -4053,7 +4106,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c,bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3,bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (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 @@ -4077,7 +4130,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4087,7 +4140,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -4098,7 +4151,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4108,7 +4161,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -4119,7 +4172,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4129,7 +4182,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -4140,7 +4193,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4150,7 +4203,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -4161,7 +4214,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4171,7 +4224,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -4188,7 +4241,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c,bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3,bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (str, required) - Comma separated list of addresses to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4207,17 +4260,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 57, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", - "block_time": 1726737160, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", + "block_time": 1726742203, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1", + "utxos_info": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4253,23 +4306,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "block_index": 190, - "block_hash": "183beca9c1ae5f954cb62ccbcb7ab1d73a8c48927fe3ba9543532d5b9ce910a3", - "block_time": 1726737147, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "54cd9caaa8fce8a78011bf573033e5c66827b4f054205f1a89eb72cf7264f412", + "block_time": 1726742198, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "data": "46975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "supported": true, - "utxos_info": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe:1", + "utxos_info": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "status": "valid" } }, @@ -4277,17 +4330,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 55, - "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "block_index": 189, - "block_hash": "0ce6237c027d6772c41adb9614ce3b0d9186a8717abe802fc140e2388d92a79c", - "block_time": 1726737143, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "49dc4ddb70d192b54a5ca94706a766771f5d75e7013ccde319624e804335bc20", + "block_time": 1726742194, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861:1", + "utxos_info": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4323,17 +4376,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "block_hash": "20fc4d1702a5f56963ec395c69b45622b30c4a6f58fa15a26a7d15d06d9cc299", - "block_time": 1726737138, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "1223a9ebf3f56e035752b5244d0710e06d19b8d943c71c76b43631da6557211c", + "block_time": 1726742190, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a65050a67bf322ed4c4b1bf06798d4b6cefea9f3803e32791d2b81299971b964239daaa0099a94570880e816f5562a0ee9cab6015173bbded2ef7b58ca5d400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380b886678b2158112c9d7fe7b214a12943c2cabd96809668fa89c3fb02c8b7a891003a3773f6eed4a65680b77441a3eca05c136080e504fe32114fa79f4406400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e:0", + "utxos_info": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4341,14 +4394,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -4356,7 +4409,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4375,25 +4428,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 51, - "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", + "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", "block_index": 185, - "block_hash": "4cf4464c33d15629e0bd0b037dd008ce660191a9b79778db1087bc9214247f38", - "block_time": 1726737126, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "592f49ff43d18849d9b56671fedc5a4de889bebd46b34f08efcc8fa908b1e928", + "block_time": 1726742178, + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "btc_amount": 2000, "fee": 10000, - "data": "0b5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "data": "0b4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "supported": true, - "utxos_info": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4:0", + "utxos_info": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", - "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", - "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "status": "valid" } }, @@ -4410,7 +4463,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c,bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3,bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -4446,11 +4499,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "status": "open", - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "tx_index": 57, - "block_time": 1726737160, + "block_time": 1726742203, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4474,24 +4527,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "block_time": 1726737160 + "block_time": 1726742203 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "block_index": 191, - "event": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "event": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1726737160, + "block_time": 1726742203, "asset_info": { "divisible": true, "asset_longname": null, @@ -4501,25 +4554,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "block_time": 1726737160 + "block_time": 1726742203 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", + "block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", "block_index": 191, - "block_time": 1726737160, + "block_time": 1726742203, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "tx_index": 57, - "utxos_info": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1", + "utxos_info": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4551,40 +4604,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "block_time": 1726737160 + "block_time": 1726742203 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "status": "valid", - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "tx_index": 56, - "block_time": 1726737147 + "block_time": 1726742198 }, - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "block_index": 190, - "block_time": 1726737147 + "block_time": 1726742198 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726737147, + "block_time": 1726742198, "asset_info": { "divisible": true, "asset_longname": null, @@ -4594,9 +4647,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "block_index": 190, - "block_time": 1726737147 + "block_time": 1726742198 } ], "next_cursor": 506, @@ -4609,7 +4662,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw,bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell,bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf` (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 @@ -4625,17 +4678,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "memo": null, "quantity": 10000, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "status": "valid", - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "tx_index": 60, "asset_info": { "divisible": true, @@ -4648,19 +4701,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "CREDIT", "params": { - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -4672,19 +4725,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 193, - "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -4696,27 +4749,27 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726737173.5878787, + "block_time": 1726742226.132691, "btc_amount": 0, - "data": "0200000000000000010000000000002710803e32791d2b81299971b964239daaa0099a945708", + "data": "0200000000000000010000000000002710809668fa89c3fb02c8b7a891003a3773f6eed4a656", "destination": "", "fee": 10000, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "tx_index": 60, - "utxos_info": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24:1", + "utxos_info": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "memo": null, "asset_info": { "divisible": true, @@ -4742,7 +4795,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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 @@ -4762,7 +4815,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4770,14 +4823,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4785,14 +4838,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4807,7 +4860,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4815,7 +4868,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -4832,7 +4885,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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` @@ -4844,7 +4897,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4866,7 +4919,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4916,16 +4969,16 @@ Returns the credits of an address "result": [ { "block_index": 190, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737147, + "block_time": 1726742198, "asset_info": { "divisible": true, "asset_longname": null, @@ -4937,16 +4990,16 @@ Returns the credits of an address }, { "block_index": 182, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", + "event": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737039, + "block_time": 1726742099, "asset_info": { "divisible": true, "asset_longname": null, @@ -4958,20 +5011,20 @@ Returns the credits of an address }, { "block_index": 159, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", + "event": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737024, + "block_time": 1726742082, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -4979,20 +5032,20 @@ Returns the credits of an address }, { "block_index": 156, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "2ee2bf2492eaafe424159ad97df4e43df151dd3c12ffe7c393b7bf9256b9bb32", + "event": "b7b8e84e938d9c5e88b764466dd7ab16843b7874731d10e0853fded80b2f08d2", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726736992, + "block_time": 1726742070, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5004,16 +5057,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", + "event": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", "tx_index": 38, - "utxo": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9:1", - "utxo_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "utxo": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9:1", + "utxo_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "confirmed": true, - "block_time": 1726736969, + "block_time": 1726742048, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5030,7 +5083,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5069,16 +5122,16 @@ Returns the debits of an address "result": [ { "block_index": 191, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "event": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737160, + "block_time": 1726742203, "asset_info": { "divisible": true, "asset_longname": null, @@ -5090,16 +5143,16 @@ Returns the debits of an address }, { "block_index": 189, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737143, + "block_time": 1726742194, "asset_info": { "divisible": true, "asset_longname": null, @@ -5111,16 +5164,16 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "event": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "divisible": true, "asset_longname": null, @@ -5132,20 +5185,20 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "event": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5153,16 +5206,16 @@ Returns the debits of an address }, { "block_index": 183, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "event": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737108, + "block_time": 1726742170, "asset_info": { "divisible": true, "asset_longname": null, @@ -5183,7 +5236,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address of the feed + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5218,7 +5271,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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 @@ -5237,9 +5290,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "b1010bdab734a9e4cce02ad65bcf68fbc73fe1bb28f21c9b91d6cf68c1a62186", + "tx_hash": "60e53d18f1a227ad4ad75ba9854b8c64c4dceeb7c98514be938945b616fa342e", "block_index": 137, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5247,7 +5300,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726736909, + "block_time": 1726741987, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5261,7 +5314,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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 @@ -5280,14 +5333,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "80605ddcc2da09e5d557ad4b486390da9dfaa0ef1c6f175b1957db2b332a81e1", + "tx_hash": "adc800a0c349ff4e0e7193122cf547a536a880740dbe9cd9af41bd4b6138d8b0", "block_index": 112, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1726736804, + "block_time": 1726741871, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5302,7 +5355,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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 @@ -5321,10 +5374,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5332,7 +5385,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "divisible": true, "asset_longname": null, @@ -5345,10 +5398,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5356,11 +5409,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5369,10 +5422,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5380,11 +5433,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5393,10 +5446,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 38, - "tx_hash": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", + "tx_hash": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", "block_index": 151, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9:1", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5404,11 +5457,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726736969, + "block_time": 1726742048, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5417,10 +5470,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 35, - "tx_hash": "4a3b965c548a45221fb21c895a5983dd531696c8c62d09ca2a19954c14446c82", + "tx_hash": "70b48fb7cb8c00a6e814bdf5682297fcba88b2e305f0ac44ae659782a9d08a1d", "block_index": 148, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "7c7028f67836beaa5fb2de94c6daea92f4efba5aeae1c1b193c994c5ac14cf51:1", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "4d1c559a2f4b46484dd28d82a0544b0606eafb203419cf378deafd53670c77f7:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5428,11 +5481,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726736956, + "block_time": 1726742035, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5450,7 +5503,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m` (str, required) - The address to return + + address: `bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy` (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 @@ -5469,10 +5522,10 @@ Returns the receives of an address "result": [ { "tx_index": 37, - "tx_hash": "0c30ebe84e9981d88766592125043c857961de991168503a78e10fa95416df3b", + "tx_hash": "e4c8f0c552dea7470e5d2ef98ff6568f869c3e95231b43879b3a1fabea2cff64", "block_index": 150, - "source": "35f402483a54a03e637b77b2ff618642d6e435f34c3c89219374add7f500dc22:0", - "destination": "bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m", + "source": "daabc4181b5c356b166fd9efb6056720fec8a1d81871b9c5b091a499e81e663f:0", + "destination": "bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5480,11 +5533,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726736965, + "block_time": 1726742043, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5502,7 +5555,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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` @@ -5522,10 +5575,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5533,11 +5586,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5546,10 +5599,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5557,11 +5610,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5570,10 +5623,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 38, - "tx_hash": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", + "tx_hash": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", "block_index": 151, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9:1", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5581,11 +5634,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726736969, + "block_time": 1726742048, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5594,10 +5647,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 35, - "tx_hash": "4a3b965c548a45221fb21c895a5983dd531696c8c62d09ca2a19954c14446c82", + "tx_hash": "70b48fb7cb8c00a6e814bdf5682297fcba88b2e305f0ac44ae659782a9d08a1d", "block_index": 148, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "7c7028f67836beaa5fb2de94c6daea92f4efba5aeae1c1b193c994c5ac14cf51:1", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "4d1c559a2f4b46484dd28d82a0544b0606eafb203419cf378deafd53670c77f7:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5605,11 +5658,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726736956, + "block_time": 1726742035, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5627,7 +5680,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m` (str, required) - The address to return + + address: `bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy` (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` @@ -5647,10 +5700,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 37, - "tx_hash": "0c30ebe84e9981d88766592125043c857961de991168503a78e10fa95416df3b", + "tx_hash": "e4c8f0c552dea7470e5d2ef98ff6568f869c3e95231b43879b3a1fabea2cff64", "block_index": 150, - "source": "35f402483a54a03e637b77b2ff618642d6e435f34c3c89219374add7f500dc22:0", - "destination": "bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m", + "source": "daabc4181b5c356b166fd9efb6056720fec8a1d81871b9c5b091a499e81e663f:0", + "destination": "bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5658,11 +5711,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726736965, + "block_time": 1726742043, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5680,7 +5733,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5707,9 +5760,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 30, - "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", + "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", "block_index": 144, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5718,7 +5771,7 @@ Returns the dispensers of an address "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5728,7 +5781,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736939, + "block_time": 1726742017, "asset_info": { "divisible": true, "asset_longname": null, @@ -5744,9 +5797,9 @@ Returns the dispensers of an address }, { "tx_index": 26, - "tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5755,7 +5808,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5765,7 +5818,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -5790,7 +5843,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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` @@ -5803,9 +5856,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", + "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", "block_index": 144, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5814,7 +5867,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5824,7 +5877,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736939, + "block_time": 1726742017, "asset_info": { "divisible": true, "asset_longname": null, @@ -5846,7 +5899,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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 @@ -5866,19 +5919,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", + "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5886,7 +5939,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5901,7 +5954,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -5915,19 +5968,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", + "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", "block_index": 140, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5935,7 +5988,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5950,7 +6003,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736922, + "block_time": 1726741999, "asset_info": { "divisible": true, "asset_longname": null, @@ -5972,7 +6025,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (str, required) - The address to return + + address: `bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (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 @@ -5992,19 +6045,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", + "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6012,7 +6065,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6027,7 +6080,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -6041,19 +6094,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", + "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", "block_index": 140, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6061,7 +6114,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6076,7 +6129,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736922, + "block_time": 1726741999, "asset_info": { "divisible": true, "asset_longname": null, @@ -6098,7 +6151,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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` @@ -6119,19 +6172,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", + "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6139,7 +6192,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6154,7 +6207,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -6168,19 +6221,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", + "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", "block_index": 140, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6188,7 +6241,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6203,7 +6256,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736922, + "block_time": 1726741999, "asset_info": { "divisible": true, "asset_longname": null, @@ -6225,7 +6278,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (str, required) - The address to return + + address: `bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (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` @@ -6246,19 +6299,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", + "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6266,7 +6319,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6281,7 +6334,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -6295,19 +6348,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", + "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", "block_index": 140, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6315,7 +6368,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6330,7 +6383,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736922, + "block_time": 1726741999, "asset_info": { "divisible": true, "asset_longname": null, @@ -6352,7 +6405,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw` (str, required) - The address to return + + address: `bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell` (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 @@ -6371,16 +6424,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 58, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "fee_paid_normalized": "0.00600000" } ], @@ -6394,7 +6447,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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 @@ -6413,14 +6466,14 @@ Returns the issuances of an address "result": [ { "tx_index": 46, - "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", + "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -6435,20 +6488,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726737024, + "block_time": 1726742082, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "d7cbe9778e884b6f2582d7a57940b012bf1ddb5b700e7dd072c69bedd7e9b3a8", + "tx_hash": "66542eb84d234807eb104350179c31c8f1b00e559ca82b489588629cb3fd8bfe", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -6463,20 +6516,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726737011, + "block_time": 1726742078, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "fc3408b9506f75d2a3f1a65d6fe00a222a56fde09335e34953794e0293f63afe", + "tx_hash": "fa63823d4d5818572e21737b9de669bcd5d05afc5b9e8cfb8cf525732deb75c8", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -6491,20 +6544,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726736996, + "block_time": 1726742074, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "2ee2bf2492eaafe424159ad97df4e43df151dd3c12ffe7c393b7bf9256b9bb32", + "tx_hash": "b7b8e84e938d9c5e88b764466dd7ab16843b7874731d10e0853fded80b2f08d2", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -6519,20 +6572,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726736992, + "block_time": 1726742070, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "ee33216b42c4c6088fdf31e58c26a41d776c7f1c22d36fba1e6120663c74f3ed", + "tx_hash": "6904df91ab250d34539f267e84b728b28ffd351fa15b1011f92354f1a2d1c960", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -6547,7 +6600,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726736952, + "block_time": 1726742030, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -6562,7 +6615,7 @@ Returns the issuances of an address Returns the valid assets of an issuer + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The issuer to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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 @@ -6585,8 +6638,8 @@ Returns the valid assets of an issuer "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 10000000000, @@ -6594,16 +6647,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726736992, - "last_issuance_block_time": 1726737011, + "first_issuance_block_time": 1726742070, + "last_issuance_block_time": 1726742078, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 100000000000, @@ -6611,16 +6664,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726736952, - "last_issuance_block_time": 1726736952, + "first_issuance_block_time": 1726742030, + "last_issuance_block_time": 1726742030, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 40, @@ -6628,16 +6681,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726736900, - "last_issuance_block_time": 1726736905, + "first_issuance_block_time": 1726741978, + "last_issuance_block_time": 1726741983, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 19, @@ -6645,16 +6698,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726736883, - "last_issuance_block_time": 1726736896, + "first_issuance_block_time": 1726741952, + "last_issuance_block_time": 1726741974, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 0, @@ -6662,8 +6715,8 @@ Returns the valid assets of an issuer "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1726736862, - "last_issuance_block_time": 1726736879, + "first_issuance_block_time": 1726741930, + "last_issuance_block_time": 1726741947, "supply_normalized": "0.00000000" } ], @@ -6677,7 +6730,7 @@ Returns the valid assets of an issuer Returns the transactions of an address + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -6696,17 +6749,17 @@ Returns the transactions of an address "result": [ { "tx_index": 57, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", - "block_time": 1726737160, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", + "block_time": 1726742203, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1", + "utxos_info": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6742,23 +6795,23 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "block_index": 190, - "block_hash": "183beca9c1ae5f954cb62ccbcb7ab1d73a8c48927fe3ba9543532d5b9ce910a3", - "block_time": 1726737147, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "54cd9caaa8fce8a78011bf573033e5c66827b4f054205f1a89eb72cf7264f412", + "block_time": 1726742198, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "data": "46975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "supported": true, - "utxos_info": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe:1", + "utxos_info": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "status": "valid" } }, @@ -6766,17 +6819,17 @@ Returns the transactions of an address }, { "tx_index": 55, - "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "block_index": 189, - "block_hash": "0ce6237c027d6772c41adb9614ce3b0d9186a8717abe802fc140e2388d92a79c", - "block_time": 1726737143, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "49dc4ddb70d192b54a5ca94706a766771f5d75e7013ccde319624e804335bc20", + "block_time": 1726742194, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861:1", + "utxos_info": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6812,17 +6865,17 @@ Returns the transactions of an address }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "block_hash": "20fc4d1702a5f56963ec395c69b45622b30c4a6f58fa15a26a7d15d06d9cc299", - "block_time": 1726737138, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "1223a9ebf3f56e035752b5244d0710e06d19b8d943c71c76b43631da6557211c", + "block_time": 1726742190, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a65050a67bf322ed4c4b1bf06798d4b6cefea9f3803e32791d2b81299971b964239daaa0099a94570880e816f5562a0ee9cab6015173bbded2ef7b58ca5d400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380b886678b2158112c9d7fe7b214a12943c2cabd96809668fa89c3fb02c8b7a891003a3773f6eed4a65680b77441a3eca05c136080e504fe32114fa79f4406400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e:0", + "utxos_info": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -6830,14 +6883,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -6845,7 +6898,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -6864,17 +6917,17 @@ Returns the transactions of an address }, { "tx_index": 49, - "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", "block_index": 183, - "block_hash": "06325114bf09180c9fe86186dea01039a4c7dd402c5a9f006adbb24731015015", - "block_time": 1726737108, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "38f96e22f784a0b35754de347fb5926d51324cdabcc04f72fc156724f0d43a77", + "block_time": 1726742170, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60:1", + "utxos_info": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6919,7 +6972,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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 @@ -6938,20 +6991,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 40, - "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", + "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", "block_index": 153, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726736978, + "block_time": 1726742056, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -6976,7 +7029,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7003,9 +7056,9 @@ Returns the orders of an address "result": [ { "tx_index": 57, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7020,7 +7073,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726737160, + "block_time": 1726742203, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7046,9 +7099,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "block_index": 190, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7063,7 +7116,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726737147, + "block_time": 1726742198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7089,9 +7142,9 @@ Returns the orders of an address }, { "tx_index": 49, - "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", "block_index": 186, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7106,7 +7159,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726737130, + "block_time": 1726742182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7132,9 +7185,9 @@ Returns the orders of an address }, { "tx_index": 47, - "tx_hash": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", + "tx_hash": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", "block_index": 182, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7149,7 +7202,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1726737039, + "block_time": 1726742099, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7184,7 +7237,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The source of the fairminter to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7202,10 +7255,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", + "tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7230,13 +7283,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726736900 + "block_time": 1726741978 }, { - "tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", + "tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7261,13 +7314,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726736883 + "block_time": 1726741952 }, { - "tx_hash": "c4de72bddcecc2b88f8e0746e02446a566b0fca27fe3e4b9bd4c20e550f9089a", + "tx_hash": "ac047163f3cd9094f4ee2103b832d0064228aa5f2a7fc8e3104ee775fb181f84", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7292,13 +7345,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726736879 + "block_time": 1726741947 }, { - "tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7323,7 +7376,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726736859 + "block_time": 1726741926 } ], "next_cursor": null, @@ -7336,7 +7389,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (str, required) - The address of the mints to return + + address: `bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7354,127 +7407,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "661c344111ceedee5cbe79a2043e49979922a9af9ced08540254cf13090082ac", + "tx_hash": "4ef19e15a942cd317edd6f0705b17761dac9a1c56bd3d92c4b636cf5b7102c7c", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "fairminter_tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "fairminter_tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736905, + "block_time": 1726741983, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } }, { - "tx_hash": "532d67517eb2c751de2c553a82aab3168f9fe2252232a50926c6bf10c0926357", + "tx_hash": "12b1f43b529e4ce6e9a3a95d6345faf4a93b2672f1aaa68938ef1b1922e401f9", "tx_index": 21, "block_index": 134, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "fairminter_tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "fairminter_tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736896, + "block_time": 1726741974, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } }, { - "tx_hash": "022c8e67569b246e08ef1818ccc12b3591109f44a3fb34dd3867360868caa2c6", + "tx_hash": "4243b87db26b2a68deae256e73d35c9569389c93dfc721b359567f564bfc47ea", "tx_index": 20, "block_index": 133, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "fairminter_tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "fairminter_tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736892, + "block_time": 1726741970, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } }, { - "tx_hash": "679cd46764ea30300b6b5cc103c11d81633ec81ceb08a156ef5429207dbc2e6b", + "tx_hash": "e7339c42b0fc1c16588ae319c16d43f759f8bc0a169f61ce9b69d447ceb05f4d", "tx_index": 19, "block_index": 132, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "fairminter_tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "fairminter_tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736888, + "block_time": 1726741956, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } }, { - "tx_hash": "25f9745a24829f09fe2f511cac829379903961a21dcf3324daad294b9d9b502e", + "tx_hash": "3935463d05f49f685b9cce124b58d5d0b4ead3c4be23a1d5e4f7c7e7a4b432cc", "tx_index": 15, "block_index": 127, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "fairminter_tx_hash": "c4de72bddcecc2b88f8e0746e02446a566b0fca27fe3e4b9bd4c20e550f9089a", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "fairminter_tx_hash": "ac047163f3cd9094f4ee2103b832d0064228aa5f2a7fc8e3104ee775fb181f84", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736866, + "block_time": 1726741934, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } }, { - "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", + "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736850, + "block_time": 1726741917, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } @@ -7490,7 +7543,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (str, required) - The address of the mints to return + + address: `bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (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` @@ -7509,22 +7562,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", + "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736850, + "block_time": 1726741917, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } @@ -7563,8 +7616,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: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address that will make the bet - + feed_address: `bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address that will make the bet + + feed_address: `bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (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) @@ -7630,7 +7683,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: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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) @@ -7683,9 +7736,9 @@ Composes a transaction to broadcast textual and numerical information to the net ``` { "result": { - "rawtransaction": "02000000000101bfd9d0339ebb1cad61e9fc89066f141a165e042afd044ca512e90f4dac0ad858000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff0200000000000000002b6a29c2ee9987af5831d7348cee95680e02f5b1a9f16b78c5d7d960b240f9f113817ad4db1edc13aa9827824ab1052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "02000000000101d0944beaa1b9e3818180d68c8fcec6dff5dfbad96117cc72072c090dc90977af000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff0200000000000000002b6a299d1729a4df7c52258168d86dc4211757deb010053aff47846f631d2bccde3a53493032e94e8fb653a93bb1052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7701,8 +7754,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: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address that will be sending the payment - + order_match_id: `5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543` (str, required) - The ID of the order match to pay for + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address that will be sending the payment + + order_match_id: `4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285` (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) @@ -7751,10 +7804,10 @@ Composes a transaction to pay for a BTC order match. ``` { "result": { - "rawtransaction": "02000000000101cd2f9f22e79cce4fb01fa897d6a1230dc3e51e1f08396840e2ded9bf4ed0fe3e000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff03b80b0000000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e00000000000000004b6a490fdb3d753a82eaad9cd34afe5f1305746b956ac41e8052e51f59797fd09de81db452050c70fe0214d12facb16da53b94b959811a60b62c14c98d1ebd05f8547490e1f6248b5c8559aaec93052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "02000000000101925e8a3be8f21fb348b8be1aa1e5ee8b96e41e690d13255db1081cf6964ad7e9000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff03b80b0000000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea200000000000000004b6a495176780ee8f3d6bc59bf64e2aef0527cf4e0c6a3594d165d04475d42818057e755accc8aa0cf6c8c16638e53485cdef36df96f13f686bbfc8edcedffaa7264145c9967527cdf6c4abcd993052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543" + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285" }, "name": "btcpay" } @@ -7766,7 +7819,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: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address with the BTC to burn + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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` @@ -7818,9 +7871,9 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss ``` { "result": { - "rawtransaction": "02000000000101319f1699a94398f2c120f2fe873d7ca467fa29859e6cdd19607f056a6936b7fd000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88aceeb1052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "02000000000101f4b4a7ed34bf3f599cfbb9060e77d33176011f1347ddece332079b6681b499b4000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "quantity": 1000, "overburn": false }, @@ -7834,8 +7887,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: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d` (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) @@ -7884,10 +7937,10 @@ Composes a transaction to cancel an open order or bet. ``` { "result": { - "rawtransaction": "02000000000101eceee2cd7a6adcc3f3e00509598b4e0de4b70c2b45f38aa4905776f17cd677a8000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff0200000000000000002b6a293348289a27b6d9f4e11ca2640ca3d8d38f15443457929b21bdd49d01bd71e1610a84d4b787d34f6b384ab1052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "02000000000101049b8154c486875bf5a30b770a6ccc0dd66e84185bc32f7fd92e5a53705f74d4000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff0200000000000000002b6a296a5ae7f653611620353c9ae6e94c60eb1d026ffd00db2c1314efb8a7bee4384715bf04e9b9e78e413e3bb1052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "offer_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625" + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "offer_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d" }, "name": "cancel" } @@ -7899,7 +7952,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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 @@ -7951,9 +8004,9 @@ Composes a transaction to destroy a quantity of an asset. ``` { "result": { - "rawtransaction": "0200000000010113f95b606575562d2fbe71cebd953337c2738d0a1bcae5fa0bf6877b1d6fb545000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000226a20da2ecfadfdb1591b9c22a85b00012f89f1322f37ed0e4d51a768c47cffa4486bb2b3052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "02000000000101969dafdbb484ca8cecb55b715bbae85e111c7fc7ff720413557f5e674635844e000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000226a201db88992b23173ea7638d51ae5914e134dcf2c4d860483e7c38543c6e9427b12a4b3052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -7976,7 +8029,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: `bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs` (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) @@ -8034,9 +8087,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv ``` { "result": { - "rawtransaction": "02000000000101b27726999fa786c887828705e322c7e4ea192b2a59e6d05b82d771d73d005a7f0200000016001490f20356500ceced9ca8be9d3a8e373ba700c91effffffff0200000000000000002c6a2a1a9e2fc8bf4e4e6fa674b28e26a7d152d09a9a07d4b2348381905c2efdcaa182b21b73682325ab93227a564b0a270100000016001490f20356500ceced9ca8be9d3a8e373ba700c91e02000000000000", + "rawtransaction": "0200000000010103c509e9ce1a922332b64060fc661927b2a132bd5016747d3e51de82086a3f36020000001600145bad9dc437bebf3918916d803cb86328f48ce663ffffffff0200000000000000002c6a2a2921b013dad7d5885bc79db11a67e41fa691883a738ea81b90fe54646dacfb25715d0b5108c2e3d021bb474b0a27010000001600145bad9dc437bebf3918916d803cb86328f48ce66302000000000000", "params": { - "source": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", + "source": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8064,7 +8117,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: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (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: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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 @@ -8116,16 +8169,16 @@ Composes a transaction to issue a dividend to holders of a given asset. ``` { "result": { - "rawtransaction": "0200000000010181423a4c1b323f96cb29070c085de3e886a3b4bed10d684eb61d066d4e1228cc000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000236a2180564be672da49d108745f6fb58356ab5eb69538bb846d5b60a4fd7efe733f2d806eb3052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "020000000001012e8481efaa7cb19d0e1cb085017722e90f59356addd8c083b9754afef05195e0000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000236a212fbcc64e92ced155f4327bff8c68b78e572da80fab39dc6c8520da12d6eab7d84e60b3052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -8148,10 +8201,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: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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` @@ -8209,12 +8262,12 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo ``` { "result": { - "rawtransaction": "0200000000010144135aae7f4b5e57666e0a958bfb165d94695bb6d93d93fa76f7427ff0b69348000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff0322020000000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e0000000000000000236a211beada5554cafb42451ccfe23872901d81f923678587f0e17234cd58f03e0f9e3e34a8052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "02000000000101b76b1e014d75389c589c0caf4fb3300779093d37e1f856ece64e092f3ca0a52c000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff0322020000000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea20000000000000000236a2102e070c78ab771f333514e032dadf17d32fbafe887251125a895fe653380cd899324a8052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "transfer_destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "lock": false, "reset": false, @@ -8231,9 +8284,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: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c,bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3,bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (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` @@ -8287,18 +8340,18 @@ Composes a transaction to send multiple payments to multiple addresses. ``` { "result": { - "rawtransaction": "020000000001041eab5adb0bb5bc395d7db523b9b51aca2ad7fe19abbff6c1eca80b02ff312c11000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff860e9bfc9dc9da5315bdfa7a840499ca44590d1403220a5a234273499b01745b000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff08ce002b16344514671bff8471091da6f15f3205d84e272fccc9e3d5d0b2030f000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff7d196ad9685fe541bd12dbd09b4f828c39f57e7f0ad08959f2a000ae2807fd86000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff03e803000000000000695121021543326b5fc44d2ef3f6fe91dca0bf1b647653e75fa7c89f7993859f368996722102a76f0f8a5542fd628da34fdda4486350023413ed1985b501511dbc9fa42fa2a0210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53aee803000000000000695121031a43326b5fc44d2ef3d589fc2eb02ba1465982669456f07d41f22fecf387997e21034321c72c05125b197e81aa91ef5393379ae0a723e72c468e7355d9f3c8408e55210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53ae98d016a8040000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000002000002000002000000000000", + "rawtransaction": "02000000000104c362fd57df40d2f7b22119a6815fb50731e9f0c204afd0a8f346e99f200d6b50000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff3a3512052b1f6c7997c704f47961b99368444bbd463eadc649ef1da0fe2637a6000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff5f7e661150654e0e0f83b21bf8cb2a7f451c42ca7ccbae370ed33989800171bc000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff29765159b762b04db15ca415e182337fd3ee63ba58dc47e17499e4ba0c6c0ea3000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff03e80300000000000069512103193cda2f14eb9990c3645f64b847e85a3b3431b2c285c580970963e5cd4352382103cd8d173fdc35955033030dffc9b7162cc8e2c9ccc2fbe6c273ee9ac076a6966b2103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53aee80300000000000069512103163cda2f14eb9990c34728094aa5e272f2e927d4277b757b2a099de06f313dc72102a32fdf875a521e716b122962b650a43869cb880e0846704d51a6ffac1ac9ba1a2103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53ae61d016a8040000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000002000002000002000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", 1 ], [ "MYASSETA", - "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", 2 ] ], @@ -8315,7 +8368,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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 @@ -8370,9 +8423,9 @@ Composes a transaction to place an order on the distributed exchange. ``` { "result": { - "rawtransaction": "02000000000101357979f3d01f82c0bbea7bea3c7c3036df493768ffd3f950ce9a92d75ab46800000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000356a3305ec2b3ec06d93eefc7cc7697d5e64bc9cc362d5820ebadb8ce90ac826357dc5cf6ede8721851ae1c99a9e348677ec2e58ccbf9eae052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "02000000000101cb86375524df64335db90ce54dce1900ab55be07e6fbf5d1926c9c24df7eeb41000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000356a3367677a86c8c179ab2b0759445d5eaf57d3cd8831935b82d6f7dde2bd7d380d1dc159be62465afb0d4395a2189be7301a25def78eae052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8389,7 +8442,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -8407,8 +8460,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: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (str, required) - The address that will be receiving the asset + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (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 @@ -8465,10 +8518,10 @@ Composes a transaction to send a quantity of an asset to another address. ``` { "result": { - "rawtransaction": "02000000000101324f0796cb6aa649671c885ae444171d29ec6eb87641c94b557d29f806b97412000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000306a2e8a694ebcf06f71b568e08cdad92e6d9f358570de1dfdf1dc8a082b8b0e1cdc1d24c4e9d80b9258292e0535f17b6af4af052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "020000000001012fdb8902a719b60e47881d41705121da58d4d0fa395e4ab2d9e2037db3371c04000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000306a2e01f4666b2fe5e5565753fe504ca3bfa0a62ea05707e35fec17e401e7f1c78ddfe91670b5480821b477f7a966b42ae5af052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8493,8 +8546,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: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address that will be sending - + destination: `bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address that will be sending + + destination: `bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (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 @@ -8545,10 +8598,10 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti ``` { "result": { - "rawtransaction": "02000000000101b1f29da89ff781645e4d4569890b4ea11c348df771227e76e632abe62a2c18d6000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000236a21a50aaca7afa248c34a7a84375d92596f2d74cf120035819eccae8aa29430289f846eb3052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "02000000000101abcb6d0f7e57d9ef1f21b6b8d17ca0ceec47c25353c746c8bcc05b1d50176db1000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000236a21dde8cf439c2cf59dedb19e8012c24601eb5c712f962a2d960ad904e37447684e5860b3052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "flags": 7, "memo": "FFFF" }, @@ -8562,8 +8615,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: `bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf` (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` @@ -8613,10 +8666,10 @@ Composes a transaction to send BTC to a dispenser. ``` { "result": { - "rawtransaction": "02000000000101b4bd5c6d249d8383a77c633e9949fed0f40d6cc2478eff7f2160d71bd487524002000000160014a65050a67bf322ed4c4b1bf06798d4b6cefea9f3ffffffff03e803000000000000160014e816f5562a0ee9cab6015173bbded2ef7b58ca5d00000000000000000c6a0a91fca4a7d199133b19e075b8082701000000160014a65050a67bf322ed4c4b1bf06798d4b6cefea9f302000000000000", + "rawtransaction": "020000000001010e29d0c7518c9353ea93e80a623846c30eb5a9e1aab715f557d1aa033c0c331d02000000160014b886678b2158112c9d7fe7b214a12943c2cabd96ffffffff03e803000000000000160014b77441a3eca05c136080e504fe32114fa79f440600000000000000000c6a0a0e635245f8a5f172a08e66b8082701000000160014b886678b2158112c9d7fe7b214a12943c2cabd9602000000000000", "params": { - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "quantity": 1000 }, "name": "dispense" @@ -8629,7 +8682,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address that will be issuing the asset + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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: `` @@ -8711,9 +8764,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. ``` { "result": { - "rawtransaction": "02000000000101aeda8bbe594a7913d8ad56178c4c467b20eff1a87547a9adf01e71349594065f000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000316a2fa94f05654938d4eaede6a1121b5274fb3a0bb6ac0271243baeb6e1ad194f5755e07e69b60436552fb263d504bd5d35afaf052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "0200000000010183cd1d6970c45152292b562a65b79fe09a5e600ec378a40071f2388d2f5fe36a000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000316a2f426b1088e752ea1523cf0f58f3bc4e3adcb55ebc58b62e1495a6a98242c44f94d406566527b497cec3fcf4e4c4d75fa0af052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -8742,7 +8795,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: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address that will be minting the asset + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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` @@ -8794,15 +8847,15 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto ``` { "result": { - "rawtransaction": "0200000000010102b43726d6440d15a446ff68fb899f2776c2d02e6abd5ef231ebea43be54ee76000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000166a14829f320d966192391e5cec28e80f9d5ebb721b85e8b6052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "020000000001012d30a7500c68cbf83e00879f9aaf617d11a4d8ac3380d26bdc723e17827ff298000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000166a14717953eef0fe58a00787533c0a36c50746031654dab6052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -8818,10 +8871,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: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address from which the assets are attached + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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: `08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1` (str, optional) - The utxo to attach the assets to + + destination: `95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -8871,10 +8924,10 @@ Composes a transaction to attach assets from an address to UTXO. ``` { "result": { - "rawtransaction": "02000000000106804cd9b18bf60a573fb2d1c03c710381c44515511ad156a3bc37121fc70892a1000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffffdfd14dd8e88ab621ea37029093596baf7383b544360acc5ac59421b73e896b18000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff3d0d0ee5fe6c149771f9d6f83ca13ae7c1598b2defbd7f814c69e14b17ff79f0000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff72885bbf9c43e8754b7d174e37ebeed41f5ecdb3274f3571d97d311b5e26be1d000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44efffffffff2b3ec057be470c3f5a203e305950a74ca80f5afae0fba1bc09b9c82f6a96cab000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffffb93a1f9570a28a602720f880f42dd7165bfa9bec5369840067e039e0955c3e3f000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff04e803000000000000695121028e35a0199edd3a15ec7aad606b3346020f1a60adafe9e5688ef272573d8f6b5c210396f977f73f9d46f02b0320ab49bd6b8ce88b94f4d446162b6ac19522941d24d0210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53aee803000000000000695121038e35a0199edd3a15ec26fa667a7340105a1035fca7fcbd398cba331b6bdb6bd3210385ae6cad68d846fb765926f50de26cc3a9d183a0df4d43326fc89573974b21ba210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53aee80300000000000069512102a435a0199edd3a15ec7cf9312c7d460f673753b7f5a8ec68b88a03220dea52a02102e49d0fcf0aef749e4560159338d10ef69fb3e1c2ba7475575af9a012a17f407e210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53ae3a3a22fc060000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106c3e4e7faa51091cb31434d98f891ff63d9ab4bfa3638fef5584a5d33698dd0f1000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff7208868743873615492fc442cb0469b4500985817a520dfc89ce18dfdfcddad1000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffffe850de1f07db1a5617f34079a0c96ab6e170d69ffe972aa0c07d09638f671a7c000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffffd73b9e0dc2dae0e017d015420144a8caebb883921cd7c13c3f1bf182d889847f000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff795208397bd023a4f148645b557dd60c8c1fb8daf54a70968417452d1a193bf0000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffffba3971c0e4dc16230f6cb612c66c808c9d246e107cd427c9be25d01ff1de0750000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff04e80300000000000069512102169a36a17a3fd9bdad6aa0732270d8f48af934b7a0e8560dc917a0967dccf9ca2103c71ab6ae3c45a320fa77a5375bca58f1522d764a34dea50460c522393ff118042103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53aee80300000000000069512103169a36a17a3fd9bdad37f22931678bbd8aad3ef5f6ee585fd716aad175cdfa5c2102d75ca3a62056fd36a077fa3014c80ca31d237e4a239cf74069c7206e3fa41e232103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53aee803000000000000695121033c9a36a17a3fd9bdad3ef025693ed8f9e1df0cbaffee505cb372cee113fa9c5c2102b36dc7974635cf53c342c35223fd35c528144e7e46ac967859f0415b5c952ba02103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53aee83922fc060000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -8896,8 +8949,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: `e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147:1` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to detach the assets to + + utxo: `7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0:1` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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 @@ -8948,10 +9001,10 @@ Composes a transaction to detach assets from UTXO to an address. ``` { "result": { - "rawtransaction": "0200000000010147c14072d859a1217ab947cd9fe3c2ba27b292be1f64ab8b0e8d732056a3b4e701000000160014677f6f646ff49ca15f79040ba01dd48ab687297dffffffff04e803000000000000695121034669afa3fd6d5ad1d6fd42375e3646b439d65a9ca6a0232089686a8a9b4df881210300538bca331bb5cee933094d40fd40afb7d4b060425a97858537b56c641041612103cbce06898feb5b045a9b357cf60583501fff9ff959e0f2498c545dfa32bd2bfb53aee803000000000000695121024669afa3fd6d5ad1d6ac1e64043515b33c835998a6a92a38db6e209ccb5efec321035a018bc3271bb79aa3704b1f44a700aefcd5e3711400ce848938a532300b07f92103cbce06898feb5b045a9b357cf60583501fff9ff959e0f2498c545dfa32bd2bfb53aee803000000000000695121026c69afa3fd6d5ad1d6a15236523044fb54a338d0a0a32b74b90d52e8fa2fce0721023462eda8562287acdb013e2f219e72ca84edd603266ea0e7bc00d45e557170eb2103cbce06898feb5b045a9b357cf60583501fff9ff959e0f2498c545dfa32bd2bfb53ae0f99082701000000160014677f6f646ff49ca15f79040ba01dd48ab687297d02000000000000", + "rawtransaction": "02000000000101b0d1ca820241ba400ce54d7ded428a0485dbf23ebf7937a56b9444ce7da5547101000000160014633245262e8c4ef8f94eb9165ebae1a0fe40c215ffffffff04e8030000000000006951210388aa019aeba2ab77565a7694fa505dbebb46ca9838a58f6f224b3455d89511ed21020924cfc398c384d2d033c83eeb6c41c2a25b58972b8bec897d2aff57df4dc1992103aaabeadab75a0d114731762081b21f2d826877d3986fc352a23ae12431d7e13953aee8030000000000006951210288aa019aeba2ab77560a7095fd5c0ee8ed46989f3cab8727764a2714dad315d02103552ed89ecb93d7ccd7658a60e9315481e10746d023ccb1d92e7fe454821bdad32103aaabeadab75a0d114731762081b21f2d826877d3986fc352a23ae12431d7e13953aee80300000000000069512102a2aa019aeba2ab7756077991bd160ff7d461f9813da1866b14295560eba2260321023046a9f0fda5b6b6b20bfd0edf5420f6903e3ca04fbf88ec481a9c63ef2fa01a2103aaabeadab75a0d114731762081b21f2d826877d3986fc352a23ae12431d7e13953aef498082701000000160014633245262e8c4ef8f94eb9165ebae1a0fe40c21502000000000000", "params": { - "source": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147:1", - "destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0:1", + "destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9011,8 +9064,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 10000000000, @@ -9020,16 +9073,16 @@ Returns the valid assets "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726736992, - "last_issuance_block_time": 1726737011, + "first_issuance_block_time": 1726742070, + "last_issuance_block_time": 1726742078, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", - "owner": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", + "issuer": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", + "owner": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", "divisible": true, "locked": false, "supply": 100000000000, @@ -9037,16 +9090,16 @@ Returns the valid assets "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1726736988, - "last_issuance_block_time": 1726736988, + "first_issuance_block_time": 1726742065, + "last_issuance_block_time": 1726742065, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 100000000000, @@ -9054,16 +9107,16 @@ Returns the valid assets "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726736952, - "last_issuance_block_time": 1726736952, + "first_issuance_block_time": 1726742030, + "last_issuance_block_time": 1726742030, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 40, @@ -9071,16 +9124,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726736900, - "last_issuance_block_time": 1726736905, + "first_issuance_block_time": 1726741978, + "last_issuance_block_time": 1726741983, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 19, @@ -9088,8 +9141,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726736883, - "last_issuance_block_time": 1726736896, + "first_issuance_block_time": 1726741952, + "last_issuance_block_time": 1726741974, "supply_normalized": "0.00000019" } ], @@ -9117,8 +9170,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 10000000000, @@ -9126,8 +9179,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1726736846, - "last_issuance_block_time": 1726736859, + "first_issuance_block_time": 1726741913, + "last_issuance_block_time": 1726741926, "supply_normalized": "100.00000000" } } @@ -9158,7 +9211,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9166,14 +9219,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9181,7 +9234,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -9198,7 +9251,7 @@ Returns the asset balances Returns the balance of an address and asset + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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` @@ -9210,7 +9263,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -9259,9 +9312,9 @@ Returns the orders of an asset "result": [ { "tx_index": 57, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9276,7 +9329,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726737160, + "block_time": 1726742203, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9302,9 +9355,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "block_index": 190, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9319,7 +9372,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726737147, + "block_time": 1726742198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9345,9 +9398,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "tx_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "block_index": 186, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -9362,7 +9415,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726737130, + "block_time": 1726742182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9388,9 +9441,9 @@ Returns the orders of an asset }, { "tx_index": 50, - "tx_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "tx_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "block_index": 185, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -9405,7 +9458,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726737126, + "block_time": 1726742178, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9431,9 +9484,9 @@ Returns the orders of an asset }, { "tx_index": 49, - "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", "block_index": 186, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9448,7 +9501,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726737130, + "block_time": 1726742182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9508,13 +9561,13 @@ Returns the orders of an asset { "result": [ { - "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "tx0_index": 49, - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 52, - "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", - "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -9528,7 +9581,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726737130, + "block_time": 1726742182, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9548,13 +9601,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "tx0_index": 49, - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 50, - "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", - "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -9568,7 +9621,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726737126, + "block_time": 1726742178, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9588,13 +9641,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", "tx0_index": 47, - "tx0_hash": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 48, - "tx1_hash": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", - "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "tx1_hash": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -9608,7 +9661,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726737039, + "block_time": 1726742099, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9688,20 +9741,20 @@ Returns the credits of an asset "result": [ { "block_index": 192, - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -9709,20 +9762,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "695e264b5af5d3a47a74b0af34231b677ac87beea166322a05cb6a6347abafac", + "event": "47f1796c49d5b94f0d524615742f610807a0c76df2208ea05990b7ad444c8ecc", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726736859, + "block_time": 1726741926, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -9730,20 +9783,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8", + "event": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726736854, + "block_time": 1726741922, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -9751,20 +9804,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", + "event": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726736854, + "block_time": 1726741922, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -9776,16 +9829,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8", + "event": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726736854, + "block_time": 1726741922, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -9841,16 +9894,16 @@ Returns the debits of an asset "result": [ { "block_index": 193, - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "event": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -9862,16 +9915,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -9883,16 +9936,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -9904,16 +9957,16 @@ Returns the debits of an asset }, { "block_index": 191, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "event": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737160, + "block_time": 1726742203, "asset_info": { "divisible": true, "asset_longname": null, @@ -9925,16 +9978,16 @@ Returns the debits of an asset }, { "block_index": 189, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737143, + "block_time": 1726742194, "asset_info": { "divisible": true, "asset_longname": null, @@ -9974,20 +10027,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 40, - "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", + "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", "block_index": 153, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726736978, + "block_time": 1726742056, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -10031,14 +10084,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "695e264b5af5d3a47a74b0af34231b677ac87beea166322a05cb6a6347abafac", + "tx_hash": "47f1796c49d5b94f0d524615742f610807a0c76df2208ea05990b7ad444c8ecc", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -10053,20 +10106,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726736859, + "block_time": 1726741926, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8", + "tx_hash": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -10081,20 +10134,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726736854, + "block_time": 1726741922, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", + "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -10109,20 +10162,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726736850, + "block_time": 1726741917, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -10137,7 +10190,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1726736846, + "block_time": 1726741913, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10171,10 +10224,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10182,7 +10235,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "divisible": true, "asset_longname": null, @@ -10195,10 +10248,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 53, - "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a", + "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a", "block_index": 187, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10206,7 +10259,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737134, + "block_time": 1726742186, "asset_info": { "divisible": true, "asset_longname": null, @@ -10219,10 +10272,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 42, - "tx_hash": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", + "tx_hash": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", "block_index": 155, - "source": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5:0", - "destination": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147:1", + "source": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53:0", + "destination": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10230,7 +10283,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726736988, + "block_time": 1726742065, "asset_info": { "divisible": true, "asset_longname": null, @@ -10243,10 +10296,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 41, - "tx_hash": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5", + "tx_hash": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53", "block_index": 154, - "source": "0e5ef2ca6efc97a98e3cfc14841e15218cffff5e3997610098a146a1a32d3e4c:0", - "destination": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5:0", + "source": "e974db4d2a2886a23059fbe96759e378c4ae1d6277cac9700a15a7eb3bf610b4:0", + "destination": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10254,7 +10307,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726736983, + "block_time": 1726742060, "asset_info": { "divisible": true, "asset_longname": null, @@ -10303,18 +10356,18 @@ Returns the dispensers of an asset "result": [ { "tx_index": 32, - "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "last_status_tx_hash": null, - "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10324,7 +10377,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726736947, + "block_time": 1726742026, "asset_info": { "divisible": true, "asset_longname": null, @@ -10340,9 +10393,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", + "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", "block_index": 144, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10351,7 +10404,7 @@ Returns the dispensers of an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10361,7 +10414,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736939, + "block_time": 1726742017, "asset_info": { "divisible": true, "asset_longname": null, @@ -10377,9 +10430,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "5a9a68441db332e17f18f00c8ea2794b8e8357f65ba5c4a19f5c761c07c18a77", + "tx_hash": "14e387be9e1d2957f2fcb38bf2ad065ab35a588822f35dc6035d96abc00eb960", "block_index": 142, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10388,7 +10441,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "origin": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10398,7 +10451,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736931, + "block_time": 1726742008, "asset_info": { "divisible": true, "asset_longname": null, @@ -10414,9 +10467,9 @@ Returns the dispensers of an asset }, { "tx_index": 26, - "tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10425,7 +10478,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10435,7 +10488,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -10460,7 +10513,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - The address to return + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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` @@ -10473,9 +10526,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", + "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", "block_index": 144, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10484,7 +10537,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10494,7 +10547,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736939, + "block_time": 1726742017, "asset_info": { "divisible": true, "asset_longname": null, @@ -10544,7 +10597,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -10552,7 +10605,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -10561,7 +10614,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -10569,7 +10622,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -10578,7 +10631,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -10586,7 +10639,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -10595,7 +10648,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -10632,27 +10685,27 @@ Returns the dispenses of an asset { "tx_index": 33, "dispense_index": 0, - "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", - "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "last_status_tx_hash": null, - "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10667,7 +10720,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726736947, + "block_time": 1726742026, "asset_info": { "divisible": true, "asset_longname": null, @@ -10681,19 +10734,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", + "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10701,7 +10754,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10716,7 +10769,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -10730,19 +10783,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", + "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", "block_index": 140, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10750,7 +10803,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10765,7 +10818,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736922, + "block_time": 1726741999, "asset_info": { "divisible": true, "asset_longname": null, @@ -10808,8 +10861,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 0, @@ -10817,8 +10870,8 @@ Returns asset subassets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1726736996, - "last_issuance_block_time": 1726736996, + "first_issuance_block_time": 1726742074, + "last_issuance_block_time": 1726742074, "supply_normalized": "0.00000000" } ], @@ -10850,10 +10903,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -10878,7 +10931,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726736859 + "block_time": 1726741926 } ], "next_cursor": null, @@ -10909,64 +10962,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "695e264b5af5d3a47a74b0af34231b677ac87beea166322a05cb6a6347abafac", + "tx_hash": "47f1796c49d5b94f0d524615742f610807a0c76df2208ea05990b7ad444c8ecc", "tx_index": 13, "block_index": 125, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", - "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736859, + "block_time": 1726741926, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } }, { - "tx_hash": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8", + "tx_hash": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8", "tx_index": 12, "block_index": 124, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", - "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736854, + "block_time": 1726741922, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } }, { - "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", + "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736850, + "block_time": 1726741917, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } @@ -10982,7 +11035,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9` (str, required) - The address of the mints to return + + address: `bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (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` @@ -11001,22 +11054,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", + "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736850, + "block_time": 1726741917, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } @@ -11060,9 +11113,9 @@ Returns all the orders "result": [ { "tx_index": 57, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11077,7 +11130,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726737160, + "block_time": 1726742203, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11103,9 +11156,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "block_index": 190, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11120,7 +11173,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726737147, + "block_time": 1726742198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11146,9 +11199,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "tx_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "block_index": 186, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11163,7 +11216,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726737130, + "block_time": 1726742182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11189,9 +11242,9 @@ Returns all the orders }, { "tx_index": 50, - "tx_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "tx_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "block_index": 185, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11206,7 +11259,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726737126, + "block_time": 1726742178, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11232,9 +11285,9 @@ Returns all the orders }, { "tx_index": 49, - "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", "block_index": 186, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11249,7 +11302,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726737130, + "block_time": 1726742182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11284,7 +11337,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625` (str, required) - The hash of the transaction that created the order + + order_hash: `010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d` (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. @@ -11296,9 +11349,9 @@ Returns the information of an order { "result": { "tx_index": 57, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11313,7 +11366,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726737160, + "block_time": 1726742203, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11345,7 +11398,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60` (str, required) - The hash of the transaction that created the order + + order_hash: `4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d` (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 @@ -11370,13 +11423,13 @@ Returns the order matches of an order { "result": [ { - "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "tx0_index": 49, - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 52, - "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", - "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11390,7 +11443,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726737130, + "block_time": 1726742182, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11410,13 +11463,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "tx0_index": 49, - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 50, - "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", - "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11430,7 +11483,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726737126, + "block_time": 1726742178, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11460,7 +11513,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60` (str, required) - The hash of the transaction that created the order + + order_hash: `4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d` (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 @@ -11479,15 +11532,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 51, - "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", + "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", "block_index": 185, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "btc_amount": 2000, - "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "status": "valid", "confirmed": true, - "block_time": 1726737126, + "block_time": 1726742178, "btc_amount_normalized": "0.00002000" } ], @@ -11529,9 +11582,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 57, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11549,7 +11602,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726737160, + "block_time": 1726742203, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11575,9 +11628,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "block_index": 190, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11595,7 +11648,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726737147, + "block_time": 1726742198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11621,9 +11674,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "tx_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "block_index": 186, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11641,7 +11694,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726737130, + "block_time": 1726742182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11667,9 +11720,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "tx_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "block_index": 185, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11687,7 +11740,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726737126, + "block_time": 1726742178, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11713,9 +11766,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", "block_index": 186, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11733,7 +11786,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726737130, + "block_time": 1726742182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11794,13 +11847,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "tx0_index": 49, - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 52, - "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", - "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11817,7 +11870,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726737130, + "block_time": 1726742182, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11837,13 +11890,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "tx0_index": 49, - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 50, - "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", - "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11860,7 +11913,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726737126, + "block_time": 1726742178, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11880,13 +11933,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", "tx0_index": 47, - "tx0_hash": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 48, - "tx1_hash": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", - "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "tx1_hash": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -11903,7 +11956,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726737039, + "block_time": 1726742099, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11959,13 +12012,13 @@ Returns all the order matches { "result": [ { - "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "tx0_index": 49, - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 52, - "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", - "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11979,7 +12032,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726737130, + "block_time": 1726742182, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11999,13 +12052,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "tx0_index": 49, - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 50, - "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", - "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12019,7 +12072,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726737126, + "block_time": 1726742178, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12039,13 +12092,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", "tx0_index": 47, - "tx0_hash": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 48, - "tx1_hash": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", - "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "tx1_hash": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12059,7 +12112,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726737039, + "block_time": 1726742099, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12227,66 +12280,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "accb843c4f0dc47c8feaca2ac467eb476f25798fa16c2133aa4f15da2e62a5e5", + "tx_hash": "9f284d873f6c69ac2600ac8d935d6f4a50e0fff2ed36747baffff21663a4e8cb", "block_index": 121, - "source": "bcrt1qvf529w4jc36v4txgxtthdzc2jvgzn0qpkdd8tw", + "source": "bcrt1qzg7g6s9ckm9rsj4q55s6l4fjzlnzjs60l2vdx3", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1726736841, + "block_time": 1726741908, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "20782a298e51d2d1a7f9c3b920f9c72b51d9a574c6f77e02e6adb87410bc6b1a", + "tx_hash": "89ed825c9cf3546a5f10d5021f0de833325bd577c6423d24f9409fda0a5cadc2", "block_index": 120, - "source": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", + "source": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1726736837, + "block_time": 1726741904, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "bd3f991a5d7dbc12e586a84d6642b6b84a89782953a4cffffa667c9f1ff937df", + "tx_hash": "78df88b3adbb8b49fb1040da6e6973d680237b0847b9ef6f91137009d30ea949", "block_index": 119, - "source": "bcrt1qpf2m3cll06k4j3gqerdgh90e6zqeshl6k209nc", + "source": "bcrt1qv6q5lqz5p7z2e2c5z998s80k4vy8pa6xx7kh96", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1726736834, + "block_time": 1726741899, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "88e6ae087135607c1cd02b944bfcaad8743c914c1876d257b136888cb052591e", + "tx_hash": "3b64d401cd3e96fd0196bdc830b4d519086eb3279527a69eb1cbfe9f7af866bf", "block_index": 118, - "source": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", + "source": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1726736829, + "block_time": 1726741895, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "3421718e44114f29c722f2912b34cefecfdc22b80b7272624ed2c2116f97d5f1", + "tx_hash": "dbd8a5e46a6800eda8df27b5e6499018089f141906c6199ecb3636f9e9da57a6", "block_index": 117, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1726736825, + "block_time": 1726741891, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12329,18 +12382,18 @@ Returns all dispensers "result": [ { "tx_index": 32, - "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "last_status_tx_hash": null, - "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -12350,7 +12403,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726736947, + "block_time": 1726742026, "asset_info": { "divisible": true, "asset_longname": null, @@ -12366,9 +12419,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", + "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", "block_index": 144, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -12377,7 +12430,7 @@ Returns all dispensers "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12387,7 +12440,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736939, + "block_time": 1726742017, "asset_info": { "divisible": true, "asset_longname": null, @@ -12403,9 +12456,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "5a9a68441db332e17f18f00c8ea2794b8e8357f65ba5c4a19f5c761c07c18a77", + "tx_hash": "14e387be9e1d2957f2fcb38bf2ad065ab35a588822f35dc6035d96abc00eb960", "block_index": 142, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12414,7 +12467,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "origin": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12424,7 +12477,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736931, + "block_time": 1726742008, "asset_info": { "divisible": true, "asset_longname": null, @@ -12440,9 +12493,9 @@ Returns all dispensers }, { "tx_index": 26, - "tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12451,7 +12504,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12461,7 +12514,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -12486,7 +12539,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9` (str, required) - The hash of the dispenser to return + + dispenser_hash: `6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f` (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. @@ -12498,9 +12551,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12509,7 +12562,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12519,7 +12572,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -12541,7 +12594,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9` (str, required) - The hash of the dispenser to return + + dispenser_hash: `6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f` (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 @@ -12561,19 +12614,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", + "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12581,7 +12634,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12596,7 +12649,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -12610,19 +12663,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", + "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", "block_index": 140, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12630,7 +12683,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12645,7 +12698,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736922, + "block_time": 1726741999, "asset_info": { "divisible": true, "asset_longname": null, @@ -12687,20 +12740,20 @@ Returns all the dividends "result": [ { "tx_index": 40, - "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", + "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", "block_index": 153, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726736978, + "block_time": 1726742056, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -12725,7 +12778,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61` (str, required) - The hash of the dividend to return + + dividend_hash: `1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28` (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. @@ -12737,20 +12790,20 @@ Returns a dividend by its hash { "result": { "tx_index": 40, - "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", + "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", "block_index": 153, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726736978, + "block_time": 1726742056, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -12772,7 +12825,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28` (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 @@ -12795,12 +12848,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", + "event": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", "tx_index": 40, - "utxo": "0e5ef2ca6efc97a98e3cfc14841e15218cffff5e3997610098a146a1a32d3e4c:0", - "utxo_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "utxo": "e974db4d2a2886a23059fbe96759e378c4ae1d6277cac9700a15a7eb3bf610b4:0", + "utxo_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "confirmed": true, - "block_time": 1726736978, + "block_time": 1726742056, "asset_info": { "divisible": true, "asset_longname": null, @@ -12812,16 +12865,16 @@ Returns a dividend distribution by its hash }, { "block_index": 153, - "address": "bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m", + "address": "bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", + "event": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726736978, + "block_time": 1726742056, "asset_info": { "divisible": true, "asset_longname": null, @@ -12867,27 +12920,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", - "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", + "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", + "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", "transaction_count": 1, - "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", - "block_time": 1726737169 + "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", + "block_time": 1726742211 }, "tx_hash": null, "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "tx_index": 59 }, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 }, { "event_index": 533, @@ -12896,12 +12949,12 @@ Returns all events "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "status": "valid", "tag": "64657374726f79", - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "tx_index": 59, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -12911,24 +12964,24 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 193, - "event": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "event": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -12938,25 +12991,25 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", "block_index": 193, - "block_time": 1726737169, + "block_time": 1726742211, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "tx_index": 59, - "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", + "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -12976,9 +13029,9 @@ Returns all events }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 } ], "next_cursor": 530, @@ -13006,15 +13059,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", - "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", + "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", + "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", "transaction_count": 1, - "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", - "block_time": 1726737169 + "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", + "block_time": 1726742211 }, "tx_hash": null, "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 } } ``` @@ -13092,16 +13145,16 @@ Returns the events filtered by event name "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -13111,78 +13164,78 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726737147, + "block_time": 1726742198, "asset_info": { "divisible": true, "asset_longname": null, @@ -13192,24 +13245,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "block_index": 190, - "block_time": 1726737147 + "block_time": 1726742198 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "event": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "divisible": true, "asset_longname": null, @@ -13219,9 +13272,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "block_time": 1726737138 + "block_time": 1726742190 } ], "next_cursor": 490, @@ -13277,27 +13330,27 @@ Returns all the dispenses { "tx_index": 33, "dispense_index": 0, - "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", - "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "last_status_tx_hash": null, - "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13312,7 +13365,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726736947, + "block_time": 1726742026, "asset_info": { "divisible": true, "asset_longname": null, @@ -13326,19 +13379,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", + "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13346,7 +13399,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13361,7 +13414,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -13375,19 +13428,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", + "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", "block_index": 140, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13395,7 +13448,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13410,7 +13463,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736922, + "block_time": 1726741999, "asset_info": { "divisible": true, "asset_longname": null, @@ -13452,10 +13505,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -13463,7 +13516,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "divisible": true, "asset_longname": null, @@ -13476,10 +13529,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13487,11 +13540,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -13500,10 +13553,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13511,11 +13564,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -13524,10 +13577,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 53, - "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a", + "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a", "block_index": 187, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -13535,7 +13588,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737134, + "block_time": 1726742186, "asset_info": { "divisible": true, "asset_longname": null, @@ -13548,10 +13601,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 42, - "tx_hash": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", + "tx_hash": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", "block_index": 155, - "source": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5:0", - "destination": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147:1", + "source": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53:0", + "destination": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -13559,7 +13612,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726736988, + "block_time": 1726742065, "asset_info": { "divisible": true, "asset_longname": null, @@ -13601,14 +13654,14 @@ Returns all the issuances "result": [ { "tx_index": 46, - "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", + "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -13623,20 +13676,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726737024, + "block_time": 1726742082, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "d7cbe9778e884b6f2582d7a57940b012bf1ddb5b700e7dd072c69bedd7e9b3a8", + "tx_hash": "66542eb84d234807eb104350179c31c8f1b00e559ca82b489588629cb3fd8bfe", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -13651,20 +13704,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726737011, + "block_time": 1726742078, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "fc3408b9506f75d2a3f1a65d6fe00a222a56fde09335e34953794e0293f63afe", + "tx_hash": "fa63823d4d5818572e21737b9de669bcd5d05afc5b9e8cfb8cf525732deb75c8", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -13679,20 +13732,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726736996, + "block_time": 1726742074, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "2ee2bf2492eaafe424159ad97df4e43df151dd3c12ffe7c393b7bf9256b9bb32", + "tx_hash": "b7b8e84e938d9c5e88b764466dd7ab16843b7874731d10e0853fded80b2f08d2", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -13707,20 +13760,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726736992, + "block_time": 1726742070, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", + "tx_hash": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", - "issuer": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", + "source": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", + "issuer": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", "transfer": false, "callable": false, "call_date": 0, @@ -13735,7 +13788,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726736988, + "block_time": 1726742065, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -13750,7 +13803,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c` (str, required) - The hash of the transaction to return + + tx_hash: `b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655` (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. @@ -13762,14 +13815,14 @@ Returns the issuances of a block { "result": { "tx_index": 46, - "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", + "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -13784,7 +13837,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726737024, + "block_time": 1726742082, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -13816,16 +13869,16 @@ Returns all sweeps "result": [ { "tx_index": 58, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "fee_paid_normalized": "0.00600000" } ], @@ -13839,7 +13892,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9` (str, required) - The hash of the transaction to return + + tx_hash: `1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08` (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. @@ -13852,16 +13905,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 58, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "fee_paid_normalized": "0.00600000" } ], @@ -13895,9 +13948,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d", + "tx_hash": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696", "block_index": 138, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -13905,14 +13958,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726736913, + "block_time": 1726741991, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "b1010bdab734a9e4cce02ad65bcf68fbc73fe1bb28f21c9b91d6cf68c1a62186", + "tx_hash": "60e53d18f1a227ad4ad75ba9854b8c64c4dceeb7c98514be938945b616fa342e", "block_index": 137, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -13920,7 +13973,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726736909, + "block_time": 1726741987, "fee_fraction_int_normalized": "0.00000000" } ], @@ -13934,7 +13987,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d` (str, required) - The hash of the transaction to return + + tx_hash: `52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696` (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. @@ -13946,9 +13999,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d", + "tx_hash": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696", "block_index": 138, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -13956,7 +14009,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726736913, + "block_time": 1726741991, "fee_fraction_int_normalized": "0.00000000" } } @@ -13986,10 +14039,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", + "tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14014,13 +14067,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726736900 + "block_time": 1726741978 }, { - "tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", + "tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14045,13 +14098,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726736883 + "block_time": 1726741952 }, { - "tx_hash": "c4de72bddcecc2b88f8e0746e02446a566b0fca27fe3e4b9bd4c20e550f9089a", + "tx_hash": "ac047163f3cd9094f4ee2103b832d0064228aa5f2a7fc8e3104ee775fb181f84", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14076,13 +14129,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726736879 + "block_time": 1726741947 }, { - "tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14107,7 +14160,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726736859 + "block_time": 1726741926 } ], "next_cursor": null, @@ -14150,7 +14203,7 @@ Returns the mints by fairminter Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa,bcrt1qpf2m3cll06k4j3gqerdgh90e6zqeshl6k209nc` (str, required) - The addresses to search for + + addresses: `bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs,bcrt1qv6q5lqz5p7z2e2c5z998s80k4vy8pa6xx7kh96` (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. @@ -14169,8 +14222,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", - "address": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa" + "txid": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "address": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs" }, { "vout": 2, @@ -14178,8 +14231,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", - "address": "bcrt1qpf2m3cll06k4j3gqerdgh90e6zqeshl6k209nc" + "txid": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", + "address": "bcrt1qv6q5lqz5p7z2e2c5z998s80k4vy8pa6xx7kh96" } ], "next_cursor": null, @@ -14192,7 +14245,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw` (str, required) - The address to search for + + address: `bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell` (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 @@ -14208,28 +14261,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "35f402483a54a03e637b77b2ff618642d6e435f34c3c89219374add7f500dc22" + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" }, { - "tx_hash": "214738c81dae0c37908684349735808636cb192d94e707070ce65e195da93129" + "tx_hash": "6564cd91f7e12c026702aef3fbe3095b8ff3e5d2ed77b36fe77bb02e77edc008" }, { - "tx_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543" + "tx_hash": "96eddd62d0c04fd85a4cb6efc84b8857dc122efc29a2be60ea2356b65edab324" }, { - "tx_hash": "7c7028f67836beaa5fb2de94c6daea92f4efba5aeae1c1b193c994c5ac14cf51" + "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a" }, { - "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a" + "tx_hash": "daabc4181b5c356b166fd9efb6056720fec8a1d81871b9c5b091a499e81e663f" }, { - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" + "tx_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285" }, { - "tx_hash": "b8e39db42ecddab4c8ad0e1a4b6eb762874e130b8210de94b4478870955b1bab" + "tx_hash": "4d1c559a2f4b46484dd28d82a0544b0606eafb203419cf378deafd53670c77f7" }, { - "tx_hash": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8" + "tx_hash": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8" } ], "next_cursor": null, @@ -14242,7 +14295,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r` (str, required) - The address to search for. + + address: `bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz` (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. @@ -14255,8 +14308,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 5, - "tx_hash": "b50e711e978f5a5477fc4cf4e91bb2d3b9dac77d07cf870bf425744458692f65" + "block_index": 6, + "tx_hash": "a3fcc89690570455bec8e267f71157a48c131d570d442b663e284be039eeb34e" } } ``` @@ -14266,7 +14319,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa` (str, required) - The address to search for + + address: `bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs` (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 @@ -14287,7 +14340,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2" + "txid": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503" } ], "next_cursor": null, @@ -14300,7 +14353,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c` (str, required) - Address to get pubkey for. + + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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. @@ -14312,7 +14365,7 @@ Get pubkey for an address. ``` { - "result": "0375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce" + "result": "03c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb" } ``` @@ -14321,7 +14374,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24` (str, required) - The transaction hash + + tx_hash: `672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02` (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. @@ -14333,7 +14386,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001013bdf1654a90fe1783a50681199de6179853c042521596687d881994ee8eb300c0300000000ffffffff020000000000000000226a205780b5fb5db97431be86268e03356b0778fabaeb4ebdeeec9c70b454de905fd7680b0a2701000000160014e816f5562a0ee9cab6015173bbded2ef7b58ca5d02473044022043f9fd67ea65c1aef5456a374bfa1ae33b4ada4f72edb7ad41d1fb5d888a2a6f022032e44ab507cf7bc3aaa686b96288e3b68a4599ea1d7a08af3f3a1c008c077b400121038ef0fcfc05b3050b57c3e601c310e1a138a8d148b1ea0c333eff1fe919f4999c00000000" + "result": "0200000000010164ff2ceaab1f3a9b87431b23953e9c868f56f68ff92e5d0e47a7de52c5f0c8e40300000000ffffffff020000000000000000226a20df99d5f70aac5d275d047efe402704859d87a960c87d935e7f9c9c5999d75995680b0a2701000000160014b77441a3eca05c136080e504fe32114fa79f44060247304402207eea08e8ad9d3195d75bbafeb77a08ae08ae5f57e3a0901abd0e894fabac9e400220255fbdf5cccee2fcb70df80c658e4d8b74b3a14ea501634895abfb08b1b310ff012103c00ed866f6a66b1786e3fdf10ad429bdfef2bf782fe2eae745580ae546dcb96300000000" } ``` @@ -14355,7 +14408,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 68456 + "result": 68517 } ``` @@ -14426,26 +14479,26 @@ Returns all mempool events { "result": [ { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "tx_index": 60 } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "memo": null, "quantity": 10000, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "status": "valid", - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "tx_index": 60, "asset_info": { "divisible": true, @@ -14458,19 +14511,19 @@ Returns all mempool events } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "CREDIT", "params": { - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -14482,19 +14535,19 @@ Returns all mempool events } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 193, - "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -14506,27 +14559,27 @@ Returns all mempool events } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726737173.5878787, + "block_time": 1726742226.132691, "btc_amount": 0, - "data": "0200000000000000010000000000002710803e32791d2b81299971b964239daaa0099a945708", + "data": "0200000000000000010000000000002710809668fa89c3fb02c8b7a891003a3773f6eed4a656", "destination": "", "fee": 10000, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "tx_index": 60, - "utxos_info": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24:1", + "utxos_info": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "memo": null, "asset_info": { "divisible": true, @@ -14570,19 +14623,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "CREDIT", "params": { - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -14604,7 +14657,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24` (str, required) - The hash of the transaction to return + + tx_hash: `b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b` (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 @@ -14624,26 +14677,26 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "tx_index": 60 } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "memo": null, "quantity": 10000, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "status": "valid", - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "tx_index": 60, "asset_info": { "divisible": true, @@ -14656,19 +14709,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "CREDIT", "params": { - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -14680,19 +14733,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 193, - "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -14704,27 +14757,27 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726737173.5878787, + "block_time": 1726742226.132691, "btc_amount": 0, - "data": "0200000000000000010000000000002710803e32791d2b81299971b964239daaa0099a945708", + "data": "0200000000000000010000000000002710809668fa89c3fb02c8b7a891003a3773f6eed4a656", "destination": "", "fee": 10000, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "tx_index": 60, - "utxos_info": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24:1", + "utxos_info": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "memo": null, "asset_info": { "divisible": true, diff --git a/counterparty-core/counterpartycore/lib/api/routes.py b/counterparty-core/counterpartycore/lib/api/routes.py index ec79b1b1c7..c99c9286f9 100644 --- a/counterparty-core/counterpartycore/lib/api/routes.py +++ b/counterparty-core/counterpartycore/lib/api/routes.py @@ -32,6 +32,7 @@ def get_routes(): ### /transactions ### "/v2/transactions": queries.get_transactions, "/v2/transactions/info": transaction.info, + "/v2/transactions//info": transaction.info_by_tx_hash, "/v2/transactions/unpack": transaction.unpack, "/v2/transactions/": queries.get_transaction_by_tx_index, "/v2/transactions/": queries.get_transaction_by_hash, diff --git a/counterparty-core/counterpartycore/lib/backend/bitcoind.py b/counterparty-core/counterpartycore/lib/backend/bitcoind.py index e09839fa82..cf4be0e896 100644 --- a/counterparty-core/counterpartycore/lib/backend/bitcoind.py +++ b/counterparty-core/counterpartycore/lib/backend/bitcoind.py @@ -272,6 +272,11 @@ def get_decoded_transaction(tx_hash, block_index=None): return tx +def get_tx_out_amount(tx_hash, vout): + raw_tx = getrawtransaction(tx_hash, True) + return raw_tx["vout"][vout]["value"] + + class BlockFetcher: def __init__(self, first_block) -> None: self.current_block = first_block diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index 3547416ab2..e4728b4297 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -1202,10 +1202,17 @@ def compose_transaction( for str_input in custom_inputs.split(","): if not util.is_utxo_format(str_input): raise exceptions.ComposeError(f"invalid UTXO: {str_input}") + try: + amount = backend.bitcoind.get_tx_out_amount( + str_input.split(":")[0], int(str_input.split(":")[1]) + ) + except Exception as e: + raise exceptions.ComposeError(f"invalid UTXO: {str_input}") from e new_custom_inputs.append( { "txid": str_input.split(":")[0], "vout": int(str_input.split(":")[1]), + "amount": amount, } ) custom_inputs = new_custom_inputs @@ -2059,6 +2066,18 @@ def compose_movetoutxo(db, utxo: str, destination: str, more_utxos: str = ""): } +def info_by_tx_hash(db, tx_hash: str): + """ + Returns Counterparty information from a transaction hash. + :param tx_hash: Transaction hash (e.g. $LAST_MEMPOOL_TX_HASH) + """ + try: + rawtransaction = backend.bitcoind.getrawtransaction(tx_hash) + except Exception as e: + raise exceptions.ComposeError("Invalid transaction") from e + return info(db, rawtransaction) + + def info(db, rawtransaction: str, block_index: int = None): """ Returns Counterparty information from a raw transaction in hex format. diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index ab73bfc931..6641ec6279 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": 193, - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", - "block_time": 1726737169, - "previous_block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_time": 1726742211, + "previous_block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", "difficulty": 545259519, - "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", - "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", - "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", + "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", + "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", + "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", - "block_time": 1726737165, - "previous_block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", + "block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", + "block_time": 1726742207, + "previous_block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", "difficulty": 545259519, - "ledger_hash": "113b4ac64bf9ac160f8e8708650a5d11015244d91fd17d01b3de1fe04be70c78", - "txlist_hash": "558fec084db1e752436b64f7b0a16b3d23bf95d65f565c7bde658319eeb33077", - "messages_hash": "e5e85dcca0aa0aa18c5bd712553a8598a4d416411dc2dacbd84c40a2c8d16364", + "ledger_hash": "0a2bdb38999b534fd2b576ff3c06e3eee38ebf1647458e5728700cedd6efcaed", + "txlist_hash": "7e202711cfe7c8b899866f52138b5f970ae744974e861db8fe7d22b284b88dbf", + "messages_hash": "48160ef2e284595aa7d8f136206cd029ffd17325ffe6584f96a3113dc2f097b5", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", - "block_time": 1726737160, - "previous_block_hash": "183beca9c1ae5f954cb62ccbcb7ab1d73a8c48927fe3ba9543532d5b9ce910a3", + "block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", + "block_time": 1726742203, + "previous_block_hash": "54cd9caaa8fce8a78011bf573033e5c66827b4f054205f1a89eb72cf7264f412", "difficulty": 545259519, - "ledger_hash": "e81ac0e53866984f932b80f2481beac540f6cc62a16e792fd5056b013d9fc368", - "txlist_hash": "d429caa4bda24381dc9fd8efe17f587c45fe10a0f370ab48e62444a53da33cba", - "messages_hash": "a0f05767e14a8d26fd1451e64665fe70bcc522860d08bc04b455175e7199d414", + "ledger_hash": "6e9a0d3d0c0ba20e2081bb9a2dacbdffcf05aaf850bb5ea1debda78f465e48a4", + "txlist_hash": "55c720e469b176ebab9b107f55fa2fa4b81a7b709f5d0d320aec4d0418b30ced", + "messages_hash": "7230316bb7908deaf56674f65e5f861f91d1870c5239f1b17708d290d18d940d", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "183beca9c1ae5f954cb62ccbcb7ab1d73a8c48927fe3ba9543532d5b9ce910a3", - "block_time": 1726737147, - "previous_block_hash": "0ce6237c027d6772c41adb9614ce3b0d9186a8717abe802fc140e2388d92a79c", + "block_hash": "54cd9caaa8fce8a78011bf573033e5c66827b4f054205f1a89eb72cf7264f412", + "block_time": 1726742198, + "previous_block_hash": "49dc4ddb70d192b54a5ca94706a766771f5d75e7013ccde319624e804335bc20", "difficulty": 545259519, - "ledger_hash": "f2adce4e7e612e6ae389add9f0a919d791cfb4cbea7689f82caafa294c330b13", - "txlist_hash": "95250702feb0be119b1a92970c680ea45a022baeec5f15f5c2b7456912db0ce1", - "messages_hash": "b0206ae41b307f14e98b1207f8d922b3a15d8eda41c476236a094f7c3c175aae", + "ledger_hash": "2faa91e8fbe01eb0b87717d897b1f78e3f12a5842cc77bf58dc38fd3f37a3482", + "txlist_hash": "e52ebece08054449aa8a477cd7c19b1542b342af81df4f866eb76be8f24284fd", + "messages_hash": "a1e98cfa9d9ad01e5c9ea206c95f169a6be5152237df625e719b8f648a50ec4a", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "0ce6237c027d6772c41adb9614ce3b0d9186a8717abe802fc140e2388d92a79c", - "block_time": 1726737143, - "previous_block_hash": "20fc4d1702a5f56963ec395c69b45622b30c4a6f58fa15a26a7d15d06d9cc299", + "block_hash": "49dc4ddb70d192b54a5ca94706a766771f5d75e7013ccde319624e804335bc20", + "block_time": 1726742194, + "previous_block_hash": "1223a9ebf3f56e035752b5244d0710e06d19b8d943c71c76b43631da6557211c", "difficulty": 545259519, - "ledger_hash": "36d4783cd8aea1ea7b029dd8d1eea5f46adea1ef5d654fa2dea650c59e90332e", - "txlist_hash": "939204c57db25fa23f6522046856c4e3e84de481fe58083f6f111f10a769a049", - "messages_hash": "e57ab6f69b0cff918442af68a2ed4fdcfef1108674370c8291235532833c2d84", + "ledger_hash": "7f3d92b28bcfa9cb4f9fe9cf2704a600db7cb3775f3d60b40df6ebbf3190c01b", + "txlist_hash": "0ed5cbda0c2184cbfa3c21efaf00573bb0f99adb32b260680a69892879d63afd", + "messages_hash": "eb0dbf67a7c239e8a9800ca126627178fffcefff09d7867dd7a1e9c2de4380fd", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", - "block_time": 1726737169, - "previous_block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_time": 1726742211, + "previous_block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", "difficulty": 545259519, - "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", - "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", - "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", + "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", + "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", + "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", - "block_time": 1726737169, - "previous_block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_time": 1726742211, + "previous_block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", "difficulty": 545259519, - "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", - "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", - "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", + "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", + "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", + "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", - "block_time": 1726737169, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_time": 1726742211, + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", + "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -139,11 +139,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "113b4ac64bf9ac160f8e8708650a5d11015244d91fd17d01b3de1fe04be70c78", - "messages_hash": "e5e85dcca0aa0aa18c5bd712553a8598a4d416411dc2dacbd84c40a2c8d16364", + "ledger_hash": "0a2bdb38999b534fd2b576ff3c06e3eee38ebf1647458e5728700cedd6efcaed", + "messages_hash": "48160ef2e284595aa7d8f136206cd029ffd17325ffe6584f96a3113dc2f097b5", "transaction_count": 1, - "txlist_hash": "558fec084db1e752436b64f7b0a16b3d23bf95d65f565c7bde658319eeb33077", - "block_time": 1726737165 + "txlist_hash": "7e202711cfe7c8b899866f52138b5f970ae744974e861db8fe7d22b284b88dbf", + "block_time": 1726742207 }, "tx_hash": null }, @@ -152,43 +152,43 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58 }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "status": "valid", - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, - "block_time": 1726737165, + "block_time": 1726742207, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -198,22 +198,22 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "XCP", "block_index": 192, - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -223,7 +223,7 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" } ], "next_cursor": 524, @@ -261,16 +261,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -280,57 +280,57 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" } ], "next_cursor": null, @@ -340,16 +340,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -361,20 +361,20 @@ }, { "block_index": 192, - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -382,20 +382,20 @@ }, { "block_index": 192, - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -409,16 +409,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "event": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -436,24 +436,24 @@ "result": [ { "type": "order", - "object_id": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "object_id": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", "block_index": 182, "confirmed": true, - "block_time": 1726737039 + "block_time": 1726742099 }, { "type": "order", - "object_id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", + "object_id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", "block_index": 182, "confirmed": true, - "block_time": 1726737039 + "block_time": 1726742099 }, { "type": "order_match", - "object_id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "object_id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", "block_index": 182, "confirmed": true, - "block_time": 1726737039 + "block_time": 1726742099 } ], "next_cursor": null, @@ -463,13 +463,13 @@ "result": [ { "tx_index": 56, - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "block_index": 190, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "status": "valid", "confirmed": true, - "block_time": 1726737147 + "block_time": 1726742198 } ], "next_cursor": null, @@ -479,15 +479,15 @@ "result": [ { "tx_index": 59, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -505,14 +505,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", + "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -527,7 +527,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726737024, + "block_time": 1726742082, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -539,10 +539,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -550,7 +550,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "divisible": true, "asset_longname": null, @@ -563,10 +563,10 @@ }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -574,11 +574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -587,10 +587,10 @@ }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -598,11 +598,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -618,27 +618,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", - "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "last_status_tx_hash": null, - "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -653,7 +653,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726736947, + "block_time": 1726742026, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,16 +672,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "fee_paid_normalized": "0.00600000" } ], @@ -692,17 +692,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", - "block_time": 1726737169, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_time": 1726742211, + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", + "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -725,23 +725,23 @@ }, { "tx_index": 58, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf", - "block_time": 1726737165, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", + "block_time": 1726742207, + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480e816f5562a0ee9cab6015173bbded2ef7b58ca5d017377656570206d7920617373657473", + "data": "0480b77441a3eca05c136080e504fe32114fa79f4406017377656570206d7920617373657473", "supported": true, - "utxos_info": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9:1", + "utxos_info": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "flags": 1, "memo": "sweep my assets" } @@ -754,18 +754,18 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "46975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "5ba723defaf396451676e61776a9cd1c1f8fd9586cc4db78a3b6293d79e53ae4", + "hash": "159e5bce4910b972c4249dc33c13ae5fe75ee185d307e6325bdafbed87e010ff", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -775,49 +775,86 @@ "vout": [ { "value": 0, - "script_pub_key": "6a332c447795bb02a14b1b76de7c17a84bc37fc8666996c601931b77ca60bb5a3dd22a967c31687ef49a736c008c79421a3bd09ba6" + "script_pub_key": "6a293ed0ca3029ff2c8f070c17ff890726fb793d285f135e406302d8976dac8ff094cf5e43f144a3cb6415" }, { "value": 4999990000, - "script_pub_key": "00147cf09b00afd181c7e4a3698f41aa73c50e0fe44e" + "script_pub_key": "00148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2" } ], "vtxinwit": [ - "304402201697d85478fe87d570f56161af58d66d7304e8850f79d0bd7b855e9d3765d76c02202501c7b254170cb724cd7277f8a49a4967c67b96f89441df23d6072886de2aac01", - "0375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce" + "304402204cf558337aadef48e62a90c2848843eaf973ec9c1ff085e03b54ba7475ef1510022016a10b12483d62657e732914303de9992f85b31466ce65c08395514996dcec4e01", + "03c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb" ], "lock_time": 0, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", - "tx_id": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625" + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_id": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259" }, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, + "message_type": "cancel", + "message_type_id": 70, "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { + "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "status": "valid" + } + }, + "btc_amount_normalized": "0.00000000" + } + }, + "/v2/transactions//info": { + "result": { + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0200000000000000010000000000002710809668fa89c3fb02c8b7a891003a3773f6eed4a656", + "decoded_tx": { + "version": 2, + "segwit": true, + "coinbase": false, + "vin": [ + { + "hash": "b410f63beba7150a70c9ca77621daec478e35967e9fb5930a286282a4ddb74e9", + "n": 1, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + } + ], + "vout": [ + { + "value": 0, + "script_pub_key": "6a2e98cf313c9ed5ec29068907f1acd16b2d287938482a6520b2c97f45ad202f62336365b41cb5095ee0585590fa3497" + }, + { + "value": 4999955000, + "script_pub_key": "0014b77441a3eca05c136080e504fe32114fa79f4406" + } + ], + "vtxinwit": [ + "3044022014031a3a825f819044df4c2c522ffe97c5b3b26ab6821fc1702a9ba53a8da7b502201e860baf96d0171a8f3d7707eed0b99646404e1df10dfc90a26d4912f617066a01", + "03c00ed866f6a66b1786e3fdf10ad429bdfef2bf782fe2eae745580ae546dcb963" + ], + "lock_time": 0, + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_id": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b" + }, + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 10000, + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "memo": null, + "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" + "quantity_normalized": "0.00010000" } }, "btc_amount_normalized": "0.00000000" @@ -835,17 +872,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", - "block_time": 1726737169, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_time": 1726742211, + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", + "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -870,17 +907,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", - "block_time": 1726737169, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_time": 1726742211, + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", + "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -909,47 +946,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58 }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "status": "valid", - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, - "block_time": 1726737165, + "block_time": 1726742207, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -959,24 +996,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "XCP", "block_index": 192, - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -986,36 +1023,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 } ], "next_cursor": 523, @@ -1028,47 +1065,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58 }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "status": "valid", - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, - "block_time": 1726737165, + "block_time": 1726742207, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -1078,24 +1115,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "XCP", "block_index": 192, - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -1105,36 +1142,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 } ], "next_cursor": 523, @@ -1144,10 +1181,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -1155,7 +1192,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "divisible": true, "asset_longname": null, @@ -1168,10 +1205,10 @@ }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1179,11 +1216,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -1192,10 +1229,10 @@ }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1203,11 +1240,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -1223,27 +1260,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", - "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "last_status_tx_hash": null, - "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -1258,7 +1295,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726736947, + "block_time": 1726742026, "asset_info": { "divisible": true, "asset_longname": null, @@ -1279,16 +1316,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -1298,63 +1335,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 } ], "next_cursor": null, @@ -1366,16 +1403,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -1385,63 +1422,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 } ], "next_cursor": null, @@ -1454,7 +1491,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1464,7 +1501,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -1475,7 +1512,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1485,7 +1522,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -1496,7 +1533,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1506,7 +1543,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -1517,7 +1554,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1527,7 +1564,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -1538,7 +1575,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1548,7 +1585,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -1562,17 +1599,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", - "block_time": 1726737160, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", + "block_time": 1726742203, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1", + "utxos_info": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1608,23 +1645,23 @@ }, { "tx_index": 56, - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "block_index": 190, - "block_hash": "183beca9c1ae5f954cb62ccbcb7ab1d73a8c48927fe3ba9543532d5b9ce910a3", - "block_time": 1726737147, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "54cd9caaa8fce8a78011bf573033e5c66827b4f054205f1a89eb72cf7264f412", + "block_time": 1726742198, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "data": "46975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "supported": true, - "utxos_info": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe:1", + "utxos_info": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "status": "valid" } }, @@ -1632,17 +1669,17 @@ }, { "tx_index": 55, - "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "block_index": 189, - "block_hash": "0ce6237c027d6772c41adb9614ce3b0d9186a8717abe802fc140e2388d92a79c", - "block_time": 1726737143, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "49dc4ddb70d192b54a5ca94706a766771f5d75e7013ccde319624e804335bc20", + "block_time": 1726742194, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861:1", + "utxos_info": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1678,17 +1715,17 @@ }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "block_hash": "20fc4d1702a5f56963ec395c69b45622b30c4a6f58fa15a26a7d15d06d9cc299", - "block_time": 1726737138, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "1223a9ebf3f56e035752b5244d0710e06d19b8d943c71c76b43631da6557211c", + "block_time": 1726742190, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a65050a67bf322ed4c4b1bf06798d4b6cefea9f3803e32791d2b81299971b964239daaa0099a94570880e816f5562a0ee9cab6015173bbded2ef7b58ca5d400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380b886678b2158112c9d7fe7b214a12943c2cabd96809668fa89c3fb02c8b7a891003a3773f6eed4a65680b77441a3eca05c136080e504fe32114fa79f4406400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e:0", + "utxos_info": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1696,14 +1733,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -1711,7 +1748,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1730,25 +1767,25 @@ }, { "tx_index": 51, - "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", + "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", "block_index": 185, - "block_hash": "4cf4464c33d15629e0bd0b037dd008ce660191a9b79778db1087bc9214247f38", - "block_time": 1726737126, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "592f49ff43d18849d9b56671fedc5a4de889bebd46b34f08efcc8fa908b1e928", + "block_time": 1726742178, + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "btc_amount": 2000, "fee": 10000, - "data": "0b5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "data": "0b4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "supported": true, - "utxos_info": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4:0", + "utxos_info": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", - "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", - "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "status": "valid" } }, @@ -1777,11 +1814,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "status": "open", - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "tx_index": 57, - "block_time": 1726737160, + "block_time": 1726742203, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1805,24 +1842,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "block_time": 1726737160 + "block_time": 1726742203 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "block_index": 191, - "event": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "event": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1726737160, + "block_time": 1726742203, "asset_info": { "divisible": true, "asset_longname": null, @@ -1832,25 +1869,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "block_time": 1726737160 + "block_time": 1726742203 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", + "block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", "block_index": 191, - "block_time": 1726737160, + "block_time": 1726742203, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "tx_index": 57, - "utxos_info": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1", + "utxos_info": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1882,40 +1919,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "block_time": 1726737160 + "block_time": 1726742203 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "status": "valid", - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "tx_index": 56, - "block_time": 1726737147 + "block_time": 1726742198 }, - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "block_index": 190, - "block_time": 1726737147 + "block_time": 1726742198 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726737147, + "block_time": 1726742198, "asset_info": { "divisible": true, "asset_longname": null, @@ -1925,9 +1962,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "block_index": 190, - "block_time": 1726737147 + "block_time": 1726742198 } ], "next_cursor": 506, @@ -1936,17 +1973,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "memo": null, "quantity": 10000, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "status": "valid", - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "tx_index": 60, "asset_info": { "divisible": true, @@ -1959,19 +1996,19 @@ } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "CREDIT", "params": { - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -1983,19 +2020,19 @@ } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 193, - "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -2007,27 +2044,27 @@ } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726737173.5878787, + "block_time": 1726742226.132691, "btc_amount": 0, - "data": "0200000000000000010000000000002710803e32791d2b81299971b964239daaa0099a945708", + "data": "0200000000000000010000000000002710809668fa89c3fb02c8b7a891003a3773f6eed4a656", "destination": "", "fee": 10000, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "tx_index": 60, - "utxos_info": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24:1", + "utxos_info": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "memo": null, "asset_info": { "divisible": true, @@ -2049,7 +2086,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2057,14 +2094,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2072,14 +2109,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2094,7 +2131,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2102,7 +2139,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2114,7 +2151,7 @@ }, "/v2/addresses/
/balances/": { "result": { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2133,16 +2170,16 @@ "result": [ { "block_index": 190, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737147, + "block_time": 1726742198, "asset_info": { "divisible": true, "asset_longname": null, @@ -2154,16 +2191,16 @@ }, { "block_index": 182, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", + "event": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737039, + "block_time": 1726742099, "asset_info": { "divisible": true, "asset_longname": null, @@ -2175,20 +2212,20 @@ }, { "block_index": 159, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", + "event": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737024, + "block_time": 1726742082, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2196,20 +2233,20 @@ }, { "block_index": 156, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "2ee2bf2492eaafe424159ad97df4e43df151dd3c12ffe7c393b7bf9256b9bb32", + "event": "b7b8e84e938d9c5e88b764466dd7ab16843b7874731d10e0853fded80b2f08d2", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726736992, + "block_time": 1726742070, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2221,16 +2258,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", + "event": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", "tx_index": 38, - "utxo": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9:1", - "utxo_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "utxo": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9:1", + "utxo_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "confirmed": true, - "block_time": 1726736969, + "block_time": 1726742048, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2244,16 +2281,16 @@ "result": [ { "block_index": 191, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "event": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737160, + "block_time": 1726742203, "asset_info": { "divisible": true, "asset_longname": null, @@ -2265,16 +2302,16 @@ }, { "block_index": 189, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737143, + "block_time": 1726742194, "asset_info": { "divisible": true, "asset_longname": null, @@ -2286,16 +2323,16 @@ }, { "block_index": 188, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "event": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "divisible": true, "asset_longname": null, @@ -2307,20 +2344,20 @@ }, { "block_index": 188, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "event": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2328,16 +2365,16 @@ }, { "block_index": 183, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "event": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737108, + "block_time": 1726742170, "asset_info": { "divisible": true, "asset_longname": null, @@ -2360,9 +2397,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "b1010bdab734a9e4cce02ad65bcf68fbc73fe1bb28f21c9b91d6cf68c1a62186", + "tx_hash": "60e53d18f1a227ad4ad75ba9854b8c64c4dceeb7c98514be938945b616fa342e", "block_index": 137, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2370,7 +2407,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726736909, + "block_time": 1726741987, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2381,14 +2418,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "80605ddcc2da09e5d557ad4b486390da9dfaa0ef1c6f175b1957db2b332a81e1", + "tx_hash": "adc800a0c349ff4e0e7193122cf547a536a880740dbe9cd9af41bd4b6138d8b0", "block_index": 112, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1726736804, + "block_time": 1726741871, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2400,10 +2437,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2411,7 +2448,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "divisible": true, "asset_longname": null, @@ -2424,10 +2461,10 @@ }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2435,11 +2472,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2448,10 +2485,10 @@ }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2459,11 +2496,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2472,10 +2509,10 @@ }, { "tx_index": 38, - "tx_hash": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", + "tx_hash": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", "block_index": 151, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9:1", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2483,11 +2520,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726736969, + "block_time": 1726742048, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2496,10 +2533,10 @@ }, { "tx_index": 35, - "tx_hash": "4a3b965c548a45221fb21c895a5983dd531696c8c62d09ca2a19954c14446c82", + "tx_hash": "70b48fb7cb8c00a6e814bdf5682297fcba88b2e305f0ac44ae659782a9d08a1d", "block_index": 148, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "7c7028f67836beaa5fb2de94c6daea92f4efba5aeae1c1b193c994c5ac14cf51:1", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "4d1c559a2f4b46484dd28d82a0544b0606eafb203419cf378deafd53670c77f7:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2507,11 +2544,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726736956, + "block_time": 1726742035, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2526,10 +2563,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "0c30ebe84e9981d88766592125043c857961de991168503a78e10fa95416df3b", + "tx_hash": "e4c8f0c552dea7470e5d2ef98ff6568f869c3e95231b43879b3a1fabea2cff64", "block_index": 150, - "source": "35f402483a54a03e637b77b2ff618642d6e435f34c3c89219374add7f500dc22:0", - "destination": "bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m", + "source": "daabc4181b5c356b166fd9efb6056720fec8a1d81871b9c5b091a499e81e663f:0", + "destination": "bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2537,11 +2574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726736965, + "block_time": 1726742043, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2556,10 +2593,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2567,11 +2604,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2580,10 +2617,10 @@ }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2591,11 +2628,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2604,10 +2641,10 @@ }, { "tx_index": 38, - "tx_hash": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", + "tx_hash": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", "block_index": 151, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9:1", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2615,11 +2652,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726736969, + "block_time": 1726742048, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2628,10 +2665,10 @@ }, { "tx_index": 35, - "tx_hash": "4a3b965c548a45221fb21c895a5983dd531696c8c62d09ca2a19954c14446c82", + "tx_hash": "70b48fb7cb8c00a6e814bdf5682297fcba88b2e305f0ac44ae659782a9d08a1d", "block_index": 148, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "7c7028f67836beaa5fb2de94c6daea92f4efba5aeae1c1b193c994c5ac14cf51:1", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "4d1c559a2f4b46484dd28d82a0544b0606eafb203419cf378deafd53670c77f7:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2639,11 +2676,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726736956, + "block_time": 1726742035, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2658,10 +2695,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "0c30ebe84e9981d88766592125043c857961de991168503a78e10fa95416df3b", + "tx_hash": "e4c8f0c552dea7470e5d2ef98ff6568f869c3e95231b43879b3a1fabea2cff64", "block_index": 150, - "source": "35f402483a54a03e637b77b2ff618642d6e435f34c3c89219374add7f500dc22:0", - "destination": "bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m", + "source": "daabc4181b5c356b166fd9efb6056720fec8a1d81871b9c5b091a499e81e663f:0", + "destination": "bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2669,11 +2706,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726736965, + "block_time": 1726742043, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -2688,9 +2725,9 @@ "result": [ { "tx_index": 30, - "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", + "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", "block_index": 144, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2699,7 +2736,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2709,7 +2746,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736939, + "block_time": 1726742017, "asset_info": { "divisible": true, "asset_longname": null, @@ -2725,9 +2762,9 @@ }, { "tx_index": 26, - "tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2736,7 +2773,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2746,7 +2783,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -2767,9 +2804,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 30, - "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", + "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", "block_index": 144, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2778,7 +2815,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2788,7 +2825,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736939, + "block_time": 1726742017, "asset_info": { "divisible": true, "asset_longname": null, @@ -2808,19 +2845,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", + "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2828,7 +2865,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2843,7 +2880,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -2857,19 +2894,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", + "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", "block_index": 140, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2877,7 +2914,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2892,7 +2929,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736922, + "block_time": 1726741999, "asset_info": { "divisible": true, "asset_longname": null, @@ -2912,19 +2949,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", + "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2932,7 +2969,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2947,7 +2984,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -2961,19 +2998,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", + "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", "block_index": 140, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2981,7 +3018,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2996,7 +3033,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736922, + "block_time": 1726741999, "asset_info": { "divisible": true, "asset_longname": null, @@ -3016,19 +3053,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", + "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3036,7 +3073,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3051,7 +3088,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -3065,19 +3102,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", + "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", "block_index": 140, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3085,7 +3122,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3100,7 +3137,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736922, + "block_time": 1726741999, "asset_info": { "divisible": true, "asset_longname": null, @@ -3120,19 +3157,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", + "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3140,7 +3177,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3155,7 +3192,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -3169,19 +3206,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", + "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", "block_index": 140, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3189,7 +3226,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3204,7 +3241,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736922, + "block_time": 1726741999, "asset_info": { "divisible": true, "asset_longname": null, @@ -3223,16 +3260,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "fee_paid_normalized": "0.00600000" } ], @@ -3243,14 +3280,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", + "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -3265,20 +3302,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726737024, + "block_time": 1726742082, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "d7cbe9778e884b6f2582d7a57940b012bf1ddb5b700e7dd072c69bedd7e9b3a8", + "tx_hash": "66542eb84d234807eb104350179c31c8f1b00e559ca82b489588629cb3fd8bfe", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -3293,20 +3330,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726737011, + "block_time": 1726742078, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "fc3408b9506f75d2a3f1a65d6fe00a222a56fde09335e34953794e0293f63afe", + "tx_hash": "fa63823d4d5818572e21737b9de669bcd5d05afc5b9e8cfb8cf525732deb75c8", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -3321,20 +3358,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726736996, + "block_time": 1726742074, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "2ee2bf2492eaafe424159ad97df4e43df151dd3c12ffe7c393b7bf9256b9bb32", + "tx_hash": "b7b8e84e938d9c5e88b764466dd7ab16843b7874731d10e0853fded80b2f08d2", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -3349,20 +3386,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726736992, + "block_time": 1726742070, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "ee33216b42c4c6088fdf31e58c26a41d776c7f1c22d36fba1e6120663c74f3ed", + "tx_hash": "6904df91ab250d34539f267e84b728b28ffd351fa15b1011f92354f1a2d1c960", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -3377,7 +3414,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726736952, + "block_time": 1726742030, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -3391,8 +3428,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 10000000000, @@ -3400,16 +3437,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726736992, - "last_issuance_block_time": 1726737011, + "first_issuance_block_time": 1726742070, + "last_issuance_block_time": 1726742078, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 100000000000, @@ -3417,16 +3454,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726736952, - "last_issuance_block_time": 1726736952, + "first_issuance_block_time": 1726742030, + "last_issuance_block_time": 1726742030, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 40, @@ -3434,16 +3471,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726736900, - "last_issuance_block_time": 1726736905, + "first_issuance_block_time": 1726741978, + "last_issuance_block_time": 1726741983, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 19, @@ -3451,16 +3488,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726736883, - "last_issuance_block_time": 1726736896, + "first_issuance_block_time": 1726741952, + "last_issuance_block_time": 1726741974, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 0, @@ -3468,8 +3505,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1726736862, - "last_issuance_block_time": 1726736879, + "first_issuance_block_time": 1726741930, + "last_issuance_block_time": 1726741947, "supply_normalized": "0.00000000" } ], @@ -3480,17 +3517,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "block_hash": "0302537c51db185647346cc3f81c1665bc6f92a82ce62ccfdaebf9756185232b", - "block_time": 1726737160, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", + "block_time": 1726742203, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1", + "utxos_info": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3526,23 +3563,23 @@ }, { "tx_index": 56, - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "block_index": 190, - "block_hash": "183beca9c1ae5f954cb62ccbcb7ab1d73a8c48927fe3ba9543532d5b9ce910a3", - "block_time": 1726737147, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "54cd9caaa8fce8a78011bf573033e5c66827b4f054205f1a89eb72cf7264f412", + "block_time": 1726742198, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "data": "46975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "supported": true, - "utxos_info": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe:1", + "utxos_info": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "status": "valid" } }, @@ -3550,17 +3587,17 @@ }, { "tx_index": 55, - "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "block_index": 189, - "block_hash": "0ce6237c027d6772c41adb9614ce3b0d9186a8717abe802fc140e2388d92a79c", - "block_time": 1726737143, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "49dc4ddb70d192b54a5ca94706a766771f5d75e7013ccde319624e804335bc20", + "block_time": 1726742194, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861:1", + "utxos_info": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3596,17 +3633,17 @@ }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "block_hash": "20fc4d1702a5f56963ec395c69b45622b30c4a6f58fa15a26a7d15d06d9cc299", - "block_time": 1726737138, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "1223a9ebf3f56e035752b5244d0710e06d19b8d943c71c76b43631da6557211c", + "block_time": 1726742190, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a65050a67bf322ed4c4b1bf06798d4b6cefea9f3803e32791d2b81299971b964239daaa0099a94570880e816f5562a0ee9cab6015173bbded2ef7b58ca5d400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380b886678b2158112c9d7fe7b214a12943c2cabd96809668fa89c3fb02c8b7a891003a3773f6eed4a65680b77441a3eca05c136080e504fe32114fa79f4406400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e:0", + "utxos_info": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3614,14 +3651,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -3629,7 +3666,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3648,17 +3685,17 @@ }, { "tx_index": 49, - "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", "block_index": 183, - "block_hash": "06325114bf09180c9fe86186dea01039a4c7dd402c5a9f006adbb24731015015", - "block_time": 1726737108, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "block_hash": "38f96e22f784a0b35754de347fb5926d51324cdabcc04f72fc156724f0d43a77", + "block_time": 1726742170, + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60:1", + "utxos_info": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3700,20 +3737,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", + "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", "block_index": 153, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726736978, + "block_time": 1726742056, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -3735,9 +3772,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3752,7 +3789,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726737160, + "block_time": 1726742203, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3778,9 +3815,9 @@ }, { "tx_index": 55, - "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "block_index": 190, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3795,7 +3832,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726737147, + "block_time": 1726742198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3821,9 +3858,9 @@ }, { "tx_index": 49, - "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", "block_index": 186, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3838,7 +3875,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726737130, + "block_time": 1726742182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3864,9 +3901,9 @@ }, { "tx_index": 47, - "tx_hash": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", + "tx_hash": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", "block_index": 182, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3881,7 +3918,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1726737039, + "block_time": 1726742099, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3912,10 +3949,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", + "tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -3940,13 +3977,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726736900 + "block_time": 1726741978 }, { - "tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", + "tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -3971,13 +4008,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726736883 + "block_time": 1726741952 }, { - "tx_hash": "c4de72bddcecc2b88f8e0746e02446a566b0fca27fe3e4b9bd4c20e550f9089a", + "tx_hash": "ac047163f3cd9094f4ee2103b832d0064228aa5f2a7fc8e3104ee775fb181f84", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4002,13 +4039,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726736879 + "block_time": 1726741947 }, { - "tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4033,7 +4070,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726736859 + "block_time": 1726741926 } ], "next_cursor": null, @@ -4042,127 +4079,127 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "661c344111ceedee5cbe79a2043e49979922a9af9ced08540254cf13090082ac", + "tx_hash": "4ef19e15a942cd317edd6f0705b17761dac9a1c56bd3d92c4b636cf5b7102c7c", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "fairminter_tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "fairminter_tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736905, + "block_time": 1726741983, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } }, { - "tx_hash": "532d67517eb2c751de2c553a82aab3168f9fe2252232a50926c6bf10c0926357", + "tx_hash": "12b1f43b529e4ce6e9a3a95d6345faf4a93b2672f1aaa68938ef1b1922e401f9", "tx_index": 21, "block_index": 134, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "fairminter_tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "fairminter_tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736896, + "block_time": 1726741974, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } }, { - "tx_hash": "022c8e67569b246e08ef1818ccc12b3591109f44a3fb34dd3867360868caa2c6", + "tx_hash": "4243b87db26b2a68deae256e73d35c9569389c93dfc721b359567f564bfc47ea", "tx_index": 20, "block_index": 133, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "fairminter_tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "fairminter_tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736892, + "block_time": 1726741970, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } }, { - "tx_hash": "679cd46764ea30300b6b5cc103c11d81633ec81ceb08a156ef5429207dbc2e6b", + "tx_hash": "e7339c42b0fc1c16588ae319c16d43f759f8bc0a169f61ce9b69d447ceb05f4d", "tx_index": 19, "block_index": 132, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "fairminter_tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "fairminter_tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736888, + "block_time": 1726741956, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } }, { - "tx_hash": "25f9745a24829f09fe2f511cac829379903961a21dcf3324daad294b9d9b502e", + "tx_hash": "3935463d05f49f685b9cce124b58d5d0b4ead3c4be23a1d5e4f7c7e7a4b432cc", "tx_index": 15, "block_index": 127, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "fairminter_tx_hash": "c4de72bddcecc2b88f8e0746e02446a566b0fca27fe3e4b9bd4c20e550f9089a", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "fairminter_tx_hash": "ac047163f3cd9094f4ee2103b832d0064228aa5f2a7fc8e3104ee775fb181f84", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736866, + "block_time": 1726741934, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } }, { - "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", + "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736850, + "block_time": 1726741917, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } @@ -4174,22 +4211,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", + "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736850, + "block_time": 1726741917, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } @@ -4203,9 +4240,9 @@ }, "/v2/addresses/
/compose/broadcast": { "result": { - "rawtransaction": "02000000000101bfd9d0339ebb1cad61e9fc89066f141a165e042afd044ca512e90f4dac0ad858000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff0200000000000000002b6a29c2ee9987af5831d7348cee95680e02f5b1a9f16b78c5d7d960b240f9f113817ad4db1edc13aa9827824ab1052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "02000000000101d0944beaa1b9e3818180d68c8fcec6dff5dfbad96117cc72072c090dc90977af000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff0200000000000000002b6a299d1729a4df7c52258168d86dc4211757deb010053aff47846f631d2bccde3a53493032e94e8fb653a93bb1052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4216,19 +4253,19 @@ }, "/v2/addresses/
/compose/btcpay": { "result": { - "rawtransaction": "02000000000101cd2f9f22e79cce4fb01fa897d6a1230dc3e51e1f08396840e2ded9bf4ed0fe3e000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff03b80b0000000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e00000000000000004b6a490fdb3d753a82eaad9cd34afe5f1305746b956ac41e8052e51f59797fd09de81db452050c70fe0214d12facb16da53b94b959811a60b62c14c98d1ebd05f8547490e1f6248b5c8559aaec93052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "02000000000101925e8a3be8f21fb348b8be1aa1e5ee8b96e41e690d13255db1081cf6964ad7e9000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff03b80b0000000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea200000000000000004b6a495176780ee8f3d6bc59bf64e2aef0527cf4e0c6a3594d165d04475d42818057e755accc8aa0cf6c8c16638e53485cdef36df96f13f686bbfc8edcedffaa7264145c9967527cdf6c4abcd993052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543" + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285" }, "name": "btcpay" } }, "/v2/addresses/
/compose/burn": { "result": { - "rawtransaction": "02000000000101319f1699a94398f2c120f2fe873d7ca467fa29859e6cdd19607f056a6936b7fd000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88aceeb1052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "02000000000101f4b4a7ed34bf3f599cfbb9060e77d33176011f1347ddece332079b6681b499b4000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "quantity": 1000, "overburn": false }, @@ -4237,19 +4274,19 @@ }, "/v2/addresses/
/compose/cancel": { "result": { - "rawtransaction": "02000000000101eceee2cd7a6adcc3f3e00509598b4e0de4b70c2b45f38aa4905776f17cd677a8000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff0200000000000000002b6a293348289a27b6d9f4e11ca2640ca3d8d38f15443457929b21bdd49d01bd71e1610a84d4b787d34f6b384ab1052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "02000000000101049b8154c486875bf5a30b770a6ccc0dd66e84185bc32f7fd92e5a53705f74d4000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff0200000000000000002b6a296a5ae7f653611620353c9ae6e94c60eb1d026ffd00db2c1314efb8a7bee4384715bf04e9b9e78e413e3bb1052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "offer_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625" + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "offer_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d" }, "name": "cancel" } }, "/v2/addresses/
/compose/destroy": { "result": { - "rawtransaction": "0200000000010113f95b606575562d2fbe71cebd953337c2738d0a1bcae5fa0bf6877b1d6fb545000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000226a20da2ecfadfdb1591b9c22a85b00012f89f1322f37ed0e4d51a768c47cffa4486bb2b3052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "02000000000101969dafdbb484ca8cecb55b715bbae85e111c7fc7ff720413557f5e674635844e000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000226a201db88992b23173ea7638d51ae5914e134dcf2c4d860483e7c38543c6e9427b12a4b3052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4267,9 +4304,9 @@ }, "/v2/addresses/
/compose/dispenser": { "result": { - "rawtransaction": "02000000000101b27726999fa786c887828705e322c7e4ea192b2a59e6d05b82d771d73d005a7f0200000016001490f20356500ceced9ca8be9d3a8e373ba700c91effffffff0200000000000000002c6a2a1a9e2fc8bf4e4e6fa674b28e26a7d152d09a9a07d4b2348381905c2efdcaa182b21b73682325ab93227a564b0a270100000016001490f20356500ceced9ca8be9d3a8e373ba700c91e02000000000000", + "rawtransaction": "0200000000010103c509e9ce1a922332b64060fc661927b2a132bd5016747d3e51de82086a3f36020000001600145bad9dc437bebf3918916d803cb86328f48ce663ffffffff0200000000000000002c6a2a2921b013dad7d5885bc79db11a67e41fa691883a738ea81b90fe54646dacfb25715d0b5108c2e3d021bb474b0a27010000001600145bad9dc437bebf3918916d803cb86328f48ce66302000000000000", "params": { - "source": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", + "source": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4292,16 +4329,16 @@ }, "/v2/addresses/
/compose/dividend": { "result": { - "rawtransaction": "0200000000010181423a4c1b323f96cb29070c085de3e886a3b4bed10d684eb61d066d4e1228cc000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000236a2180564be672da49d108745f6fb58356ab5eb69538bb846d5b60a4fd7efe733f2d806eb3052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "020000000001012e8481efaa7cb19d0e1cb085017722e90f59356addd8c083b9754afef05195e0000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000236a212fbcc64e92ced155f4327bff8c68b78e572da80fab39dc6c8520da12d6eab7d84e60b3052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -4319,12 +4356,12 @@ }, "/v2/addresses/
/compose/issuance": { "result": { - "rawtransaction": "0200000000010144135aae7f4b5e57666e0a958bfb165d94695bb6d93d93fa76f7427ff0b69348000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff0322020000000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e0000000000000000236a211beada5554cafb42451ccfe23872901d81f923678587f0e17234cd58f03e0f9e3e34a8052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "02000000000101b76b1e014d75389c589c0caf4fb3300779093d37e1f856ece64e092f3ca0a52c000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff0322020000000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea20000000000000000236a2102e070c78ab771f333514e032dadf17d32fbafe887251125a895fe653380cd899324a8052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "transfer_destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "lock": false, "reset": false, @@ -4336,18 +4373,18 @@ }, "/v2/addresses/
/compose/mpma": { "result": { - "rawtransaction": "020000000001041eab5adb0bb5bc395d7db523b9b51aca2ad7fe19abbff6c1eca80b02ff312c11000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff860e9bfc9dc9da5315bdfa7a840499ca44590d1403220a5a234273499b01745b000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff08ce002b16344514671bff8471091da6f15f3205d84e272fccc9e3d5d0b2030f000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff7d196ad9685fe541bd12dbd09b4f828c39f57e7f0ad08959f2a000ae2807fd86000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff03e803000000000000695121021543326b5fc44d2ef3f6fe91dca0bf1b647653e75fa7c89f7993859f368996722102a76f0f8a5542fd628da34fdda4486350023413ed1985b501511dbc9fa42fa2a0210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53aee803000000000000695121031a43326b5fc44d2ef3d589fc2eb02ba1465982669456f07d41f22fecf387997e21034321c72c05125b197e81aa91ef5393379ae0a723e72c468e7355d9f3c8408e55210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53ae98d016a8040000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000002000002000002000000000000", + "rawtransaction": "02000000000104c362fd57df40d2f7b22119a6815fb50731e9f0c204afd0a8f346e99f200d6b50000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff3a3512052b1f6c7997c704f47961b99368444bbd463eadc649ef1da0fe2637a6000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff5f7e661150654e0e0f83b21bf8cb2a7f451c42ca7ccbae370ed33989800171bc000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff29765159b762b04db15ca415e182337fd3ee63ba58dc47e17499e4ba0c6c0ea3000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff03e80300000000000069512103193cda2f14eb9990c3645f64b847e85a3b3431b2c285c580970963e5cd4352382103cd8d173fdc35955033030dffc9b7162cc8e2c9ccc2fbe6c273ee9ac076a6966b2103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53aee80300000000000069512103163cda2f14eb9990c34728094aa5e272f2e927d4277b757b2a099de06f313dc72102a32fdf875a521e716b122962b650a43869cb880e0846704d51a6ffac1ac9ba1a2103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53ae61d016a8040000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000002000002000002000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", 1 ], [ "MYASSETA", - "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", 2 ] ], @@ -4359,9 +4396,9 @@ }, "/v2/addresses/
/compose/order": { "result": { - "rawtransaction": "02000000000101357979f3d01f82c0bbea7bea3c7c3036df493768ffd3f950ce9a92d75ab46800000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000356a3305ec2b3ec06d93eefc7cc7697d5e64bc9cc362d5820ebadb8ce90ac826357dc5cf6ede8721851ae1c99a9e348677ec2e58ccbf9eae052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "02000000000101cb86375524df64335db90ce54dce1900ab55be07e6fbf5d1926c9c24df7eeb41000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000356a3367677a86c8c179ab2b0759445d5eaf57d3cd8831935b82d6f7dde2bd7d380d1dc159be62465afb0d4395a2189be7301a25def78eae052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4378,7 +4415,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -4391,10 +4428,10 @@ }, "/v2/addresses/
/compose/send": { "result": { - "rawtransaction": "02000000000101324f0796cb6aa649671c885ae444171d29ec6eb87641c94b557d29f806b97412000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000306a2e8a694ebcf06f71b568e08cdad92e6d9f358570de1dfdf1dc8a082b8b0e1cdc1d24c4e9d80b9258292e0535f17b6af4af052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "020000000001012fdb8902a719b60e47881d41705121da58d4d0fa395e4ab2d9e2037db3371c04000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000306a2e01f4666b2fe5e5565753fe504ca3bfa0a62ea05707e35fec17e401e7f1c78ddfe91670b5480821b477f7a966b42ae5af052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4414,10 +4451,10 @@ }, "/v2/addresses/
/compose/sweep": { "result": { - "rawtransaction": "02000000000101b1f29da89ff781645e4d4569890b4ea11c348df771227e76e632abe62a2c18d6000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000236a21a50aaca7afa248c34a7a84375d92596f2d74cf120035819eccae8aa29430289f846eb3052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "02000000000101abcb6d0f7e57d9ef1f21b6b8d17ca0ceec47c25353c746c8bcc05b1d50176db1000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000236a21dde8cf439c2cf59dedb19e8012c24601eb5c712f962a2d960ad904e37447684e5860b3052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "flags": 7, "memo": "FFFF" }, @@ -4426,10 +4463,10 @@ }, "/v2/addresses/
/compose/dispense": { "result": { - "rawtransaction": "02000000000101b4bd5c6d249d8383a77c633e9949fed0f40d6cc2478eff7f2160d71bd487524002000000160014a65050a67bf322ed4c4b1bf06798d4b6cefea9f3ffffffff03e803000000000000160014e816f5562a0ee9cab6015173bbded2ef7b58ca5d00000000000000000c6a0a91fca4a7d199133b19e075b8082701000000160014a65050a67bf322ed4c4b1bf06798d4b6cefea9f302000000000000", + "rawtransaction": "020000000001010e29d0c7518c9353ea93e80a623846c30eb5a9e1aab715f557d1aa033c0c331d02000000160014b886678b2158112c9d7fe7b214a12943c2cabd96ffffffff03e803000000000000160014b77441a3eca05c136080e504fe32114fa79f440600000000000000000c6a0a0e635245f8a5f172a08e66b8082701000000160014b886678b2158112c9d7fe7b214a12943c2cabd9602000000000000", "params": { - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "quantity": 1000 }, "name": "dispense" @@ -4437,9 +4474,9 @@ }, "/v2/addresses/
/compose/fairminter": { "result": { - "rawtransaction": "02000000000101aeda8bbe594a7913d8ad56178c4c467b20eff1a87547a9adf01e71349594065f000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000316a2fa94f05654938d4eaede6a1121b5274fb3a0bb6ac0271243baeb6e1ad194f5755e07e69b60436552fb263d504bd5d35afaf052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "0200000000010183cd1d6970c45152292b562a65b79fe09a5e600ec378a40071f2388d2f5fe36a000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000316a2f426b1088e752ea1523cf0f58f3bc4e3adcb55ebc58b62e1495a6a98242c44f94d406566527b497cec3fcf4e4c4d75fa0af052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4463,15 +4500,15 @@ }, "/v2/addresses/
/compose/fairmint": { "result": { - "rawtransaction": "0200000000010102b43726d6440d15a446ff68fb899f2776c2d02e6abd5ef231ebea43be54ee76000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff020000000000000000166a14829f320d966192391e5cec28e80f9d5ebb721b85e8b6052a010000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000000000000", + "rawtransaction": "020000000001012d30a7500c68cbf83e00879f9aaf617d11a4d8ac3380d26bdc723e17827ff298000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000166a14717953eef0fe58a00787533c0a36c50746031654dab6052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -4482,10 +4519,10 @@ }, "/v2/addresses/
/compose/attach": { "result": { - "rawtransaction": "02000000000106804cd9b18bf60a573fb2d1c03c710381c44515511ad156a3bc37121fc70892a1000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffffdfd14dd8e88ab621ea37029093596baf7383b544360acc5ac59421b73e896b18000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff3d0d0ee5fe6c149771f9d6f83ca13ae7c1598b2defbd7f814c69e14b17ff79f0000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff72885bbf9c43e8754b7d174e37ebeed41f5ecdb3274f3571d97d311b5e26be1d000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44efffffffff2b3ec057be470c3f5a203e305950a74ca80f5afae0fba1bc09b9c82f6a96cab000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffffb93a1f9570a28a602720f880f42dd7165bfa9bec5369840067e039e0955c3e3f000000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44effffffff04e803000000000000695121028e35a0199edd3a15ec7aad606b3346020f1a60adafe9e5688ef272573d8f6b5c210396f977f73f9d46f02b0320ab49bd6b8ce88b94f4d446162b6ac19522941d24d0210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53aee803000000000000695121038e35a0199edd3a15ec26fa667a7340105a1035fca7fcbd398cba331b6bdb6bd3210385ae6cad68d846fb765926f50de26cc3a9d183a0df4d43326fc89573974b21ba210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53aee80300000000000069512102a435a0199edd3a15ec7cf9312c7d460f673753b7f5a8ec68b88a03220dea52a02102e49d0fcf0aef749e4560159338d10ef69fb3e1c2ba7475575af9a012a17f407e210375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce53ae3a3a22fc060000001600147cf09b00afd181c7e4a3698f41aa73c50e0fe44e02000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106c3e4e7faa51091cb31434d98f891ff63d9ab4bfa3638fef5584a5d33698dd0f1000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff7208868743873615492fc442cb0469b4500985817a520dfc89ce18dfdfcddad1000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffffe850de1f07db1a5617f34079a0c96ab6e170d69ffe972aa0c07d09638f671a7c000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffffd73b9e0dc2dae0e017d015420144a8caebb883921cd7c13c3f1bf182d889847f000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff795208397bd023a4f148645b557dd60c8c1fb8daf54a70968417452d1a193bf0000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffffba3971c0e4dc16230f6cb612c66c808c9d246e107cd427c9be25d01ff1de0750000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff04e80300000000000069512102169a36a17a3fd9bdad6aa0732270d8f48af934b7a0e8560dc917a0967dccf9ca2103c71ab6ae3c45a320fa77a5375bca58f1522d764a34dea50460c522393ff118042103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53aee80300000000000069512103169a36a17a3fd9bdad37f22931678bbd8aad3ef5f6ee585fd716aad175cdfa5c2102d75ca3a62056fd36a077fa3014c80ca31d237e4a239cf74069c7206e3fa41e232103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53aee803000000000000695121033c9a36a17a3fd9bdad3ef025693ed8f9e1df0cbaffee505cb372cee113fa9c5c2102b36dc7974635cf53c342c35223fd35c528144e7e46ac967859f0415b5c952ba02103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53aee83922fc060000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625:1", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4502,10 +4539,10 @@ }, "/v2/utxos//compose/detach": { "result": { - "rawtransaction": "0200000000010147c14072d859a1217ab947cd9fe3c2ba27b292be1f64ab8b0e8d732056a3b4e701000000160014677f6f646ff49ca15f79040ba01dd48ab687297dffffffff04e803000000000000695121034669afa3fd6d5ad1d6fd42375e3646b439d65a9ca6a0232089686a8a9b4df881210300538bca331bb5cee933094d40fd40afb7d4b060425a97858537b56c641041612103cbce06898feb5b045a9b357cf60583501fff9ff959e0f2498c545dfa32bd2bfb53aee803000000000000695121024669afa3fd6d5ad1d6ac1e64043515b33c835998a6a92a38db6e209ccb5efec321035a018bc3271bb79aa3704b1f44a700aefcd5e3711400ce848938a532300b07f92103cbce06898feb5b045a9b357cf60583501fff9ff959e0f2498c545dfa32bd2bfb53aee803000000000000695121026c69afa3fd6d5ad1d6a15236523044fb54a338d0a0a32b74b90d52e8fa2fce0721023462eda8562287acdb013e2f219e72ca84edd603266ea0e7bc00d45e557170eb2103cbce06898feb5b045a9b357cf60583501fff9ff959e0f2498c545dfa32bd2bfb53ae0f99082701000000160014677f6f646ff49ca15f79040ba01dd48ab687297d02000000000000", + "rawtransaction": "02000000000101b0d1ca820241ba400ce54d7ded428a0485dbf23ebf7937a56b9444ce7da5547101000000160014633245262e8c4ef8f94eb9165ebae1a0fe40c215ffffffff04e8030000000000006951210388aa019aeba2ab77565a7694fa505dbebb46ca9838a58f6f224b3455d89511ed21020924cfc398c384d2d033c83eeb6c41c2a25b58972b8bec897d2aff57df4dc1992103aaabeadab75a0d114731762081b21f2d826877d3986fc352a23ae12431d7e13953aee8030000000000006951210288aa019aeba2ab77560a7095fd5c0ee8ed46989f3cab8727764a2714dad315d02103552ed89ecb93d7ccd7658a60e9315481e10746d023ccb1d92e7fe454821bdad32103aaabeadab75a0d114731762081b21f2d826877d3986fc352a23ae12431d7e13953aee80300000000000069512102a2aa019aeba2ab7756077991bd160ff7d461f9813da1866b14295560eba2260321023046a9f0fda5b6b6b20bfd0edf5420f6903e3ca04fbf88ec481a9c63ef2fa01a2103aaabeadab75a0d114731762081b21f2d826877d3986fc352a23ae12431d7e13953aef498082701000000160014633245262e8c4ef8f94eb9165ebae1a0fe40c21502000000000000", "params": { - "source": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147:1", - "destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0:1", + "destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4526,8 +4563,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 10000000000, @@ -4535,16 +4572,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726736992, - "last_issuance_block_time": 1726737011, + "first_issuance_block_time": 1726742070, + "last_issuance_block_time": 1726742078, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", - "owner": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", + "issuer": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", + "owner": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", "divisible": true, "locked": false, "supply": 100000000000, @@ -4552,16 +4589,16 @@ "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1726736988, - "last_issuance_block_time": 1726736988, + "first_issuance_block_time": 1726742065, + "last_issuance_block_time": 1726742065, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 100000000000, @@ -4569,16 +4606,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726736952, - "last_issuance_block_time": 1726736952, + "first_issuance_block_time": 1726742030, + "last_issuance_block_time": 1726742030, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 40, @@ -4586,16 +4623,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726736900, - "last_issuance_block_time": 1726736905, + "first_issuance_block_time": 1726741978, + "last_issuance_block_time": 1726741983, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 19, @@ -4603,8 +4640,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726736883, - "last_issuance_block_time": 1726736896, + "first_issuance_block_time": 1726741952, + "last_issuance_block_time": 1726741974, "supply_normalized": "0.00000019" } ], @@ -4616,8 +4653,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 10000000000, @@ -4625,15 +4662,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1726736846, - "last_issuance_block_time": 1726736859, + "first_issuance_block_time": 1726741913, + "last_issuance_block_time": 1726741926, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4641,14 +4678,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4656,7 +4693,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -4668,7 +4705,7 @@ }, "/v2/assets//balances/
": { "result": { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4687,9 +4724,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4704,7 +4741,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726737160, + "block_time": 1726742203, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4730,9 +4767,9 @@ }, { "tx_index": 55, - "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "block_index": 190, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4747,7 +4784,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726737147, + "block_time": 1726742198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4773,9 +4810,9 @@ }, { "tx_index": 52, - "tx_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "tx_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "block_index": 186, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -4790,7 +4827,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726737130, + "block_time": 1726742182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4816,9 +4853,9 @@ }, { "tx_index": 50, - "tx_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "tx_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "block_index": 185, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -4833,7 +4870,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726737126, + "block_time": 1726742178, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4859,9 +4896,9 @@ }, { "tx_index": 49, - "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", "block_index": 186, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4876,7 +4913,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726737130, + "block_time": 1726742182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4907,13 +4944,13 @@ "/v2/assets//matches": { "result": [ { - "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "tx0_index": 49, - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 52, - "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", - "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -4927,7 +4964,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726737130, + "block_time": 1726742182, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4947,13 +4984,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "tx0_index": 49, - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 50, - "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", - "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -4967,7 +5004,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726737126, + "block_time": 1726742178, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4987,13 +5024,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", "tx0_index": 47, - "tx0_hash": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 48, - "tx1_hash": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", - "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "tx1_hash": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5007,7 +5044,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726737039, + "block_time": 1726742099, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5034,20 +5071,20 @@ "result": [ { "block_index": 192, - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5055,20 +5092,20 @@ }, { "block_index": 125, - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "695e264b5af5d3a47a74b0af34231b677ac87beea166322a05cb6a6347abafac", + "event": "47f1796c49d5b94f0d524615742f610807a0c76df2208ea05990b7ad444c8ecc", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726736859, + "block_time": 1726741926, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5076,20 +5113,20 @@ }, { "block_index": 124, - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8", + "event": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726736854, + "block_time": 1726741922, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5097,20 +5134,20 @@ }, { "block_index": 124, - "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", + "event": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726736854, + "block_time": 1726741922, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5122,16 +5159,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8", + "event": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726736854, + "block_time": 1726741922, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5145,16 +5182,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "event": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -5166,16 +5203,16 @@ }, { "block_index": 192, - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -5187,16 +5224,16 @@ }, { "block_index": 192, - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -5208,16 +5245,16 @@ }, { "block_index": 191, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "event": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737160, + "block_time": 1726742203, "asset_info": { "divisible": true, "asset_longname": null, @@ -5229,16 +5266,16 @@ }, { "block_index": 189, - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726737143, + "block_time": 1726742194, "asset_info": { "divisible": true, "asset_longname": null, @@ -5256,20 +5293,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", + "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", "block_index": 153, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726736978, + "block_time": 1726742056, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5291,14 +5328,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "695e264b5af5d3a47a74b0af34231b677ac87beea166322a05cb6a6347abafac", + "tx_hash": "47f1796c49d5b94f0d524615742f610807a0c76df2208ea05990b7ad444c8ecc", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -5313,20 +5350,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726736859, + "block_time": 1726741926, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8", + "tx_hash": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -5341,20 +5378,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726736854, + "block_time": 1726741922, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", + "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -5369,20 +5406,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726736850, + "block_time": 1726741917, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -5397,7 +5434,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1726736846, + "block_time": 1726741913, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5409,10 +5446,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5420,7 +5457,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "divisible": true, "asset_longname": null, @@ -5433,10 +5470,10 @@ }, { "tx_index": 53, - "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a", + "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a", "block_index": 187, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5444,7 +5481,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737134, + "block_time": 1726742186, "asset_info": { "divisible": true, "asset_longname": null, @@ -5457,10 +5494,10 @@ }, { "tx_index": 42, - "tx_hash": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", + "tx_hash": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", "block_index": 155, - "source": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5:0", - "destination": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147:1", + "source": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53:0", + "destination": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5468,7 +5505,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726736988, + "block_time": 1726742065, "asset_info": { "divisible": true, "asset_longname": null, @@ -5481,10 +5518,10 @@ }, { "tx_index": 41, - "tx_hash": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5", + "tx_hash": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53", "block_index": 154, - "source": "0e5ef2ca6efc97a98e3cfc14841e15218cffff5e3997610098a146a1a32d3e4c:0", - "destination": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5:0", + "source": "e974db4d2a2886a23059fbe96759e378c4ae1d6277cac9700a15a7eb3bf610b4:0", + "destination": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5492,7 +5529,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726736983, + "block_time": 1726742060, "asset_info": { "divisible": true, "asset_longname": null, @@ -5511,18 +5548,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "last_status_tx_hash": null, - "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5532,7 +5569,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726736947, + "block_time": 1726742026, "asset_info": { "divisible": true, "asset_longname": null, @@ -5548,9 +5585,9 @@ }, { "tx_index": 30, - "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", + "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", "block_index": 144, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5559,7 +5596,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5569,7 +5606,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736939, + "block_time": 1726742017, "asset_info": { "divisible": true, "asset_longname": null, @@ -5585,9 +5622,9 @@ }, { "tx_index": 29, - "tx_hash": "5a9a68441db332e17f18f00c8ea2794b8e8357f65ba5c4a19f5c761c07c18a77", + "tx_hash": "14e387be9e1d2957f2fcb38bf2ad065ab35a588822f35dc6035d96abc00eb960", "block_index": 142, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5596,7 +5633,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "origin": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5606,7 +5643,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736931, + "block_time": 1726742008, "asset_info": { "divisible": true, "asset_longname": null, @@ -5622,9 +5659,9 @@ }, { "tx_index": 26, - "tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5633,7 +5670,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5643,7 +5680,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -5664,9 +5701,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 30, - "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", + "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", "block_index": 144, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5675,7 +5712,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5685,7 +5722,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736939, + "block_time": 1726742017, "asset_info": { "divisible": true, "asset_longname": null, @@ -5713,7 +5750,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5721,7 +5758,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -5730,7 +5767,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5738,7 +5775,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -5747,7 +5784,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5755,7 +5792,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -5764,7 +5801,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -5779,27 +5816,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", - "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "last_status_tx_hash": null, - "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5814,7 +5851,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726736947, + "block_time": 1726742026, "asset_info": { "divisible": true, "asset_longname": null, @@ -5828,19 +5865,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", + "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5848,7 +5885,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5863,7 +5900,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -5877,19 +5914,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", + "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", "block_index": 140, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5897,7 +5934,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5912,7 +5949,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736922, + "block_time": 1726741999, "asset_info": { "divisible": true, "asset_longname": null, @@ -5933,8 +5970,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "owner": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false, "supply": 0, @@ -5942,8 +5979,8 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1726736996, - "last_issuance_block_time": 1726736996, + "first_issuance_block_time": 1726742074, + "last_issuance_block_time": 1726742074, "supply_normalized": "0.00000000" } ], @@ -5953,10 +5990,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -5981,7 +6018,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726736859 + "block_time": 1726741926 } ], "next_cursor": null, @@ -5990,64 +6027,64 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "695e264b5af5d3a47a74b0af34231b677ac87beea166322a05cb6a6347abafac", + "tx_hash": "47f1796c49d5b94f0d524615742f610807a0c76df2208ea05990b7ad444c8ecc", "tx_index": 13, "block_index": 125, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", - "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736859, + "block_time": 1726741926, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } }, { - "tx_hash": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8", + "tx_hash": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8", "tx_index": 12, "block_index": 124, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", - "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736854, + "block_time": 1726741922, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } }, { - "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", + "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736850, + "block_time": 1726741917, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } @@ -6059,22 +6096,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "91ed24e1a6f94fd7f180d924420b611a4290ea998614f435ff6e795054d84547", + "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "fairminter_tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726736850, + "block_time": 1726741917, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } @@ -6087,9 +6124,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6104,7 +6141,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726737160, + "block_time": 1726742203, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6130,9 +6167,9 @@ }, { "tx_index": 55, - "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "block_index": 190, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6147,7 +6184,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726737147, + "block_time": 1726742198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6173,9 +6210,9 @@ }, { "tx_index": 52, - "tx_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "tx_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "block_index": 186, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6190,7 +6227,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726737130, + "block_time": 1726742182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6216,9 +6253,9 @@ }, { "tx_index": 50, - "tx_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "tx_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "block_index": 185, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6233,7 +6270,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726737126, + "block_time": 1726742178, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6259,9 +6296,9 @@ }, { "tx_index": 49, - "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", "block_index": 186, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6276,7 +6313,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726737130, + "block_time": 1726742182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6307,9 +6344,9 @@ "/v2/orders/": { "result": { "tx_index": 57, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6324,7 +6361,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726737160, + "block_time": 1726742203, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6352,13 +6389,13 @@ "/v2/orders//matches": { "result": [ { - "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "tx0_index": 49, - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 52, - "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", - "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6372,7 +6409,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726737130, + "block_time": 1726742182, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6392,13 +6429,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "tx0_index": 49, - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 50, - "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", - "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6412,7 +6449,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726737126, + "block_time": 1726742178, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6439,15 +6476,15 @@ "result": [ { "tx_index": 51, - "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", + "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", "block_index": 185, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "btc_amount": 2000, - "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "status": "valid", "confirmed": true, - "block_time": 1726737126, + "block_time": 1726742178, "btc_amount_normalized": "0.00002000" } ], @@ -6458,9 +6495,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6478,7 +6515,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726737160, + "block_time": 1726742203, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6504,9 +6541,9 @@ }, { "tx_index": 55, - "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "block_index": 190, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6524,7 +6561,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726737147, + "block_time": 1726742198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6550,9 +6587,9 @@ }, { "tx_index": 52, - "tx_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "tx_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "block_index": 186, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6570,7 +6607,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726737130, + "block_time": 1726742182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6596,9 +6633,9 @@ }, { "tx_index": 50, - "tx_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "tx_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "block_index": 185, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6616,7 +6653,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726737126, + "block_time": 1726742178, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6642,9 +6679,9 @@ }, { "tx_index": 49, - "tx_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", "block_index": 186, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6662,7 +6699,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726737130, + "block_time": 1726742182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6693,13 +6730,13 @@ "/v2/orders///matches": { "result": [ { - "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "tx0_index": 49, - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 52, - "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", - "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6716,7 +6753,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726737130, + "block_time": 1726742182, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6736,13 +6773,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "tx0_index": 49, - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 50, - "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", - "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6759,7 +6796,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726737126, + "block_time": 1726742178, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6779,13 +6816,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", "tx0_index": 47, - "tx0_hash": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 48, - "tx1_hash": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", - "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "tx1_hash": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6802,7 +6839,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726737039, + "block_time": 1726742099, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6828,13 +6865,13 @@ "/v2/order_matches": { "result": [ { - "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "tx0_index": 49, - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 52, - "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", - "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6848,7 +6885,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726737130, + "block_time": 1726742182, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6868,13 +6905,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "tx0_index": 49, - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 50, - "tx1_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", - "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6888,7 +6925,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726737126, + "block_time": 1726742178, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6908,13 +6945,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", + "id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", "tx0_index": 47, - "tx0_hash": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_hash": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx1_index": 48, - "tx1_hash": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", - "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "tx1_hash": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6928,7 +6965,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726737039, + "block_time": 1726742099, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6973,66 +7010,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "accb843c4f0dc47c8feaca2ac467eb476f25798fa16c2133aa4f15da2e62a5e5", + "tx_hash": "9f284d873f6c69ac2600ac8d935d6f4a50e0fff2ed36747baffff21663a4e8cb", "block_index": 121, - "source": "bcrt1qvf529w4jc36v4txgxtthdzc2jvgzn0qpkdd8tw", + "source": "bcrt1qzg7g6s9ckm9rsj4q55s6l4fjzlnzjs60l2vdx3", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1726736841, + "block_time": 1726741908, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "20782a298e51d2d1a7f9c3b920f9c72b51d9a574c6f77e02e6adb87410bc6b1a", + "tx_hash": "89ed825c9cf3546a5f10d5021f0de833325bd577c6423d24f9409fda0a5cadc2", "block_index": 120, - "source": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", + "source": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1726736837, + "block_time": 1726741904, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "bd3f991a5d7dbc12e586a84d6642b6b84a89782953a4cffffa667c9f1ff937df", + "tx_hash": "78df88b3adbb8b49fb1040da6e6973d680237b0847b9ef6f91137009d30ea949", "block_index": 119, - "source": "bcrt1qpf2m3cll06k4j3gqerdgh90e6zqeshl6k209nc", + "source": "bcrt1qv6q5lqz5p7z2e2c5z998s80k4vy8pa6xx7kh96", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1726736834, + "block_time": 1726741899, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "88e6ae087135607c1cd02b944bfcaad8743c914c1876d257b136888cb052591e", + "tx_hash": "3b64d401cd3e96fd0196bdc830b4d519086eb3279527a69eb1cbfe9f7af866bf", "block_index": 118, - "source": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", + "source": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1726736829, + "block_time": 1726741895, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "3421718e44114f29c722f2912b34cefecfdc22b80b7272624ed2c2116f97d5f1", + "tx_hash": "dbd8a5e46a6800eda8df27b5e6499018089f141906c6199ecb3636f9e9da57a6", "block_index": 117, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1726736825, + "block_time": 1726741891, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7044,18 +7081,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "last_status_tx_hash": null, - "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7065,7 +7102,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726736947, + "block_time": 1726742026, "asset_info": { "divisible": true, "asset_longname": null, @@ -7081,9 +7118,9 @@ }, { "tx_index": 30, - "tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", + "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", "block_index": 144, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7092,7 +7129,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7102,7 +7139,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736939, + "block_time": 1726742017, "asset_info": { "divisible": true, "asset_longname": null, @@ -7118,9 +7155,9 @@ }, { "tx_index": 29, - "tx_hash": "5a9a68441db332e17f18f00c8ea2794b8e8357f65ba5c4a19f5c761c07c18a77", + "tx_hash": "14e387be9e1d2957f2fcb38bf2ad065ab35a588822f35dc6035d96abc00eb960", "block_index": 142, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7129,7 +7166,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "origin": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7139,7 +7176,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736931, + "block_time": 1726742008, "asset_info": { "divisible": true, "asset_longname": null, @@ -7155,9 +7192,9 @@ }, { "tx_index": 26, - "tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7166,7 +7203,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7176,7 +7213,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -7197,9 +7234,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7208,7 +7245,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7218,7 +7255,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -7238,19 +7275,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", + "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7258,7 +7295,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7273,7 +7310,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -7287,19 +7324,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", + "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", "block_index": 140, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7307,7 +7344,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7322,7 +7359,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736922, + "block_time": 1726741999, "asset_info": { "divisible": true, "asset_longname": null, @@ -7341,20 +7378,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", + "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", "block_index": 153, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726736978, + "block_time": 1726742056, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -7375,20 +7412,20 @@ "/v2/dividends/": { "result": { "tx_index": 40, - "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", + "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", "block_index": 153, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726736978, + "block_time": 1726742056, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -7411,12 +7448,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", + "event": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", "tx_index": 40, - "utxo": "0e5ef2ca6efc97a98e3cfc14841e15218cffff5e3997610098a146a1a32d3e4c:0", - "utxo_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "utxo": "e974db4d2a2886a23059fbe96759e378c4ae1d6277cac9700a15a7eb3bf610b4:0", + "utxo_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "confirmed": true, - "block_time": 1726736978, + "block_time": 1726742056, "asset_info": { "divisible": true, "asset_longname": null, @@ -7428,16 +7465,16 @@ }, { "block_index": 153, - "address": "bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m", + "address": "bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", + "event": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726736978, + "block_time": 1726742056, "asset_info": { "divisible": true, "asset_longname": null, @@ -7458,27 +7495,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", - "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", + "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", + "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", "transaction_count": 1, - "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", - "block_time": 1726737169 + "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", + "block_time": 1726742211 }, "tx_hash": null, "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "tx_index": 59 }, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 }, { "event_index": 533, @@ -7487,12 +7524,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "status": "valid", "tag": "64657374726f79", - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "tx_index": 59, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -7502,24 +7539,24 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 193, - "event": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "event": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -7529,25 +7566,25 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", "block_index": 193, - "block_time": 1726737169, + "block_time": 1726742211, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "tx_index": 59, - "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", + "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -7567,9 +7604,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 } ], "next_cursor": 530, @@ -7581,15 +7618,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", - "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", + "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", + "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", "transaction_count": 1, - "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", - "block_time": 1726737169 + "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", + "block_time": 1726742211 }, "tx_hash": null, "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 } }, "/v2/events/counts": { @@ -7624,16 +7661,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -7643,78 +7680,78 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", + "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726737147, + "block_time": 1726742198, "asset_info": { "divisible": true, "asset_longname": null, @@ -7724,24 +7761,24 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "block_index": 190, - "block_time": 1726737147 + "block_time": 1726742198 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "event": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "divisible": true, "asset_longname": null, @@ -7751,9 +7788,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "block_time": 1726737138 + "block_time": 1726742190 } ], "next_cursor": 490, @@ -7770,27 +7807,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", - "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "last_status_tx_hash": null, - "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7805,7 +7842,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726736947, + "block_time": 1726742026, "asset_info": { "divisible": true, "asset_longname": null, @@ -7819,19 +7856,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b25346129c2f9971ae68cff1a621dea0812fcdcc4a8b3a822aeabe5d5552496", + "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7839,7 +7876,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7854,7 +7891,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736926, + "block_time": 1726742004, "asset_info": { "divisible": true, "asset_longname": null, @@ -7868,19 +7905,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6a9d4d90530f62d318eb8d6d7597555566dd21cc43124b8b7e5824d3ee218f85", + "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", "block_index": 140, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2e57c05f2d2bfc6276946cbd4c63bc6cc734761ccf6060e79c68951a5e0d92c9", + "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7888,7 +7925,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7903,7 +7940,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726736922, + "block_time": 1726741999, "asset_info": { "divisible": true, "asset_longname": null, @@ -7922,10 +7959,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -7933,7 +7970,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "divisible": true, "asset_longname": null, @@ -7946,10 +7983,10 @@ }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -7957,11 +7994,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -7970,10 +8007,10 @@ }, { "tx_index": 54, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -7981,11 +8018,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -7994,10 +8031,10 @@ }, { "tx_index": 53, - "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a", + "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a", "block_index": 187, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -8005,7 +8042,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726737134, + "block_time": 1726742186, "asset_info": { "divisible": true, "asset_longname": null, @@ -8018,10 +8055,10 @@ }, { "tx_index": 42, - "tx_hash": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", + "tx_hash": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", "block_index": 155, - "source": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5:0", - "destination": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147:1", + "source": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53:0", + "destination": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8029,7 +8066,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726736988, + "block_time": 1726742065, "asset_info": { "divisible": true, "asset_longname": null, @@ -8048,14 +8085,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", + "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -8070,20 +8107,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726737024, + "block_time": 1726742082, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "d7cbe9778e884b6f2582d7a57940b012bf1ddb5b700e7dd072c69bedd7e9b3a8", + "tx_hash": "66542eb84d234807eb104350179c31c8f1b00e559ca82b489588629cb3fd8bfe", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -8098,20 +8135,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726737011, + "block_time": 1726742078, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "fc3408b9506f75d2a3f1a65d6fe00a222a56fde09335e34953794e0293f63afe", + "tx_hash": "fa63823d4d5818572e21737b9de669bcd5d05afc5b9e8cfb8cf525732deb75c8", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -8126,20 +8163,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726736996, + "block_time": 1726742074, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "2ee2bf2492eaafe424159ad97df4e43df151dd3c12ffe7c393b7bf9256b9bb32", + "tx_hash": "b7b8e84e938d9c5e88b764466dd7ab16843b7874731d10e0853fded80b2f08d2", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -8154,20 +8191,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726736992, + "block_time": 1726742070, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", + "tx_hash": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", - "issuer": "bcrt1qvalk7er07jw2zhmeqs96q8w532mgw2tatgpn7r", + "source": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", + "issuer": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", "transfer": false, "callable": false, "call_date": 0, @@ -8182,7 +8219,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726736988, + "block_time": 1726742065, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8193,14 +8230,14 @@ "/v2/issuances/": { "result": { "tx_index": 46, - "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", + "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "transfer": false, "callable": false, "call_date": 0, @@ -8215,7 +8252,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726737024, + "block_time": 1726742082, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8224,16 +8261,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "fee_paid_normalized": "0.00600000" } ], @@ -8244,16 +8281,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726737165, + "block_time": 1726742207, "fee_paid_normalized": "0.00600000" } ], @@ -8264,9 +8301,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d", + "tx_hash": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696", "block_index": 138, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8274,14 +8311,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726736913, + "block_time": 1726741991, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "b1010bdab734a9e4cce02ad65bcf68fbc73fe1bb28f21c9b91d6cf68c1a62186", + "tx_hash": "60e53d18f1a227ad4ad75ba9854b8c64c4dceeb7c98514be938945b616fa342e", "block_index": 137, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8289,7 +8326,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726736909, + "block_time": 1726741987, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8299,9 +8336,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d", + "tx_hash": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696", "block_index": 138, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8309,17 +8346,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726736913, + "block_time": 1726741991, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", + "tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8344,13 +8381,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726736900 + "block_time": 1726741978 }, { - "tx_hash": "d6c22280ab4fe589ee801da2f741691801ca30c8c06dfba41c6d9758953ff439", + "tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8375,13 +8412,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726736883 + "block_time": 1726741952 }, { - "tx_hash": "c4de72bddcecc2b88f8e0746e02446a566b0fca27fe3e4b9bd4c20e550f9089a", + "tx_hash": "ac047163f3cd9094f4ee2103b832d0064228aa5f2a7fc8e3104ee775fb181f84", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8406,13 +8443,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726736879 + "block_time": 1726741947 }, { - "tx_hash": "e60e4eda75eb91903cb265d4c62998bfc6039df72c1ba94f905ba596c362066e", + "tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8437,7 +8474,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726736859 + "block_time": 1726741926 } ], "next_cursor": null, @@ -8451,8 +8488,8 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", - "address": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa" + "txid": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "address": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs" }, { "vout": 2, @@ -8460,8 +8497,8 @@ "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", - "address": "bcrt1qpf2m3cll06k4j3gqerdgh90e6zqeshl6k209nc" + "txid": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", + "address": "bcrt1qv6q5lqz5p7z2e2c5z998s80k4vy8pa6xx7kh96" } ], "next_cursor": null, @@ -8470,28 +8507,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "35f402483a54a03e637b77b2ff618642d6e435f34c3c89219374add7f500dc22" + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" }, { - "tx_hash": "214738c81dae0c37908684349735808636cb192d94e707070ce65e195da93129" + "tx_hash": "6564cd91f7e12c026702aef3fbe3095b8ff3e5d2ed77b36fe77bb02e77edc008" }, { - "tx_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543" + "tx_hash": "96eddd62d0c04fd85a4cb6efc84b8857dc122efc29a2be60ea2356b65edab324" }, { - "tx_hash": "7c7028f67836beaa5fb2de94c6daea92f4efba5aeae1c1b193c994c5ac14cf51" + "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a" }, { - "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a" + "tx_hash": "daabc4181b5c356b166fd9efb6056720fec8a1d81871b9c5b091a499e81e663f" }, { - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9" + "tx_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285" }, { - "tx_hash": "b8e39db42ecddab4c8ad0e1a4b6eb762874e130b8210de94b4478870955b1bab" + "tx_hash": "4d1c559a2f4b46484dd28d82a0544b0606eafb203419cf378deafd53670c77f7" }, { - "tx_hash": "79050284187719ba578a0129c97e4daea25023d953abb3d8bd63bc888c21b6f8" + "tx_hash": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8" } ], "next_cursor": null, @@ -8499,8 +8536,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 5, - "tx_hash": "b50e711e978f5a5477fc4cf4e91bb2d3b9dac77d07cf870bf425744458692f65" + "block_index": 6, + "tx_hash": "a3fcc89690570455bec8e267f71157a48c131d570d442b663e284be039eeb34e" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -8511,20 +8548,20 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2" + "txid": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "0375cf22ee3b73a2942eb447bf2ddcf71c2d5cb529a8daaf00f056b9a8d8df1bce" + "result": "03c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb" }, "/v2/bitcoin/transactions/": { - "result": "020000000001013bdf1654a90fe1783a50681199de6179853c042521596687d881994ee8eb300c0300000000ffffffff020000000000000000226a205780b5fb5db97431be86268e03356b0778fabaeb4ebdeeec9c70b454de905fd7680b0a2701000000160014e816f5562a0ee9cab6015173bbded2ef7b58ca5d02473044022043f9fd67ea65c1aef5456a374bfa1ae33b4ada4f72edb7ad41d1fb5d888a2a6f022032e44ab507cf7bc3aaa686b96288e3b68a4599ea1d7a08af3f3a1c008c077b400121038ef0fcfc05b3050b57c3e601c310e1a138a8d148b1ea0c333eff1fe919f4999c00000000" + "result": "0200000000010164ff2ceaab1f3a9b87431b23953e9c868f56f68ff92e5d0e47a7de52c5f0c8e40300000000ffffffff020000000000000000226a20df99d5f70aac5d275d047efe402704859d87a960c87d935e7f9c9c5999d75995680b0a2701000000160014b77441a3eca05c136080e504fe32114fa79f44060247304402207eea08e8ad9d3195d75bbafeb77a08ae08ae5f57e3a0901abd0e894fabac9e400220255fbdf5cccee2fcb70df80c658e4d8b74b3a14ea501634895abfb08b1b310ff012103c00ed866f6a66b1786e3fdf10ad429bdfef2bf782fe2eae745580ae546dcb96300000000" }, "/v2/bitcoin/estimatesmartfee": { - "result": 68456 + "result": 68517 }, "/v2/bitcoin/getmempoolinfo": { "result": { @@ -8544,26 +8581,26 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "tx_index": 60 } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "memo": null, "quantity": 10000, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "status": "valid", - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "tx_index": 60, "asset_info": { "divisible": true, @@ -8576,19 +8613,19 @@ } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "CREDIT", "params": { - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -8600,19 +8637,19 @@ } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 193, - "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -8624,27 +8661,27 @@ } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726737173.5878787, + "block_time": 1726742226.132691, "btc_amount": 0, - "data": "0200000000000000010000000000002710803e32791d2b81299971b964239daaa0099a945708", + "data": "0200000000000000010000000000002710809668fa89c3fb02c8b7a891003a3773f6eed4a656", "destination": "", "fee": 10000, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "tx_index": 60, - "utxos_info": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24:1", + "utxos_info": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "memo": null, "asset_info": { "divisible": true, @@ -8666,19 +8703,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "CREDIT", "params": { - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -8696,26 +8733,26 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "tx_index": 60 } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "memo": null, "quantity": 10000, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "status": "valid", - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "tx_index": 60, "asset_info": { "divisible": true, @@ -8728,19 +8765,19 @@ } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "CREDIT", "params": { - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -8752,19 +8789,19 @@ } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 193, - "event": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -8776,27 +8813,27 @@ } }, { - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726737173.5878787, + "block_time": 1726742226.132691, "btc_amount": 0, - "data": "0200000000000000010000000000002710803e32791d2b81299971b964239daaa0099a945708", + "data": "0200000000000000010000000000002710809668fa89c3fb02c8b7a891003a3773f6eed4a656", "destination": "", "fee": 10000, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", - "tx_hash": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", "tx_index": 60, - "utxos_info": "8daf886500c91e80626ee959ef57ab4ec46dc24295b4cf674b7d51380dd1ea24:1", + "utxos_info": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "memo": null, "asset_info": { "divisible": true, @@ -8831,15 +8868,15 @@ "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", "block_index": 193, - "block_time": 1726737169, + "block_time": 1726742211, "difficulty": 545259519, - "previous_block_hash": "14b942fb8b1cbd3d3d0c13b5c713365f2ef2c45ae0867e4ea90971906befdbcf" + "previous_block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f" }, "tx_hash": null, "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 } ], "next_cursor": 518, @@ -8851,17 +8888,17 @@ "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "404435c7de853c59ac9380b190cc75932f01dad0e8cf492ce62a8c00ba838bf0", + "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", "block_index": 193, - "block_time": 1726737169, + "block_time": 1726742211, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "tx_index": 59, - "utxos_info": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24:1", + "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8881,9 +8918,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 } ], "next_cursor": 519, @@ -8897,16 +8934,16 @@ "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "destination": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "out_index": 0, - "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", "tx_index": 33, - "block_time": 1726736947, + "block_time": 1726742026, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", "block_index": 146, - "block_time": 1726736947 + "block_time": 1726742026 } ], "next_cursor": 237, @@ -8919,15 +8956,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "38a219843f778b99ab99063d662703dfc8f09558aafdf330d1c4183479ccaa27", - "messages_hash": "fbc2cf41c663bcc09295409180f1153d0a4de8189f41353dd15754e92d81d205", + "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", + "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", "transaction_count": 1, - "txlist_hash": "2b150d9f5b292ab77547d2791051bb0486ba528e30944151d214d1258a13702a", - "block_time": 1726737169 + "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", + "block_time": 1726742211 }, "tx_hash": null, "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 } ], "next_cursor": 529, @@ -8940,12 +8977,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "tx_index": 59 }, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 } ], "next_cursor": 528, @@ -8958,15 +8995,15 @@ "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 193, - "event": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "event": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -8976,9 +9013,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 } ], "next_cursor": 525, @@ -8990,16 +9027,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726737165, + "block_time": 1726742207, "asset_info": { "divisible": true, "asset_longname": null, @@ -9009,9 +9046,9 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 } ], "next_cursor": 524, @@ -9025,14 +9062,14 @@ "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "memo": null, "quantity": 10000, - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "status": "valid", - "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a", + "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a", "tx_index": 53, - "block_time": 1726737134, + "block_time": 1726742186, "asset_info": { "divisible": true, "asset_longname": null, @@ -9042,9 +9079,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "c046de9acb73488be0f7fc074e87cc25f544fb9653be192b846d2d8c4638877a", + "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a", "block_index": 187, - "block_time": 1726737134 + "block_time": 1726742186 } ], "next_cursor": null, @@ -9058,15 +9095,15 @@ "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "status": "valid", - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "tx_index": 54, - "block_time": 1726737138, + "block_time": 1726742190, "asset_info": { "divisible": true, "asset_longname": null, @@ -9076,9 +9113,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "cb979ff44401d98c768d8b9f500c7231c078998af64de19d9c89df57cb84a86e", + "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", "block_index": 188, - "block_time": 1726737138 + "block_time": 1726742190 } ], "next_cursor": 495, @@ -9101,20 +9138,20 @@ "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "status": "valid", - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "tx_index": 58, - "block_time": 1726737165, + "block_time": 1726742207, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "d501edaa19996bf27c5c93dfb377c15dcd6a04cf4d6875a45051b419f3092ea9", + "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", "block_index": 192, - "block_time": 1726737165 + "block_time": 1726742207 } ], "next_cursor": null, @@ -9131,15 +9168,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "status": "valid", - "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", + "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", "tx_index": 40, - "block_time": 1726736978, + "block_time": 1726742056, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, @@ -9153,9 +9190,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "b6068e1997e0c8e90f021bc48ce59e2e06341261e9e4daefeedc58a5b8827b61", + "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", "block_index": 153, - "block_time": 1726736978 + "block_time": 1726742056 } ], "next_cursor": null, @@ -9176,11 +9213,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 159, - "block_time": 1726737024 + "block_time": 1726742082 }, - "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", + "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", "block_index": 159, - "block_time": 1726737024 + "block_time": 1726742082 } ], "next_cursor": 367, @@ -9203,22 +9240,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "status": "valid", "transfer": false, - "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", + "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", "tx_index": 46, - "block_time": 1726737024, + "block_time": 1726742082, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d3dab755a6ead5e79fdb8407788d22ba75d63bceb87dbc6ab0c6b564b7d61f4c", + "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", "block_index": 159, - "block_time": 1726737024 + "block_time": 1726742082 } ], "next_cursor": 374, @@ -9233,12 +9270,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qaqt02432pm5u4dsp29emhhkjaaa43jja7q2kzs", + "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", "status": "valid", "tag": "64657374726f79", - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "tx_index": 59, - "block_time": 1726737169, + "block_time": 1726742211, "asset_info": { "divisible": true, "asset_longname": null, @@ -9248,9 +9285,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "71cb0ee84933c646777d7419ccbffd224b24fce2d84c2847c915860707973c24", + "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", "block_index": 193, - "block_time": 1726737169 + "block_time": 1726742211 } ], "next_cursor": 157, @@ -9275,11 +9312,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "status": "open", - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "tx_index": 57, - "block_time": 1726737160, + "block_time": 1726742203, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9303,9 +9340,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "08505bd85ec47ced67cdaa4009f19a3cbb72e393f53b56bbbe96e515a64ab625", + "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", "block_index": 191, - "block_time": 1726737160 + "block_time": 1726742203 } ], "next_cursor": 502, @@ -9323,20 +9360,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60", + "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", "tx0_index": 49, - "tx1_address": "bcrt1q8ce8j8ftsy5ejudevs3em24qpxdfg4cg5l2ctw", + "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "tx1_index": 52, - "block_time": 1726737130, + "block_time": 1726742182, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9355,9 +9392,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "80568ce9fb7abca5e6daf7c3eba61ac375a2a675295f1ae81812cee15fcfd543", + "tx_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", "block_index": 186, - "block_time": 1726737130 + "block_time": 1726742182 } ], "next_cursor": 461, @@ -9370,11 +9407,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861" + "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0" }, - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "block_index": 190, - "block_time": 1726737147 + "block_time": 1726742198 } ], "next_cursor": 476, @@ -9387,11 +9424,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a" + "tx_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac" }, - "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", + "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", "block_index": 185, - "block_time": 1726737126 + "block_time": 1726742178 } ], "next_cursor": null, @@ -9403,13 +9440,13 @@ "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", - "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", + "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", "status": "completed" }, - "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", + "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", "block_index": 185, - "block_time": 1726737126 + "block_time": 1726742178 } ], "next_cursor": 440, @@ -9423,18 +9460,18 @@ "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "order_match_id": "5aa015c1bb1a90effdbf7479223ab9e41275fba1396f00091698eba541718e60_396078a9040cd81a5991cc78762d50d20cad7b7baaaf6e6f60f221bed385237a", - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "status": "valid", - "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", + "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", "tx_index": 51, - "block_time": 1726737126, + "block_time": 1726742178, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "405287d41bd760217fff8e47c26c0df4d0fe49993e637ca783839d246d5cbdb4", + "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", "block_index": 185, - "block_time": 1726737126 + "block_time": 1726742178 } ], "next_cursor": null, @@ -9447,16 +9484,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "0dc852d5475b8d650a07f7a79fdd8a55a4c3957bdf9c3892917584d81b98b861", - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "status": "valid", - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "tx_index": 56, - "block_time": 1726737147 + "block_time": 1726742198 }, - "tx_hash": "c1c162ad8808c66e6c0ef9e854890163646dac1da198068207331f29422541fe", + "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", "block_index": 190, - "block_time": 1726737147 + "block_time": 1726742198 } ], "next_cursor": null, @@ -9469,13 +9506,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "block_time": 1726737039 + "order_hash": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "block_time": 1726742099 }, "tx_hash": null, "block_index": 182, - "block_time": 1726737039 + "block_time": 1726742099 } ], "next_cursor": 446, @@ -9488,14 +9525,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "66f414987780e993c8508634ba4ecc9c721af1a8ca10d5b425492491383d2805_cf3a02494633ddd19f86daab82ed7f91da20392c528897eb2e224e32448fde18", - "tx0_address": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "tx1_address": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", - "block_time": 1726737039 + "order_match_id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "block_time": 1726742099 }, "tx_hash": null, "block_index": 182, - "block_time": 1726737039 + "block_time": 1726742099 } ], "next_cursor": null, @@ -9513,14 +9550,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", - "origin": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "satoshirate": 1, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "status": 0, - "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", "tx_index": 32, - "block_time": 1726736943, + "block_time": 1726742021, "asset_info": { "divisible": true, "asset_longname": null, @@ -9533,9 +9570,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", "block_index": 145, - "block_time": 1726736943 + "block_time": 1726742021 } ], "next_cursor": 254, @@ -9550,9 +9587,9 @@ "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "status": 0, - "tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", + "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", "asset_info": { "divisible": true, "asset_longname": null, @@ -9562,9 +9599,9 @@ }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", "block_index": 146, - "block_time": 1726736947 + "block_time": 1726742026 } ], "next_cursor": 260, @@ -9578,13 +9615,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mm9iEM6Zd8MsTTeQYBytE5NgVcLxeewVdf", + "destination": "mvp1Wt3dDXLsTRMaAirFTs5YbHsGGJvZUe", "dispense_quantity": 10, - "dispenser_tx_hash": "4c419419d3279ab2b646149dd3826b99c8d0ed6761ceb30ecf1b71c3cca6e3c6", - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", - "tx_hash": "3509b22642f2e8b091100d07ba3ece1aeaa96297a8eeade7e78a68f83c8cbc96", + "dispenser_tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx_hash": "9695b1501e32ae3c6f4f24caeca727bd3bfa7c6d0ddb866fab4880ba12f4f658", "tx_index": 31, - "block_time": 1726736939, + "block_time": 1726742017, "asset_info": { "divisible": true, "asset_longname": null, @@ -9594,9 +9631,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "3509b22642f2e8b091100d07ba3ece1aeaa96297a8eeade7e78a68f83c8cbc96", + "tx_hash": "9695b1501e32ae3c6f4f24caeca727bd3bfa7c6d0ddb866fab4880ba12f4f658", "block_index": 144, - "block_time": 1726736939 + "block_time": 1726742017 } ], "next_cursor": null, @@ -9611,14 +9648,14 @@ "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qjreqx4jspnkwm89gh6wn4r3h8wnspjg7mlr8sa", + "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "a73f6edfe48b50cf5da394d45a04e803254930582eb30dad37e0ccfefe4be192", - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", - "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", "tx_index": 33, - "block_time": 1726736947, + "block_time": 1726742026, "asset_info": { "divisible": true, "asset_longname": null, @@ -9629,9 +9666,9 @@ "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "7f5a003dd771d7825bd0e6592a2b19eae4c722e305878287c886a79f992677b2", + "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", "block_index": 146, - "block_time": 1726736947 + "block_time": 1726742026 } ], "next_cursor": 240, @@ -9646,19 +9683,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qhaz8jftk3f3ur00h69g9r385wp9jef2te74y08", + "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d", + "tx_hash": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696", "tx_index": 25, "value": 66600.0, - "block_time": 1726736913, + "block_time": 1726741991, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "05facf9306977cdf6068e481a0ee4deb1444f208bd02ca03f356df26a3d6477d", + "tx_hash": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696", "block_index": 138, - "block_time": 1726736913 + "block_time": 1726741991 } ], "next_cursor": 213, @@ -9689,16 +9726,16 @@ "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "start_block": 0, "status": "open", - "tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", + "tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", "tx_index": 22, - "block_time": 1726736900 + "block_time": 1726741978 }, - "tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", + "tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", "block_index": 135, - "block_time": 1726736900 + "block_time": 1726741978 } ], "next_cursor": 161, @@ -9711,11 +9748,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "c4de72bddcecc2b88f8e0746e02446a566b0fca27fe3e4b9bd4c20e550f9089a" + "tx_hash": "ac047163f3cd9094f4ee2103b832d0064228aa5f2a7fc8e3104ee775fb181f84" }, "tx_hash": null, "block_index": 130, - "block_time": 1726736879 + "block_time": 1726741947 } ], "next_cursor": 110, @@ -9731,24 +9768,24 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "bdc1b8bbc13a2274b49c9a2864b13105c0ffe748a2dec526616c541110429573", + "fairminter_tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", "paid_quantity": 34, - "source": "bcrt1q5eg9pfnm7v3w6nztr0cx0xx5km80a20ncx8wz9", + "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", "status": "valid", - "tx_hash": "661c344111ceedee5cbe79a2043e49979922a9af9ced08540254cf13090082ac", + "tx_hash": "4ef19e15a942cd317edd6f0705b17761dac9a1c56bd3d92c4b636cf5b7102c7c", "tx_index": 23, - "block_time": 1726736905, + "block_time": 1726741983, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false } }, - "tx_hash": "661c344111ceedee5cbe79a2043e49979922a9af9ced08540254cf13090082ac", + "tx_hash": "4ef19e15a942cd317edd6f0705b17761dac9a1c56bd3d92c4b636cf5b7102c7c", "block_index": 136, - "block_time": 1726736905 + "block_time": 1726741983 } ], "next_cursor": 190, @@ -9762,28 +9799,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9:1", + "destination": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "status": "valid", - "tx_hash": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", + "tx_hash": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", "tx_index": 38, - "block_time": 1726736969, + "block_time": 1726742048, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5e9ad7cb5f60763546e17907916ea9154afc582d52367b3df049e063825fd5c9", + "tx_hash": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", "block_index": 151, - "block_time": 1726736969 + "block_time": 1726742048 } ], "next_cursor": 291, @@ -9797,28 +9834,28 @@ "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qg7cyalxfu25jn9rpy5nk02cs59twhxzpkylg7m", + "destination": "bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "35f402483a54a03e637b77b2ff618642d6e435f34c3c89219374add7f500dc22:0", + "source": "daabc4181b5c356b166fd9efb6056720fec8a1d81871b9c5b091a499e81e663f:0", "status": "valid", - "tx_hash": "0c30ebe84e9981d88766592125043c857961de991168503a78e10fa95416df3b", + "tx_hash": "e4c8f0c552dea7470e5d2ef98ff6568f869c3e95231b43879b3a1fabea2cff64", "tx_index": 37, - "block_time": 1726736965, + "block_time": 1726742043, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ncfkq906xqu0e9rdx85r2nnc58qlezw8u6n2c", + "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "0c30ebe84e9981d88766592125043c857961de991168503a78e10fa95416df3b", + "tx_hash": "e4c8f0c552dea7470e5d2ef98ff6568f869c3e95231b43879b3a1fabea2cff64", "block_index": 150, - "block_time": 1726736965 + "block_time": 1726742043 } ], "next_cursor": null, @@ -9832,14 +9869,14 @@ "params": { "asset": "XCP", "block_index": 155, - "destination": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147:1", + "destination": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0:1", "msg_index": 1, "quantity": 1500000000, - "source": "486028388ff1dddaab50ec57189a486463dcfd155f3499385bea0b00f7b08bd5:0", + "source": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53:0", "status": "valid", - "tx_hash": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", + "tx_hash": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", "tx_index": 42, - "block_time": 1726736988, + "block_time": 1726742065, "asset_info": { "divisible": true, "asset_longname": null, @@ -9849,9 +9886,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "e7b4a35620738d0e8bab641fbe92b227bac2e39fcd47b97a21a159d87240c147", + "tx_hash": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", "block_index": 155, - "block_time": 1726736988 + "block_time": 1726742065 } ], "next_cursor": 346, @@ -9866,17 +9903,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qvf529w4jc36v4txgxtthdzc2jvgzn0qpkdd8tw", + "source": "bcrt1qzg7g6s9ckm9rsj4q55s6l4fjzlnzjs60l2vdx3", "status": "valid", - "tx_hash": "accb843c4f0dc47c8feaca2ac467eb476f25798fa16c2133aa4f15da2e62a5e5", + "tx_hash": "9f284d873f6c69ac2600ac8d935d6f4a50e0fff2ed36747baffff21663a4e8cb", "tx_index": 9, - "block_time": 1726736841, + "block_time": 1726741908, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "accb843c4f0dc47c8feaca2ac467eb476f25798fa16c2133aa4f15da2e62a5e5", + "tx_hash": "9f284d873f6c69ac2600ac8d935d6f4a50e0fff2ed36747baffff21663a4e8cb", "block_index": 121, - "block_time": 1726736841 + "block_time": 1726741908 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py index ed5b97cb8f..512c32999f 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py @@ -64,6 +64,57 @@ }, ], }, + { + "url": "transactions/$TX_HASH/info", + "result": { + "btc_amount": 0, + "data": "0200000000000000010000000000002710809668fa89c3fb02c8b7a891003a3773f6eed4a656", + "decoded_tx": { + "coinbase": False, + "lock_time": 0, + "segwit": True, + "tx_hash": "$TX_HASH", + "tx_id": "$TX_HASH", + "version": 2, + "vin": [ + { + "coinbase": False, + "hash": "$DESTROY_1_TX_HASH", + "n": 1, + "script_sig": "", + "sequence": 4294967295, + } + ], + "vout": [ + { + "script_pub_key": "6a2e547ea24ed06a615893c16ff8e59a84444825e1af612ae2be0a26b09d39295552fef91497fd4146e8613d6be321c7", + "value": 0, + }, + { + "script_pub_key": "0014dde33a51e649066e7add6dcf0963892c4fe5d653", + "value": 4999955000, + }, + ], + "vtxinwit": [ + "304402206145e076eabf0de3e5b4edfea8be33c9b22f47d258d7d4c5682b3d0f6e3c648e022037f3e5451f4257e4ecfaa7c34016e00e5fb73cacb81eff875017d24a62b0a5bc01", + "0355f42b0e4c7b6e73addef75deab673b9727225a3d529511ef28f5df36472826c", + ], + }, + "destination": None, + "fee": 10000, + "source": "$ADDRESS_4", + "unpacked_data": { + "message_data": { + "address": "$ADDRESS_3", + "asset": "XCP", + "memo": None, + "quantity": 10000, + }, + "message_type": "enhanced_send", + "message_type_id": 2, + }, + }, + }, ], }, ] diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index a4473f38d3..d4c7f8d515 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -124,6 +124,13 @@ def control_result(item, node, context, block_hash, block_time, tx_hash, retry=0 expected_result = expected_result.replace(f"${name}", value) expected_result = json.loads(expected_result) + if isinstance(expected_result, dict) and "decoded_tx" in expected_result: + del expected_result["decoded_tx"] + if "decoded_tx" not in result["result"]: + raise AssertionError("decoded_tx not in result") + if isinstance(result["result"], dict) and "decoded_tx" in result["result"]: + del result["result"]["decoded_tx"] + try: assert result["result"] == expected_result print(f"{item['title']}: " + colored("Success", "green")) @@ -235,7 +242,8 @@ def run_scenarios(serve=False): ) time.sleep(1) else: - os.unlink(os.path.join(CURR_DIR, "apidoc/apicache.json")) + if os.path.exists(os.path.join(CURR_DIR, "apidoc/apicache.json")): + os.unlink(os.path.join(CURR_DIR, "apidoc/apicache.json")) sh.python3( os.path.join(CURR_DIR, "genapidoc.py"), os.path.abspath("regtestnode"), @@ -250,7 +258,7 @@ def run_scenarios(serve=False): # 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 c5e69cf13e..95ad2ba9fe 100644 --- a/dredd.yml +++ b/dredd.yml @@ -21,6 +21,7 @@ only: - Blocks > Get Sweeps By Block > Get Sweeps By Block - Transactions > Get Transactions > Get Transactions - Transactions > Info > Info +- Transactions > Info By Tx Hash > Info By Tx Hash - Transactions > Unpack > Unpack - Transactions > Get Transaction By Tx Index > Get Transaction By Tx Index - Transactions > Get Transaction By Hash > Get Transaction By Hash From 5bca04c201953e898c124159568b9a8a08bbafed Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 19 Sep 2024 11:28:49 +0000 Subject: [PATCH 13/46] always return data when composing tx --- apiary.apib | 3326 ++++++++--------- .../counterpartycore/lib/api/api_v1.py | 5 +- .../counterpartycore/lib/transaction.py | 56 +- .../test/bytespersigop_test.py | 10 +- .../test/estimate_fee_per_kb_test.py | 2 +- .../test/p2sh_encoding_test.py | 16 +- .../test/regtest/apidoc/apicache.json | 2994 +++++++-------- 7 files changed, 3214 insertions(+), 3195 deletions(-) diff --git a/apiary.apib b/apiary.apib index 5ec4cdcfc1..9b7ae55776 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-09-19 10:37:17.989867. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-09-19 10:53:45.941213. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -179,15 +179,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", "block_index": 193, - "block_time": 1726742211, + "block_time": 1726743198, "difficulty": 545259519, - "previous_block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f" + "previous_block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50" }, "tx_hash": null, "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 } ], "next_cursor": 518, @@ -204,17 +204,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", "block_index": 193, - "block_time": 1726742211, + "block_time": 1726743198, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "tx_index": 59, - "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", + "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -234,9 +234,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 } ], "next_cursor": 519, @@ -255,16 +255,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "destination": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "out_index": 0, - "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", "tx_index": 33, - "block_time": 1726742026, + "block_time": 1726743009, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", "block_index": 146, - "block_time": 1726742026 + "block_time": 1726743009 } ], "next_cursor": 237, @@ -282,15 +282,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", - "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", + "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", + "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", "transaction_count": 1, - "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", - "block_time": 1726742211 + "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", + "block_time": 1726743198 }, "tx_hash": null, "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 } ], "next_cursor": 529, @@ -308,12 +308,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "tx_index": 59 }, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 } ], "next_cursor": 528, @@ -333,15 +333,15 @@ Here is a list of events classified by theme and for each an example response: "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 193, - "event": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "event": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -351,9 +351,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 } ], "next_cursor": 525, @@ -370,16 +370,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -389,9 +389,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 } ], "next_cursor": 524, @@ -410,14 +410,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "memo": null, "quantity": 10000, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "status": "valid", - "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a", + "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3", "tx_index": 53, - "block_time": 1726742186, + "block_time": 1726743172, "asset_info": { "divisible": true, "asset_longname": null, @@ -427,9 +427,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a", + "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3", "block_index": 187, - "block_time": 1726742186 + "block_time": 1726743172 } ], "next_cursor": null, @@ -448,15 +448,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "status": "valid", - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "tx_index": 54, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "divisible": true, "asset_longname": null, @@ -466,9 +466,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "block_time": 1726742190 + "block_time": 1726743177 } ], "next_cursor": 495, @@ -506,20 +506,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "status": "valid", - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, - "block_time": 1726742207, + "block_time": 1726743194, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 } ], "next_cursor": null, @@ -541,15 +541,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": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "status": "valid", - "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", + "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", "tx_index": 40, - "block_time": 1726742056, + "block_time": 1726743039, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -563,9 +563,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": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", + "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", "block_index": 153, - "block_time": 1726742056 + "block_time": 1726743039 } ], "next_cursor": null, @@ -598,11 +598,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": 159, - "block_time": 1726742082 + "block_time": 1726743075 }, - "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", + "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", "block_index": 159, - "block_time": 1726742082 + "block_time": 1726743075 } ], "next_cursor": 367, @@ -630,22 +630,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": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "status": "valid", "transfer": false, - "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", + "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", "tx_index": 46, - "block_time": 1726742082, + "block_time": 1726743075, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", + "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", "block_index": 159, - "block_time": 1726742082 + "block_time": 1726743075 } ], "next_cursor": 374, @@ -665,12 +665,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "status": "valid", "tag": "64657374726f79", - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "tx_index": 59, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -680,9 +680,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 } ], "next_cursor": 157, @@ -714,11 +714,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": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "status": "open", - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "tx_index": 57, - "block_time": 1726742203, + "block_time": 1726743189, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -742,9 +742,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": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "block_time": 1726742203 + "block_time": 1726743189 } ], "next_cursor": 502, @@ -767,20 +767,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": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", "tx0_index": 49, - "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "tx1_index": 52, - "block_time": 1726742182, + "block_time": 1726743168, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -799,9 +799,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": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "tx_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "block_index": 186, - "block_time": 1726742182 + "block_time": 1726743168 } ], "next_cursor": 461, @@ -819,11 +819,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0" + "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba" }, - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "block_index": 190, - "block_time": 1726742198 + "block_time": 1726743185 } ], "next_cursor": 476, @@ -841,11 +841,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac" + "tx_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e" }, - "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", + "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", "block_index": 185, - "block_time": 1726742178 + "block_time": 1726743164 } ], "next_cursor": null, @@ -862,13 +862,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", - "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "status": "completed" }, - "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", + "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", "block_index": 185, - "block_time": 1726742178 + "block_time": 1726743164 } ], "next_cursor": 440, @@ -887,18 +887,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "status": "valid", - "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", + "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", "tx_index": 51, - "block_time": 1726742178, + "block_time": 1726743164, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", + "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", "block_index": 185, - "block_time": 1726742178 + "block_time": 1726743164 } ], "next_cursor": null, @@ -916,16 +916,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "status": "valid", - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "tx_index": 56, - "block_time": 1726742198 + "block_time": 1726743185 }, - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "block_index": 190, - "block_time": 1726742198 + "block_time": 1726743185 } ], "next_cursor": null, @@ -943,13 +943,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "block_time": 1726742099 + "order_hash": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "block_time": 1726743090 }, "tx_hash": null, "block_index": 182, - "block_time": 1726742099 + "block_time": 1726743090 } ], "next_cursor": 446, @@ -967,14 +967,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "block_time": 1726742099 + "order_match_id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "block_time": 1726743090 }, "tx_hash": null, "block_index": 182, - "block_time": 1726742099 + "block_time": 1726743090 } ], "next_cursor": null, @@ -999,14 +999,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": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", - "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "satoshirate": 1, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "status": 0, - "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", "tx_index": 32, - "block_time": 1726742021, + "block_time": 1726743004, "asset_info": { "divisible": true, "asset_longname": null, @@ -1019,9 +1019,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": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", "block_index": 145, - "block_time": 1726742021 + "block_time": 1726743004 } ], "next_cursor": 254, @@ -1041,9 +1041,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "status": 0, - "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", "asset_info": { "divisible": true, "asset_longname": null, @@ -1053,9 +1053,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", "block_index": 146, - "block_time": 1726742026 + "block_time": 1726743009 } ], "next_cursor": 260, @@ -1074,13 +1074,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mvp1Wt3dDXLsTRMaAirFTs5YbHsGGJvZUe", + "destination": "mv4u3AwUQLhBtZSeqKQQ4En5zjMMhPVAV2", "dispense_quantity": 10, - "dispenser_tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "tx_hash": "9695b1501e32ae3c6f4f24caeca727bd3bfa7c6d0ddb866fab4880ba12f4f658", + "dispenser_tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx_hash": "9798f9cfd72e95f6e239fc93bec2216bae9623155fff3be184ac3dac823863b1", "tx_index": 31, - "block_time": 1726742017, + "block_time": 1726743000, "asset_info": { "divisible": true, "asset_longname": null, @@ -1090,9 +1090,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "9695b1501e32ae3c6f4f24caeca727bd3bfa7c6d0ddb866fab4880ba12f4f658", + "tx_hash": "9798f9cfd72e95f6e239fc93bec2216bae9623155fff3be184ac3dac823863b1", "block_index": 144, - "block_time": 1726742017 + "block_time": 1726743000 } ], "next_cursor": null, @@ -1112,14 +1112,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", + "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", - "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", "tx_index": 33, - "block_time": 1726742026, + "block_time": 1726743009, "asset_info": { "divisible": true, "asset_longname": null, @@ -1130,9 +1130,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", "block_index": 146, - "block_time": 1726742026 + "block_time": 1726743009 } ], "next_cursor": 240, @@ -1154,19 +1154,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": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696", + "tx_hash": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20", "tx_index": 25, "value": 66600.0, - "block_time": 1726741991, + "block_time": 1726742975, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696", + "tx_hash": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20", "block_index": 138, - "block_time": 1726741991 + "block_time": 1726742975 } ], "next_cursor": 213, @@ -1204,16 +1204,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "start_block": 0, "status": "open", - "tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", + "tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", "tx_index": 22, - "block_time": 1726741978 + "block_time": 1726742962 }, - "tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", + "tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", "block_index": 135, - "block_time": 1726741978 + "block_time": 1726742962 } ], "next_cursor": 161, @@ -1231,11 +1231,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "ac047163f3cd9094f4ee2103b832d0064228aa5f2a7fc8e3104ee775fb181f84" + "tx_hash": "630338ac26f1db216809652acb490bc36058561df42b4800c28e5064bc629a2f" }, "tx_hash": null, "block_index": 130, - "block_time": 1726741947 + "block_time": 1726742942 } ], "next_cursor": 110, @@ -1256,24 +1256,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", + "fairminter_tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", "paid_quantity": 34, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "status": "valid", - "tx_hash": "4ef19e15a942cd317edd6f0705b17761dac9a1c56bd3d92c4b636cf5b7102c7c", + "tx_hash": "7b33dfa114bb715eb9f145b2f1bbaaaef414b6b4a96bb8c6eaeb491bb5acbb6d", "tx_index": 23, - "block_time": 1726741983, + "block_time": 1726742966, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } }, - "tx_hash": "4ef19e15a942cd317edd6f0705b17761dac9a1c56bd3d92c4b636cf5b7102c7c", + "tx_hash": "7b33dfa114bb715eb9f145b2f1bbaaaef414b6b4a96bb8c6eaeb491bb5acbb6d", "block_index": 136, - "block_time": 1726741983 + "block_time": 1726742966 } ], "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": 151, - "destination": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9:1", + "destination": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "status": "valid", - "tx_hash": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", + "tx_hash": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", "tx_index": 38, - "block_time": 1726742048, + "block_time": 1726743030, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", + "tx_hash": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", "block_index": 151, - "block_time": 1726742048 + "block_time": 1726743030 } ], "next_cursor": 291, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy", + "destination": "bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "daabc4181b5c356b166fd9efb6056720fec8a1d81871b9c5b091a499e81e663f:0", + "source": "2ff828784db699b93166c91bdc316c84bddfdb710a3c1d1f68665a7198728737:0", "status": "valid", - "tx_hash": "e4c8f0c552dea7470e5d2ef98ff6568f869c3e95231b43879b3a1fabea2cff64", + "tx_hash": "de71c5607ca8fcdc386738b1f1eebb812aeee0e012a4ce691d1ac9f894810f09", "tx_index": 37, - "block_time": 1726742043, + "block_time": 1726743026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "e4c8f0c552dea7470e5d2ef98ff6568f869c3e95231b43879b3a1fabea2cff64", + "tx_hash": "de71c5607ca8fcdc386738b1f1eebb812aeee0e012a4ce691d1ac9f894810f09", "block_index": 150, - "block_time": 1726742043 + "block_time": 1726743026 } ], "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": 155, - "destination": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0:1", + "destination": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220:1", "msg_index": 1, "quantity": 1500000000, - "source": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53:0", + "source": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a:0", "status": "valid", - "tx_hash": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", + "tx_hash": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", "tx_index": 42, - "block_time": 1726742065, + "block_time": 1726743048, "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": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", + "tx_hash": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", "block_index": 155, - "block_time": 1726742065 + "block_time": 1726743048 } ], "next_cursor": 346, @@ -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": "bcrt1qzg7g6s9ckm9rsj4q55s6l4fjzlnzjs60l2vdx3", + "source": "bcrt1qsvdraccy4y6g937r7kzwjttq6j7htuuzvuzcpx", "status": "valid", - "tx_hash": "9f284d873f6c69ac2600ac8d935d6f4a50e0fff2ed36747baffff21663a4e8cb", + "tx_hash": "8cb6afe98c6fd78fe63d3400ff07363c80671a5aa675d073676e7be684d2d8a7", "tx_index": 9, - "block_time": 1726741908, + "block_time": 1726742903, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "9f284d873f6c69ac2600ac8d935d6f4a50e0fff2ed36747baffff21663a4e8cb", + "tx_hash": "8cb6afe98c6fd78fe63d3400ff07363c80671a5aa675d073676e7be684d2d8a7", "block_index": 121, - "block_time": 1726741908 + "block_time": 1726742903 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 193, - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", - "block_time": 1726742211, - "previous_block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_time": 1726743198, + "previous_block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", "difficulty": 545259519, - "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", - "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", - "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", + "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", + "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", + "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", - "block_time": 1726742207, - "previous_block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", + "block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", + "block_time": 1726743194, + "previous_block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", "difficulty": 545259519, - "ledger_hash": "0a2bdb38999b534fd2b576ff3c06e3eee38ebf1647458e5728700cedd6efcaed", - "txlist_hash": "7e202711cfe7c8b899866f52138b5f970ae744974e861db8fe7d22b284b88dbf", - "messages_hash": "48160ef2e284595aa7d8f136206cd029ffd17325ffe6584f96a3113dc2f097b5", + "ledger_hash": "f5ce379ab00c2982a4a45f4ad87c82d7b3198e7fa39818af38a9702a68da9521", + "txlist_hash": "52eff7cd239691d1efa5da6dbc00227fd5fe9d2ebc1e525f4abec71f1c847da8", + "messages_hash": "427641ca80d9aee9afc778c264a77c308a6be71a5761db8532a744992561bb63", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", - "block_time": 1726742203, - "previous_block_hash": "54cd9caaa8fce8a78011bf573033e5c66827b4f054205f1a89eb72cf7264f412", + "block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", + "block_time": 1726743189, + "previous_block_hash": "47b3fb7b19695ffc7ac303e23eb3315b747c15d26456b38b337030006305e979", "difficulty": 545259519, - "ledger_hash": "6e9a0d3d0c0ba20e2081bb9a2dacbdffcf05aaf850bb5ea1debda78f465e48a4", - "txlist_hash": "55c720e469b176ebab9b107f55fa2fa4b81a7b709f5d0d320aec4d0418b30ced", - "messages_hash": "7230316bb7908deaf56674f65e5f861f91d1870c5239f1b17708d290d18d940d", + "ledger_hash": "97c6a9a9dfd360766c66484b6a2371fc523c88768dd82631e77ddafcc71a8b60", + "txlist_hash": "a3a75d3eef307cc600ea559da8c7e6114eeb7c089d783c0aca0a09c91a3c9aff", + "messages_hash": "585ca23f5198daa88c7c982d0e320b36405d74b4e4520ac95c0f150c80e25ae8", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "54cd9caaa8fce8a78011bf573033e5c66827b4f054205f1a89eb72cf7264f412", - "block_time": 1726742198, - "previous_block_hash": "49dc4ddb70d192b54a5ca94706a766771f5d75e7013ccde319624e804335bc20", + "block_hash": "47b3fb7b19695ffc7ac303e23eb3315b747c15d26456b38b337030006305e979", + "block_time": 1726743185, + "previous_block_hash": "1257ebae1dd6b4cdc6b62a8ed6a80f99571bd3bc27f37129fb28997aca21f3e1", "difficulty": 545259519, - "ledger_hash": "2faa91e8fbe01eb0b87717d897b1f78e3f12a5842cc77bf58dc38fd3f37a3482", - "txlist_hash": "e52ebece08054449aa8a477cd7c19b1542b342af81df4f866eb76be8f24284fd", - "messages_hash": "a1e98cfa9d9ad01e5c9ea206c95f169a6be5152237df625e719b8f648a50ec4a", + "ledger_hash": "52e23c330c89b46771efd78aa458e3f82def371c7cbf1ee4c0921bc347339f58", + "txlist_hash": "4f40bf44aa9fe5ec1030dd443132aa6c993ee869442ae6fe6e452a9933b12633", + "messages_hash": "86586a2a004808ca3cdaa719be924b71770a53050fa445fcd6b7a3635f663e96", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "49dc4ddb70d192b54a5ca94706a766771f5d75e7013ccde319624e804335bc20", - "block_time": 1726742194, - "previous_block_hash": "1223a9ebf3f56e035752b5244d0710e06d19b8d943c71c76b43631da6557211c", + "block_hash": "1257ebae1dd6b4cdc6b62a8ed6a80f99571bd3bc27f37129fb28997aca21f3e1", + "block_time": 1726743181, + "previous_block_hash": "427129e75f1858594b1c563d06e55db5f97f7e6425d5c064a509dec7a90698b2", "difficulty": 545259519, - "ledger_hash": "7f3d92b28bcfa9cb4f9fe9cf2704a600db7cb3775f3d60b40df6ebbf3190c01b", - "txlist_hash": "0ed5cbda0c2184cbfa3c21efaf00573bb0f99adb32b260680a69892879d63afd", - "messages_hash": "eb0dbf67a7c239e8a9800ca126627178fffcefff09d7867dd7a1e9c2de4380fd", + "ledger_hash": "d8889a73fe9dd722a5624327b070c876b4d4d73ab28b7b4af363169b20c82d56", + "txlist_hash": "89b6834dab2d42c9ed636574a742baa1b920fdd2df6ff29af5654633cd1bd291", + "messages_hash": "2a78bccf0050c392e1f1435a8eb950e5e21e20d28b0310a6d344702a10a45fca", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 193, - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", - "block_time": 1726742211, - "previous_block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_time": 1726743198, + "previous_block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", "difficulty": 545259519, - "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", - "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", - "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", + "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", + "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", + "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd` (str, required) - The index of the block to return + + block_hash: `3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86` (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": 193, - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", - "block_time": 1726742211, - "previous_block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_time": 1726743198, + "previous_block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", "difficulty": 545259519, - "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", - "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", - "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", + "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", + "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", + "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 59, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", - "block_time": 1726742211, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_time": 1726743198, + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", + "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1706,11 +1706,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "0a2bdb38999b534fd2b576ff3c06e3eee38ebf1647458e5728700cedd6efcaed", - "messages_hash": "48160ef2e284595aa7d8f136206cd029ffd17325ffe6584f96a3113dc2f097b5", + "ledger_hash": "f5ce379ab00c2982a4a45f4ad87c82d7b3198e7fa39818af38a9702a68da9521", + "messages_hash": "427641ca80d9aee9afc778c264a77c308a6be71a5761db8532a744992561bb63", "transaction_count": 1, - "txlist_hash": "7e202711cfe7c8b899866f52138b5f970ae744974e861db8fe7d22b284b88dbf", - "block_time": 1726742207 + "txlist_hash": "52eff7cd239691d1efa5da6dbc00227fd5fe9d2ebc1e525f4abec71f1c847da8", + "block_time": 1726743194 }, "tx_hash": null }, @@ -1719,43 +1719,43 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58 }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "status": "valid", - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, - "block_time": 1726742207, + "block_time": 1726743194, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -1765,22 +1765,22 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "XCP", "block_index": 192, - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -1790,7 +1790,7 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" } ], "next_cursor": 524, @@ -1873,16 +1873,16 @@ Returns the events of a block filtered by event "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -1892,57 +1892,57 @@ Returns the events of a block filtered by event }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" } ], "next_cursor": null, @@ -2005,16 +2005,16 @@ Returns the credits of a block "result": [ { "block_index": 192, - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,20 +2026,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2047,20 +2047,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2116,16 +2116,16 @@ Returns the debits of a block "result": [ { "block_index": 193, - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "event": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -2165,24 +2165,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "object_id": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", "block_index": 182, "confirmed": true, - "block_time": 1726742099 + "block_time": 1726743090 }, { "type": "order", - "object_id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", + "object_id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", "block_index": 182, "confirmed": true, - "block_time": 1726742099 + "block_time": 1726743090 }, { "type": "order_match", - "object_id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "object_id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", "block_index": 182, "confirmed": true, - "block_time": 1726742099 + "block_time": 1726743090 } ], "next_cursor": null, @@ -2214,13 +2214,13 @@ Returns the cancels of a block "result": [ { "tx_index": 56, - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "block_index": 190, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "status": "valid", "confirmed": true, - "block_time": 1726742198 + "block_time": 1726743185 } ], "next_cursor": null, @@ -2252,15 +2252,15 @@ Returns the destructions of a block "result": [ { "tx_index": 59, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -2300,14 +2300,14 @@ Returns the issuances of a block "result": [ { "tx_index": 46, - "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", + "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -2322,7 +2322,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742082, + "block_time": 1726743075, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2356,10 +2356,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2367,7 +2367,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "divisible": true, "asset_longname": null, @@ -2380,10 +2380,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2391,11 +2391,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2404,10 +2404,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2415,11 +2415,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2457,27 +2457,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", - "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "last_status_tx_hash": null, - "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2492,7 +2492,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726742026, + "block_time": 1726743009, "asset_info": { "divisible": true, "asset_longname": null, @@ -2533,16 +2533,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 58, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "fee_paid_normalized": "0.00600000" } ], @@ -2576,17 +2576,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696", + "tx_hash": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20", "block_index": 138, - "block_hash": "647a8b592e07b4e44323c9f8cc00cfd55804bbc1e54298977e8e6a7095c8639c", - "block_time": 1726741991, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "block_hash": "40b7d2b2f91ac007e251245971c029e99041307eba2caa7e230e1e97017bf0cd", + "block_time": 1726742975, + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696:1", + "utxos_info": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2611,25 +2611,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 51, - "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", + "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", "block_index": 185, - "block_hash": "592f49ff43d18849d9b56671fedc5a4de889bebd46b34f08efcc8fa908b1e928", - "block_time": 1726742178, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "2e3c3d44591be34a2361ad5452925ffafe95f3ead188d15cba2bfc08d0bc2745", + "block_time": 1726743164, + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "btc_amount": 2000, "fee": 10000, - "data": "0b4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "data": "0bdf69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a58b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "supported": true, - "utxos_info": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e:0", + "utxos_info": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", - "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", - "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "status": "valid" } }, @@ -2644,23 +2644,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "block_index": 190, - "block_hash": "54cd9caaa8fce8a78011bf573033e5c66827b4f054205f1a89eb72cf7264f412", - "block_time": 1726742198, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "47b3fb7b19695ffc7ac303e23eb3315b747c15d26456b38b337030006305e979", + "block_time": 1726743185, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "data": "46d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "supported": true, - "utxos_info": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259:1", + "utxos_info": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "status": "valid" } }, @@ -2675,17 +2675,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", - "block_time": 1726742211, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_time": 1726743198, + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", + "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2715,17 +2715,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 32, - "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", "block_index": 145, - "block_hash": "78b23f6904604532f3b6bb7ec8565e2ba4b3701295e761f8ac9271c0e087628a", - "block_time": 1726742021, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "block_hash": "4c30f1cd067582d1da225db2560d0c4fb431a388d40e6aba52007cddf9e42504", + "block_time": 1726743004, + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c00000000000000010000000000000001000000000000271000000000000000010080811a085375d61029cc6716db8f89076467dc91a6", + "data": "0c0000000000000001000000000000000100000000000027100000000000000001008002bb60a8fb0d463362922422eb8ec7a4b57f2f22", "supported": true, - "utxos_info": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763:1", + "utxos_info": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2737,7 +2737,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "status": "valid", "asset_info": { "divisible": true, @@ -2761,17 +2761,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", "block_index": 146, - "block_hash": "35eadbc6e30d4ee1de99b3c477150bfc633a78c2193e56bd3c7b570578cb3b87", - "block_time": 1726742026, - "source": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", - "destination": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "block_hash": "6dbfdf8a6821f528293d7c3e91ef9bf75276801b91172dfa114f3ea3d42746ed", + "block_time": 1726743009, + "source": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", + "destination": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "btc_amount": 10000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503:0", + "utxos_info": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 40, - "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", + "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", "block_index": 153, - "block_hash": "3c5f4025ab216fcb035812b273ba6d6f0d1eafba3e557abd82363a6f88e5675c", - "block_time": 1726742056, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "593b1516c224742a97169f1523b456457ef396989bb7a2c10247482baad3a464", + "block_time": 1726743039, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28:1", + "utxos_info": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2814,7 +2814,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2839,17 +2839,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 46, - "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", + "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", "block_index": 159, - "block_hash": "1bf735a34e324308ea61b0796c04368c2e21d739e6849ae0358dfcb5af82a74c", - "block_time": 1726742082, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "55757585ce78618f61bae0994262243b8db0aa0324d00884b6bb5a4f6da4e474", + "block_time": 1726743075, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655:1", + "utxos_info": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2881,17 +2881,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", - "block_time": 1726742203, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", + "block_time": 1726743189, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d:1", + "utxos_info": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2934,17 +2934,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a", + "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3", "block_index": 187, - "block_hash": "285315ff557984d1bbd62b9c8128ec38c668ebd078ef964e36bb7bb2e11e9384", - "block_time": 1726742186, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "block_hash": "2135b27a10d511d65e41c436158549a35203522e87028111c0f726144c430fb4", + "block_time": 1726743172, + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080b77441a3eca05c136080e504fe32114fa79f4406", + "data": "0200000000000000010000000000002710804a5bd60b2d454cc549130f385b94d63db6269c02", "supported": true, - "utxos_info": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a:1", + "utxos_info": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2952,7 +2952,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "memo": null, "asset_info": { "divisible": true, @@ -2975,17 +2975,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "block_hash": "1223a9ebf3f56e035752b5244d0710e06d19b8d943c71c76b43631da6557211c", - "block_time": 1726742190, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "427129e75f1858594b1c563d06e55db5f97f7e6425d5c064a509dec7a90698b2", + "block_time": 1726743177, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380b886678b2158112c9d7fe7b214a12943c2cabd96809668fa89c3fb02c8b7a891003a3773f6eed4a65680b77441a3eca05c136080e504fe32114fa79f4406400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380386a5bb745b1ba84d5953b77406457e9415704a1806a51cc766215db7e153afcd60bb43d6c1c61cff8804a5bd60b2d454cc549130f385b94d63db6269c02400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff:0", + "utxos_info": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2993,14 +2993,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -3008,7 +3008,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3034,23 +3034,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", - "block_time": 1726742207, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", + "block_time": 1726743194, + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480b77441a3eca05c136080e504fe32114fa79f4406017377656570206d7920617373657473", + "data": "04804a5bd60b2d454cc549130f385b94d63db6269c02017377656570206d7920617373657473", "supported": true, - "utxos_info": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08:1", + "utxos_info": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "flags": 1, "memo": "sweep my assets" } @@ -3083,17 +3083,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 59, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", - "block_time": 1726742211, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_time": 1726743198, + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", + "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3116,23 +3116,23 @@ Returns the list of the last ten transactions }, { "tx_index": 58, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", - "block_time": 1726742207, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", + "block_time": 1726743194, + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480b77441a3eca05c136080e504fe32114fa79f4406017377656570206d7920617373657473", + "data": "04804a5bd60b2d454cc549130f385b94d63db6269c02017377656570206d7920617373657473", "supported": true, - "utxos_info": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08:1", + "utxos_info": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "flags": 1, "memo": "sweep my assets" } @@ -3150,7 +3150,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000101159e5bce4910b972c4249dc33c13ae5fe75ee185d307e6325bdafbed87e010ff0000000000ffffffff0200000000000000002b6a293ed0ca3029ff2c8f070c17ff890726fb793d285f135e406302d8976dac8ff094cf5e43f144a3cb6415f0ca052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea20247304402204cf558337aadef48e62a90c2848843eaf973ec9c1ff085e03b54ba7475ef1510022016a10b12483d62657e732914303de9992f85b31466ce65c08395514996dcec4e012103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb00000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000101b93823fbfeeb9f76b4b3dbf8d504b3270e4c171496e5f13196dc3fc6fe92e87a0000000000ffffffff0200000000000000002b6a2903bea53b8a00584e261286de22388d23b7dc3a0597b34285293f38479f388d5b70efedc67135feabfaf0ca052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802473044022047ce42e81f859ce022cbaf63b11f09264a702ecc91a88c97aa699b3c7b2aa8e702203b0b2b063104f30aa11a3a8b23ee17e20eef5b3279a073afebf3f2902f98e482012103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d300000000` (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. @@ -3163,18 +3163,18 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "data": "46d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "159e5bce4910b972c4249dc33c13ae5fe75ee185d307e6325bdafbed87e010ff", + "hash": "b93823fbfeeb9f76b4b3dbf8d504b3270e4c171496e5f13196dc3fc6fe92e87a", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3184,26 +3184,26 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a293ed0ca3029ff2c8f070c17ff890726fb793d285f135e406302d8976dac8ff094cf5e43f144a3cb6415" + "script_pub_key": "6a2903bea53b8a00584e261286de22388d23b7dc3a0597b34285293f38479f388d5b70efedc67135feabfa" }, { "value": 4999990000, - "script_pub_key": "00148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2" + "script_pub_key": "0014a58c27e8ecd410f6848b7abd7e26f355bce15dd8" } ], "vtxinwit": [ - "304402204cf558337aadef48e62a90c2848843eaf973ec9c1ff085e03b54ba7475ef1510022016a10b12483d62657e732914303de9992f85b31466ce65c08395514996dcec4e01", - "03c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb" + "3044022047ce42e81f859ce022cbaf63b11f09264a702ecc91a88c97aa699b3c7b2aa8e702203b0b2b063104f30aa11a3a8b23ee17e20eef5b3279a073afebf3f2902f98e48201", + "03471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d3" ], "lock_time": 0, - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", - "tx_id": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259" + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_id": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7" }, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "status": "valid" } }, @@ -3217,7 +3217,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b` (str, required) - Transaction hash + + tx_hash: `501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b` (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. @@ -3228,18 +3228,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710809668fa89c3fb02c8b7a891003a3773f6eed4a656", + "data": "0200000000000000010000000000002710806a51cc766215db7e153afcd60bb43d6c1c61cff8", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "b410f63beba7150a70c9ca77621daec478e35967e9fb5930a286282a4ddb74e9", + "hash": "add0ff4d3c6a3c0c9d63ac1bf61b93fd110dbaab08e940fa0ce360d28cf1eb0d", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3249,20 +3249,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e98cf313c9ed5ec29068907f1acd16b2d287938482a6520b2c97f45ad202f62336365b41cb5095ee0585590fa3497" + "script_pub_key": "6a2efa02b5f0469c532efb017222c6d9df54fccd3aec8ca11621123b71e65ec38b865db46a7808815e4b258f1698fb7c" }, { "value": 4999955000, - "script_pub_key": "0014b77441a3eca05c136080e504fe32114fa79f4406" + "script_pub_key": "00144a5bd60b2d454cc549130f385b94d63db6269c02" } ], "vtxinwit": [ - "3044022014031a3a825f819044df4c2c522ffe97c5b3b26ab6821fc1702a9ba53a8da7b502201e860baf96d0171a8f3d7707eed0b99646404e1df10dfc90a26d4912f617066a01", - "03c00ed866f6a66b1786e3fdf10ad429bdfef2bf782fe2eae745580ae546dcb963" + "3044022021768aad5381cac8962caceab2ec74c9556e4e17369d6f6721a2c5632669a8b202203399c0a66d8fe767f5951dcdd32ac38bfbb074f59fa6d4cacd56d9e61a1f03eb01", + "020cb277fa643a47f001fd66be1b219cd0a025338e3d793d3482eb2d1d81209c2c" ], "lock_time": 0, - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", - "tx_id": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b" + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_id": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3270,7 +3270,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "memo": null, "asset_info": { "divisible": true, @@ -3331,17 +3331,17 @@ Returns a transaction by its index. { "result": { "tx_index": 59, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", - "block_time": 1726742211, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_time": 1726743198, + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", + "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3370,7 +3370,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02` (str, required) - The hash of the transaction + + tx_hash: `086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7` (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. @@ -3382,17 +3382,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 59, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", - "block_time": 1726742211, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_time": 1726743198, + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", + "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3445,47 +3445,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58 }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "status": "valid", - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, - "block_time": 1726742207, + "block_time": 1726743194, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -3495,24 +3495,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "XCP", "block_index": 192, - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -3522,36 +3522,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 } ], "next_cursor": 523, @@ -3564,7 +3564,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08` (str, required) - The hash of the transaction to return + + tx_hash: `fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -3588,47 +3588,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58 }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "status": "valid", - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, - "block_time": 1726742207, + "block_time": 1726743194, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -3638,24 +3638,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "XCP", "block_index": 192, - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -3665,36 +3665,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 } ], "next_cursor": 523, @@ -3707,7 +3707,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff` (str, required) - The hash of the transaction to return + + tx_hash: `1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926` (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 @@ -3726,10 +3726,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -3737,7 +3737,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "divisible": true, "asset_longname": null, @@ -3750,10 +3750,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3761,11 +3761,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -3774,10 +3774,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3785,11 +3785,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -3807,7 +3807,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503` (str, required) - The hash of the transaction to return + + tx_hash: `452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc` (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 @@ -3827,27 +3827,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", - "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "last_status_tx_hash": null, - "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3862,7 +3862,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726742026, + "block_time": 1726743009, "asset_info": { "divisible": true, "asset_longname": null, @@ -3906,16 +3906,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -3925,63 +3925,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 } ], "next_cursor": null, @@ -3994,7 +3994,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08` (str, required) - The hash of the transaction to return + + tx_hash: `fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `535` (str, optional) - The last event index to return + Default: `None` @@ -4016,16 +4016,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -4035,63 +4035,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 } ], "next_cursor": null, @@ -4106,7 +4106,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3,bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk,bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (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 @@ -4130,7 +4130,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4140,7 +4140,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -4151,7 +4151,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4161,7 +4161,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -4172,7 +4172,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4182,7 +4182,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -4193,7 +4193,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4203,7 +4203,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -4214,7 +4214,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4224,7 +4224,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -4241,7 +4241,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3,bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk,bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (str, required) - Comma separated list of addresses to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4260,17 +4260,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 57, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", - "block_time": 1726742203, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", + "block_time": 1726743189, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d:1", + "utxos_info": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4306,23 +4306,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "block_index": 190, - "block_hash": "54cd9caaa8fce8a78011bf573033e5c66827b4f054205f1a89eb72cf7264f412", - "block_time": 1726742198, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "47b3fb7b19695ffc7ac303e23eb3315b747c15d26456b38b337030006305e979", + "block_time": 1726743185, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "data": "46d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "supported": true, - "utxos_info": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259:1", + "utxos_info": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "status": "valid" } }, @@ -4330,17 +4330,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 55, - "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "block_index": 189, - "block_hash": "49dc4ddb70d192b54a5ca94706a766771f5d75e7013ccde319624e804335bc20", - "block_time": 1726742194, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "1257ebae1dd6b4cdc6b62a8ed6a80f99571bd3bc27f37129fb28997aca21f3e1", + "block_time": 1726743181, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0:1", + "utxos_info": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4376,17 +4376,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "block_hash": "1223a9ebf3f56e035752b5244d0710e06d19b8d943c71c76b43631da6557211c", - "block_time": 1726742190, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "427129e75f1858594b1c563d06e55db5f97f7e6425d5c064a509dec7a90698b2", + "block_time": 1726743177, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380b886678b2158112c9d7fe7b214a12943c2cabd96809668fa89c3fb02c8b7a891003a3773f6eed4a65680b77441a3eca05c136080e504fe32114fa79f4406400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380386a5bb745b1ba84d5953b77406457e9415704a1806a51cc766215db7e153afcd60bb43d6c1c61cff8804a5bd60b2d454cc549130f385b94d63db6269c02400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff:0", + "utxos_info": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4394,14 +4394,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -4409,7 +4409,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4428,25 +4428,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 51, - "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", + "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", "block_index": 185, - "block_hash": "592f49ff43d18849d9b56671fedc5a4de889bebd46b34f08efcc8fa908b1e928", - "block_time": 1726742178, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "2e3c3d44591be34a2361ad5452925ffafe95f3ead188d15cba2bfc08d0bc2745", + "block_time": 1726743164, + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "btc_amount": 2000, "fee": 10000, - "data": "0b4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "data": "0bdf69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a58b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "supported": true, - "utxos_info": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e:0", + "utxos_info": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", - "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", - "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "status": "valid" } }, @@ -4463,7 +4463,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3,bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk,bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -4499,11 +4499,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "status": "open", - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "tx_index": 57, - "block_time": 1726742203, + "block_time": 1726743189, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4527,24 +4527,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "block_time": 1726742203 + "block_time": 1726743189 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "block_index": 191, - "event": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "event": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1726742203, + "block_time": 1726743189, "asset_info": { "divisible": true, "asset_longname": null, @@ -4554,25 +4554,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "block_time": 1726742203 + "block_time": 1726743189 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", + "block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", "block_index": 191, - "block_time": 1726742203, + "block_time": 1726743189, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "tx_index": 57, - "utxos_info": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d:1", + "utxos_info": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4604,40 +4604,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "block_time": 1726742203 + "block_time": 1726743189 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "status": "valid", - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "tx_index": 56, - "block_time": 1726742198 + "block_time": 1726743185 }, - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "block_index": 190, - "block_time": 1726742198 + "block_time": 1726743185 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726742198, + "block_time": 1726743185, "asset_info": { "divisible": true, "asset_longname": null, @@ -4647,9 +4647,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "block_index": 190, - "block_time": 1726742198 + "block_time": 1726743185 } ], "next_cursor": 506, @@ -4662,7 +4662,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell,bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v,bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj` (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 @@ -4678,17 +4678,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "memo": null, "quantity": 10000, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "status": "valid", - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "tx_index": 60, "asset_info": { "divisible": true, @@ -4701,19 +4701,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "CREDIT", "params": { - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -4725,19 +4725,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 193, - "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -4749,27 +4749,27 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726742226.132691, + "block_time": 1726743212.580398, "btc_amount": 0, - "data": "0200000000000000010000000000002710809668fa89c3fb02c8b7a891003a3773f6eed4a656", + "data": "0200000000000000010000000000002710806a51cc766215db7e153afcd60bb43d6c1c61cff8", "destination": "", "fee": 10000, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "tx_index": 60, - "utxos_info": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b:1", + "utxos_info": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "memo": null, "asset_info": { "divisible": true, @@ -4795,7 +4795,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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 @@ -4815,7 +4815,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4823,14 +4823,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4838,14 +4838,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4860,7 +4860,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4868,7 +4868,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -4885,7 +4885,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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` @@ -4897,7 +4897,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4919,7 +4919,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4969,16 +4969,16 @@ Returns the credits of an address "result": [ { "block_index": 190, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742198, + "block_time": 1726743185, "asset_info": { "divisible": true, "asset_longname": null, @@ -4990,16 +4990,16 @@ Returns the credits of an address }, { "block_index": 182, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", + "event": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742099, + "block_time": 1726743090, "asset_info": { "divisible": true, "asset_longname": null, @@ -5011,20 +5011,20 @@ Returns the credits of an address }, { "block_index": 159, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", + "event": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742082, + "block_time": 1726743075, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5032,20 +5032,20 @@ Returns the credits of an address }, { "block_index": 156, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "b7b8e84e938d9c5e88b764466dd7ab16843b7874731d10e0853fded80b2f08d2", + "event": "735d36c3e66e9e8eca66da2247ef421376f463c3a71166b90f79a1fb65c39ce0", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742070, + "block_time": 1726743052, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5057,16 +5057,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", + "event": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", "tx_index": 38, - "utxo": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9:1", - "utxo_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "utxo": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d:1", + "utxo_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "confirmed": true, - "block_time": 1726742048, + "block_time": 1726743030, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5083,7 +5083,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5122,16 +5122,16 @@ Returns the debits of an address "result": [ { "block_index": 191, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "event": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742203, + "block_time": 1726743189, "asset_info": { "divisible": true, "asset_longname": null, @@ -5143,16 +5143,16 @@ Returns the debits of an address }, { "block_index": 189, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742194, + "block_time": 1726743181, "asset_info": { "divisible": true, "asset_longname": null, @@ -5164,16 +5164,16 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "event": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "divisible": true, "asset_longname": null, @@ -5185,20 +5185,20 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "event": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5206,16 +5206,16 @@ Returns the debits of an address }, { "block_index": 183, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "event": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742170, + "block_time": 1726743155, "asset_info": { "divisible": true, "asset_longname": null, @@ -5236,7 +5236,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address of the feed + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5271,7 +5271,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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 @@ -5290,9 +5290,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "60e53d18f1a227ad4ad75ba9854b8c64c4dceeb7c98514be938945b616fa342e", + "tx_hash": "5966fd52717602850bfb43b55f7da2b2e0c9be1896b41b65c6f9bf5b0e1099ab", "block_index": 137, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5300,7 +5300,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726741987, + "block_time": 1726742970, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5314,7 +5314,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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 @@ -5333,14 +5333,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "adc800a0c349ff4e0e7193122cf547a536a880740dbe9cd9af41bd4b6138d8b0", + "tx_hash": "5c97acb757b578558483987eb8e2a40e0e3ccb308bcedc6914f04a5586f71723", "block_index": 112, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1726741871, + "block_time": 1726742865, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5355,7 +5355,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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 @@ -5374,10 +5374,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5385,7 +5385,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "divisible": true, "asset_longname": null, @@ -5398,10 +5398,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5409,11 +5409,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5422,10 +5422,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5433,11 +5433,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5446,10 +5446,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 38, - "tx_hash": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", + "tx_hash": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", "block_index": 151, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9:1", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5457,11 +5457,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742048, + "block_time": 1726743030, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5470,10 +5470,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 35, - "tx_hash": "70b48fb7cb8c00a6e814bdf5682297fcba88b2e305f0ac44ae659782a9d08a1d", + "tx_hash": "05be62933b931d190c6d9b32d1dcc6437a18e38abb5a77f5655459963314f6e3", "block_index": 148, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "4d1c559a2f4b46484dd28d82a0544b0606eafb203419cf378deafd53670c77f7:1", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "e4bcefdccfc18fddbc4afe4282d88bfa16c2de310ab0d2a3117b800f68102f7f:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5481,11 +5481,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742035, + "block_time": 1726743017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5503,7 +5503,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy` (str, required) - The address to return + + address: `bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3` (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 @@ -5522,10 +5522,10 @@ Returns the receives of an address "result": [ { "tx_index": 37, - "tx_hash": "e4c8f0c552dea7470e5d2ef98ff6568f869c3e95231b43879b3a1fabea2cff64", + "tx_hash": "de71c5607ca8fcdc386738b1f1eebb812aeee0e012a4ce691d1ac9f894810f09", "block_index": 150, - "source": "daabc4181b5c356b166fd9efb6056720fec8a1d81871b9c5b091a499e81e663f:0", - "destination": "bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy", + "source": "2ff828784db699b93166c91bdc316c84bddfdb710a3c1d1f68665a7198728737:0", + "destination": "bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5533,11 +5533,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742043, + "block_time": 1726743026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5555,7 +5555,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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` @@ -5575,10 +5575,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5586,11 +5586,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5599,10 +5599,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5610,11 +5610,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5623,10 +5623,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 38, - "tx_hash": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", + "tx_hash": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", "block_index": 151, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9:1", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5634,11 +5634,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742048, + "block_time": 1726743030, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5647,10 +5647,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 35, - "tx_hash": "70b48fb7cb8c00a6e814bdf5682297fcba88b2e305f0ac44ae659782a9d08a1d", + "tx_hash": "05be62933b931d190c6d9b32d1dcc6437a18e38abb5a77f5655459963314f6e3", "block_index": 148, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "4d1c559a2f4b46484dd28d82a0544b0606eafb203419cf378deafd53670c77f7:1", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "e4bcefdccfc18fddbc4afe4282d88bfa16c2de310ab0d2a3117b800f68102f7f:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5658,11 +5658,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742035, + "block_time": 1726743017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5680,7 +5680,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy` (str, required) - The address to return + + address: `bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3` (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` @@ -5700,10 +5700,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 37, - "tx_hash": "e4c8f0c552dea7470e5d2ef98ff6568f869c3e95231b43879b3a1fabea2cff64", + "tx_hash": "de71c5607ca8fcdc386738b1f1eebb812aeee0e012a4ce691d1ac9f894810f09", "block_index": 150, - "source": "daabc4181b5c356b166fd9efb6056720fec8a1d81871b9c5b091a499e81e663f:0", - "destination": "bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy", + "source": "2ff828784db699b93166c91bdc316c84bddfdb710a3c1d1f68665a7198728737:0", + "destination": "bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5711,11 +5711,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742043, + "block_time": 1726743026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5733,7 +5733,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5760,9 +5760,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 30, - "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", + "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", "block_index": 144, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5771,7 +5771,7 @@ Returns the dispensers of an address "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5781,7 +5781,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742017, + "block_time": 1726743000, "asset_info": { "divisible": true, "asset_longname": null, @@ -5797,9 +5797,9 @@ Returns the dispensers of an address }, { "tx_index": 26, - "tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5808,7 +5808,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5818,7 +5818,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -5843,7 +5843,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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` @@ -5856,9 +5856,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", + "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", "block_index": 144, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5867,7 +5867,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5877,7 +5877,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742017, + "block_time": 1726743000, "asset_info": { "divisible": true, "asset_longname": null, @@ -5899,7 +5899,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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 @@ -5919,19 +5919,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", + "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5939,7 +5939,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5954,7 +5954,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -5968,19 +5968,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", + "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", "block_index": 140, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5988,7 +5988,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6003,7 +6003,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726741999, + "block_time": 1726742983, "asset_info": { "divisible": true, "asset_longname": null, @@ -6025,7 +6025,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (str, required) - The address to return + + address: `bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (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 @@ -6045,19 +6045,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", + "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6065,7 +6065,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6080,7 +6080,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -6094,19 +6094,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", + "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", "block_index": 140, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6114,7 +6114,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6129,7 +6129,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726741999, + "block_time": 1726742983, "asset_info": { "divisible": true, "asset_longname": null, @@ -6151,7 +6151,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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` @@ -6172,19 +6172,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", + "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6192,7 +6192,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6207,7 +6207,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -6221,19 +6221,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", + "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", "block_index": 140, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6241,7 +6241,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6256,7 +6256,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726741999, + "block_time": 1726742983, "asset_info": { "divisible": true, "asset_longname": null, @@ -6278,7 +6278,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (str, required) - The address to return + + address: `bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (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` @@ -6299,19 +6299,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", + "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6319,7 +6319,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6334,7 +6334,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -6348,19 +6348,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", + "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", "block_index": 140, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6368,7 +6368,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6383,7 +6383,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726741999, + "block_time": 1726742983, "asset_info": { "divisible": true, "asset_longname": null, @@ -6405,7 +6405,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell` (str, required) - The address to return + + address: `bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v` (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 @@ -6424,16 +6424,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 58, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "fee_paid_normalized": "0.00600000" } ], @@ -6447,7 +6447,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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 @@ -6466,14 +6466,14 @@ Returns the issuances of an address "result": [ { "tx_index": 46, - "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", + "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -6488,20 +6488,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742082, + "block_time": 1726743075, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "66542eb84d234807eb104350179c31c8f1b00e559ca82b489588629cb3fd8bfe", + "tx_hash": "02aeb11d1f8356db859ac3dd71599fbe3da1c8e3d517cf4a171e9e980045e2a1", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -6516,20 +6516,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726742078, + "block_time": 1726743070, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "fa63823d4d5818572e21737b9de669bcd5d05afc5b9e8cfb8cf525732deb75c8", + "tx_hash": "dd63df7abf9b1ae09c158bce761f704944f67bb94cc345329b4b926372bc11c9", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -6544,20 +6544,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742074, + "block_time": 1726743066, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "b7b8e84e938d9c5e88b764466dd7ab16843b7874731d10e0853fded80b2f08d2", + "tx_hash": "735d36c3e66e9e8eca66da2247ef421376f463c3a71166b90f79a1fb65c39ce0", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -6572,20 +6572,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742070, + "block_time": 1726743052, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "6904df91ab250d34539f267e84b728b28ffd351fa15b1011f92354f1a2d1c960", + "tx_hash": "c94682346a1b879d3cda19a8edaedfde8160a8d03713b250908824343581020b", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -6600,7 +6600,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742030, + "block_time": 1726743013, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -6615,7 +6615,7 @@ Returns the issuances of an address Returns the valid assets of an issuer + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The issuer to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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 @@ -6638,8 +6638,8 @@ Returns the valid assets of an issuer "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 10000000000, @@ -6647,16 +6647,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726742070, - "last_issuance_block_time": 1726742078, + "first_issuance_block_time": 1726743052, + "last_issuance_block_time": 1726743070, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 100000000000, @@ -6664,16 +6664,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726742030, - "last_issuance_block_time": 1726742030, + "first_issuance_block_time": 1726743013, + "last_issuance_block_time": 1726743013, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 40, @@ -6681,16 +6681,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726741978, - "last_issuance_block_time": 1726741983, + "first_issuance_block_time": 1726742962, + "last_issuance_block_time": 1726742966, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 19, @@ -6698,16 +6698,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726741952, - "last_issuance_block_time": 1726741974, + "first_issuance_block_time": 1726742946, + "last_issuance_block_time": 1726742957, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 0, @@ -6715,8 +6715,8 @@ Returns the valid assets of an issuer "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1726741930, - "last_issuance_block_time": 1726741947, + "first_issuance_block_time": 1726742925, + "last_issuance_block_time": 1726742942, "supply_normalized": "0.00000000" } ], @@ -6730,7 +6730,7 @@ Returns the valid assets of an issuer Returns the transactions of an address + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -6749,17 +6749,17 @@ Returns the transactions of an address "result": [ { "tx_index": 57, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", - "block_time": 1726742203, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", + "block_time": 1726743189, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d:1", + "utxos_info": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6795,23 +6795,23 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "block_index": 190, - "block_hash": "54cd9caaa8fce8a78011bf573033e5c66827b4f054205f1a89eb72cf7264f412", - "block_time": 1726742198, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "47b3fb7b19695ffc7ac303e23eb3315b747c15d26456b38b337030006305e979", + "block_time": 1726743185, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "data": "46d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "supported": true, - "utxos_info": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259:1", + "utxos_info": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "status": "valid" } }, @@ -6819,17 +6819,17 @@ Returns the transactions of an address }, { "tx_index": 55, - "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "block_index": 189, - "block_hash": "49dc4ddb70d192b54a5ca94706a766771f5d75e7013ccde319624e804335bc20", - "block_time": 1726742194, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "1257ebae1dd6b4cdc6b62a8ed6a80f99571bd3bc27f37129fb28997aca21f3e1", + "block_time": 1726743181, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0:1", + "utxos_info": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6865,17 +6865,17 @@ Returns the transactions of an address }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "block_hash": "1223a9ebf3f56e035752b5244d0710e06d19b8d943c71c76b43631da6557211c", - "block_time": 1726742190, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "427129e75f1858594b1c563d06e55db5f97f7e6425d5c064a509dec7a90698b2", + "block_time": 1726743177, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380b886678b2158112c9d7fe7b214a12943c2cabd96809668fa89c3fb02c8b7a891003a3773f6eed4a65680b77441a3eca05c136080e504fe32114fa79f4406400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380386a5bb745b1ba84d5953b77406457e9415704a1806a51cc766215db7e153afcd60bb43d6c1c61cff8804a5bd60b2d454cc549130f385b94d63db6269c02400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff:0", + "utxos_info": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -6883,14 +6883,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -6898,7 +6898,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -6917,17 +6917,17 @@ Returns the transactions of an address }, { "tx_index": 49, - "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", "block_index": 183, - "block_hash": "38f96e22f784a0b35754de347fb5926d51324cdabcc04f72fc156724f0d43a77", - "block_time": 1726742170, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "32ee38bd8523c5f18899a3a371090d2166ca60babc13231b279dc58acdf866a0", + "block_time": 1726743155, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d:1", + "utxos_info": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6972,7 +6972,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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 @@ -6991,20 +6991,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 40, - "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", + "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", "block_index": 153, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726742056, + "block_time": 1726743039, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -7029,7 +7029,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7056,9 +7056,9 @@ Returns the orders of an address "result": [ { "tx_index": 57, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7073,7 +7073,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726742203, + "block_time": 1726743189, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7099,9 +7099,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "block_index": 190, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7116,7 +7116,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726742198, + "block_time": 1726743185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7142,9 +7142,9 @@ Returns the orders of an address }, { "tx_index": 49, - "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", "block_index": 186, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7159,7 +7159,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726742182, + "block_time": 1726743168, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7185,9 +7185,9 @@ Returns the orders of an address }, { "tx_index": 47, - "tx_hash": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", + "tx_hash": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", "block_index": 182, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7202,7 +7202,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1726742099, + "block_time": 1726743090, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7237,7 +7237,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The source of the fairminter to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7255,10 +7255,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", + "tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", "tx_index": 22, "block_index": 135, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7283,13 +7283,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726741978 + "block_time": 1726742962 }, { - "tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", + "tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", "tx_index": 18, "block_index": 131, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7314,13 +7314,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726741952 + "block_time": 1726742946 }, { - "tx_hash": "ac047163f3cd9094f4ee2103b832d0064228aa5f2a7fc8e3104ee775fb181f84", + "tx_hash": "630338ac26f1db216809652acb490bc36058561df42b4800c28e5064bc629a2f", "tx_index": 14, "block_index": 130, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7345,13 +7345,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726741947 + "block_time": 1726742942 }, { - "tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7376,7 +7376,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726741926 + "block_time": 1726742920 } ], "next_cursor": null, @@ -7389,7 +7389,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (str, required) - The address of the mints to return + + address: `bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7407,127 +7407,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "4ef19e15a942cd317edd6f0705b17761dac9a1c56bd3d92c4b636cf5b7102c7c", + "tx_hash": "7b33dfa114bb715eb9f145b2f1bbaaaef414b6b4a96bb8c6eaeb491bb5acbb6d", "tx_index": 23, "block_index": 136, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "fairminter_tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "fairminter_tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741983, + "block_time": 1726742966, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } }, { - "tx_hash": "12b1f43b529e4ce6e9a3a95d6345faf4a93b2672f1aaa68938ef1b1922e401f9", + "tx_hash": "325787e9f0effbc24bc985f71f26f683dbe75a9105b6414d5e5315b4ceaac1c9", "tx_index": 21, "block_index": 134, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "fairminter_tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "fairminter_tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741974, + "block_time": 1726742957, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } }, { - "tx_hash": "4243b87db26b2a68deae256e73d35c9569389c93dfc721b359567f564bfc47ea", + "tx_hash": "675009915a6db39339ca7bb454f89704ff9da57f16c45c251e9ea253247a56af", "tx_index": 20, "block_index": 133, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "fairminter_tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "fairminter_tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741970, + "block_time": 1726742953, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } }, { - "tx_hash": "e7339c42b0fc1c16588ae319c16d43f759f8bc0a169f61ce9b69d447ceb05f4d", + "tx_hash": "07fbae4d51d0beaccb7486518f1989ad7e9a734c21cf2c7e3752d1cd2a1ceb9f", "tx_index": 19, "block_index": 132, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "fairminter_tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "fairminter_tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741956, + "block_time": 1726742949, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } }, { - "tx_hash": "3935463d05f49f685b9cce124b58d5d0b4ead3c4be23a1d5e4f7c7e7a4b432cc", + "tx_hash": "d6edd904969de8dd3c68546fdf7b24b76ec81d2ab8954e7abd4d5af6655ec6d4", "tx_index": 15, "block_index": 127, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "fairminter_tx_hash": "ac047163f3cd9094f4ee2103b832d0064228aa5f2a7fc8e3104ee775fb181f84", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "fairminter_tx_hash": "630338ac26f1db216809652acb490bc36058561df42b4800c28e5064bc629a2f", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741934, + "block_time": 1726742929, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } }, { - "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", + "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", "tx_index": 11, "block_index": 123, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741917, + "block_time": 1726742912, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } @@ -7543,7 +7543,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (str, required) - The address of the mints to return + + address: `bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (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` @@ -7562,22 +7562,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", + "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", "tx_index": 11, "block_index": 123, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741917, + "block_time": 1726742912, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } @@ -7616,8 +7616,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: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address that will make the bet - + feed_address: `bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address that will make the bet + + feed_address: `bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (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) @@ -7683,7 +7683,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: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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) @@ -7736,9 +7736,9 @@ Composes a transaction to broadcast textual and numerical information to the net ``` { "result": { - "rawtransaction": "02000000000101d0944beaa1b9e3818180d68c8fcec6dff5dfbad96117cc72072c090dc90977af000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff0200000000000000002b6a299d1729a4df7c52258168d86dc4211757deb010053aff47846f631d2bccde3a53493032e94e8fb653a93bb1052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "02000000000101455dd36b3835387a4749ce9b9ad47320d3fdf8f65429f928c78dd49978a3c8a800000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff0200000000000000002b6a295e696832cb4fc3445a30e8938af20a15cf77d2fd605947df25628371583fba1b8c08f186f8a96bb15d3bb1052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7754,8 +7754,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: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address that will be sending the payment - + order_match_id: `4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285` (str, required) - The ID of the order match to pay for + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address that will be sending the payment + + order_match_id: `df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62` (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) @@ -7804,10 +7804,10 @@ Composes a transaction to pay for a BTC order match. ``` { "result": { - "rawtransaction": "02000000000101925e8a3be8f21fb348b8be1aa1e5ee8b96e41e690d13255db1081cf6964ad7e9000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff03b80b0000000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea200000000000000004b6a495176780ee8f3d6bc59bf64e2aef0527cf4e0c6a3594d165d04475d42818057e755accc8aa0cf6c8c16638e53485cdef36df96f13f686bbfc8edcedffaa7264145c9967527cdf6c4abcd993052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "0200000000010162343c5171670775a4634b881780814be84fc168abb2f23373cb1bded16a809b00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff03b80b000000000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd800000000000000004b6a49986e5c19872a7e7f4c1ba5170aab0623e426a3458c5e36a3b56a9c11209451095478d14222796f1a4083a66dfbbe1c434f0f50226fcb1cc26c64c649f6c4b68cdc0eabda5a9477a7ced993052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285" + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62" }, "name": "btcpay" } @@ -7819,7 +7819,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: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address with the BTC to burn + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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` @@ -7871,9 +7871,9 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss ``` { "result": { - "rawtransaction": "02000000000101f4b4a7ed34bf3f599cfbb9060e77d33176011f1347ddece332079b6681b499b4000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "0200000000010169f458476b337a147ca1d77f3089faaafeca77876c20a7dc6a3c43b5b51f67d900000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "quantity": 1000, "overburn": false }, @@ -7887,8 +7887,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: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b` (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) @@ -7937,10 +7937,10 @@ Composes a transaction to cancel an open order or bet. ``` { "result": { - "rawtransaction": "02000000000101049b8154c486875bf5a30b770a6ccc0dd66e84185bc32f7fd92e5a53705f74d4000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff0200000000000000002b6a296a5ae7f653611620353c9ae6e94c60eb1d026ffd00db2c1314efb8a7bee4384715bf04e9b9e78e413e3bb1052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "02000000000101a64db30bac9176f429af313e998036f5c1f26875686a8cba1356f85c29c9e82000000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff0200000000000000002b6a29dba244cc1dab36434818a4e318a7fcaaac0ad653ea52fabe08b7e7537ffe084b14a3dcb5d71a9f8e273bb1052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "offer_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d" + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "offer_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b" }, "name": "cancel" } @@ -7952,7 +7952,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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 @@ -8004,9 +8004,9 @@ Composes a transaction to destroy a quantity of an asset. ``` { "result": { - "rawtransaction": "02000000000101969dafdbb484ca8cecb55b715bbae85e111c7fc7ff720413557f5e674635844e000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000226a201db88992b23173ea7638d51ae5914e134dcf2c4d860483e7c38543c6e9427b12a4b3052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "02000000000101fb80710aa438bee7755e2d302b63428bc1a42436ad64b6a52e946c9d96fdc18400000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000226a20b5273c4d58bf7b38bbd0858b5072ae53bbc2e20f884322266b5bc0faf61d288da4b3052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8029,7 +8029,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: `bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g` (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) @@ -8087,9 +8087,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv ``` { "result": { - "rawtransaction": "0200000000010103c509e9ce1a922332b64060fc661927b2a132bd5016747d3e51de82086a3f36020000001600145bad9dc437bebf3918916d803cb86328f48ce663ffffffff0200000000000000002c6a2a2921b013dad7d5885bc79db11a67e41fa691883a738ea81b90fe54646dacfb25715d0b5108c2e3d021bb474b0a27010000001600145bad9dc437bebf3918916d803cb86328f48ce66302000000000000", + "rawtransaction": "02000000000101dc2cafa3d48e7f864eb99f783d4aadcea96c948e8fc819d8ee9cc79c1dba2a450200000016001404ea61fb15d719aed8e3e1f0d7b3b54e5509e480ffffffff0200000000000000002c6a2a96c037babd4b19641faead1555b630fc18bee5e95fe1be05efe76f11af1f99a3595b225e2838b5f90180474b0a270100000016001404ea61fb15d719aed8e3e1f0d7b3b54e5509e48002000000000000", "params": { - "source": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", + "source": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8117,7 +8117,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: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (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: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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 @@ -8169,16 +8169,16 @@ Composes a transaction to issue a dividend to holders of a given asset. ``` { "result": { - "rawtransaction": "020000000001012e8481efaa7cb19d0e1cb085017722e90f59356addd8c083b9754afef05195e0000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000236a212fbcc64e92ced155f4327bff8c68b78e572da80fab39dc6c8520da12d6eab7d84e60b3052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "02000000000101629a1a55a170534ace8caa3df91a22a6f73c8d44e01c5f6d79c454d08a38a96a00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000236a217080ed31b543b2ee339312b13dd1028356efaab963f12c626b15df27a0bf9af1e360b3052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -8201,10 +8201,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: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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` @@ -8262,12 +8262,12 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo ``` { "result": { - "rawtransaction": "02000000000101b76b1e014d75389c589c0caf4fb3300779093d37e1f856ece64e092f3ca0a52c000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff0322020000000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea20000000000000000236a2102e070c78ab771f333514e032dadf17d32fbafe887251125a895fe653380cd899324a8052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "020000000001018ba0b023fa73aa2ff93bccd19cf5b5bb64f413f2156fc64cf5b25bd1ae9f4ced00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff032202000000000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd80000000000000000236a21f8e7af26548f10263a98542360afa1939cfeec745f4b82aa032bfd827b5b2a13af24a8052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "transfer_destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "lock": false, "reset": false, @@ -8284,9 +8284,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: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3,bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk,bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (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` @@ -8340,18 +8340,18 @@ Composes a transaction to send multiple payments to multiple addresses. ``` { "result": { - "rawtransaction": "02000000000104c362fd57df40d2f7b22119a6815fb50731e9f0c204afd0a8f346e99f200d6b50000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff3a3512052b1f6c7997c704f47961b99368444bbd463eadc649ef1da0fe2637a6000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff5f7e661150654e0e0f83b21bf8cb2a7f451c42ca7ccbae370ed33989800171bc000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff29765159b762b04db15ca415e182337fd3ee63ba58dc47e17499e4ba0c6c0ea3000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff03e80300000000000069512103193cda2f14eb9990c3645f64b847e85a3b3431b2c285c580970963e5cd4352382103cd8d173fdc35955033030dffc9b7162cc8e2c9ccc2fbe6c273ee9ac076a6966b2103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53aee80300000000000069512103163cda2f14eb9990c34728094aa5e272f2e927d4277b757b2a099de06f313dc72102a32fdf875a521e716b122962b650a43869cb880e0846704d51a6ffac1ac9ba1a2103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53ae61d016a8040000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000002000002000002000000000000", + "rawtransaction": "020000000001045d403484e6cd3b9c7351b8cd4672591e4993bc9e602c00f0e751002fcdce5a1400000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff681d94ee9c101450b7e54672d663bf63c20736d5cc2c0223cc2c3d5be65e052300000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff3294ea38c4e18a1cb8750fa2c7729a8763cedb509ebe782e78413d2e2b675df500000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff27b9c1c3c26fe34df163805de9fbdd03726cc512f6edb1c37747fe770cb1abeb00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff03e8030000000000006951210208458172b4a3d400be809a1b156c59c8098450af72241a24f2c291bcba10bff2210399741568a8870147af5eb7fd6db52327fc36d38a5db849a4968fc43161212fb02103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353aee8030000000000006951210207458172b4a3d400bea3ed76e7a5b1cec3e884bf88b50ad5f89cb74fefac5ed92102c4acdd50c2dcb6021ee43b28f88e5467986138cb0abce82bb4c7a15d0d4e033c2103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353ae61d016a804000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000002000002000002000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", 1 ], [ "MYASSETA", - "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", 2 ] ], @@ -8368,7 +8368,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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 @@ -8423,9 +8423,9 @@ Composes a transaction to place an order on the distributed exchange. ``` { "result": { - "rawtransaction": "02000000000101cb86375524df64335db90ce54dce1900ab55be07e6fbf5d1926c9c24df7eeb41000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000356a3367677a86c8c179ab2b0759445d5eaf57d3cd8831935b82d6f7dde2bd7d380d1dc159be62465afb0d4395a2189be7301a25def78eae052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "02000000000101470aeefc8460adc3d7d43217314977efcb13e84313996c94981926e0ab134f1500000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000356a3351eb067ed8025df87aa31bc50a3cfd8b667cba38b40f78a376613362acf75ff76f528ddc779d94ca1c6d68b0e54a92333543cf8eae052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8442,7 +8442,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -8460,8 +8460,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: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (str, required) - The address that will be receiving the asset + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (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 @@ -8518,10 +8518,10 @@ Composes a transaction to send a quantity of an asset to another address. ``` { "result": { - "rawtransaction": "020000000001012fdb8902a719b60e47881d41705121da58d4d0fa395e4ab2d9e2037db3371c04000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000306a2e01f4666b2fe5e5565753fe504ca3bfa0a62ea05707e35fec17e401e7f1c78ddfe91670b5480821b477f7a966b42ae5af052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "02000000000101865cd70b1713d01302f2c630b2a4039d16068b5d3418b1e6142f36dfd773317900000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000306a2eea85613120d262f8080fa39e970831172c3b902a2f0319c910bb26d0d4cdda9b8ec1cfb05d25a876652fde2293d6e5af052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8546,8 +8546,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: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address that will be sending - + destination: `bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address that will be sending + + destination: `bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (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 @@ -8598,10 +8598,10 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti ``` { "result": { - "rawtransaction": "02000000000101abcb6d0f7e57d9ef1f21b6b8d17ca0ceec47c25353c746c8bcc05b1d50176db1000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000236a21dde8cf439c2cf59dedb19e8012c24601eb5c712f962a2d960ad904e37447684e5860b3052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "02000000000101883fa75bc4939a651bf39cd09fc40bc8b8d7cda75179be83dfde5c20183009b400000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000236a214c01f5eb691e0ef1c9870453c5348c9fc9e461b45eb316a1851155de8b7fa5274d60b3052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "flags": 7, "memo": "FFFF" }, @@ -8615,8 +8615,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: `bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj` (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` @@ -8666,10 +8666,10 @@ Composes a transaction to send BTC to a dispenser. ``` { "result": { - "rawtransaction": "020000000001010e29d0c7518c9353ea93e80a623846c30eb5a9e1aab715f557d1aa033c0c331d02000000160014b886678b2158112c9d7fe7b214a12943c2cabd96ffffffff03e803000000000000160014b77441a3eca05c136080e504fe32114fa79f440600000000000000000c6a0a0e635245f8a5f172a08e66b8082701000000160014b886678b2158112c9d7fe7b214a12943c2cabd9602000000000000", + "rawtransaction": "020000000001019a64dc4268831546b8049e2d83ea7815ad1d57ffb22159a371db0095fe49972602000000160014386a5bb745b1ba84d5953b77406457e9415704a1ffffffff03e8030000000000001600144a5bd60b2d454cc549130f385b94d63db6269c0200000000000000000c6a0a61cbab5b6afe230df59066b8082701000000160014386a5bb745b1ba84d5953b77406457e9415704a102000000000000", "params": { - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "quantity": 1000 }, "name": "dispense" @@ -8682,7 +8682,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address that will be issuing the asset + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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: `` @@ -8764,9 +8764,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. ``` { "result": { - "rawtransaction": "0200000000010183cd1d6970c45152292b562a65b79fe09a5e600ec378a40071f2388d2f5fe36a000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000316a2f426b1088e752ea1523cf0f58f3bc4e3adcb55ebc58b62e1495a6a98242c44f94d406566527b497cec3fcf4e4c4d75fa0af052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "020000000001013fbd5422024abb48ee9485d695285713372b57111294a91b8525f42f6f7cbb2b00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000316a2f9fceca9ab28020e0c6e7a5d05f25606cc61476d39e0a324378237a93a5ef9e0ea6671ea942443176e5ca32a93e4ef9a0af052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -8795,7 +8795,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: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address that will be minting the asset + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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` @@ -8847,15 +8847,15 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto ``` { "result": { - "rawtransaction": "020000000001012d30a7500c68cbf83e00879f9aaf617d11a4d8ac3380d26bdc723e17827ff298000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000166a14717953eef0fe58a00787533c0a36c50746031654dab6052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "020000000001013cf1f96b60f8523ee7061cef5fd17b8a8eaedee6258fe0a1b7d4ce45654e444f00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000166a14da1ae31127f35dbd1e07b60a109f471ac9ee7234dab6052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -8871,10 +8871,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: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address from which the assets are attached + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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: `95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259:1` (str, optional) - The utxo to attach the assets to + + destination: `b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -8924,10 +8924,10 @@ Composes a transaction to attach assets from an address to UTXO. ``` { "result": { - "rawtransaction": "02000000000106c3e4e7faa51091cb31434d98f891ff63d9ab4bfa3638fef5584a5d33698dd0f1000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff7208868743873615492fc442cb0469b4500985817a520dfc89ce18dfdfcddad1000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffffe850de1f07db1a5617f34079a0c96ab6e170d69ffe972aa0c07d09638f671a7c000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffffd73b9e0dc2dae0e017d015420144a8caebb883921cd7c13c3f1bf182d889847f000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff795208397bd023a4f148645b557dd60c8c1fb8daf54a70968417452d1a193bf0000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffffba3971c0e4dc16230f6cb612c66c808c9d246e107cd427c9be25d01ff1de0750000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff04e80300000000000069512102169a36a17a3fd9bdad6aa0732270d8f48af934b7a0e8560dc917a0967dccf9ca2103c71ab6ae3c45a320fa77a5375bca58f1522d764a34dea50460c522393ff118042103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53aee80300000000000069512103169a36a17a3fd9bdad37f22931678bbd8aad3ef5f6ee585fd716aad175cdfa5c2102d75ca3a62056fd36a077fa3014c80ca31d237e4a239cf74069c7206e3fa41e232103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53aee803000000000000695121033c9a36a17a3fd9bdad3ef025693ed8f9e1df0cbaffee505cb372cee113fa9c5c2102b36dc7974635cf53c342c35223fd35c528144e7e46ac967859f0415b5c952ba02103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53aee83922fc060000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106fd27c9dfe14c2a77d55756f4ee13ec395595c857d40fd4a86fe8e1a9c36a87dc00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffffa61d11b7b871670fa79bbf46d37067ccdc812dda8997e9a5d5e3cd8fb9f8263600000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffffee6f9d6281382259986a7502887428c9a4b238f8f195c6831ba7ec1467bce1e300000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff08ca50fcfcd4f9e2363685d8cf27114e8b2cb12e9a1834dd68baade344948d5600000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff1e9a4fc8c1da01c2f0a699296267510892b8049e35c878e376cdbdb13e7e06e500000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffffd6c595074a7ce05e2655e5298d419338b07f5a31a7ed947cab076a109afb0d5a00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff04e80300000000000069512102331217b11cb7bc62051cf80482082680301db962d8e93434c4531fbb124606e32103b506e22e605f706292b93191c97e47bc498b38bb6ccbb64cfbb5a487561497ba2103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353aee80300000000000069512103331217b11cb7bc62054dab03c24925c53c42f52e8cef6927ca104cb8460549e42102f350e7213a1f2469cde862908b6518fe4cd533be798abe52fdb5a6da0544c7a12103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353aee80300000000000069512103191217b11cb7bc62051efc02c746268d5d359164d9ef3c72f220788b76367f002102c136d019082a160afc8b5aa6be042fcb2ae6018f1cb3dd309982c7e36326f3192103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353aee83922fc06000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259:1", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -8949,8 +8949,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: `7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0:1` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to detach the assets to + + utxo: `28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220:1` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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 @@ -9001,10 +9001,10 @@ Composes a transaction to detach assets from UTXO to an address. ``` { "result": { - "rawtransaction": "02000000000101b0d1ca820241ba400ce54d7ded428a0485dbf23ebf7937a56b9444ce7da5547101000000160014633245262e8c4ef8f94eb9165ebae1a0fe40c215ffffffff04e8030000000000006951210388aa019aeba2ab77565a7694fa505dbebb46ca9838a58f6f224b3455d89511ed21020924cfc398c384d2d033c83eeb6c41c2a25b58972b8bec897d2aff57df4dc1992103aaabeadab75a0d114731762081b21f2d826877d3986fc352a23ae12431d7e13953aee8030000000000006951210288aa019aeba2ab77560a7095fd5c0ee8ed46989f3cab8727764a2714dad315d02103552ed89ecb93d7ccd7658a60e9315481e10746d023ccb1d92e7fe454821bdad32103aaabeadab75a0d114731762081b21f2d826877d3986fc352a23ae12431d7e13953aee80300000000000069512102a2aa019aeba2ab7756077991bd160ff7d461f9813da1866b14295560eba2260321023046a9f0fda5b6b6b20bfd0edf5420f6903e3ca04fbf88ec481a9c63ef2fa01a2103aaabeadab75a0d114731762081b21f2d826877d3986fc352a23ae12431d7e13953aef498082701000000160014633245262e8c4ef8f94eb9165ebae1a0fe40c21502000000000000", + "rawtransaction": "0200000000010120829d2d32e93049620018aaf84a30db1526d8492ab2126cd94294e9a11dc02801000000160014868ddcf66027a85e5173ab966513d76bacc08c9cffffffff04e803000000000000695121036c4b4a849e8af6cf00b9b8d565354d479463dbe85f4200079bd95035229727192102d93bb440a25968ff4ed35f4b9243117d8eb4726d6e9d1262384c7998d64b827021030f3089de8881f2438da4d941cac5f57df85c6692d0ddcf89f713e22f1172f2c253aee803000000000000695121036c4b4a849e8af6cf00b8b3de3437181a916a8ce3564c05499d83142222d4709a21028071af44ad0526fb0b855a4b80095579dde5227969c44460634d3cd6870fd1b121030f3089de8881f2438da4d941cac5f57df85c6692d0ddcf89f713e22f1172f2c253aee80300000000000069512103464b4a849e8af6cf00b0b3d9767d175fad11eead57460405ffe0665613a545d12102eb09d5749b3d50cd78e26a2ff0702149efd24a0c0fac2a52087a4bacef78b2a521030f3089de8881f2438da4d941cac5f57df85c6692d0ddcf89f713e22f1172f2c253aef498082701000000160014868ddcf66027a85e5173ab966513d76bacc08c9c02000000000000", "params": { - "source": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0:1", - "destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220:1", + "destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9064,8 +9064,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 10000000000, @@ -9073,16 +9073,16 @@ Returns the valid assets "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726742070, - "last_issuance_block_time": 1726742078, + "first_issuance_block_time": 1726743052, + "last_issuance_block_time": 1726743070, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", - "owner": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", + "issuer": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", + "owner": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", "divisible": true, "locked": false, "supply": 100000000000, @@ -9090,16 +9090,16 @@ Returns the valid assets "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1726742065, - "last_issuance_block_time": 1726742065, + "first_issuance_block_time": 1726743048, + "last_issuance_block_time": 1726743048, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 100000000000, @@ -9107,16 +9107,16 @@ Returns the valid assets "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726742030, - "last_issuance_block_time": 1726742030, + "first_issuance_block_time": 1726743013, + "last_issuance_block_time": 1726743013, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 40, @@ -9124,16 +9124,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726741978, - "last_issuance_block_time": 1726741983, + "first_issuance_block_time": 1726742962, + "last_issuance_block_time": 1726742966, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 19, @@ -9141,8 +9141,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726741952, - "last_issuance_block_time": 1726741974, + "first_issuance_block_time": 1726742946, + "last_issuance_block_time": 1726742957, "supply_normalized": "0.00000019" } ], @@ -9170,8 +9170,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 10000000000, @@ -9179,8 +9179,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1726741913, - "last_issuance_block_time": 1726741926, + "first_issuance_block_time": 1726742908, + "last_issuance_block_time": 1726742920, "supply_normalized": "100.00000000" } } @@ -9211,7 +9211,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9219,14 +9219,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9234,7 +9234,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -9251,7 +9251,7 @@ Returns the asset balances Returns the balance of an address and asset + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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` @@ -9263,7 +9263,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -9312,9 +9312,9 @@ Returns the orders of an asset "result": [ { "tx_index": 57, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9329,7 +9329,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726742203, + "block_time": 1726743189, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9355,9 +9355,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "block_index": 190, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9372,7 +9372,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726742198, + "block_time": 1726743185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9398,9 +9398,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "tx_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "block_index": 186, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -9415,7 +9415,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726742182, + "block_time": 1726743168, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9441,9 +9441,9 @@ Returns the orders of an asset }, { "tx_index": 50, - "tx_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "tx_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "block_index": 185, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -9458,7 +9458,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726742178, + "block_time": 1726743164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9484,9 +9484,9 @@ Returns the orders of an asset }, { "tx_index": 49, - "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", "block_index": 186, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9501,7 +9501,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726742182, + "block_time": 1726743168, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9561,13 +9561,13 @@ Returns the orders of an asset { "result": [ { - "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "tx0_index": 49, - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 52, - "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", - "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -9581,7 +9581,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726742182, + "block_time": 1726743168, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9601,13 +9601,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "tx0_index": 49, - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 50, - "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", - "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -9621,7 +9621,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726742178, + "block_time": 1726743164, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9641,13 +9641,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", "tx0_index": 47, - "tx0_hash": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 48, - "tx1_hash": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", - "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "tx1_hash": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -9661,7 +9661,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726742099, + "block_time": 1726743090, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9741,20 +9741,20 @@ Returns the credits of an asset "result": [ { "block_index": 192, - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -9762,20 +9762,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "47f1796c49d5b94f0d524615742f610807a0c76df2208ea05990b7ad444c8ecc", + "event": "a067ff65963d10f1ef8f3d33058456506bf8d8dff9fe6e30436e77d40da1b4a8", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726741926, + "block_time": 1726742920, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -9783,20 +9783,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8", + "event": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726741922, + "block_time": 1726742916, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -9804,20 +9804,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", + "event": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726741922, + "block_time": 1726742916, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -9829,16 +9829,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8", + "event": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726741922, + "block_time": 1726742916, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -9894,16 +9894,16 @@ Returns the debits of an asset "result": [ { "block_index": 193, - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "event": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -9915,16 +9915,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -9936,16 +9936,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -9957,16 +9957,16 @@ Returns the debits of an asset }, { "block_index": 191, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "event": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742203, + "block_time": 1726743189, "asset_info": { "divisible": true, "asset_longname": null, @@ -9978,16 +9978,16 @@ Returns the debits of an asset }, { "block_index": 189, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742194, + "block_time": 1726743181, "asset_info": { "divisible": true, "asset_longname": null, @@ -10027,20 +10027,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 40, - "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", + "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", "block_index": 153, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726742056, + "block_time": 1726743039, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -10084,14 +10084,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "47f1796c49d5b94f0d524615742f610807a0c76df2208ea05990b7ad444c8ecc", + "tx_hash": "a067ff65963d10f1ef8f3d33058456506bf8d8dff9fe6e30436e77d40da1b4a8", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -10106,20 +10106,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726741926, + "block_time": 1726742920, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8", + "tx_hash": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -10134,20 +10134,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726741922, + "block_time": 1726742916, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", + "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -10162,20 +10162,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726741917, + "block_time": 1726742912, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -10190,7 +10190,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1726741913, + "block_time": 1726742908, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10224,10 +10224,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10235,7 +10235,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "divisible": true, "asset_longname": null, @@ -10248,10 +10248,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 53, - "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a", + "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3", "block_index": 187, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10259,7 +10259,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742186, + "block_time": 1726743172, "asset_info": { "divisible": true, "asset_longname": null, @@ -10272,10 +10272,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 42, - "tx_hash": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", + "tx_hash": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", "block_index": 155, - "source": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53:0", - "destination": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0:1", + "source": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a:0", + "destination": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10283,7 +10283,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742065, + "block_time": 1726743048, "asset_info": { "divisible": true, "asset_longname": null, @@ -10296,10 +10296,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 41, - "tx_hash": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53", + "tx_hash": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a", "block_index": 154, - "source": "e974db4d2a2886a23059fbe96759e378c4ae1d6277cac9700a15a7eb3bf610b4:0", - "destination": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53:0", + "source": "0debf18cd260e30cfa40e908abba0d11fd931bf61bac639d0c3c6a3c4dffd0ad:0", + "destination": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10307,7 +10307,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742060, + "block_time": 1726743043, "asset_info": { "divisible": true, "asset_longname": null, @@ -10356,18 +10356,18 @@ Returns the dispensers of an asset "result": [ { "tx_index": 32, - "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "last_status_tx_hash": null, - "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10377,7 +10377,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726742026, + "block_time": 1726743009, "asset_info": { "divisible": true, "asset_longname": null, @@ -10393,9 +10393,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", + "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", "block_index": 144, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10404,7 +10404,7 @@ Returns the dispensers of an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10414,7 +10414,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742017, + "block_time": 1726743000, "asset_info": { "divisible": true, "asset_longname": null, @@ -10430,9 +10430,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "14e387be9e1d2957f2fcb38bf2ad065ab35a588822f35dc6035d96abc00eb960", + "tx_hash": "d2babdd8ac4bb366d33be8955dd3360e02b0fedd8e3167db62af445fc82eac8c", "block_index": 142, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10441,7 +10441,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "origin": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10451,7 +10451,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742008, + "block_time": 1726742992, "asset_info": { "divisible": true, "asset_longname": null, @@ -10467,9 +10467,9 @@ Returns the dispensers of an asset }, { "tx_index": 26, - "tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10478,7 +10478,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10488,7 +10488,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -10513,7 +10513,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - The address to return + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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` @@ -10526,9 +10526,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", + "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", "block_index": 144, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10537,7 +10537,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10547,7 +10547,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742017, + "block_time": 1726743000, "asset_info": { "divisible": true, "asset_longname": null, @@ -10597,7 +10597,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -10605,7 +10605,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -10614,7 +10614,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -10622,7 +10622,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -10631,7 +10631,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -10639,7 +10639,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -10648,7 +10648,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -10685,27 +10685,27 @@ Returns the dispenses of an asset { "tx_index": 33, "dispense_index": 0, - "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", - "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "last_status_tx_hash": null, - "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10720,7 +10720,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726742026, + "block_time": 1726743009, "asset_info": { "divisible": true, "asset_longname": null, @@ -10734,19 +10734,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", + "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10754,7 +10754,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10769,7 +10769,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -10783,19 +10783,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", + "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", "block_index": 140, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10803,7 +10803,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10818,7 +10818,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726741999, + "block_time": 1726742983, "asset_info": { "divisible": true, "asset_longname": null, @@ -10861,8 +10861,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 0, @@ -10870,8 +10870,8 @@ Returns asset subassets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1726742074, - "last_issuance_block_time": 1726742074, + "first_issuance_block_time": 1726743066, + "last_issuance_block_time": 1726743066, "supply_normalized": "0.00000000" } ], @@ -10903,10 +10903,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -10931,7 +10931,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726741926 + "block_time": 1726742920 } ], "next_cursor": null, @@ -10962,64 +10962,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "47f1796c49d5b94f0d524615742f610807a0c76df2208ea05990b7ad444c8ecc", + "tx_hash": "a067ff65963d10f1ef8f3d33058456506bf8d8dff9fe6e30436e77d40da1b4a8", "tx_index": 13, "block_index": 125, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", - "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741926, + "block_time": 1726742920, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } }, { - "tx_hash": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8", + "tx_hash": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad", "tx_index": 12, "block_index": 124, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", - "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741922, + "block_time": 1726742916, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } }, { - "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", + "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", "tx_index": 11, "block_index": 123, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741917, + "block_time": 1726742912, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } @@ -11035,7 +11035,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn` (str, required) - The address of the mints to return + + address: `bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (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` @@ -11054,22 +11054,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", + "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", "tx_index": 11, "block_index": 123, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741917, + "block_time": 1726742912, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } @@ -11113,9 +11113,9 @@ Returns all the orders "result": [ { "tx_index": 57, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11130,7 +11130,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726742203, + "block_time": 1726743189, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11156,9 +11156,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "block_index": 190, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11173,7 +11173,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726742198, + "block_time": 1726743185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11199,9 +11199,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "tx_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "block_index": 186, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11216,7 +11216,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726742182, + "block_time": 1726743168, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11242,9 +11242,9 @@ Returns all the orders }, { "tx_index": 50, - "tx_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "tx_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "block_index": 185, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11259,7 +11259,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726742178, + "block_time": 1726743164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11285,9 +11285,9 @@ Returns all the orders }, { "tx_index": 49, - "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", "block_index": 186, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11302,7 +11302,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726742182, + "block_time": 1726743168, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11337,7 +11337,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d` (str, required) - The hash of the transaction that created the order + + order_hash: `d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b` (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. @@ -11349,9 +11349,9 @@ Returns the information of an order { "result": { "tx_index": 57, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11366,7 +11366,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726742203, + "block_time": 1726743189, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11398,7 +11398,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d` (str, required) - The hash of the transaction that created the order + + order_hash: `df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5` (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 @@ -11423,13 +11423,13 @@ Returns the order matches of an order { "result": [ { - "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "tx0_index": 49, - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 52, - "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", - "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11443,7 +11443,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726742182, + "block_time": 1726743168, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11463,13 +11463,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "tx0_index": 49, - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 50, - "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", - "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11483,7 +11483,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726742178, + "block_time": 1726743164, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11513,7 +11513,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d` (str, required) - The hash of the transaction that created the order + + order_hash: `df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5` (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 @@ -11532,15 +11532,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 51, - "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", + "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", "block_index": 185, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "btc_amount": 2000, - "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "status": "valid", "confirmed": true, - "block_time": 1726742178, + "block_time": 1726743164, "btc_amount_normalized": "0.00002000" } ], @@ -11582,9 +11582,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 57, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11602,7 +11602,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726742203, + "block_time": 1726743189, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11628,9 +11628,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "block_index": 190, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11648,7 +11648,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726742198, + "block_time": 1726743185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11674,9 +11674,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "tx_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "block_index": 186, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11694,7 +11694,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726742182, + "block_time": 1726743168, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11720,9 +11720,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "tx_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "block_index": 185, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11740,7 +11740,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726742178, + "block_time": 1726743164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11766,9 +11766,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", "block_index": 186, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11786,7 +11786,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726742182, + "block_time": 1726743168, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11847,13 +11847,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "tx0_index": 49, - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 52, - "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", - "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11870,7 +11870,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726742182, + "block_time": 1726743168, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11890,13 +11890,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "tx0_index": 49, - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 50, - "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", - "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11913,7 +11913,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726742178, + "block_time": 1726743164, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11933,13 +11933,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", "tx0_index": 47, - "tx0_hash": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 48, - "tx1_hash": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", - "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "tx1_hash": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -11956,7 +11956,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726742099, + "block_time": 1726743090, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12012,13 +12012,13 @@ Returns all the order matches { "result": [ { - "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "tx0_index": 49, - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 52, - "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", - "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12032,7 +12032,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726742182, + "block_time": 1726743168, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12052,13 +12052,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "tx0_index": 49, - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 50, - "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", - "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12072,7 +12072,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726742178, + "block_time": 1726743164, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12092,13 +12092,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", "tx0_index": 47, - "tx0_hash": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 48, - "tx1_hash": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", - "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "tx1_hash": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12112,7 +12112,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726742099, + "block_time": 1726743090, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12280,66 +12280,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "9f284d873f6c69ac2600ac8d935d6f4a50e0fff2ed36747baffff21663a4e8cb", + "tx_hash": "8cb6afe98c6fd78fe63d3400ff07363c80671a5aa675d073676e7be684d2d8a7", "block_index": 121, - "source": "bcrt1qzg7g6s9ckm9rsj4q55s6l4fjzlnzjs60l2vdx3", + "source": "bcrt1qsvdraccy4y6g937r7kzwjttq6j7htuuzvuzcpx", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1726741908, + "block_time": 1726742903, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "89ed825c9cf3546a5f10d5021f0de833325bd577c6423d24f9409fda0a5cadc2", + "tx_hash": "35c14d3851228713850558049f8ef10ae51d6653920573a6969cb1b7baa4fc62", "block_index": 120, - "source": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", + "source": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1726741904, + "block_time": 1726742899, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "78df88b3adbb8b49fb1040da6e6973d680237b0847b9ef6f91137009d30ea949", + "tx_hash": "baf2f258040ff731a98db0127f9b7e60175906c48cf36ddc978fa4c385e02b54", "block_index": 119, - "source": "bcrt1qv6q5lqz5p7z2e2c5z998s80k4vy8pa6xx7kh96", + "source": "bcrt1qqqrd70rps4uzjnfwyd8n88d4h0ytlrf9hte2xs", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1726741899, + "block_time": 1726742895, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "3b64d401cd3e96fd0196bdc830b4d519086eb3279527a69eb1cbfe9f7af866bf", + "tx_hash": "0628b5a3f2bde30471935b31d3997d20ee6fa78118c88421e24a2c8bba32a38d", "block_index": 118, - "source": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", + "source": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1726741895, + "block_time": 1726742890, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "dbd8a5e46a6800eda8df27b5e6499018089f141906c6199ecb3636f9e9da57a6", + "tx_hash": "ac90cd09ee4c1693a9a5eb34f190055f9e1a1d3f9096a01e96a77ffff5f3bdd0", "block_index": 117, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1726741891, + "block_time": 1726742886, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12382,18 +12382,18 @@ Returns all dispensers "result": [ { "tx_index": 32, - "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "last_status_tx_hash": null, - "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -12403,7 +12403,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726742026, + "block_time": 1726743009, "asset_info": { "divisible": true, "asset_longname": null, @@ -12419,9 +12419,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", + "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", "block_index": 144, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -12430,7 +12430,7 @@ Returns all dispensers "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12440,7 +12440,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742017, + "block_time": 1726743000, "asset_info": { "divisible": true, "asset_longname": null, @@ -12456,9 +12456,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "14e387be9e1d2957f2fcb38bf2ad065ab35a588822f35dc6035d96abc00eb960", + "tx_hash": "d2babdd8ac4bb366d33be8955dd3360e02b0fedd8e3167db62af445fc82eac8c", "block_index": 142, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12467,7 +12467,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "origin": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12477,7 +12477,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742008, + "block_time": 1726742992, "asset_info": { "divisible": true, "asset_longname": null, @@ -12493,9 +12493,9 @@ Returns all dispensers }, { "tx_index": 26, - "tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12504,7 +12504,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12514,7 +12514,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -12539,7 +12539,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f` (str, required) - The hash of the dispenser to return + + dispenser_hash: `209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d` (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. @@ -12551,9 +12551,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12562,7 +12562,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12572,7 +12572,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -12594,7 +12594,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f` (str, required) - The hash of the dispenser to return + + dispenser_hash: `209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d` (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 @@ -12614,19 +12614,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", + "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12634,7 +12634,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12649,7 +12649,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -12663,19 +12663,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", + "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", "block_index": 140, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12683,7 +12683,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12698,7 +12698,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726741999, + "block_time": 1726742983, "asset_info": { "divisible": true, "asset_longname": null, @@ -12740,20 +12740,20 @@ Returns all the dividends "result": [ { "tx_index": 40, - "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", + "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", "block_index": 153, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726742056, + "block_time": 1726743039, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -12778,7 +12778,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28` (str, required) - The hash of the dividend to return + + dividend_hash: `a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc` (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. @@ -12790,20 +12790,20 @@ Returns a dividend by its hash { "result": { "tx_index": 40, - "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", + "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", "block_index": 153, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726742056, + "block_time": 1726743039, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -12825,7 +12825,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc` (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 @@ -12848,12 +12848,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", + "event": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", "tx_index": 40, - "utxo": "e974db4d2a2886a23059fbe96759e378c4ae1d6277cac9700a15a7eb3bf610b4:0", - "utxo_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "utxo": "0debf18cd260e30cfa40e908abba0d11fd931bf61bac639d0c3c6a3c4dffd0ad:0", + "utxo_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "confirmed": true, - "block_time": 1726742056, + "block_time": 1726743039, "asset_info": { "divisible": true, "asset_longname": null, @@ -12865,16 +12865,16 @@ Returns a dividend distribution by its hash }, { "block_index": 153, - "address": "bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy", + "address": "bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", + "event": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742056, + "block_time": 1726743039, "asset_info": { "divisible": true, "asset_longname": null, @@ -12920,27 +12920,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", - "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", + "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", + "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", "transaction_count": 1, - "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", - "block_time": 1726742211 + "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", + "block_time": 1726743198 }, "tx_hash": null, "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "tx_index": 59 }, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 }, { "event_index": 533, @@ -12949,12 +12949,12 @@ Returns all events "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "status": "valid", "tag": "64657374726f79", - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "tx_index": 59, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -12964,24 +12964,24 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 193, - "event": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "event": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -12991,25 +12991,25 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", "block_index": 193, - "block_time": 1726742211, + "block_time": 1726743198, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "tx_index": 59, - "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", + "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -13029,9 +13029,9 @@ Returns all events }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 } ], "next_cursor": 530, @@ -13059,15 +13059,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", - "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", + "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", + "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", "transaction_count": 1, - "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", - "block_time": 1726742211 + "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", + "block_time": 1726743198 }, "tx_hash": null, "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 } } ``` @@ -13145,16 +13145,16 @@ Returns the events filtered by event name "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -13164,78 +13164,78 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726742198, + "block_time": 1726743185, "asset_info": { "divisible": true, "asset_longname": null, @@ -13245,24 +13245,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "block_index": 190, - "block_time": 1726742198 + "block_time": 1726743185 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "event": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "divisible": true, "asset_longname": null, @@ -13272,9 +13272,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "block_time": 1726742190 + "block_time": 1726743177 } ], "next_cursor": 490, @@ -13330,27 +13330,27 @@ Returns all the dispenses { "tx_index": 33, "dispense_index": 0, - "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", - "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "last_status_tx_hash": null, - "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13365,7 +13365,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726742026, + "block_time": 1726743009, "asset_info": { "divisible": true, "asset_longname": null, @@ -13379,19 +13379,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", + "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13399,7 +13399,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13414,7 +13414,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -13428,19 +13428,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", + "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", "block_index": 140, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13448,7 +13448,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13463,7 +13463,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726741999, + "block_time": 1726742983, "asset_info": { "divisible": true, "asset_longname": null, @@ -13505,10 +13505,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -13516,7 +13516,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "divisible": true, "asset_longname": null, @@ -13529,10 +13529,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13540,11 +13540,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -13553,10 +13553,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13564,11 +13564,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -13577,10 +13577,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 53, - "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a", + "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3", "block_index": 187, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -13588,7 +13588,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742186, + "block_time": 1726743172, "asset_info": { "divisible": true, "asset_longname": null, @@ -13601,10 +13601,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 42, - "tx_hash": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", + "tx_hash": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", "block_index": 155, - "source": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53:0", - "destination": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0:1", + "source": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a:0", + "destination": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -13612,7 +13612,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742065, + "block_time": 1726743048, "asset_info": { "divisible": true, "asset_longname": null, @@ -13654,14 +13654,14 @@ Returns all the issuances "result": [ { "tx_index": 46, - "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", + "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -13676,20 +13676,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742082, + "block_time": 1726743075, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "66542eb84d234807eb104350179c31c8f1b00e559ca82b489588629cb3fd8bfe", + "tx_hash": "02aeb11d1f8356db859ac3dd71599fbe3da1c8e3d517cf4a171e9e980045e2a1", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -13704,20 +13704,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726742078, + "block_time": 1726743070, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "fa63823d4d5818572e21737b9de669bcd5d05afc5b9e8cfb8cf525732deb75c8", + "tx_hash": "dd63df7abf9b1ae09c158bce761f704944f67bb94cc345329b4b926372bc11c9", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -13732,20 +13732,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742074, + "block_time": 1726743066, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "b7b8e84e938d9c5e88b764466dd7ab16843b7874731d10e0853fded80b2f08d2", + "tx_hash": "735d36c3e66e9e8eca66da2247ef421376f463c3a71166b90f79a1fb65c39ce0", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -13760,20 +13760,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742070, + "block_time": 1726743052, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", + "tx_hash": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", - "issuer": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", + "source": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", + "issuer": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", "transfer": false, "callable": false, "call_date": 0, @@ -13788,7 +13788,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742065, + "block_time": 1726743048, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -13803,7 +13803,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655` (str, required) - The hash of the transaction to return + + tx_hash: `59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a` (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. @@ -13815,14 +13815,14 @@ Returns the issuances of a block { "result": { "tx_index": 46, - "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", + "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -13837,7 +13837,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742082, + "block_time": 1726743075, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -13869,16 +13869,16 @@ Returns all sweeps "result": [ { "tx_index": 58, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "fee_paid_normalized": "0.00600000" } ], @@ -13892,7 +13892,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08` (str, required) - The hash of the transaction to return + + tx_hash: `fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d` (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. @@ -13905,16 +13905,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 58, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "fee_paid_normalized": "0.00600000" } ], @@ -13948,9 +13948,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696", + "tx_hash": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20", "block_index": 138, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -13958,14 +13958,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726741991, + "block_time": 1726742975, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "60e53d18f1a227ad4ad75ba9854b8c64c4dceeb7c98514be938945b616fa342e", + "tx_hash": "5966fd52717602850bfb43b55f7da2b2e0c9be1896b41b65c6f9bf5b0e1099ab", "block_index": 137, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -13973,7 +13973,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726741987, + "block_time": 1726742970, "fee_fraction_int_normalized": "0.00000000" } ], @@ -13987,7 +13987,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696` (str, required) - The hash of the transaction to return + + tx_hash: `a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20` (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. @@ -13999,9 +13999,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696", + "tx_hash": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20", "block_index": 138, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14009,7 +14009,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726741991, + "block_time": 1726742975, "fee_fraction_int_normalized": "0.00000000" } } @@ -14039,10 +14039,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", + "tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", "tx_index": 22, "block_index": 135, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14067,13 +14067,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726741978 + "block_time": 1726742962 }, { - "tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", + "tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", "tx_index": 18, "block_index": 131, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14098,13 +14098,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726741952 + "block_time": 1726742946 }, { - "tx_hash": "ac047163f3cd9094f4ee2103b832d0064228aa5f2a7fc8e3104ee775fb181f84", + "tx_hash": "630338ac26f1db216809652acb490bc36058561df42b4800c28e5064bc629a2f", "tx_index": 14, "block_index": 130, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14129,13 +14129,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726741947 + "block_time": 1726742942 }, { - "tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14160,7 +14160,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726741926 + "block_time": 1726742920 } ], "next_cursor": null, @@ -14203,7 +14203,7 @@ Returns the mints by fairminter Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs,bcrt1qv6q5lqz5p7z2e2c5z998s80k4vy8pa6xx7kh96` (str, required) - The addresses to search for + + addresses: `bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g,bcrt1qqqrd70rps4uzjnfwyd8n88d4h0ytlrf9hte2xs` (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. @@ -14222,8 +14222,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", - "address": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs" + "txid": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "address": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g" }, { "vout": 2, @@ -14231,8 +14231,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", - "address": "bcrt1qv6q5lqz5p7z2e2c5z998s80k4vy8pa6xx7kh96" + "txid": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", + "address": "bcrt1qqqrd70rps4uzjnfwyd8n88d4h0ytlrf9hte2xs" } ], "next_cursor": null, @@ -14245,7 +14245,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell` (str, required) - The address to search for + + address: `bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v` (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 @@ -14261,28 +14261,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" + "tx_hash": "2ff828784db699b93166c91bdc316c84bddfdb710a3c1d1f68665a7198728737" }, { - "tx_hash": "6564cd91f7e12c026702aef3fbe3095b8ff3e5d2ed77b36fe77bb02e77edc008" + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" }, { - "tx_hash": "96eddd62d0c04fd85a4cb6efc84b8857dc122efc29a2be60ea2356b65edab324" + "tx_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62" }, { - "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a" + "tx_hash": "d87b786b54a63498e93c8c2782a91997eb80f69458ca2ffe70320eef27155f6a" }, { - "tx_hash": "daabc4181b5c356b166fd9efb6056720fec8a1d81871b9c5b091a499e81e663f" + "tx_hash": "e4bcefdccfc18fddbc4afe4282d88bfa16c2de310ab0d2a3117b800f68102f7f" }, { - "tx_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285" + "tx_hash": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad" }, { - "tx_hash": "4d1c559a2f4b46484dd28d82a0544b0606eafb203419cf378deafd53670c77f7" + "tx_hash": "00199dce5d95beedbb99993b1c89f7a9d6b10e5fe571601ac03c7f5922de2ae2" }, { - "tx_hash": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8" + "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3" } ], "next_cursor": null, @@ -14295,7 +14295,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz` (str, required) - The address to search for. + + address: `bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn` (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. @@ -14308,8 +14308,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 6, - "tx_hash": "a3fcc89690570455bec8e267f71157a48c131d570d442b663e284be039eeb34e" + "block_index": 9, + "tx_hash": "ca276a9e0fcccc10f25da14f88b9a9d1aaa1d9aa119e44716e66bdbf6fa97cc9" } } ``` @@ -14319,7 +14319,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs` (str, required) - The address to search for + + address: `bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g` (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 @@ -14340,7 +14340,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503" + "txid": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc" } ], "next_cursor": null, @@ -14353,7 +14353,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3` (str, required) - Address to get pubkey for. + + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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. @@ -14365,7 +14365,7 @@ Get pubkey for an address. ``` { - "result": "03c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb" + "result": "03471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d3" } ``` @@ -14374,7 +14374,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02` (str, required) - The transaction hash + + tx_hash: `086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7` (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. @@ -14386,7 +14386,7 @@ Get a transaction from the blockchain ``` { - "result": "0200000000010164ff2ceaab1f3a9b87431b23953e9c868f56f68ff92e5d0e47a7de52c5f0c8e40300000000ffffffff020000000000000000226a20df99d5f70aac5d275d047efe402704859d87a960c87d935e7f9c9c5999d75995680b0a2701000000160014b77441a3eca05c136080e504fe32114fa79f44060247304402207eea08e8ad9d3195d75bbafeb77a08ae08ae5f57e3a0901abd0e894fabac9e400220255fbdf5cccee2fcb70df80c658e4d8b74b3a14ea501634895abfb08b1b310ff012103c00ed866f6a66b1786e3fdf10ad429bdfef2bf782fe2eae745580ae546dcb96300000000" + "result": "02000000000101090f8194f8c91a1d69cea412e0e0ee2a81bbeef1b1386738dcfca87c60c571de0300000000ffffffff020000000000000000226a2066219dcdea1454a56b714138ca78be964ca44c1cb07456da31c97a272364d074680b0a27010000001600144a5bd60b2d454cc549130f385b94d63db6269c02024730440220014095efb57789cc7f02e982530a3eeaed1c3e3fd7dd80590bdaf44c193f3f68022044a2ddffc13fe034cd51684e3fb39a5c090ae9631dc0735f38c68d298fb54a8c0121020cb277fa643a47f001fd66be1b219cd0a025338e3d793d3482eb2d1d81209c2c00000000" } ``` @@ -14479,26 +14479,26 @@ Returns all mempool events { "result": [ { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "tx_index": 60 } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "memo": null, "quantity": 10000, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "status": "valid", - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "tx_index": 60, "asset_info": { "divisible": true, @@ -14511,19 +14511,19 @@ Returns all mempool events } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "CREDIT", "params": { - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -14535,19 +14535,19 @@ Returns all mempool events } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 193, - "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -14559,27 +14559,27 @@ Returns all mempool events } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726742226.132691, + "block_time": 1726743212.580398, "btc_amount": 0, - "data": "0200000000000000010000000000002710809668fa89c3fb02c8b7a891003a3773f6eed4a656", + "data": "0200000000000000010000000000002710806a51cc766215db7e153afcd60bb43d6c1c61cff8", "destination": "", "fee": 10000, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "tx_index": 60, - "utxos_info": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b:1", + "utxos_info": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "memo": null, "asset_info": { "divisible": true, @@ -14623,19 +14623,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "CREDIT", "params": { - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -14657,7 +14657,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b` (str, required) - The hash of the transaction to return + + tx_hash: `501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b` (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 @@ -14677,26 +14677,26 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "tx_index": 60 } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "memo": null, "quantity": 10000, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "status": "valid", - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "tx_index": 60, "asset_info": { "divisible": true, @@ -14709,19 +14709,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "CREDIT", "params": { - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -14733,19 +14733,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 193, - "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -14757,27 +14757,27 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726742226.132691, + "block_time": 1726743212.580398, "btc_amount": 0, - "data": "0200000000000000010000000000002710809668fa89c3fb02c8b7a891003a3773f6eed4a656", + "data": "0200000000000000010000000000002710806a51cc766215db7e153afcd60bb43d6c1c61cff8", "destination": "", "fee": 10000, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "tx_index": 60, - "utxos_info": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b:1", + "utxos_info": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "memo": null, "asset_info": { "divisible": true, diff --git a/counterparty-core/counterpartycore/lib/api/api_v1.py b/counterparty-core/counterpartycore/lib/api/api_v1.py index 2a3b51ee23..6c5c419c53 100644 --- a/counterparty-core/counterpartycore/lib/api/api_v1.py +++ b/counterparty-core/counterpartycore/lib/api/api_v1.py @@ -565,9 +565,10 @@ def create_method(**kwargs): transaction.split_compose_params(**kwargs) ) with self.connection_pool.connection() as db: - return transaction.compose_transaction( + rawtransaction, data = transaction.compose_transaction( db, name=tx, params=transaction_args, api_v1=True, **common_args ) + return rawtransaction except ( TypeError, script.AddressError, @@ -1184,7 +1185,7 @@ def handle_rest(path_args, flask_request): # Compose the transaction. try: with self.connection_pool.connection() as db: - query_data = transaction.compose_transaction( + query_data, data = transaction.compose_transaction( db, name=query_type, params=transaction_args, **common_args ) except ( diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index e4728b4297..507b4d1936 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -1278,8 +1278,9 @@ def compose_transaction( tx_info = compose_method(db, **params) + data = config.PREFIX + tx_info[2] if return_only_data: - return config.PREFIX + tx_info[2] + return data raw_transaction = construct( db, @@ -1310,7 +1311,7 @@ def compose_transaction( if return_psbt: psbt = backend.bitcoind.convert_to_psbt(raw_transaction) return psbt - return raw_transaction + return raw_transaction, data COMPOSABLE_TRANSACTIONS = [ @@ -1384,7 +1385,7 @@ def compose_bet( "leverage": leverage, "expiration": expiration, } - rawtransaction = compose_transaction( + rawtransaction, data = compose_transaction( db, name="bet", params=params, @@ -1394,6 +1395,7 @@ def compose_bet( get_key_name(**construct_args): rawtransaction, "params": params, "name": "bet", + "data": data, } @@ -1415,7 +1417,7 @@ def compose_broadcast( "fee_fraction": fee_fraction, "text": text, } - rawtransaction = compose_transaction( + rawtransaction, data = compose_transaction( db, name="broadcast", params=params, @@ -1425,6 +1427,7 @@ def compose_broadcast( get_key_name(**construct_args): rawtransaction, "params": params, "name": "broadcast", + "data": data, } @@ -1435,7 +1438,7 @@ def compose_btcpay(db, address: str, order_match_id: str, **construct_args): :param order_match_id: The ID of the order match to pay for (e.g. $LAST_ORDER_MATCH_ID) """ params = {"source": address, "order_match_id": order_match_id} - rawtransaction = compose_transaction( + rawtransaction, data = compose_transaction( db, name="btcpay", params=params, @@ -1445,6 +1448,7 @@ def compose_btcpay(db, address: str, order_match_id: str, **construct_args): get_key_name(**construct_args): rawtransaction, "params": params, "name": "btcpay", + "data": data, } @@ -1456,7 +1460,7 @@ def compose_burn(db, address: str, quantity: int, overburn: bool = False, **cons :param overburn: Whether to allow the burn to exceed 1 BTC for the address """ params = {"source": address, "quantity": quantity, "overburn": overburn} - rawtransaction = compose_transaction( + rawtransaction, data = compose_transaction( db, name="burn", params=params, @@ -1466,6 +1470,7 @@ def compose_burn(db, address: str, quantity: int, overburn: bool = False, **cons get_key_name(**construct_args): rawtransaction, "params": params, "name": "burn", + "data": data, } @@ -1476,7 +1481,7 @@ def compose_cancel(db, address: str, offer_hash: str, **construct_args): :param offer_hash: The hash of the order/bet to be cancelled (e.g. $LAST_ORDER_TX_HASH) """ params = {"source": address, "offer_hash": offer_hash} - rawtransaction = compose_transaction( + rawtransaction, data = compose_transaction( db, name="cancel", params=params, @@ -1486,6 +1491,7 @@ def compose_cancel(db, address: str, offer_hash: str, **construct_args): get_key_name(**construct_args): rawtransaction, "params": params, "name": "cancel", + "data": data, } @@ -1498,7 +1504,7 @@ def compose_destroy(db, address: str, asset: str, quantity: int, tag: str, **con :param tag: A tag for the destruction (e.g. "bugs!") """ params = {"source": address, "asset": asset, "quantity": quantity, "tag": tag} - rawtransaction = compose_transaction( + rawtransaction, data = compose_transaction( db, name="destroy", params=params, @@ -1508,6 +1514,7 @@ def compose_destroy(db, address: str, asset: str, quantity: int, tag: str, **con get_key_name(**construct_args): rawtransaction, "params": params, "name": "destroy", + "data": data, } @@ -1544,7 +1551,7 @@ def compose_dispenser( "open_address": open_address, "oracle_address": oracle_address, } - rawtransaction = compose_transaction( + rawtransaction, data = compose_transaction( db, name="dispenser", params=params, @@ -1554,6 +1561,7 @@ def compose_dispenser( get_key_name(**construct_args): rawtransaction, "params": params, "name": "dispenser", + "data": data, } @@ -1573,7 +1581,7 @@ def compose_dividend( "asset": asset, "dividend_asset": dividend_asset, } - rawtransaction = compose_transaction( + rawtransaction, data = compose_transaction( db, name="dividend", params=params, @@ -1583,6 +1591,7 @@ def compose_dividend( get_key_name(**construct_args): rawtransaction, "params": params, "name": "dividend", + "data": data, } @@ -1619,7 +1628,7 @@ def compose_issuance( "reset": reset, "description": description, } - rawtransaction = compose_transaction( + rawtransaction, data = compose_transaction( db, name="issuance", params=params, @@ -1629,6 +1638,7 @@ def compose_issuance( get_key_name(**construct_args): rawtransaction, "params": params, "name": "issuance", + "data": data, } @@ -1671,7 +1681,7 @@ def compose_mpma( "memo_is_hex": memo_is_hex, } - rawtransaction = compose_transaction( + rawtransaction, data = compose_transaction( db, name="versions.mpma", params=params, @@ -1681,6 +1691,7 @@ def compose_mpma( get_key_name(**construct_args): rawtransaction, "params": params, "name": "mpma", + "data": data, } @@ -1714,7 +1725,7 @@ def compose_order( "expiration": expiration, "fee_required": fee_required, } - rawtransaction = compose_transaction( + rawtransaction, data = compose_transaction( db, name="order", params=params, @@ -1724,6 +1735,7 @@ def compose_order( get_key_name(**construct_args): rawtransaction, "params": params, "name": "order", + "data": data, } @@ -1757,7 +1769,7 @@ def compose_send( "memo_is_hex": memo_is_hex, "use_enhanced_send": use_enhanced_send, } - rawtransaction = compose_transaction( + rawtransaction, data = compose_transaction( db, name="send", params=params, @@ -1767,6 +1779,7 @@ def compose_send( get_key_name(**construct_args): rawtransaction, "params": params, "name": "send", + "data": data, } @@ -1788,7 +1801,7 @@ def compose_dispense( "destination": dispenser, "quantity": quantity, } - rawtransaction = compose_transaction( + rawtransaction, data = compose_transaction( db, name="dispense", params=params, @@ -1798,6 +1811,7 @@ def compose_dispense( get_key_name(**construct_args): rawtransaction, "params": params, "name": "dispense", + "data": data, } @@ -1819,7 +1833,7 @@ def compose_sweep(db, address: str, destination: str, flags: int, memo: str, **c "flags": flags, "memo": memo, } - rawtransaction = compose_transaction( + rawtransaction, data = compose_transaction( db, name="sweep", params=params, @@ -1829,6 +1843,7 @@ def compose_sweep(db, address: str, destination: str, flags: int, memo: str, **c get_key_name(**construct_args): rawtransaction, "params": params, "name": "sweep", + "data": data, } @@ -1895,7 +1910,7 @@ def compose_fairminter( "divisible": divisible, "description": description, } - rawtransaction = compose_transaction( + rawtransaction, data = compose_transaction( db, name="fairminter", params=params, @@ -1905,6 +1920,7 @@ def compose_fairminter( get_key_name(**construct_args): rawtransaction, "params": params, "name": "fairminter", + "data": data, } @@ -1916,7 +1932,7 @@ def compose_fairmint(db, address: str, asset: str, quantity: int = 0, **construc :param quantity: The quantity of the asset to mint (in satoshis, hence integer) (e.g. 1) """ params = {"source": address, "asset": asset, "quantity": quantity} - rawtransaction = compose_transaction( + rawtransaction, data = compose_transaction( db, name="fairmint", params=params, @@ -1926,6 +1942,7 @@ def compose_fairmint(db, address: str, asset: str, quantity: int = 0, **construc get_key_name(**construct_args): rawtransaction, "params": params, "name": "fairmint", + "data": data, } @@ -1943,7 +1960,7 @@ def compose_utxo( "asset": asset, "quantity": quantity, } - rawtransaction = compose_transaction( + rawtransaction, data = compose_transaction( db, name="utxo", params=params, @@ -1953,6 +1970,7 @@ def compose_utxo( get_key_name(**construct_args): rawtransaction, "params": params, "name": "utxo", + "data": data, } diff --git a/counterparty-core/counterpartycore/test/bytespersigop_test.py b/counterparty-core/counterpartycore/test/bytespersigop_test.py index 13d721934e..70fe8a794b 100644 --- a/counterparty-core/counterpartycore/test/bytespersigop_test.py +++ b/counterparty-core/counterpartycore/test/bytespersigop_test.py @@ -25,7 +25,7 @@ def test_bytespersigop(server_db): transaction.initialise() # ADDR[0], bytespersigop=False, desc 41 bytes, opreturn - txhex = transaction.compose_transaction( + txhex, _data = transaction.compose_transaction( server_db, "issuance", { @@ -45,7 +45,7 @@ def test_bytespersigop(server_db): assert "OP_RETURN" in repr(tx.vout[0].scriptPubKey) # ADDR[0], bytespersigop=False, desc 42 bytes, multisig - txhex = transaction.compose_transaction( + txhex, _data = transaction.compose_transaction( server_db, "issuance", { @@ -70,7 +70,7 @@ def test_bytespersigop(server_db): assert util.enabled("bytespersigop") == True # noqa: E712 # ADDR[0], bytespersigop=True, desc 41 bytes, opreturn - txhex = transaction.compose_transaction( + txhex, _data = transaction.compose_transaction( server_db, "issuance", { @@ -90,7 +90,7 @@ def test_bytespersigop(server_db): assert "OP_RETURN" in repr(tx.vout[0].scriptPubKey) # ADDR[1], bytespersigop=True, desc 41 bytes, opreturn encoding - txhex = transaction.compose_transaction( + txhex, _data = transaction.compose_transaction( server_db, "issuance", { @@ -111,7 +111,7 @@ def test_bytespersigop(server_db): # ADDR[1], bytespersigop=True, desc 20 bytes, FORCED encoding=multisig # will use 2 UTXOs to make the bytes:sigop ratio in our favor - txhex = transaction.compose_transaction( + txhex, _data = transaction.compose_transaction( server_db, "issuance", { diff --git a/counterparty-core/counterpartycore/test/estimate_fee_per_kb_test.py b/counterparty-core/counterpartycore/test/estimate_fee_per_kb_test.py index f118893d9d..5ba81381ff 100644 --- a/counterparty-core/counterpartycore/test/estimate_fee_per_kb_test.py +++ b/counterparty-core/counterpartycore/test/estimate_fee_per_kb_test.py @@ -42,7 +42,7 @@ def _fee_per_kb(conf_target, mode): with util_test.ConfigContext(ESTIMATE_FEE_PER_KB=True): transaction.initialise() - txhex = transaction.compose_transaction( + txhex, _data = transaction.compose_transaction( server_db, "send", {"source": ADDR[0], "destination": ADDR[1], "asset": "XCP", "quantity": 100}, diff --git a/counterparty-core/counterpartycore/test/p2sh_encoding_test.py b/counterparty-core/counterpartycore/test/p2sh_encoding_test.py index 00fc599b11..4df2d021fb 100644 --- a/counterparty-core/counterpartycore/test/p2sh_encoding_test.py +++ b/counterparty-core/counterpartycore/test/p2sh_encoding_test.py @@ -79,7 +79,7 @@ def test_p2sh_encoding(server_db): transaction.initialise() fee = 20000 fee_per_kb = 50000 - result = transaction.compose_transaction( + result, _data = transaction.compose_transaction( server_db, "send", {"source": source, "destination": destination, "asset": "XCP", "quantity": 100}, @@ -151,7 +151,7 @@ def test_p2sh_encoding(server_db): logger.debug(f"pretxid {pretxid}") # check that when we do another, unrelated, send that it won't use our UTXO - result = transaction.compose_transaction( + result, _data = transaction.compose_transaction( server_db, "send", {"source": source, "destination": destination, "asset": "XCP", "quantity": 100}, @@ -165,7 +165,7 @@ def test_p2sh_encoding(server_db): ) # now compose the data transaction - result = transaction.compose_transaction( + result, _data = transaction.compose_transaction( server_db, "send", {"source": source, "destination": destination, "asset": "XCP", "quantity": 100}, @@ -258,7 +258,7 @@ def test_p2sh_encoding_long_data(server_db): # pprint.pprint(utxos) fee_per_kb = 50000 - result = transaction.compose_transaction( + result, _data = transaction.compose_transaction( server_db, "broadcast", { @@ -335,7 +335,7 @@ def test_p2sh_encoding_long_data(server_db): logger.debug(f"pretxid {pretxid}") # now compose the data transaction - result = transaction.compose_transaction( + result, _data = transaction.compose_transaction( server_db, "broadcast", { @@ -440,7 +440,7 @@ def test_p2sh_encoding_p2sh_source_not_supported(server_db): fee_per_kb = 50000 with pytest.raises(exceptions.TransactionError): - result = transaction.compose_transaction( # noqa: F841 + result, _data = transaction.compose_transaction( # noqa: F841 server_db, "send", {"source": source, "destination": destination, "asset": "XCP", "quantity": 100}, @@ -482,7 +482,7 @@ def test_p2sh_encoding_manual_multisig_transaction(server_db): # setup transaction fee = 20000 fee_per_kb = 50000 - pretxhex = transaction.compose_transaction( + pretxhex, _data = transaction.compose_transaction( server_db, "send", { @@ -508,7 +508,7 @@ def test_p2sh_encoding_manual_multisig_transaction(server_db): logger.debug(f"pretxid {pretxid}") # now compose the data transaction - result = transaction.compose_transaction( + result, _data = transaction.compose_transaction( server_db, "send", {"source": source, "destination": destination, "asset": "XCP", "quantity": 100}, diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 6641ec6279..e7eefc1ab2 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": 193, - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", - "block_time": 1726742211, - "previous_block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_time": 1726743198, + "previous_block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", "difficulty": 545259519, - "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", - "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", - "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", + "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", + "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", + "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", - "block_time": 1726742207, - "previous_block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", + "block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", + "block_time": 1726743194, + "previous_block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", "difficulty": 545259519, - "ledger_hash": "0a2bdb38999b534fd2b576ff3c06e3eee38ebf1647458e5728700cedd6efcaed", - "txlist_hash": "7e202711cfe7c8b899866f52138b5f970ae744974e861db8fe7d22b284b88dbf", - "messages_hash": "48160ef2e284595aa7d8f136206cd029ffd17325ffe6584f96a3113dc2f097b5", + "ledger_hash": "f5ce379ab00c2982a4a45f4ad87c82d7b3198e7fa39818af38a9702a68da9521", + "txlist_hash": "52eff7cd239691d1efa5da6dbc00227fd5fe9d2ebc1e525f4abec71f1c847da8", + "messages_hash": "427641ca80d9aee9afc778c264a77c308a6be71a5761db8532a744992561bb63", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", - "block_time": 1726742203, - "previous_block_hash": "54cd9caaa8fce8a78011bf573033e5c66827b4f054205f1a89eb72cf7264f412", + "block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", + "block_time": 1726743189, + "previous_block_hash": "47b3fb7b19695ffc7ac303e23eb3315b747c15d26456b38b337030006305e979", "difficulty": 545259519, - "ledger_hash": "6e9a0d3d0c0ba20e2081bb9a2dacbdffcf05aaf850bb5ea1debda78f465e48a4", - "txlist_hash": "55c720e469b176ebab9b107f55fa2fa4b81a7b709f5d0d320aec4d0418b30ced", - "messages_hash": "7230316bb7908deaf56674f65e5f861f91d1870c5239f1b17708d290d18d940d", + "ledger_hash": "97c6a9a9dfd360766c66484b6a2371fc523c88768dd82631e77ddafcc71a8b60", + "txlist_hash": "a3a75d3eef307cc600ea559da8c7e6114eeb7c089d783c0aca0a09c91a3c9aff", + "messages_hash": "585ca23f5198daa88c7c982d0e320b36405d74b4e4520ac95c0f150c80e25ae8", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "54cd9caaa8fce8a78011bf573033e5c66827b4f054205f1a89eb72cf7264f412", - "block_time": 1726742198, - "previous_block_hash": "49dc4ddb70d192b54a5ca94706a766771f5d75e7013ccde319624e804335bc20", + "block_hash": "47b3fb7b19695ffc7ac303e23eb3315b747c15d26456b38b337030006305e979", + "block_time": 1726743185, + "previous_block_hash": "1257ebae1dd6b4cdc6b62a8ed6a80f99571bd3bc27f37129fb28997aca21f3e1", "difficulty": 545259519, - "ledger_hash": "2faa91e8fbe01eb0b87717d897b1f78e3f12a5842cc77bf58dc38fd3f37a3482", - "txlist_hash": "e52ebece08054449aa8a477cd7c19b1542b342af81df4f866eb76be8f24284fd", - "messages_hash": "a1e98cfa9d9ad01e5c9ea206c95f169a6be5152237df625e719b8f648a50ec4a", + "ledger_hash": "52e23c330c89b46771efd78aa458e3f82def371c7cbf1ee4c0921bc347339f58", + "txlist_hash": "4f40bf44aa9fe5ec1030dd443132aa6c993ee869442ae6fe6e452a9933b12633", + "messages_hash": "86586a2a004808ca3cdaa719be924b71770a53050fa445fcd6b7a3635f663e96", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "49dc4ddb70d192b54a5ca94706a766771f5d75e7013ccde319624e804335bc20", - "block_time": 1726742194, - "previous_block_hash": "1223a9ebf3f56e035752b5244d0710e06d19b8d943c71c76b43631da6557211c", + "block_hash": "1257ebae1dd6b4cdc6b62a8ed6a80f99571bd3bc27f37129fb28997aca21f3e1", + "block_time": 1726743181, + "previous_block_hash": "427129e75f1858594b1c563d06e55db5f97f7e6425d5c064a509dec7a90698b2", "difficulty": 545259519, - "ledger_hash": "7f3d92b28bcfa9cb4f9fe9cf2704a600db7cb3775f3d60b40df6ebbf3190c01b", - "txlist_hash": "0ed5cbda0c2184cbfa3c21efaf00573bb0f99adb32b260680a69892879d63afd", - "messages_hash": "eb0dbf67a7c239e8a9800ca126627178fffcefff09d7867dd7a1e9c2de4380fd", + "ledger_hash": "d8889a73fe9dd722a5624327b070c876b4d4d73ab28b7b4af363169b20c82d56", + "txlist_hash": "89b6834dab2d42c9ed636574a742baa1b920fdd2df6ff29af5654633cd1bd291", + "messages_hash": "2a78bccf0050c392e1f1435a8eb950e5e21e20d28b0310a6d344702a10a45fca", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", - "block_time": 1726742211, - "previous_block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_time": 1726743198, + "previous_block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", "difficulty": 545259519, - "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", - "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", - "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", + "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", + "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", + "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", - "block_time": 1726742211, - "previous_block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_time": 1726743198, + "previous_block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", "difficulty": 545259519, - "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", - "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", - "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", + "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", + "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", + "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", - "block_time": 1726742211, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_time": 1726743198, + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", + "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -139,11 +139,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "0a2bdb38999b534fd2b576ff3c06e3eee38ebf1647458e5728700cedd6efcaed", - "messages_hash": "48160ef2e284595aa7d8f136206cd029ffd17325ffe6584f96a3113dc2f097b5", + "ledger_hash": "f5ce379ab00c2982a4a45f4ad87c82d7b3198e7fa39818af38a9702a68da9521", + "messages_hash": "427641ca80d9aee9afc778c264a77c308a6be71a5761db8532a744992561bb63", "transaction_count": 1, - "txlist_hash": "7e202711cfe7c8b899866f52138b5f970ae744974e861db8fe7d22b284b88dbf", - "block_time": 1726742207 + "txlist_hash": "52eff7cd239691d1efa5da6dbc00227fd5fe9d2ebc1e525f4abec71f1c847da8", + "block_time": 1726743194 }, "tx_hash": null }, @@ -152,43 +152,43 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58 }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "status": "valid", - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, - "block_time": 1726742207, + "block_time": 1726743194, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -198,22 +198,22 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "XCP", "block_index": 192, - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -223,7 +223,7 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" } ], "next_cursor": 524, @@ -261,16 +261,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -280,57 +280,57 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" } ], "next_cursor": null, @@ -340,16 +340,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -361,20 +361,20 @@ }, { "block_index": 192, - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -382,20 +382,20 @@ }, { "block_index": 192, - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -409,16 +409,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "event": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -436,24 +436,24 @@ "result": [ { "type": "order", - "object_id": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "object_id": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", "block_index": 182, "confirmed": true, - "block_time": 1726742099 + "block_time": 1726743090 }, { "type": "order", - "object_id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", + "object_id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", "block_index": 182, "confirmed": true, - "block_time": 1726742099 + "block_time": 1726743090 }, { "type": "order_match", - "object_id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "object_id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", "block_index": 182, "confirmed": true, - "block_time": 1726742099 + "block_time": 1726743090 } ], "next_cursor": null, @@ -463,13 +463,13 @@ "result": [ { "tx_index": 56, - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "block_index": 190, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "status": "valid", "confirmed": true, - "block_time": 1726742198 + "block_time": 1726743185 } ], "next_cursor": null, @@ -479,15 +479,15 @@ "result": [ { "tx_index": 59, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -505,14 +505,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", + "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -527,7 +527,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742082, + "block_time": 1726743075, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -539,10 +539,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -550,7 +550,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "divisible": true, "asset_longname": null, @@ -563,10 +563,10 @@ }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -574,11 +574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -587,10 +587,10 @@ }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -598,11 +598,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -618,27 +618,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", - "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "last_status_tx_hash": null, - "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -653,7 +653,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726742026, + "block_time": 1726743009, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,16 +672,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "fee_paid_normalized": "0.00600000" } ], @@ -692,17 +692,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", - "block_time": 1726742211, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_time": 1726743198, + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", + "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -725,23 +725,23 @@ }, { "tx_index": 58, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f", - "block_time": 1726742207, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", + "block_time": 1726743194, + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480b77441a3eca05c136080e504fe32114fa79f4406017377656570206d7920617373657473", + "data": "04804a5bd60b2d454cc549130f385b94d63db6269c02017377656570206d7920617373657473", "supported": true, - "utxos_info": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08:1", + "utxos_info": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "flags": 1, "memo": "sweep my assets" } @@ -754,18 +754,18 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "data": "46d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "159e5bce4910b972c4249dc33c13ae5fe75ee185d307e6325bdafbed87e010ff", + "hash": "b93823fbfeeb9f76b4b3dbf8d504b3270e4c171496e5f13196dc3fc6fe92e87a", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -775,26 +775,26 @@ "vout": [ { "value": 0, - "script_pub_key": "6a293ed0ca3029ff2c8f070c17ff890726fb793d285f135e406302d8976dac8ff094cf5e43f144a3cb6415" + "script_pub_key": "6a2903bea53b8a00584e261286de22388d23b7dc3a0597b34285293f38479f388d5b70efedc67135feabfa" }, { "value": 4999990000, - "script_pub_key": "00148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2" + "script_pub_key": "0014a58c27e8ecd410f6848b7abd7e26f355bce15dd8" } ], "vtxinwit": [ - "304402204cf558337aadef48e62a90c2848843eaf973ec9c1ff085e03b54ba7475ef1510022016a10b12483d62657e732914303de9992f85b31466ce65c08395514996dcec4e01", - "03c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb" + "3044022047ce42e81f859ce022cbaf63b11f09264a702ecc91a88c97aa699b3c7b2aa8e702203b0b2b063104f30aa11a3a8b23ee17e20eef5b3279a073afebf3f2902f98e48201", + "03471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d3" ], "lock_time": 0, - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", - "tx_id": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259" + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_id": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7" }, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "status": "valid" } }, @@ -803,18 +803,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710809668fa89c3fb02c8b7a891003a3773f6eed4a656", + "data": "0200000000000000010000000000002710806a51cc766215db7e153afcd60bb43d6c1c61cff8", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "b410f63beba7150a70c9ca77621daec478e35967e9fb5930a286282a4ddb74e9", + "hash": "add0ff4d3c6a3c0c9d63ac1bf61b93fd110dbaab08e940fa0ce360d28cf1eb0d", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -824,20 +824,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e98cf313c9ed5ec29068907f1acd16b2d287938482a6520b2c97f45ad202f62336365b41cb5095ee0585590fa3497" + "script_pub_key": "6a2efa02b5f0469c532efb017222c6d9df54fccd3aec8ca11621123b71e65ec38b865db46a7808815e4b258f1698fb7c" }, { "value": 4999955000, - "script_pub_key": "0014b77441a3eca05c136080e504fe32114fa79f4406" + "script_pub_key": "00144a5bd60b2d454cc549130f385b94d63db6269c02" } ], "vtxinwit": [ - "3044022014031a3a825f819044df4c2c522ffe97c5b3b26ab6821fc1702a9ba53a8da7b502201e860baf96d0171a8f3d7707eed0b99646404e1df10dfc90a26d4912f617066a01", - "03c00ed866f6a66b1786e3fdf10ad429bdfef2bf782fe2eae745580ae546dcb963" + "3044022021768aad5381cac8962caceab2ec74c9556e4e17369d6f6721a2c5632669a8b202203399c0a66d8fe767f5951dcdd32ac38bfbb074f59fa6d4cacd56d9e61a1f03eb01", + "020cb277fa643a47f001fd66be1b219cd0a025338e3d793d3482eb2d1d81209c2c" ], "lock_time": 0, - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", - "tx_id": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b" + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_id": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b" }, "unpacked_data": { "message_type": "enhanced_send", @@ -845,7 +845,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "memo": null, "asset_info": { "divisible": true, @@ -872,17 +872,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", - "block_time": 1726742211, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_time": 1726743198, + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", + "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -907,17 +907,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", - "block_time": 1726742211, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_time": 1726743198, + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", + "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -946,47 +946,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58 }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "status": "valid", - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, - "block_time": 1726742207, + "block_time": 1726743194, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -996,24 +996,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "XCP", "block_index": 192, - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -1023,36 +1023,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 } ], "next_cursor": 523, @@ -1065,47 +1065,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58 }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "status": "valid", - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, - "block_time": 1726742207, + "block_time": 1726743194, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -1115,24 +1115,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "XCP", "block_index": 192, - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -1142,36 +1142,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 } ], "next_cursor": 523, @@ -1181,10 +1181,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -1192,7 +1192,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "divisible": true, "asset_longname": null, @@ -1205,10 +1205,10 @@ }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1216,11 +1216,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -1229,10 +1229,10 @@ }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1240,11 +1240,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -1260,27 +1260,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", - "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "last_status_tx_hash": null, - "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -1295,7 +1295,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726742026, + "block_time": 1726743009, "asset_info": { "divisible": true, "asset_longname": null, @@ -1316,16 +1316,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -1335,63 +1335,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 } ], "next_cursor": null, @@ -1403,16 +1403,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -1422,63 +1422,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 } ], "next_cursor": null, @@ -1491,7 +1491,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1501,7 +1501,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -1512,7 +1512,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1522,7 +1522,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -1533,7 +1533,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1543,7 +1543,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -1554,7 +1554,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1564,7 +1564,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -1575,7 +1575,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1585,7 +1585,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -1599,17 +1599,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", - "block_time": 1726742203, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", + "block_time": 1726743189, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d:1", + "utxos_info": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1645,23 +1645,23 @@ }, { "tx_index": 56, - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "block_index": 190, - "block_hash": "54cd9caaa8fce8a78011bf573033e5c66827b4f054205f1a89eb72cf7264f412", - "block_time": 1726742198, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "47b3fb7b19695ffc7ac303e23eb3315b747c15d26456b38b337030006305e979", + "block_time": 1726743185, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "data": "46d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "supported": true, - "utxos_info": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259:1", + "utxos_info": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "status": "valid" } }, @@ -1669,17 +1669,17 @@ }, { "tx_index": 55, - "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "block_index": 189, - "block_hash": "49dc4ddb70d192b54a5ca94706a766771f5d75e7013ccde319624e804335bc20", - "block_time": 1726742194, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "1257ebae1dd6b4cdc6b62a8ed6a80f99571bd3bc27f37129fb28997aca21f3e1", + "block_time": 1726743181, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0:1", + "utxos_info": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1715,17 +1715,17 @@ }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "block_hash": "1223a9ebf3f56e035752b5244d0710e06d19b8d943c71c76b43631da6557211c", - "block_time": 1726742190, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "427129e75f1858594b1c563d06e55db5f97f7e6425d5c064a509dec7a90698b2", + "block_time": 1726743177, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380b886678b2158112c9d7fe7b214a12943c2cabd96809668fa89c3fb02c8b7a891003a3773f6eed4a65680b77441a3eca05c136080e504fe32114fa79f4406400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380386a5bb745b1ba84d5953b77406457e9415704a1806a51cc766215db7e153afcd60bb43d6c1c61cff8804a5bd60b2d454cc549130f385b94d63db6269c02400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff:0", + "utxos_info": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1733,14 +1733,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -1748,7 +1748,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1767,25 +1767,25 @@ }, { "tx_index": 51, - "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", + "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", "block_index": 185, - "block_hash": "592f49ff43d18849d9b56671fedc5a4de889bebd46b34f08efcc8fa908b1e928", - "block_time": 1726742178, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "2e3c3d44591be34a2361ad5452925ffafe95f3ead188d15cba2bfc08d0bc2745", + "block_time": 1726743164, + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "btc_amount": 2000, "fee": 10000, - "data": "0b4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "data": "0bdf69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a58b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "supported": true, - "utxos_info": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e:0", + "utxos_info": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", - "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", - "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "status": "valid" } }, @@ -1814,11 +1814,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "status": "open", - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "tx_index": 57, - "block_time": 1726742203, + "block_time": 1726743189, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1842,24 +1842,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "block_time": 1726742203 + "block_time": 1726743189 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "block_index": 191, - "event": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "event": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1726742203, + "block_time": 1726743189, "asset_info": { "divisible": true, "asset_longname": null, @@ -1869,25 +1869,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "block_time": 1726742203 + "block_time": 1726743189 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", + "block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", "block_index": 191, - "block_time": 1726742203, + "block_time": 1726743189, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "tx_index": 57, - "utxos_info": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d:1", + "utxos_info": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1919,40 +1919,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "block_time": 1726742203 + "block_time": 1726743189 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "status": "valid", - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "tx_index": 56, - "block_time": 1726742198 + "block_time": 1726743185 }, - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "block_index": 190, - "block_time": 1726742198 + "block_time": 1726743185 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726742198, + "block_time": 1726743185, "asset_info": { "divisible": true, "asset_longname": null, @@ -1962,9 +1962,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "block_index": 190, - "block_time": 1726742198 + "block_time": 1726743185 } ], "next_cursor": 506, @@ -1973,17 +1973,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "memo": null, "quantity": 10000, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "status": "valid", - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "tx_index": 60, "asset_info": { "divisible": true, @@ -1996,19 +1996,19 @@ } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "CREDIT", "params": { - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -2020,19 +2020,19 @@ } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 193, - "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -2044,27 +2044,27 @@ } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726742226.132691, + "block_time": 1726743212.580398, "btc_amount": 0, - "data": "0200000000000000010000000000002710809668fa89c3fb02c8b7a891003a3773f6eed4a656", + "data": "0200000000000000010000000000002710806a51cc766215db7e153afcd60bb43d6c1c61cff8", "destination": "", "fee": 10000, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "tx_index": 60, - "utxos_info": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b:1", + "utxos_info": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "memo": null, "asset_info": { "divisible": true, @@ -2086,7 +2086,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2094,14 +2094,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2109,14 +2109,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2131,7 +2131,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2139,7 +2139,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2151,7 +2151,7 @@ }, "/v2/addresses/
/balances/": { "result": { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2170,16 +2170,16 @@ "result": [ { "block_index": 190, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742198, + "block_time": 1726743185, "asset_info": { "divisible": true, "asset_longname": null, @@ -2191,16 +2191,16 @@ }, { "block_index": 182, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", + "event": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742099, + "block_time": 1726743090, "asset_info": { "divisible": true, "asset_longname": null, @@ -2212,20 +2212,20 @@ }, { "block_index": 159, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", + "event": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742082, + "block_time": 1726743075, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2233,20 +2233,20 @@ }, { "block_index": 156, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "b7b8e84e938d9c5e88b764466dd7ab16843b7874731d10e0853fded80b2f08d2", + "event": "735d36c3e66e9e8eca66da2247ef421376f463c3a71166b90f79a1fb65c39ce0", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742070, + "block_time": 1726743052, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2258,16 +2258,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", + "event": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", "tx_index": 38, - "utxo": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9:1", - "utxo_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "utxo": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d:1", + "utxo_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "confirmed": true, - "block_time": 1726742048, + "block_time": 1726743030, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2281,16 +2281,16 @@ "result": [ { "block_index": 191, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "event": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742203, + "block_time": 1726743189, "asset_info": { "divisible": true, "asset_longname": null, @@ -2302,16 +2302,16 @@ }, { "block_index": 189, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742194, + "block_time": 1726743181, "asset_info": { "divisible": true, "asset_longname": null, @@ -2323,16 +2323,16 @@ }, { "block_index": 188, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "event": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "divisible": true, "asset_longname": null, @@ -2344,20 +2344,20 @@ }, { "block_index": 188, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "event": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2365,16 +2365,16 @@ }, { "block_index": 183, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "event": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742170, + "block_time": 1726743155, "asset_info": { "divisible": true, "asset_longname": null, @@ -2397,9 +2397,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "60e53d18f1a227ad4ad75ba9854b8c64c4dceeb7c98514be938945b616fa342e", + "tx_hash": "5966fd52717602850bfb43b55f7da2b2e0c9be1896b41b65c6f9bf5b0e1099ab", "block_index": 137, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2407,7 +2407,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726741987, + "block_time": 1726742970, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2418,14 +2418,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "adc800a0c349ff4e0e7193122cf547a536a880740dbe9cd9af41bd4b6138d8b0", + "tx_hash": "5c97acb757b578558483987eb8e2a40e0e3ccb308bcedc6914f04a5586f71723", "block_index": 112, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1726741871, + "block_time": 1726742865, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2437,10 +2437,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2448,7 +2448,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "divisible": true, "asset_longname": null, @@ -2461,10 +2461,10 @@ }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2472,11 +2472,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2485,10 +2485,10 @@ }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2496,11 +2496,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2509,10 +2509,10 @@ }, { "tx_index": 38, - "tx_hash": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", + "tx_hash": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", "block_index": 151, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9:1", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2520,11 +2520,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742048, + "block_time": 1726743030, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2533,10 +2533,10 @@ }, { "tx_index": 35, - "tx_hash": "70b48fb7cb8c00a6e814bdf5682297fcba88b2e305f0ac44ae659782a9d08a1d", + "tx_hash": "05be62933b931d190c6d9b32d1dcc6437a18e38abb5a77f5655459963314f6e3", "block_index": 148, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "4d1c559a2f4b46484dd28d82a0544b0606eafb203419cf378deafd53670c77f7:1", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "e4bcefdccfc18fddbc4afe4282d88bfa16c2de310ab0d2a3117b800f68102f7f:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2544,11 +2544,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742035, + "block_time": 1726743017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2563,10 +2563,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "e4c8f0c552dea7470e5d2ef98ff6568f869c3e95231b43879b3a1fabea2cff64", + "tx_hash": "de71c5607ca8fcdc386738b1f1eebb812aeee0e012a4ce691d1ac9f894810f09", "block_index": 150, - "source": "daabc4181b5c356b166fd9efb6056720fec8a1d81871b9c5b091a499e81e663f:0", - "destination": "bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy", + "source": "2ff828784db699b93166c91bdc316c84bddfdb710a3c1d1f68665a7198728737:0", + "destination": "bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2574,11 +2574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742043, + "block_time": 1726743026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2593,10 +2593,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2604,11 +2604,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2617,10 +2617,10 @@ }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2628,11 +2628,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2641,10 +2641,10 @@ }, { "tx_index": 38, - "tx_hash": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", + "tx_hash": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", "block_index": 151, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9:1", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2652,11 +2652,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742048, + "block_time": 1726743030, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2665,10 +2665,10 @@ }, { "tx_index": 35, - "tx_hash": "70b48fb7cb8c00a6e814bdf5682297fcba88b2e305f0ac44ae659782a9d08a1d", + "tx_hash": "05be62933b931d190c6d9b32d1dcc6437a18e38abb5a77f5655459963314f6e3", "block_index": 148, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "4d1c559a2f4b46484dd28d82a0544b0606eafb203419cf378deafd53670c77f7:1", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "e4bcefdccfc18fddbc4afe4282d88bfa16c2de310ab0d2a3117b800f68102f7f:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2676,11 +2676,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742035, + "block_time": 1726743017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2695,10 +2695,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "e4c8f0c552dea7470e5d2ef98ff6568f869c3e95231b43879b3a1fabea2cff64", + "tx_hash": "de71c5607ca8fcdc386738b1f1eebb812aeee0e012a4ce691d1ac9f894810f09", "block_index": 150, - "source": "daabc4181b5c356b166fd9efb6056720fec8a1d81871b9c5b091a499e81e663f:0", - "destination": "bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy", + "source": "2ff828784db699b93166c91bdc316c84bddfdb710a3c1d1f68665a7198728737:0", + "destination": "bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2706,11 +2706,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742043, + "block_time": 1726743026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -2725,9 +2725,9 @@ "result": [ { "tx_index": 30, - "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", + "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", "block_index": 144, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2736,7 +2736,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2746,7 +2746,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742017, + "block_time": 1726743000, "asset_info": { "divisible": true, "asset_longname": null, @@ -2762,9 +2762,9 @@ }, { "tx_index": 26, - "tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2773,7 +2773,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2783,7 +2783,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -2804,9 +2804,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 30, - "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", + "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", "block_index": 144, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2815,7 +2815,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2825,7 +2825,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742017, + "block_time": 1726743000, "asset_info": { "divisible": true, "asset_longname": null, @@ -2845,19 +2845,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", + "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2865,7 +2865,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2880,7 +2880,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -2894,19 +2894,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", + "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", "block_index": 140, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2914,7 +2914,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2929,7 +2929,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726741999, + "block_time": 1726742983, "asset_info": { "divisible": true, "asset_longname": null, @@ -2949,19 +2949,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", + "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2969,7 +2969,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2984,7 +2984,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -2998,19 +2998,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", + "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", "block_index": 140, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3018,7 +3018,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3033,7 +3033,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726741999, + "block_time": 1726742983, "asset_info": { "divisible": true, "asset_longname": null, @@ -3053,19 +3053,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", + "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3073,7 +3073,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3088,7 +3088,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -3102,19 +3102,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", + "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", "block_index": 140, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3122,7 +3122,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3137,7 +3137,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726741999, + "block_time": 1726742983, "asset_info": { "divisible": true, "asset_longname": null, @@ -3157,19 +3157,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", + "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3177,7 +3177,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3192,7 +3192,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -3206,19 +3206,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", + "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", "block_index": 140, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3226,7 +3226,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3241,7 +3241,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726741999, + "block_time": 1726742983, "asset_info": { "divisible": true, "asset_longname": null, @@ -3260,16 +3260,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "fee_paid_normalized": "0.00600000" } ], @@ -3280,14 +3280,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", + "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -3302,20 +3302,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742082, + "block_time": 1726743075, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "66542eb84d234807eb104350179c31c8f1b00e559ca82b489588629cb3fd8bfe", + "tx_hash": "02aeb11d1f8356db859ac3dd71599fbe3da1c8e3d517cf4a171e9e980045e2a1", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -3330,20 +3330,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726742078, + "block_time": 1726743070, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "fa63823d4d5818572e21737b9de669bcd5d05afc5b9e8cfb8cf525732deb75c8", + "tx_hash": "dd63df7abf9b1ae09c158bce761f704944f67bb94cc345329b4b926372bc11c9", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -3358,20 +3358,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742074, + "block_time": 1726743066, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "b7b8e84e938d9c5e88b764466dd7ab16843b7874731d10e0853fded80b2f08d2", + "tx_hash": "735d36c3e66e9e8eca66da2247ef421376f463c3a71166b90f79a1fb65c39ce0", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -3386,20 +3386,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742070, + "block_time": 1726743052, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "6904df91ab250d34539f267e84b728b28ffd351fa15b1011f92354f1a2d1c960", + "tx_hash": "c94682346a1b879d3cda19a8edaedfde8160a8d03713b250908824343581020b", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -3414,7 +3414,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742030, + "block_time": 1726743013, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -3428,8 +3428,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 10000000000, @@ -3437,16 +3437,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726742070, - "last_issuance_block_time": 1726742078, + "first_issuance_block_time": 1726743052, + "last_issuance_block_time": 1726743070, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 100000000000, @@ -3454,16 +3454,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726742030, - "last_issuance_block_time": 1726742030, + "first_issuance_block_time": 1726743013, + "last_issuance_block_time": 1726743013, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 40, @@ -3471,16 +3471,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726741978, - "last_issuance_block_time": 1726741983, + "first_issuance_block_time": 1726742962, + "last_issuance_block_time": 1726742966, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 19, @@ -3488,16 +3488,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726741952, - "last_issuance_block_time": 1726741974, + "first_issuance_block_time": 1726742946, + "last_issuance_block_time": 1726742957, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 0, @@ -3505,8 +3505,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1726741930, - "last_issuance_block_time": 1726741947, + "first_issuance_block_time": 1726742925, + "last_issuance_block_time": 1726742942, "supply_normalized": "0.00000000" } ], @@ -3517,17 +3517,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "block_hash": "1dce3790b4a43b33d277824f6ad616519653e18b18355cafeb53670ff8c983f4", - "block_time": 1726742203, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", + "block_time": 1726743189, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d:1", + "utxos_info": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3563,23 +3563,23 @@ }, { "tx_index": 56, - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "block_index": 190, - "block_hash": "54cd9caaa8fce8a78011bf573033e5c66827b4f054205f1a89eb72cf7264f412", - "block_time": 1726742198, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "47b3fb7b19695ffc7ac303e23eb3315b747c15d26456b38b337030006305e979", + "block_time": 1726743185, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "data": "46d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "supported": true, - "utxos_info": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259:1", + "utxos_info": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "status": "valid" } }, @@ -3587,17 +3587,17 @@ }, { "tx_index": 55, - "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "block_index": 189, - "block_hash": "49dc4ddb70d192b54a5ca94706a766771f5d75e7013ccde319624e804335bc20", - "block_time": 1726742194, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "1257ebae1dd6b4cdc6b62a8ed6a80f99571bd3bc27f37129fb28997aca21f3e1", + "block_time": 1726743181, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0:1", + "utxos_info": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3633,17 +3633,17 @@ }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "block_hash": "1223a9ebf3f56e035752b5244d0710e06d19b8d943c71c76b43631da6557211c", - "block_time": 1726742190, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "427129e75f1858594b1c563d06e55db5f97f7e6425d5c064a509dec7a90698b2", + "block_time": 1726743177, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380b886678b2158112c9d7fe7b214a12943c2cabd96809668fa89c3fb02c8b7a891003a3773f6eed4a65680b77441a3eca05c136080e504fe32114fa79f4406400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380386a5bb745b1ba84d5953b77406457e9415704a1806a51cc766215db7e153afcd60bb43d6c1c61cff8804a5bd60b2d454cc549130f385b94d63db6269c02400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff:0", + "utxos_info": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3651,14 +3651,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -3666,7 +3666,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3685,17 +3685,17 @@ }, { "tx_index": 49, - "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", "block_index": 183, - "block_hash": "38f96e22f784a0b35754de347fb5926d51324cdabcc04f72fc156724f0d43a77", - "block_time": 1726742170, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "block_hash": "32ee38bd8523c5f18899a3a371090d2166ca60babc13231b279dc58acdf866a0", + "block_time": 1726743155, + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d:1", + "utxos_info": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3737,20 +3737,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", + "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", "block_index": 153, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726742056, + "block_time": 1726743039, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -3772,9 +3772,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3789,7 +3789,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726742203, + "block_time": 1726743189, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3815,9 +3815,9 @@ }, { "tx_index": 55, - "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "block_index": 190, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3832,7 +3832,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726742198, + "block_time": 1726743185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3858,9 +3858,9 @@ }, { "tx_index": 49, - "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", "block_index": 186, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3875,7 +3875,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726742182, + "block_time": 1726743168, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3901,9 +3901,9 @@ }, { "tx_index": 47, - "tx_hash": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", + "tx_hash": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", "block_index": 182, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3918,7 +3918,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1726742099, + "block_time": 1726743090, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3949,10 +3949,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", + "tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", "tx_index": 22, "block_index": 135, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -3977,13 +3977,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726741978 + "block_time": 1726742962 }, { - "tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", + "tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", "tx_index": 18, "block_index": 131, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4008,13 +4008,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726741952 + "block_time": 1726742946 }, { - "tx_hash": "ac047163f3cd9094f4ee2103b832d0064228aa5f2a7fc8e3104ee775fb181f84", + "tx_hash": "630338ac26f1db216809652acb490bc36058561df42b4800c28e5064bc629a2f", "tx_index": 14, "block_index": 130, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4039,13 +4039,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726741947 + "block_time": 1726742942 }, { - "tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4070,7 +4070,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726741926 + "block_time": 1726742920 } ], "next_cursor": null, @@ -4079,127 +4079,127 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "4ef19e15a942cd317edd6f0705b17761dac9a1c56bd3d92c4b636cf5b7102c7c", + "tx_hash": "7b33dfa114bb715eb9f145b2f1bbaaaef414b6b4a96bb8c6eaeb491bb5acbb6d", "tx_index": 23, "block_index": 136, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "fairminter_tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "fairminter_tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741983, + "block_time": 1726742966, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } }, { - "tx_hash": "12b1f43b529e4ce6e9a3a95d6345faf4a93b2672f1aaa68938ef1b1922e401f9", + "tx_hash": "325787e9f0effbc24bc985f71f26f683dbe75a9105b6414d5e5315b4ceaac1c9", "tx_index": 21, "block_index": 134, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "fairminter_tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "fairminter_tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741974, + "block_time": 1726742957, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } }, { - "tx_hash": "4243b87db26b2a68deae256e73d35c9569389c93dfc721b359567f564bfc47ea", + "tx_hash": "675009915a6db39339ca7bb454f89704ff9da57f16c45c251e9ea253247a56af", "tx_index": 20, "block_index": 133, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "fairminter_tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "fairminter_tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741970, + "block_time": 1726742953, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } }, { - "tx_hash": "e7339c42b0fc1c16588ae319c16d43f759f8bc0a169f61ce9b69d447ceb05f4d", + "tx_hash": "07fbae4d51d0beaccb7486518f1989ad7e9a734c21cf2c7e3752d1cd2a1ceb9f", "tx_index": 19, "block_index": 132, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "fairminter_tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "fairminter_tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741956, + "block_time": 1726742949, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } }, { - "tx_hash": "3935463d05f49f685b9cce124b58d5d0b4ead3c4be23a1d5e4f7c7e7a4b432cc", + "tx_hash": "d6edd904969de8dd3c68546fdf7b24b76ec81d2ab8954e7abd4d5af6655ec6d4", "tx_index": 15, "block_index": 127, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "fairminter_tx_hash": "ac047163f3cd9094f4ee2103b832d0064228aa5f2a7fc8e3104ee775fb181f84", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "fairminter_tx_hash": "630338ac26f1db216809652acb490bc36058561df42b4800c28e5064bc629a2f", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741934, + "block_time": 1726742929, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } }, { - "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", + "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", "tx_index": 11, "block_index": 123, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741917, + "block_time": 1726742912, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } @@ -4211,22 +4211,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", + "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", "tx_index": 11, "block_index": 123, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741917, + "block_time": 1726742912, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } @@ -4240,9 +4240,9 @@ }, "/v2/addresses/
/compose/broadcast": { "result": { - "rawtransaction": "02000000000101d0944beaa1b9e3818180d68c8fcec6dff5dfbad96117cc72072c090dc90977af000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff0200000000000000002b6a299d1729a4df7c52258168d86dc4211757deb010053aff47846f631d2bccde3a53493032e94e8fb653a93bb1052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "02000000000101455dd36b3835387a4749ce9b9ad47320d3fdf8f65429f928c78dd49978a3c8a800000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff0200000000000000002b6a295e696832cb4fc3445a30e8938af20a15cf77d2fd605947df25628371583fba1b8c08f186f8a96bb15d3bb1052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4253,19 +4253,19 @@ }, "/v2/addresses/
/compose/btcpay": { "result": { - "rawtransaction": "02000000000101925e8a3be8f21fb348b8be1aa1e5ee8b96e41e690d13255db1081cf6964ad7e9000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff03b80b0000000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea200000000000000004b6a495176780ee8f3d6bc59bf64e2aef0527cf4e0c6a3594d165d04475d42818057e755accc8aa0cf6c8c16638e53485cdef36df96f13f686bbfc8edcedffaa7264145c9967527cdf6c4abcd993052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "0200000000010162343c5171670775a4634b881780814be84fc168abb2f23373cb1bded16a809b00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff03b80b000000000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd800000000000000004b6a49986e5c19872a7e7f4c1ba5170aab0623e426a3458c5e36a3b56a9c11209451095478d14222796f1a4083a66dfbbe1c434f0f50226fcb1cc26c64c649f6c4b68cdc0eabda5a9477a7ced993052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285" + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62" }, "name": "btcpay" } }, "/v2/addresses/
/compose/burn": { "result": { - "rawtransaction": "02000000000101f4b4a7ed34bf3f599cfbb9060e77d33176011f1347ddece332079b6681b499b4000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "0200000000010169f458476b337a147ca1d77f3089faaafeca77876c20a7dc6a3c43b5b51f67d900000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "quantity": 1000, "overburn": false }, @@ -4274,19 +4274,19 @@ }, "/v2/addresses/
/compose/cancel": { "result": { - "rawtransaction": "02000000000101049b8154c486875bf5a30b770a6ccc0dd66e84185bc32f7fd92e5a53705f74d4000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff0200000000000000002b6a296a5ae7f653611620353c9ae6e94c60eb1d026ffd00db2c1314efb8a7bee4384715bf04e9b9e78e413e3bb1052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "02000000000101a64db30bac9176f429af313e998036f5c1f26875686a8cba1356f85c29c9e82000000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff0200000000000000002b6a29dba244cc1dab36434818a4e318a7fcaaac0ad653ea52fabe08b7e7537ffe084b14a3dcb5d71a9f8e273bb1052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "offer_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d" + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "offer_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b" }, "name": "cancel" } }, "/v2/addresses/
/compose/destroy": { "result": { - "rawtransaction": "02000000000101969dafdbb484ca8cecb55b715bbae85e111c7fc7ff720413557f5e674635844e000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000226a201db88992b23173ea7638d51ae5914e134dcf2c4d860483e7c38543c6e9427b12a4b3052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "02000000000101fb80710aa438bee7755e2d302b63428bc1a42436ad64b6a52e946c9d96fdc18400000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000226a20b5273c4d58bf7b38bbd0858b5072ae53bbc2e20f884322266b5bc0faf61d288da4b3052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4304,9 +4304,9 @@ }, "/v2/addresses/
/compose/dispenser": { "result": { - "rawtransaction": "0200000000010103c509e9ce1a922332b64060fc661927b2a132bd5016747d3e51de82086a3f36020000001600145bad9dc437bebf3918916d803cb86328f48ce663ffffffff0200000000000000002c6a2a2921b013dad7d5885bc79db11a67e41fa691883a738ea81b90fe54646dacfb25715d0b5108c2e3d021bb474b0a27010000001600145bad9dc437bebf3918916d803cb86328f48ce66302000000000000", + "rawtransaction": "02000000000101dc2cafa3d48e7f864eb99f783d4aadcea96c948e8fc819d8ee9cc79c1dba2a450200000016001404ea61fb15d719aed8e3e1f0d7b3b54e5509e480ffffffff0200000000000000002c6a2a96c037babd4b19641faead1555b630fc18bee5e95fe1be05efe76f11af1f99a3595b225e2838b5f90180474b0a270100000016001404ea61fb15d719aed8e3e1f0d7b3b54e5509e48002000000000000", "params": { - "source": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", + "source": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4329,16 +4329,16 @@ }, "/v2/addresses/
/compose/dividend": { "result": { - "rawtransaction": "020000000001012e8481efaa7cb19d0e1cb085017722e90f59356addd8c083b9754afef05195e0000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000236a212fbcc64e92ced155f4327bff8c68b78e572da80fab39dc6c8520da12d6eab7d84e60b3052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "02000000000101629a1a55a170534ace8caa3df91a22a6f73c8d44e01c5f6d79c454d08a38a96a00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000236a217080ed31b543b2ee339312b13dd1028356efaab963f12c626b15df27a0bf9af1e360b3052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -4356,12 +4356,12 @@ }, "/v2/addresses/
/compose/issuance": { "result": { - "rawtransaction": "02000000000101b76b1e014d75389c589c0caf4fb3300779093d37e1f856ece64e092f3ca0a52c000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff0322020000000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea20000000000000000236a2102e070c78ab771f333514e032dadf17d32fbafe887251125a895fe653380cd899324a8052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "020000000001018ba0b023fa73aa2ff93bccd19cf5b5bb64f413f2156fc64cf5b25bd1ae9f4ced00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff032202000000000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd80000000000000000236a21f8e7af26548f10263a98542360afa1939cfeec745f4b82aa032bfd827b5b2a13af24a8052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "transfer_destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "lock": false, "reset": false, @@ -4373,18 +4373,18 @@ }, "/v2/addresses/
/compose/mpma": { "result": { - "rawtransaction": "02000000000104c362fd57df40d2f7b22119a6815fb50731e9f0c204afd0a8f346e99f200d6b50000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff3a3512052b1f6c7997c704f47961b99368444bbd463eadc649ef1da0fe2637a6000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff5f7e661150654e0e0f83b21bf8cb2a7f451c42ca7ccbae370ed33989800171bc000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff29765159b762b04db15ca415e182337fd3ee63ba58dc47e17499e4ba0c6c0ea3000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff03e80300000000000069512103193cda2f14eb9990c3645f64b847e85a3b3431b2c285c580970963e5cd4352382103cd8d173fdc35955033030dffc9b7162cc8e2c9ccc2fbe6c273ee9ac076a6966b2103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53aee80300000000000069512103163cda2f14eb9990c34728094aa5e272f2e927d4277b757b2a099de06f313dc72102a32fdf875a521e716b122962b650a43869cb880e0846704d51a6ffac1ac9ba1a2103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53ae61d016a8040000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000002000002000002000000000000", + "rawtransaction": "020000000001045d403484e6cd3b9c7351b8cd4672591e4993bc9e602c00f0e751002fcdce5a1400000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff681d94ee9c101450b7e54672d663bf63c20736d5cc2c0223cc2c3d5be65e052300000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff3294ea38c4e18a1cb8750fa2c7729a8763cedb509ebe782e78413d2e2b675df500000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff27b9c1c3c26fe34df163805de9fbdd03726cc512f6edb1c37747fe770cb1abeb00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff03e8030000000000006951210208458172b4a3d400be809a1b156c59c8098450af72241a24f2c291bcba10bff2210399741568a8870147af5eb7fd6db52327fc36d38a5db849a4968fc43161212fb02103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353aee8030000000000006951210207458172b4a3d400bea3ed76e7a5b1cec3e884bf88b50ad5f89cb74fefac5ed92102c4acdd50c2dcb6021ee43b28f88e5467986138cb0abce82bb4c7a15d0d4e033c2103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353ae61d016a804000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000002000002000002000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", 1 ], [ "MYASSETA", - "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", 2 ] ], @@ -4396,9 +4396,9 @@ }, "/v2/addresses/
/compose/order": { "result": { - "rawtransaction": "02000000000101cb86375524df64335db90ce54dce1900ab55be07e6fbf5d1926c9c24df7eeb41000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000356a3367677a86c8c179ab2b0759445d5eaf57d3cd8831935b82d6f7dde2bd7d380d1dc159be62465afb0d4395a2189be7301a25def78eae052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "02000000000101470aeefc8460adc3d7d43217314977efcb13e84313996c94981926e0ab134f1500000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000356a3351eb067ed8025df87aa31bc50a3cfd8b667cba38b40f78a376613362acf75ff76f528ddc779d94ca1c6d68b0e54a92333543cf8eae052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4415,7 +4415,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -4428,10 +4428,10 @@ }, "/v2/addresses/
/compose/send": { "result": { - "rawtransaction": "020000000001012fdb8902a719b60e47881d41705121da58d4d0fa395e4ab2d9e2037db3371c04000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000306a2e01f4666b2fe5e5565753fe504ca3bfa0a62ea05707e35fec17e401e7f1c78ddfe91670b5480821b477f7a966b42ae5af052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "02000000000101865cd70b1713d01302f2c630b2a4039d16068b5d3418b1e6142f36dfd773317900000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000306a2eea85613120d262f8080fa39e970831172c3b902a2f0319c910bb26d0d4cdda9b8ec1cfb05d25a876652fde2293d6e5af052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4451,10 +4451,10 @@ }, "/v2/addresses/
/compose/sweep": { "result": { - "rawtransaction": "02000000000101abcb6d0f7e57d9ef1f21b6b8d17ca0ceec47c25353c746c8bcc05b1d50176db1000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000236a21dde8cf439c2cf59dedb19e8012c24601eb5c712f962a2d960ad904e37447684e5860b3052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "02000000000101883fa75bc4939a651bf39cd09fc40bc8b8d7cda75179be83dfde5c20183009b400000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000236a214c01f5eb691e0ef1c9870453c5348c9fc9e461b45eb316a1851155de8b7fa5274d60b3052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "flags": 7, "memo": "FFFF" }, @@ -4463,10 +4463,10 @@ }, "/v2/addresses/
/compose/dispense": { "result": { - "rawtransaction": "020000000001010e29d0c7518c9353ea93e80a623846c30eb5a9e1aab715f557d1aa033c0c331d02000000160014b886678b2158112c9d7fe7b214a12943c2cabd96ffffffff03e803000000000000160014b77441a3eca05c136080e504fe32114fa79f440600000000000000000c6a0a0e635245f8a5f172a08e66b8082701000000160014b886678b2158112c9d7fe7b214a12943c2cabd9602000000000000", + "rawtransaction": "020000000001019a64dc4268831546b8049e2d83ea7815ad1d57ffb22159a371db0095fe49972602000000160014386a5bb745b1ba84d5953b77406457e9415704a1ffffffff03e8030000000000001600144a5bd60b2d454cc549130f385b94d63db6269c0200000000000000000c6a0a61cbab5b6afe230df59066b8082701000000160014386a5bb745b1ba84d5953b77406457e9415704a102000000000000", "params": { - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "quantity": 1000 }, "name": "dispense" @@ -4474,9 +4474,9 @@ }, "/v2/addresses/
/compose/fairminter": { "result": { - "rawtransaction": "0200000000010183cd1d6970c45152292b562a65b79fe09a5e600ec378a40071f2388d2f5fe36a000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000316a2f426b1088e752ea1523cf0f58f3bc4e3adcb55ebc58b62e1495a6a98242c44f94d406566527b497cec3fcf4e4c4d75fa0af052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "020000000001013fbd5422024abb48ee9485d695285713372b57111294a91b8525f42f6f7cbb2b00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000316a2f9fceca9ab28020e0c6e7a5d05f25606cc61476d39e0a324378237a93a5ef9e0ea6671ea942443176e5ca32a93e4ef9a0af052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4500,15 +4500,15 @@ }, "/v2/addresses/
/compose/fairmint": { "result": { - "rawtransaction": "020000000001012d30a7500c68cbf83e00879f9aaf617d11a4d8ac3380d26bdc723e17827ff298000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff020000000000000000166a14717953eef0fe58a00787533c0a36c50746031654dab6052a010000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000000000000", + "rawtransaction": "020000000001013cf1f96b60f8523ee7061cef5fd17b8a8eaedee6258fe0a1b7d4ce45654e444f00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000166a14da1ae31127f35dbd1e07b60a109f471ac9ee7234dab6052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -4519,10 +4519,10 @@ }, "/v2/addresses/
/compose/attach": { "result": { - "rawtransaction": "02000000000106c3e4e7faa51091cb31434d98f891ff63d9ab4bfa3638fef5584a5d33698dd0f1000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff7208868743873615492fc442cb0469b4500985817a520dfc89ce18dfdfcddad1000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffffe850de1f07db1a5617f34079a0c96ab6e170d69ffe972aa0c07d09638f671a7c000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffffd73b9e0dc2dae0e017d015420144a8caebb883921cd7c13c3f1bf182d889847f000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff795208397bd023a4f148645b557dd60c8c1fb8daf54a70968417452d1a193bf0000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffffba3971c0e4dc16230f6cb612c66c808c9d246e107cd427c9be25d01ff1de0750000000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea2ffffffff04e80300000000000069512102169a36a17a3fd9bdad6aa0732270d8f48af934b7a0e8560dc917a0967dccf9ca2103c71ab6ae3c45a320fa77a5375bca58f1522d764a34dea50460c522393ff118042103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53aee80300000000000069512103169a36a17a3fd9bdad37f22931678bbd8aad3ef5f6ee585fd716aad175cdfa5c2102d75ca3a62056fd36a077fa3014c80ca31d237e4a239cf74069c7206e3fa41e232103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53aee803000000000000695121033c9a36a17a3fd9bdad3ef025693ed8f9e1df0cbaffee505cb372cee113fa9c5c2102b36dc7974635cf53c342c35223fd35c528144e7e46ac967859f0415b5c952ba02103c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb53aee83922fc060000001600148e6e09eb5d1666e9eb2b700a20fe05a2726f6ea202000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106fd27c9dfe14c2a77d55756f4ee13ec395595c857d40fd4a86fe8e1a9c36a87dc00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffffa61d11b7b871670fa79bbf46d37067ccdc812dda8997e9a5d5e3cd8fb9f8263600000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffffee6f9d6281382259986a7502887428c9a4b238f8f195c6831ba7ec1467bce1e300000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff08ca50fcfcd4f9e2363685d8cf27114e8b2cb12e9a1834dd68baade344948d5600000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff1e9a4fc8c1da01c2f0a699296267510892b8049e35c878e376cdbdb13e7e06e500000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffffd6c595074a7ce05e2655e5298d419338b07f5a31a7ed947cab076a109afb0d5a00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff04e80300000000000069512102331217b11cb7bc62051cf80482082680301db962d8e93434c4531fbb124606e32103b506e22e605f706292b93191c97e47bc498b38bb6ccbb64cfbb5a487561497ba2103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353aee80300000000000069512103331217b11cb7bc62054dab03c24925c53c42f52e8cef6927ca104cb8460549e42102f350e7213a1f2469cde862908b6518fe4cd533be798abe52fdb5a6da0544c7a12103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353aee80300000000000069512103191217b11cb7bc62051efc02c746268d5d359164d9ef3c72f220788b76367f002102c136d019082a160afc8b5aa6be042fcb2ae6018f1cb3dd309982c7e36326f3192103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353aee83922fc06000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259:1", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4539,10 +4539,10 @@ }, "/v2/utxos//compose/detach": { "result": { - "rawtransaction": "02000000000101b0d1ca820241ba400ce54d7ded428a0485dbf23ebf7937a56b9444ce7da5547101000000160014633245262e8c4ef8f94eb9165ebae1a0fe40c215ffffffff04e8030000000000006951210388aa019aeba2ab77565a7694fa505dbebb46ca9838a58f6f224b3455d89511ed21020924cfc398c384d2d033c83eeb6c41c2a25b58972b8bec897d2aff57df4dc1992103aaabeadab75a0d114731762081b21f2d826877d3986fc352a23ae12431d7e13953aee8030000000000006951210288aa019aeba2ab77560a7095fd5c0ee8ed46989f3cab8727764a2714dad315d02103552ed89ecb93d7ccd7658a60e9315481e10746d023ccb1d92e7fe454821bdad32103aaabeadab75a0d114731762081b21f2d826877d3986fc352a23ae12431d7e13953aee80300000000000069512102a2aa019aeba2ab7756077991bd160ff7d461f9813da1866b14295560eba2260321023046a9f0fda5b6b6b20bfd0edf5420f6903e3ca04fbf88ec481a9c63ef2fa01a2103aaabeadab75a0d114731762081b21f2d826877d3986fc352a23ae12431d7e13953aef498082701000000160014633245262e8c4ef8f94eb9165ebae1a0fe40c21502000000000000", + "rawtransaction": "0200000000010120829d2d32e93049620018aaf84a30db1526d8492ab2126cd94294e9a11dc02801000000160014868ddcf66027a85e5173ab966513d76bacc08c9cffffffff04e803000000000000695121036c4b4a849e8af6cf00b9b8d565354d479463dbe85f4200079bd95035229727192102d93bb440a25968ff4ed35f4b9243117d8eb4726d6e9d1262384c7998d64b827021030f3089de8881f2438da4d941cac5f57df85c6692d0ddcf89f713e22f1172f2c253aee803000000000000695121036c4b4a849e8af6cf00b8b3de3437181a916a8ce3564c05499d83142222d4709a21028071af44ad0526fb0b855a4b80095579dde5227969c44460634d3cd6870fd1b121030f3089de8881f2438da4d941cac5f57df85c6692d0ddcf89f713e22f1172f2c253aee80300000000000069512103464b4a849e8af6cf00b0b3d9767d175fad11eead57460405ffe0665613a545d12102eb09d5749b3d50cd78e26a2ff0702149efd24a0c0fac2a52087a4bacef78b2a521030f3089de8881f2438da4d941cac5f57df85c6692d0ddcf89f713e22f1172f2c253aef498082701000000160014868ddcf66027a85e5173ab966513d76bacc08c9c02000000000000", "params": { - "source": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0:1", - "destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220:1", + "destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4563,8 +4563,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 10000000000, @@ -4572,16 +4572,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726742070, - "last_issuance_block_time": 1726742078, + "first_issuance_block_time": 1726743052, + "last_issuance_block_time": 1726743070, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", - "owner": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", + "issuer": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", + "owner": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", "divisible": true, "locked": false, "supply": 100000000000, @@ -4589,16 +4589,16 @@ "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1726742065, - "last_issuance_block_time": 1726742065, + "first_issuance_block_time": 1726743048, + "last_issuance_block_time": 1726743048, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 100000000000, @@ -4606,16 +4606,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726742030, - "last_issuance_block_time": 1726742030, + "first_issuance_block_time": 1726743013, + "last_issuance_block_time": 1726743013, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 40, @@ -4623,16 +4623,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726741978, - "last_issuance_block_time": 1726741983, + "first_issuance_block_time": 1726742962, + "last_issuance_block_time": 1726742966, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 19, @@ -4640,8 +4640,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726741952, - "last_issuance_block_time": 1726741974, + "first_issuance_block_time": 1726742946, + "last_issuance_block_time": 1726742957, "supply_normalized": "0.00000019" } ], @@ -4653,8 +4653,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 10000000000, @@ -4662,15 +4662,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1726741913, - "last_issuance_block_time": 1726741926, + "first_issuance_block_time": 1726742908, + "last_issuance_block_time": 1726742920, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4678,14 +4678,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4693,7 +4693,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -4705,7 +4705,7 @@ }, "/v2/assets//balances/
": { "result": { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4724,9 +4724,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4741,7 +4741,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726742203, + "block_time": 1726743189, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4767,9 +4767,9 @@ }, { "tx_index": 55, - "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "block_index": 190, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4784,7 +4784,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726742198, + "block_time": 1726743185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4810,9 +4810,9 @@ }, { "tx_index": 52, - "tx_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "tx_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "block_index": 186, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -4827,7 +4827,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726742182, + "block_time": 1726743168, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4853,9 +4853,9 @@ }, { "tx_index": 50, - "tx_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "tx_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "block_index": 185, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -4870,7 +4870,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726742178, + "block_time": 1726743164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4896,9 +4896,9 @@ }, { "tx_index": 49, - "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", "block_index": 186, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4913,7 +4913,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726742182, + "block_time": 1726743168, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4944,13 +4944,13 @@ "/v2/assets//matches": { "result": [ { - "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "tx0_index": 49, - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 52, - "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", - "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -4964,7 +4964,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726742182, + "block_time": 1726743168, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4984,13 +4984,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "tx0_index": 49, - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 50, - "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", - "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5004,7 +5004,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726742178, + "block_time": 1726743164, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5024,13 +5024,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", "tx0_index": 47, - "tx0_hash": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 48, - "tx1_hash": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", - "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "tx1_hash": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5044,7 +5044,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726742099, + "block_time": 1726743090, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5071,20 +5071,20 @@ "result": [ { "block_index": 192, - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5092,20 +5092,20 @@ }, { "block_index": 125, - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "47f1796c49d5b94f0d524615742f610807a0c76df2208ea05990b7ad444c8ecc", + "event": "a067ff65963d10f1ef8f3d33058456506bf8d8dff9fe6e30436e77d40da1b4a8", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726741926, + "block_time": 1726742920, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5113,20 +5113,20 @@ }, { "block_index": 124, - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8", + "event": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726741922, + "block_time": 1726742916, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5134,20 +5134,20 @@ }, { "block_index": 124, - "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", + "event": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726741922, + "block_time": 1726742916, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5159,16 +5159,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8", + "event": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726741922, + "block_time": 1726742916, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5182,16 +5182,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "event": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -5203,16 +5203,16 @@ }, { "block_index": 192, - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -5224,16 +5224,16 @@ }, { "block_index": 192, - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -5245,16 +5245,16 @@ }, { "block_index": 191, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "event": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742203, + "block_time": 1726743189, "asset_info": { "divisible": true, "asset_longname": null, @@ -5266,16 +5266,16 @@ }, { "block_index": 189, - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742194, + "block_time": 1726743181, "asset_info": { "divisible": true, "asset_longname": null, @@ -5293,20 +5293,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", + "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", "block_index": 153, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726742056, + "block_time": 1726743039, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5328,14 +5328,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "47f1796c49d5b94f0d524615742f610807a0c76df2208ea05990b7ad444c8ecc", + "tx_hash": "a067ff65963d10f1ef8f3d33058456506bf8d8dff9fe6e30436e77d40da1b4a8", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -5350,20 +5350,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726741926, + "block_time": 1726742920, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8", + "tx_hash": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -5378,20 +5378,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726741922, + "block_time": 1726742916, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", + "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -5406,20 +5406,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726741917, + "block_time": 1726742912, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -5434,7 +5434,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1726741913, + "block_time": 1726742908, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5446,10 +5446,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5457,7 +5457,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "divisible": true, "asset_longname": null, @@ -5470,10 +5470,10 @@ }, { "tx_index": 53, - "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a", + "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3", "block_index": 187, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5481,7 +5481,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742186, + "block_time": 1726743172, "asset_info": { "divisible": true, "asset_longname": null, @@ -5494,10 +5494,10 @@ }, { "tx_index": 42, - "tx_hash": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", + "tx_hash": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", "block_index": 155, - "source": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53:0", - "destination": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0:1", + "source": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a:0", + "destination": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5505,7 +5505,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742065, + "block_time": 1726743048, "asset_info": { "divisible": true, "asset_longname": null, @@ -5518,10 +5518,10 @@ }, { "tx_index": 41, - "tx_hash": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53", + "tx_hash": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a", "block_index": 154, - "source": "e974db4d2a2886a23059fbe96759e378c4ae1d6277cac9700a15a7eb3bf610b4:0", - "destination": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53:0", + "source": "0debf18cd260e30cfa40e908abba0d11fd931bf61bac639d0c3c6a3c4dffd0ad:0", + "destination": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5529,7 +5529,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742060, + "block_time": 1726743043, "asset_info": { "divisible": true, "asset_longname": null, @@ -5548,18 +5548,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "last_status_tx_hash": null, - "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5569,7 +5569,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726742026, + "block_time": 1726743009, "asset_info": { "divisible": true, "asset_longname": null, @@ -5585,9 +5585,9 @@ }, { "tx_index": 30, - "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", + "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", "block_index": 144, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5596,7 +5596,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5606,7 +5606,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742017, + "block_time": 1726743000, "asset_info": { "divisible": true, "asset_longname": null, @@ -5622,9 +5622,9 @@ }, { "tx_index": 29, - "tx_hash": "14e387be9e1d2957f2fcb38bf2ad065ab35a588822f35dc6035d96abc00eb960", + "tx_hash": "d2babdd8ac4bb366d33be8955dd3360e02b0fedd8e3167db62af445fc82eac8c", "block_index": 142, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5633,7 +5633,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "origin": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5643,7 +5643,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742008, + "block_time": 1726742992, "asset_info": { "divisible": true, "asset_longname": null, @@ -5659,9 +5659,9 @@ }, { "tx_index": 26, - "tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5670,7 +5670,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5680,7 +5680,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -5701,9 +5701,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 30, - "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", + "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", "block_index": 144, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5712,7 +5712,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5722,7 +5722,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742017, + "block_time": 1726743000, "asset_info": { "divisible": true, "asset_longname": null, @@ -5750,7 +5750,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5758,7 +5758,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -5767,7 +5767,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5775,7 +5775,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -5784,7 +5784,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5792,7 +5792,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -5801,7 +5801,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -5816,27 +5816,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", - "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "last_status_tx_hash": null, - "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5851,7 +5851,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726742026, + "block_time": 1726743009, "asset_info": { "divisible": true, "asset_longname": null, @@ -5865,19 +5865,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", + "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5885,7 +5885,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5900,7 +5900,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -5914,19 +5914,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", + "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", "block_index": 140, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5934,7 +5934,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5949,7 +5949,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726741999, + "block_time": 1726742983, "asset_info": { "divisible": true, "asset_longname": null, @@ -5970,8 +5970,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "owner": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false, "supply": 0, @@ -5979,8 +5979,8 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1726742074, - "last_issuance_block_time": 1726742074, + "first_issuance_block_time": 1726743066, + "last_issuance_block_time": 1726743066, "supply_normalized": "0.00000000" } ], @@ -5990,10 +5990,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6018,7 +6018,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726741926 + "block_time": 1726742920 } ], "next_cursor": null, @@ -6027,64 +6027,64 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "47f1796c49d5b94f0d524615742f610807a0c76df2208ea05990b7ad444c8ecc", + "tx_hash": "a067ff65963d10f1ef8f3d33058456506bf8d8dff9fe6e30436e77d40da1b4a8", "tx_index": 13, "block_index": 125, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", - "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741926, + "block_time": 1726742920, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } }, { - "tx_hash": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8", + "tx_hash": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad", "tx_index": 12, "block_index": 124, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", - "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741922, + "block_time": 1726742916, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } }, { - "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", + "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", "tx_index": 11, "block_index": 123, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741917, + "block_time": 1726742912, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } @@ -6096,22 +6096,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "0edbf339f4815377a90c40490aef92b7ddb42de021c5782d970d3e343630cfd4", + "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", "tx_index": 11, "block_index": 123, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "fairminter_tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726741917, + "block_time": 1726742912, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } @@ -6124,9 +6124,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6141,7 +6141,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726742203, + "block_time": 1726743189, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6167,9 +6167,9 @@ }, { "tx_index": 55, - "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "block_index": 190, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6184,7 +6184,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726742198, + "block_time": 1726743185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6210,9 +6210,9 @@ }, { "tx_index": 52, - "tx_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "tx_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "block_index": 186, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6227,7 +6227,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726742182, + "block_time": 1726743168, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6253,9 +6253,9 @@ }, { "tx_index": 50, - "tx_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "tx_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "block_index": 185, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6270,7 +6270,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726742178, + "block_time": 1726743164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6296,9 +6296,9 @@ }, { "tx_index": 49, - "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", "block_index": 186, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6313,7 +6313,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726742182, + "block_time": 1726743168, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6344,9 +6344,9 @@ "/v2/orders/": { "result": { "tx_index": 57, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6361,7 +6361,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726742203, + "block_time": 1726743189, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6389,13 +6389,13 @@ "/v2/orders//matches": { "result": [ { - "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "tx0_index": 49, - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 52, - "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", - "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6409,7 +6409,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726742182, + "block_time": 1726743168, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6429,13 +6429,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "tx0_index": 49, - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 50, - "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", - "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6449,7 +6449,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726742178, + "block_time": 1726743164, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6476,15 +6476,15 @@ "result": [ { "tx_index": 51, - "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", + "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", "block_index": 185, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "btc_amount": 2000, - "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "status": "valid", "confirmed": true, - "block_time": 1726742178, + "block_time": 1726743164, "btc_amount_normalized": "0.00002000" } ], @@ -6495,9 +6495,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6515,7 +6515,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726742203, + "block_time": 1726743189, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6541,9 +6541,9 @@ }, { "tx_index": 55, - "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "block_index": 190, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6561,7 +6561,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726742198, + "block_time": 1726743185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6587,9 +6587,9 @@ }, { "tx_index": 52, - "tx_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "tx_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "block_index": 186, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6607,7 +6607,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726742182, + "block_time": 1726743168, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6633,9 +6633,9 @@ }, { "tx_index": 50, - "tx_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "tx_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "block_index": 185, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6653,7 +6653,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726742178, + "block_time": 1726743164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6679,9 +6679,9 @@ }, { "tx_index": 49, - "tx_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", "block_index": 186, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6699,7 +6699,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726742182, + "block_time": 1726743168, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6730,13 +6730,13 @@ "/v2/orders///matches": { "result": [ { - "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "tx0_index": 49, - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 52, - "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", - "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6753,7 +6753,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726742182, + "block_time": 1726743168, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6773,13 +6773,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "tx0_index": 49, - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 50, - "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", - "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6796,7 +6796,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726742178, + "block_time": 1726743164, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6816,13 +6816,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", "tx0_index": 47, - "tx0_hash": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 48, - "tx1_hash": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", - "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "tx1_hash": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6839,7 +6839,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726742099, + "block_time": 1726743090, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6865,13 +6865,13 @@ "/v2/order_matches": { "result": [ { - "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "tx0_index": 49, - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 52, - "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", - "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6885,7 +6885,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726742182, + "block_time": 1726743168, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6905,13 +6905,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "tx0_index": 49, - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 50, - "tx1_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", - "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6925,7 +6925,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726742178, + "block_time": 1726743164, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6945,13 +6945,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", + "id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", "tx0_index": 47, - "tx0_hash": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_hash": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx1_index": 48, - "tx1_hash": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", - "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "tx1_hash": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6965,7 +6965,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726742099, + "block_time": 1726743090, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7010,66 +7010,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "9f284d873f6c69ac2600ac8d935d6f4a50e0fff2ed36747baffff21663a4e8cb", + "tx_hash": "8cb6afe98c6fd78fe63d3400ff07363c80671a5aa675d073676e7be684d2d8a7", "block_index": 121, - "source": "bcrt1qzg7g6s9ckm9rsj4q55s6l4fjzlnzjs60l2vdx3", + "source": "bcrt1qsvdraccy4y6g937r7kzwjttq6j7htuuzvuzcpx", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1726741908, + "block_time": 1726742903, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "89ed825c9cf3546a5f10d5021f0de833325bd577c6423d24f9409fda0a5cadc2", + "tx_hash": "35c14d3851228713850558049f8ef10ae51d6653920573a6969cb1b7baa4fc62", "block_index": 120, - "source": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", + "source": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1726741904, + "block_time": 1726742899, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "78df88b3adbb8b49fb1040da6e6973d680237b0847b9ef6f91137009d30ea949", + "tx_hash": "baf2f258040ff731a98db0127f9b7e60175906c48cf36ddc978fa4c385e02b54", "block_index": 119, - "source": "bcrt1qv6q5lqz5p7z2e2c5z998s80k4vy8pa6xx7kh96", + "source": "bcrt1qqqrd70rps4uzjnfwyd8n88d4h0ytlrf9hte2xs", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1726741899, + "block_time": 1726742895, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "3b64d401cd3e96fd0196bdc830b4d519086eb3279527a69eb1cbfe9f7af866bf", + "tx_hash": "0628b5a3f2bde30471935b31d3997d20ee6fa78118c88421e24a2c8bba32a38d", "block_index": 118, - "source": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", + "source": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1726741895, + "block_time": 1726742890, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "dbd8a5e46a6800eda8df27b5e6499018089f141906c6199ecb3636f9e9da57a6", + "tx_hash": "ac90cd09ee4c1693a9a5eb34f190055f9e1a1d3f9096a01e96a77ffff5f3bdd0", "block_index": 117, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1726741891, + "block_time": 1726742886, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7081,18 +7081,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "last_status_tx_hash": null, - "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7102,7 +7102,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726742026, + "block_time": 1726743009, "asset_info": { "divisible": true, "asset_longname": null, @@ -7118,9 +7118,9 @@ }, { "tx_index": 30, - "tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", + "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", "block_index": 144, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7129,7 +7129,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7139,7 +7139,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742017, + "block_time": 1726743000, "asset_info": { "divisible": true, "asset_longname": null, @@ -7155,9 +7155,9 @@ }, { "tx_index": 29, - "tx_hash": "14e387be9e1d2957f2fcb38bf2ad065ab35a588822f35dc6035d96abc00eb960", + "tx_hash": "d2babdd8ac4bb366d33be8955dd3360e02b0fedd8e3167db62af445fc82eac8c", "block_index": 142, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7166,7 +7166,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "origin": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7176,7 +7176,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742008, + "block_time": 1726742992, "asset_info": { "divisible": true, "asset_longname": null, @@ -7192,9 +7192,9 @@ }, { "tx_index": 26, - "tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7203,7 +7203,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7213,7 +7213,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -7234,9 +7234,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7245,7 +7245,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7255,7 +7255,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -7275,19 +7275,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", + "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7295,7 +7295,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7310,7 +7310,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -7324,19 +7324,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", + "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", "block_index": 140, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7344,7 +7344,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7359,7 +7359,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726741999, + "block_time": 1726742983, "asset_info": { "divisible": true, "asset_longname": null, @@ -7378,20 +7378,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", + "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", "block_index": 153, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726742056, + "block_time": 1726743039, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -7412,20 +7412,20 @@ "/v2/dividends/": { "result": { "tx_index": 40, - "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", + "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", "block_index": 153, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726742056, + "block_time": 1726743039, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -7448,12 +7448,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", + "event": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", "tx_index": 40, - "utxo": "e974db4d2a2886a23059fbe96759e378c4ae1d6277cac9700a15a7eb3bf610b4:0", - "utxo_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "utxo": "0debf18cd260e30cfa40e908abba0d11fd931bf61bac639d0c3c6a3c4dffd0ad:0", + "utxo_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "confirmed": true, - "block_time": 1726742056, + "block_time": 1726743039, "asset_info": { "divisible": true, "asset_longname": null, @@ -7465,16 +7465,16 @@ }, { "block_index": 153, - "address": "bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy", + "address": "bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", + "event": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742056, + "block_time": 1726743039, "asset_info": { "divisible": true, "asset_longname": null, @@ -7495,27 +7495,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", - "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", + "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", + "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", "transaction_count": 1, - "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", - "block_time": 1726742211 + "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", + "block_time": 1726743198 }, "tx_hash": null, "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "tx_index": 59 }, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 }, { "event_index": 533, @@ -7524,12 +7524,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "status": "valid", "tag": "64657374726f79", - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "tx_index": 59, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -7539,24 +7539,24 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 193, - "event": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "event": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -7566,25 +7566,25 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", "block_index": 193, - "block_time": 1726742211, + "block_time": 1726743198, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "tx_index": 59, - "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", + "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -7604,9 +7604,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 } ], "next_cursor": 530, @@ -7618,15 +7618,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", - "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", + "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", + "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", "transaction_count": 1, - "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", - "block_time": 1726742211 + "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", + "block_time": 1726743198 }, "tx_hash": null, "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 } }, "/v2/events/counts": { @@ -7661,16 +7661,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -7680,78 +7680,78 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", + "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726742198, + "block_time": 1726743185, "asset_info": { "divisible": true, "asset_longname": null, @@ -7761,24 +7761,24 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "block_index": 190, - "block_time": 1726742198 + "block_time": 1726743185 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "event": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "divisible": true, "asset_longname": null, @@ -7788,9 +7788,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "block_time": 1726742190 + "block_time": 1726743177 } ], "next_cursor": 490, @@ -7807,27 +7807,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", - "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "last_status_tx_hash": null, - "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7842,7 +7842,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726742026, + "block_time": 1726743009, "asset_info": { "divisible": true, "asset_longname": null, @@ -7856,19 +7856,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "4055d83f55a0542ade7fcd9d7f9d966191ae2e9876b1e377a14a7fc0496b8a9b", + "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7876,7 +7876,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7891,7 +7891,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742004, + "block_time": 1726742987, "asset_info": { "divisible": true, "asset_longname": null, @@ -7905,19 +7905,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9cd59c8f30754cb61efd0c5df67e5f2bc6ae64099ae844cd8dd086b62aabb5cd", + "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", "block_index": 140, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "6f01f3da661364eb101011f397fd5578accec66ec3736246ec7fc96c86baeb3f", + "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7925,7 +7925,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7940,7 +7940,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726741999, + "block_time": 1726742983, "asset_info": { "divisible": true, "asset_longname": null, @@ -7959,10 +7959,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -7970,7 +7970,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "divisible": true, "asset_longname": null, @@ -7983,10 +7983,10 @@ }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -7994,11 +7994,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -8007,10 +8007,10 @@ }, { "tx_index": 54, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8018,11 +8018,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -8031,10 +8031,10 @@ }, { "tx_index": 53, - "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a", + "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3", "block_index": 187, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -8042,7 +8042,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742186, + "block_time": 1726743172, "asset_info": { "divisible": true, "asset_longname": null, @@ -8055,10 +8055,10 @@ }, { "tx_index": 42, - "tx_hash": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", + "tx_hash": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", "block_index": 155, - "source": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53:0", - "destination": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0:1", + "source": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a:0", + "destination": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8066,7 +8066,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726742065, + "block_time": 1726743048, "asset_info": { "divisible": true, "asset_longname": null, @@ -8085,14 +8085,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", + "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -8107,20 +8107,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742082, + "block_time": 1726743075, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "66542eb84d234807eb104350179c31c8f1b00e559ca82b489588629cb3fd8bfe", + "tx_hash": "02aeb11d1f8356db859ac3dd71599fbe3da1c8e3d517cf4a171e9e980045e2a1", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -8135,20 +8135,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726742078, + "block_time": 1726743070, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "fa63823d4d5818572e21737b9de669bcd5d05afc5b9e8cfb8cf525732deb75c8", + "tx_hash": "dd63df7abf9b1ae09c158bce761f704944f67bb94cc345329b4b926372bc11c9", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -8163,20 +8163,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742074, + "block_time": 1726743066, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "b7b8e84e938d9c5e88b764466dd7ab16843b7874731d10e0853fded80b2f08d2", + "tx_hash": "735d36c3e66e9e8eca66da2247ef421376f463c3a71166b90f79a1fb65c39ce0", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -8191,20 +8191,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742070, + "block_time": 1726743052, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", + "tx_hash": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", - "issuer": "bcrt1qvvey2f3w3380372whyt9awhp5rlypss4t6gmaz", + "source": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", + "issuer": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", "transfer": false, "callable": false, "call_date": 0, @@ -8219,7 +8219,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742065, + "block_time": 1726743048, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8230,14 +8230,14 @@ "/v2/issuances/": { "result": { "tx_index": 46, - "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", + "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "transfer": false, "callable": false, "call_date": 0, @@ -8252,7 +8252,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726742082, + "block_time": 1726743075, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8261,16 +8261,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "fee_paid_normalized": "0.00600000" } ], @@ -8281,16 +8281,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726742207, + "block_time": 1726743194, "fee_paid_normalized": "0.00600000" } ], @@ -8301,9 +8301,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696", + "tx_hash": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20", "block_index": 138, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8311,14 +8311,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726741991, + "block_time": 1726742975, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "60e53d18f1a227ad4ad75ba9854b8c64c4dceeb7c98514be938945b616fa342e", + "tx_hash": "5966fd52717602850bfb43b55f7da2b2e0c9be1896b41b65c6f9bf5b0e1099ab", "block_index": 137, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8326,7 +8326,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726741987, + "block_time": 1726742970, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8336,9 +8336,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696", + "tx_hash": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20", "block_index": 138, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8346,17 +8346,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726741991, + "block_time": 1726742975, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", + "tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", "tx_index": 22, "block_index": 135, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8381,13 +8381,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726741978 + "block_time": 1726742962 }, { - "tx_hash": "77334c64af50dfb5dd5b48de5da8b81e22ada3ec9181938eaceeb5d9ab5eb8cf", + "tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", "tx_index": 18, "block_index": 131, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8412,13 +8412,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726741952 + "block_time": 1726742946 }, { - "tx_hash": "ac047163f3cd9094f4ee2103b832d0064228aa5f2a7fc8e3104ee775fb181f84", + "tx_hash": "630338ac26f1db216809652acb490bc36058561df42b4800c28e5064bc629a2f", "tx_index": 14, "block_index": 130, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8443,13 +8443,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726741947 + "block_time": 1726742942 }, { - "tx_hash": "148158cdd331d8341d1ec481588510262d18d7f2b4433e9464c6bb4d02c0e49d", + "tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8474,7 +8474,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726741926 + "block_time": 1726742920 } ], "next_cursor": null, @@ -8488,8 +8488,8 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", - "address": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs" + "txid": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "address": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g" }, { "vout": 2, @@ -8497,8 +8497,8 @@ "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", - "address": "bcrt1qv6q5lqz5p7z2e2c5z998s80k4vy8pa6xx7kh96" + "txid": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", + "address": "bcrt1qqqrd70rps4uzjnfwyd8n88d4h0ytlrf9hte2xs" } ], "next_cursor": null, @@ -8507,28 +8507,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08" + "tx_hash": "2ff828784db699b93166c91bdc316c84bddfdb710a3c1d1f68665a7198728737" }, { - "tx_hash": "6564cd91f7e12c026702aef3fbe3095b8ff3e5d2ed77b36fe77bb02e77edc008" + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" }, { - "tx_hash": "96eddd62d0c04fd85a4cb6efc84b8857dc122efc29a2be60ea2356b65edab324" + "tx_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62" }, { - "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a" + "tx_hash": "d87b786b54a63498e93c8c2782a91997eb80f69458ca2ffe70320eef27155f6a" }, { - "tx_hash": "daabc4181b5c356b166fd9efb6056720fec8a1d81871b9c5b091a499e81e663f" + "tx_hash": "e4bcefdccfc18fddbc4afe4282d88bfa16c2de310ab0d2a3117b800f68102f7f" }, { - "tx_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285" + "tx_hash": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad" }, { - "tx_hash": "4d1c559a2f4b46484dd28d82a0544b0606eafb203419cf378deafd53670c77f7" + "tx_hash": "00199dce5d95beedbb99993b1c89f7a9d6b10e5fe571601ac03c7f5922de2ae2" }, { - "tx_hash": "e235e8e2448b424c34b08568636cc04674bcb5d8929edaeab628548a3b2daaf8" + "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3" } ], "next_cursor": null, @@ -8536,8 +8536,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 6, - "tx_hash": "a3fcc89690570455bec8e267f71157a48c131d570d442b663e284be039eeb34e" + "block_index": 9, + "tx_hash": "ca276a9e0fcccc10f25da14f88b9a9d1aaa1d9aa119e44716e66bdbf6fa97cc9" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -8548,17 +8548,17 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503" + "txid": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "03c8ac476e264f29d8b6fda45ad65a593b33fdccca5b3a6f8ddb8c6af5f8f7cddb" + "result": "03471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d3" }, "/v2/bitcoin/transactions/": { - "result": "0200000000010164ff2ceaab1f3a9b87431b23953e9c868f56f68ff92e5d0e47a7de52c5f0c8e40300000000ffffffff020000000000000000226a20df99d5f70aac5d275d047efe402704859d87a960c87d935e7f9c9c5999d75995680b0a2701000000160014b77441a3eca05c136080e504fe32114fa79f44060247304402207eea08e8ad9d3195d75bbafeb77a08ae08ae5f57e3a0901abd0e894fabac9e400220255fbdf5cccee2fcb70df80c658e4d8b74b3a14ea501634895abfb08b1b310ff012103c00ed866f6a66b1786e3fdf10ad429bdfef2bf782fe2eae745580ae546dcb96300000000" + "result": "02000000000101090f8194f8c91a1d69cea412e0e0ee2a81bbeef1b1386738dcfca87c60c571de0300000000ffffffff020000000000000000226a2066219dcdea1454a56b714138ca78be964ca44c1cb07456da31c97a272364d074680b0a27010000001600144a5bd60b2d454cc549130f385b94d63db6269c02024730440220014095efb57789cc7f02e982530a3eeaed1c3e3fd7dd80590bdaf44c193f3f68022044a2ddffc13fe034cd51684e3fb39a5c090ae9631dc0735f38c68d298fb54a8c0121020cb277fa643a47f001fd66be1b219cd0a025338e3d793d3482eb2d1d81209c2c00000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 68517 @@ -8581,26 +8581,26 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "tx_index": 60 } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "memo": null, "quantity": 10000, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "status": "valid", - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "tx_index": 60, "asset_info": { "divisible": true, @@ -8613,19 +8613,19 @@ } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "CREDIT", "params": { - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -8637,19 +8637,19 @@ } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 193, - "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -8661,27 +8661,27 @@ } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726742226.132691, + "block_time": 1726743212.580398, "btc_amount": 0, - "data": "0200000000000000010000000000002710809668fa89c3fb02c8b7a891003a3773f6eed4a656", + "data": "0200000000000000010000000000002710806a51cc766215db7e153afcd60bb43d6c1c61cff8", "destination": "", "fee": 10000, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "tx_index": 60, - "utxos_info": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b:1", + "utxos_info": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "memo": null, "asset_info": { "divisible": true, @@ -8703,19 +8703,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "CREDIT", "params": { - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -8733,26 +8733,26 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "tx_index": 60 } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "memo": null, "quantity": 10000, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "status": "valid", - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "tx_index": 60, "asset_info": { "divisible": true, @@ -8765,19 +8765,19 @@ } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "CREDIT", "params": { - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -8789,19 +8789,19 @@ } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 193, - "event": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -8813,27 +8813,27 @@ } }, { - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726742226.132691, + "block_time": 1726743212.580398, "btc_amount": 0, - "data": "0200000000000000010000000000002710809668fa89c3fb02c8b7a891003a3773f6eed4a656", + "data": "0200000000000000010000000000002710806a51cc766215db7e153afcd60bb43d6c1c61cff8", "destination": "", "fee": 10000, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", - "tx_hash": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", "tx_index": 60, - "utxos_info": "b22f55a1a0e314a124d46ca0a913d7338ff5853fc778333114e2c9ad0ca2817b:1", + "utxos_info": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "memo": null, "asset_info": { "divisible": true, @@ -8868,15 +8868,15 @@ "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", "block_index": 193, - "block_time": 1726742211, + "block_time": 1726743198, "difficulty": 545259519, - "previous_block_hash": "060f16b3c01cd84e3df6fecebaeb350562efe1925c7d3b8c94a82cddb4cafc8f" + "previous_block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50" }, "tx_hash": null, "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 } ], "next_cursor": 518, @@ -8888,17 +8888,17 @@ "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "7ee3e71c605a074281e59a3f9007430126e509a5b4e59c0efab8b4cc785a7fcd", + "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", "block_index": 193, - "block_time": 1726742211, + "block_time": 1726743198, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "tx_index": 59, - "utxos_info": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02:1", + "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8918,9 +8918,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 } ], "next_cursor": 519, @@ -8934,16 +8934,16 @@ "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "destination": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "out_index": 0, - "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", "tx_index": 33, - "block_time": 1726742026, + "block_time": 1726743009, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", "block_index": 146, - "block_time": 1726742026 + "block_time": 1726743009 } ], "next_cursor": 237, @@ -8956,15 +8956,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "70a450056d19fb650bbcc71f61ba5ef182d2e62bd011c67bead57dc183dfc75e", - "messages_hash": "de6184d927762cb48813f3e5bc58cbe8a5caadb7e7877499037ee370679b83bd", + "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", + "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", "transaction_count": 1, - "txlist_hash": "7ce414267e0fa1e4c80aedcf2ee79e93437462041dbda7db9aa35943b9fd429a", - "block_time": 1726742211 + "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", + "block_time": 1726743198 }, "tx_hash": null, "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 } ], "next_cursor": 529, @@ -8977,12 +8977,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "tx_index": 59 }, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 } ], "next_cursor": 528, @@ -8995,15 +8995,15 @@ "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 193, - "event": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "event": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -9013,9 +9013,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 } ], "next_cursor": 525, @@ -9027,16 +9027,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726742207, + "block_time": 1726743194, "asset_info": { "divisible": true, "asset_longname": null, @@ -9046,9 +9046,9 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 } ], "next_cursor": 524, @@ -9062,14 +9062,14 @@ "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "memo": null, "quantity": 10000, - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "status": "valid", - "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a", + "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3", "tx_index": 53, - "block_time": 1726742186, + "block_time": 1726743172, "asset_info": { "divisible": true, "asset_longname": null, @@ -9079,9 +9079,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "dc5aee8c69e5c1ccd3ad2801fef11e7d690af6c10f8ca3d849a72f70fc72442a", + "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3", "block_index": 187, - "block_time": 1726742186 + "block_time": 1726743172 } ], "next_cursor": null, @@ -9095,15 +9095,15 @@ "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "status": "valid", - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "tx_index": 54, - "block_time": 1726742190, + "block_time": 1726743177, "asset_info": { "divisible": true, "asset_longname": null, @@ -9113,9 +9113,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "550d0922694aecfdd1e34b23805d94db8198857eda826e948a499332c148d5ff", + "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", "block_index": 188, - "block_time": 1726742190 + "block_time": 1726743177 } ], "next_cursor": 495, @@ -9138,20 +9138,20 @@ "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "status": "valid", - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "tx_index": 58, - "block_time": 1726742207, + "block_time": 1726743194, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "1ab74ff349e60d357cb7208e771ff11172f5ff7277454a90bceb2f4434f44a08", + "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", "block_index": 192, - "block_time": 1726742207 + "block_time": 1726743194 } ], "next_cursor": null, @@ -9168,15 +9168,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "status": "valid", - "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", + "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", "tx_index": 40, - "block_time": 1726742056, + "block_time": 1726743039, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, @@ -9190,9 +9190,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "1442c5dadf24a9c7149fc3de760377657a50b4c675238007686e30ed0fdb4a28", + "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", "block_index": 153, - "block_time": 1726742056 + "block_time": 1726743039 } ], "next_cursor": null, @@ -9213,11 +9213,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 159, - "block_time": 1726742082 + "block_time": 1726743075 }, - "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", + "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", "block_index": 159, - "block_time": 1726742082 + "block_time": 1726743075 } ], "next_cursor": 367, @@ -9240,22 +9240,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "status": "valid", "transfer": false, - "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", + "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", "tx_index": 46, - "block_time": 1726742082, + "block_time": 1726743075, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "b547990915743f9dfa2fbe570fd01c7a01e2bc9bccb5f0e70bfb092b46e70655", + "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", "block_index": 159, - "block_time": 1726742082 + "block_time": 1726743075 } ], "next_cursor": 374, @@ -9270,12 +9270,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qka6yrglv5pwpxcyqu5z0uvs3f7ne73qxj5v6xf", + "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", "status": "valid", "tag": "64657374726f79", - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "tx_index": 59, - "block_time": 1726742211, + "block_time": 1726743198, "asset_info": { "divisible": true, "asset_longname": null, @@ -9285,9 +9285,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "672e789cb5024a272cef946f724c6580ecd9e2f9f23d4899bccc35fb8cbfab02", + "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", "block_index": 193, - "block_time": 1726742211 + "block_time": 1726743198 } ], "next_cursor": 157, @@ -9312,11 +9312,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "status": "open", - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "tx_index": 57, - "block_time": 1726742203, + "block_time": 1726743189, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9340,9 +9340,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "010fd9714b0fbe41328dcfd153c499eccb3b1e8d203a9b500c8365cbad052e6d", + "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", "block_index": 191, - "block_time": 1726742203 + "block_time": 1726743189 } ], "next_cursor": 502, @@ -9360,20 +9360,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d", + "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", "tx0_index": 49, - "tx1_address": "bcrt1qje504zwrlvpv3dagjyqr5dmn7mhdffjkcfpell", + "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "tx1_index": 52, - "block_time": 1726742182, + "block_time": 1726743168, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9392,9 +9392,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "353ed1142f146061bcbd64d33047ef59b1f915bc72b7ec754f01a710b1890285", + "tx_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", "block_index": 186, - "block_time": 1726742182 + "block_time": 1726743168 } ], "next_cursor": 461, @@ -9407,11 +9407,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0" + "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba" }, - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "block_index": 190, - "block_time": 1726742198 + "block_time": 1726743185 } ], "next_cursor": 476, @@ -9424,11 +9424,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac" + "tx_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e" }, - "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", + "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", "block_index": 185, - "block_time": 1726742178 + "block_time": 1726743164 } ], "next_cursor": null, @@ -9440,13 +9440,13 @@ "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", - "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", + "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", "status": "completed" }, - "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", + "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", "block_index": 185, - "block_time": 1726742178 + "block_time": 1726743164 } ], "next_cursor": 440, @@ -9460,18 +9460,18 @@ "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "order_match_id": "4dfb01b4a14a0bcbdfc725edc77719a2731441fee5d061506f0483cca3a5c90d_3bccb6c323bb0f104846885bbc482376a007f2bdcbe5f607cf3747a457f637ac", - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "status": "valid", - "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", + "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", "tx_index": 51, - "block_time": 1726742178, + "block_time": 1726743164, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "1d330c3c03aad157f515b7aae1a9b50ec34638620ae893ea53938c51c7d0290e", + "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", "block_index": 185, - "block_time": 1726742178 + "block_time": 1726743164 } ], "next_cursor": null, @@ -9484,16 +9484,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "975eb9d55bdc2daaa5e239165db9b6a81117cf2ba663b6510c1a8958aedb1fe0", - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "status": "valid", - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "tx_index": 56, - "block_time": 1726742198 + "block_time": 1726743185 }, - "tx_hash": "95cbcd3909acb831b38083ddd0f7fd1d1fc2ec59b759f5704e0a807a5c150259", + "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", "block_index": 190, - "block_time": 1726742198 + "block_time": 1726743185 } ], "next_cursor": null, @@ -9506,13 +9506,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "block_time": 1726742099 + "order_hash": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "block_time": 1726743090 }, "tx_hash": null, "block_index": 182, - "block_time": 1726742099 + "block_time": 1726743090 } ], "next_cursor": 446, @@ -9525,14 +9525,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "f585b0abe87b22e245647b5441b86dbe42120eabe82454a22ddbf7b9750d6a72_c49a472a3f19b686055ab249b41bba884579fbed879f58a7083cbed9cf77bed6", - "tx0_address": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "tx1_address": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", - "block_time": 1726742099 + "order_match_id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "block_time": 1726743090 }, "tx_hash": null, "block_index": 182, - "block_time": 1726742099 + "block_time": 1726743090 } ], "next_cursor": null, @@ -9550,14 +9550,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", - "origin": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "satoshirate": 1, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "status": 0, - "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", "tx_index": 32, - "block_time": 1726742021, + "block_time": 1726743004, "asset_info": { "divisible": true, "asset_longname": null, @@ -9570,9 +9570,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", "block_index": 145, - "block_time": 1726742021 + "block_time": 1726743004 } ], "next_cursor": 254, @@ -9587,9 +9587,9 @@ "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "status": 0, - "tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", + "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", "asset_info": { "divisible": true, "asset_longname": null, @@ -9599,9 +9599,9 @@ }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", "block_index": 146, - "block_time": 1726742026 + "block_time": 1726743009 } ], "next_cursor": 260, @@ -9615,13 +9615,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mvp1Wt3dDXLsTRMaAirFTs5YbHsGGJvZUe", + "destination": "mv4u3AwUQLhBtZSeqKQQ4En5zjMMhPVAV2", "dispense_quantity": 10, - "dispenser_tx_hash": "a1fc2463aef2b4097db31b2ba1308a4e6b9a6a6eff82085855829e3e25e6574d", - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", - "tx_hash": "9695b1501e32ae3c6f4f24caeca727bd3bfa7c6d0ddb866fab4880ba12f4f658", + "dispenser_tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx_hash": "9798f9cfd72e95f6e239fc93bec2216bae9623155fff3be184ac3dac823863b1", "tx_index": 31, - "block_time": 1726742017, + "block_time": 1726743000, "asset_info": { "divisible": true, "asset_longname": null, @@ -9631,9 +9631,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "9695b1501e32ae3c6f4f24caeca727bd3bfa7c6d0ddb866fab4880ba12f4f658", + "tx_hash": "9798f9cfd72e95f6e239fc93bec2216bae9623155fff3be184ac3dac823863b1", "block_index": 144, - "block_time": 1726742017 + "block_time": 1726743000 } ], "next_cursor": null, @@ -9648,14 +9648,14 @@ "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qtwkem3phh6lnjxy3dkqrewrr9r6geenrr0svrs", + "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "9218917bc9518cacdb7c9eb708520b38b5960fd46cacc7c6fdd3c54ad3a84763", - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", - "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", "tx_index": 33, - "block_time": 1726742026, + "block_time": 1726743009, "asset_info": { "divisible": true, "asset_longname": null, @@ -9666,9 +9666,9 @@ "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "363f6a0882de513e7d741650bd32a1b2271966fc6040b63223921acee909c503", + "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", "block_index": 146, - "block_time": 1726742026 + "block_time": 1726743009 } ], "next_cursor": 240, @@ -9683,19 +9683,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qsydqs5m46cgznnr8zmdclzg8v3naeydxkx500v", + "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696", + "tx_hash": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20", "tx_index": 25, "value": 66600.0, - "block_time": 1726741991, + "block_time": 1726742975, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "52f9c185027ddb83c79b32e02666b625497045542f2c6c709399bcc899183696", + "tx_hash": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20", "block_index": 138, - "block_time": 1726741991 + "block_time": 1726742975 } ], "next_cursor": 213, @@ -9726,16 +9726,16 @@ "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "start_block": 0, "status": "open", - "tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", + "tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", "tx_index": 22, - "block_time": 1726741978 + "block_time": 1726742962 }, - "tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", + "tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", "block_index": 135, - "block_time": 1726741978 + "block_time": 1726742962 } ], "next_cursor": 161, @@ -9748,11 +9748,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "ac047163f3cd9094f4ee2103b832d0064228aa5f2a7fc8e3104ee775fb181f84" + "tx_hash": "630338ac26f1db216809652acb490bc36058561df42b4800c28e5064bc629a2f" }, "tx_hash": null, "block_index": 130, - "block_time": 1726741947 + "block_time": 1726742942 } ], "next_cursor": 110, @@ -9768,24 +9768,24 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "b3d6300efc9dd06509a43daadd2849451d39d92ec23d3b895ae472fc9a7a0318", + "fairminter_tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", "paid_quantity": 34, - "source": "bcrt1qhzrx0zeptqgje8tlu7epfgffg0pv40vkr08eqn", + "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", "status": "valid", - "tx_hash": "4ef19e15a942cd317edd6f0705b17761dac9a1c56bd3d92c4b636cf5b7102c7c", + "tx_hash": "7b33dfa114bb715eb9f145b2f1bbaaaef414b6b4a96bb8c6eaeb491bb5acbb6d", "tx_index": 23, - "block_time": 1726741983, + "block_time": 1726742966, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false } }, - "tx_hash": "4ef19e15a942cd317edd6f0705b17761dac9a1c56bd3d92c4b636cf5b7102c7c", + "tx_hash": "7b33dfa114bb715eb9f145b2f1bbaaaef414b6b4a96bb8c6eaeb491bb5acbb6d", "block_index": 136, - "block_time": 1726741983 + "block_time": 1726742966 } ], "next_cursor": 190, @@ -9799,28 +9799,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9:1", + "destination": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "status": "valid", - "tx_hash": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", + "tx_hash": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", "tx_index": 38, - "block_time": 1726742048, + "block_time": 1726743030, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "4b4c0a7b76a6e12f0fe575aa8dc384cd41cf30e63acb9f8bb585c8fd9dcd84f9", + "tx_hash": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", "block_index": 151, - "block_time": 1726742048 + "block_time": 1726743030 } ], "next_cursor": 291, @@ -9834,28 +9834,28 @@ "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qnavufevt06yng5cpgtawx0fs3vswcj9dscgmcy", + "destination": "bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "daabc4181b5c356b166fd9efb6056720fec8a1d81871b9c5b091a499e81e663f:0", + "source": "2ff828784db699b93166c91bdc316c84bddfdb710a3c1d1f68665a7198728737:0", "status": "valid", - "tx_hash": "e4c8f0c552dea7470e5d2ef98ff6568f869c3e95231b43879b3a1fabea2cff64", + "tx_hash": "de71c5607ca8fcdc386738b1f1eebb812aeee0e012a4ce691d1ac9f894810f09", "tx_index": 37, - "block_time": 1726742043, + "block_time": 1726743026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3ehqn66azenwn6etwq9zpls95fex7m4z984rr3", + "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "e4c8f0c552dea7470e5d2ef98ff6568f869c3e95231b43879b3a1fabea2cff64", + "tx_hash": "de71c5607ca8fcdc386738b1f1eebb812aeee0e012a4ce691d1ac9f894810f09", "block_index": 150, - "block_time": 1726742043 + "block_time": 1726743026 } ], "next_cursor": null, @@ -9869,14 +9869,14 @@ "params": { "asset": "XCP", "block_index": 155, - "destination": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0:1", + "destination": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220:1", "msg_index": 1, "quantity": 1500000000, - "source": "6fca1cf812fee28a0f3b93ab2f45ee0e6517c7768660d5c25374ab222d624e53:0", + "source": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a:0", "status": "valid", - "tx_hash": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", + "tx_hash": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", "tx_index": 42, - "block_time": 1726742065, + "block_time": 1726743048, "asset_info": { "divisible": true, "asset_longname": null, @@ -9886,9 +9886,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "7154a57dce44946ba53779bf3ef2db85048a42ed7d4de50c40ba410282cad1b0", + "tx_hash": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", "block_index": 155, - "block_time": 1726742065 + "block_time": 1726743048 } ], "next_cursor": 346, @@ -9903,17 +9903,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qzg7g6s9ckm9rsj4q55s6l4fjzlnzjs60l2vdx3", + "source": "bcrt1qsvdraccy4y6g937r7kzwjttq6j7htuuzvuzcpx", "status": "valid", - "tx_hash": "9f284d873f6c69ac2600ac8d935d6f4a50e0fff2ed36747baffff21663a4e8cb", + "tx_hash": "8cb6afe98c6fd78fe63d3400ff07363c80671a5aa675d073676e7be684d2d8a7", "tx_index": 9, - "block_time": 1726741908, + "block_time": 1726742903, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "9f284d873f6c69ac2600ac8d935d6f4a50e0fff2ed36747baffff21663a4e8cb", + "tx_hash": "8cb6afe98c6fd78fe63d3400ff07363c80671a5aa675d073676e7be684d2d8a7", "block_index": 121, - "block_time": 1726741908 + "block_time": 1726742903 } ], "next_cursor": 65, From f275576f477cff19fbf64de5e2a8da4831f70e60 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 19 Sep 2024 14:07:50 +0000 Subject: [PATCH 14/46] Fix order cache: update cache when an order is filled --- counterparty-core/counterpartycore/lib/ledger.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/counterparty-core/counterpartycore/lib/ledger.py b/counterparty-core/counterpartycore/lib/ledger.py index def083436a..299439c230 100644 --- a/counterparty-core/counterpartycore/lib/ledger.py +++ b/counterparty-core/counterpartycore/lib/ledger.py @@ -1879,6 +1879,8 @@ def mark_order_as_filled(db, tx0_hash, tx1_hash, source=None): "ORDER_FILLED", {"tx_hash": order["tx_hash"]}, ) + if not util.PARSING_MEMPOOL: + OrdersCache(db).update_order(order["tx_hash"], update_data) def update_order_match_status(db, id, status): From 810834748f81617a5a37d1cbba9ec993d196c2be Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 19 Sep 2024 14:08:02 +0000 Subject: [PATCH 15/46] Fix order cache: update cache when an order is filled --- release-notes/release-notes-v10.4.1.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 release-notes/release-notes-v10.4.1.md diff --git a/release-notes/release-notes-v10.4.1.md b/release-notes/release-notes-v10.4.1.md new file mode 100644 index 0000000000..b66009fcd2 --- /dev/null +++ b/release-notes/release-notes-v10.4.1.md @@ -0,0 +1,24 @@ +# Release Notes - Counterparty Core v10.4.1 (2024-??-??) + + +# Upgrading + +# ChangeLog + +## Protocol Changes + +## Bugfixes + +* Fix order cache: update cache when an order is filled + +## Codebase + +## API + +## CLI + +# Credits + +* Ouziel Slama +* Warren Puffett +* Adam Krellenstein From 9475a14e8e3b89d3c1734404e75a53d9b018a085 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 19 Sep 2024 15:29:02 +0000 Subject: [PATCH 16/46] Move Compose API in api/compose.py module; DRY; fixes --- apiary.apib | 3491 +++++++++-------- .../counterpartycore/lib/api/api_v1.py | 9 +- .../counterpartycore/lib/api/compose.py | 878 +++++ .../counterpartycore/lib/api/routes.py | 47 +- .../counterpartycore/lib/api/util.py | 8 +- .../counterpartycore/lib/ledger.py | 2 + .../counterpartycore/lib/transaction.py | 1043 +---- .../test/fixtures/api_v2_fixtures.json | 98 +- .../test/regtest/apidoc/apicache.json | 3159 ++++++++------- .../test/regtest/regtestnode.py | 2 +- .../scenarios/scenario_last_mempool.py | 2 +- .../test/regtest/testscenarios.py | 12 +- counterparty-core/tools/compareledger.py | 2 +- 13 files changed, 4442 insertions(+), 4311 deletions(-) create mode 100644 counterparty-core/counterpartycore/lib/api/compose.py diff --git a/apiary.apib b/apiary.apib index 9b7ae55776..288a755141 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-09-19 10:53:45.941213. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-09-19 15:25:14.473139. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -179,15 +179,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", "block_index": 193, - "block_time": 1726743198, + "block_time": 1726759498, "difficulty": 545259519, - "previous_block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50" + "previous_block_hash": "7f71d687e0d39c2280dffb1bc1b46d850a664a73ebe5a93584f0435c187aa470" }, "tx_hash": null, "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 } ], "next_cursor": 518, @@ -204,17 +204,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", "block_index": 193, - "block_time": 1726743198, + "block_time": 1726759498, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "tx_index": 59, - "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", + "utxos_info": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -234,9 +234,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 } ], "next_cursor": 519, @@ -255,16 +255,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "destination": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "out_index": 0, - "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "tx_hash": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", "tx_index": 33, - "block_time": 1726743009, + "block_time": 1726759315, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "tx_hash": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", "block_index": 146, - "block_time": 1726743009 + "block_time": 1726759315 } ], "next_cursor": 237, @@ -282,15 +282,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", - "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", + "ledger_hash": "d780942d01b58e13071c1994b611b6f67c8b6644f5c3fcd20aa9fdf899dc8224", + "messages_hash": "a234caace5f00f4aeb2098f24859f045a43954bd6e6daaef09d01baa70e16884", "transaction_count": 1, - "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", - "block_time": 1726743198 + "txlist_hash": "baa06d9619fa0e75b227f944f0efc483c0198619ddd6ebdd4484b50dba4402ea", + "block_time": 1726759498 }, "tx_hash": null, "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 } ], "next_cursor": 529, @@ -308,12 +308,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "tx_index": 59 }, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 } ], "next_cursor": 528, @@ -333,15 +333,15 @@ Here is a list of events classified by theme and for each an example response: "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 193, - "event": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "event": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -351,9 +351,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 } ], "next_cursor": 525, @@ -370,16 +370,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -389,9 +389,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 } ], "next_cursor": 524, @@ -410,14 +410,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "memo": null, "quantity": 10000, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "status": "valid", - "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3", + "tx_hash": "4e88b4042628b7d9f55b444cab0a47fb3ca70fa7a8c02ae51daab7f1edb2360a", "tx_index": 53, - "block_time": 1726743172, + "block_time": 1726759474, "asset_info": { "divisible": true, "asset_longname": null, @@ -427,9 +427,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3", + "tx_hash": "4e88b4042628b7d9f55b444cab0a47fb3ca70fa7a8c02ae51daab7f1edb2360a", "block_index": 187, - "block_time": 1726743172 + "block_time": 1726759474 } ], "next_cursor": null, @@ -448,15 +448,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "status": "valid", - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "tx_index": 54, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "divisible": true, "asset_longname": null, @@ -466,9 +466,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "block_time": 1726743177 + "block_time": 1726759478 } ], "next_cursor": 495, @@ -506,20 +506,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "status": "valid", - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, - "block_time": 1726743194, + "block_time": 1726759495, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 } ], "next_cursor": null, @@ -541,15 +541,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": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "status": "valid", - "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", + "tx_hash": "a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df", "tx_index": 40, - "block_time": 1726743039, + "block_time": 1726759345, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -563,9 +563,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": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", + "tx_hash": "a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df", "block_index": 153, - "block_time": 1726743039 + "block_time": 1726759345 } ], "next_cursor": null, @@ -598,11 +598,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": 159, - "block_time": 1726743075 + "block_time": 1726759371 }, - "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", + "tx_hash": "87ca606c50f4b00fd77a11909134e01944eabcc4d7abf7a72e3a348c6647c2de", "block_index": 159, - "block_time": 1726743075 + "block_time": 1726759371 } ], "next_cursor": 367, @@ -630,22 +630,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": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "status": "valid", "transfer": false, - "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", + "tx_hash": "87ca606c50f4b00fd77a11909134e01944eabcc4d7abf7a72e3a348c6647c2de", "tx_index": 46, - "block_time": 1726743075, + "block_time": 1726759371, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", + "tx_hash": "87ca606c50f4b00fd77a11909134e01944eabcc4d7abf7a72e3a348c6647c2de", "block_index": 159, - "block_time": 1726743075 + "block_time": 1726759371 } ], "next_cursor": 374, @@ -665,12 +665,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "status": "valid", "tag": "64657374726f79", - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "tx_index": 59, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -680,9 +680,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 } ], "next_cursor": 157, @@ -714,11 +714,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": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "status": "open", - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "tx_index": 57, - "block_time": 1726743189, + "block_time": 1726759491, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -742,9 +742,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": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "block_time": 1726743189 + "block_time": 1726759491 } ], "next_cursor": 502, @@ -767,20 +767,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": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", "tx0_index": 49, - "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "tx1_address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "tx1_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "tx1_index": 52, - "block_time": 1726743168, + "block_time": 1726759470, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -799,9 +799,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": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "tx_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "block_index": 186, - "block_time": 1726743168 + "block_time": 1726759470 } ], "next_cursor": 461, @@ -819,11 +819,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba" + "tx_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443" }, - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "block_index": 190, - "block_time": 1726743185 + "block_time": 1726759487 } ], "next_cursor": 476, @@ -841,11 +841,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e" + "tx_hash": "6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930" }, - "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", + "tx_hash": "6ad8f1852d7ca2a53bafbd139d7502bc30e8593922cefd54f9494a23fc3d9463", "block_index": 185, - "block_time": 1726743164 + "block_time": 1726759465 } ], "next_cursor": null, @@ -862,13 +862,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", - "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", + "order_match_id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "status": "completed" }, - "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", + "tx_hash": "6ad8f1852d7ca2a53bafbd139d7502bc30e8593922cefd54f9494a23fc3d9463", "block_index": 185, - "block_time": 1726743164 + "block_time": 1726759465 } ], "next_cursor": 440, @@ -887,18 +887,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "destination": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "order_match_id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "status": "valid", - "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", + "tx_hash": "6ad8f1852d7ca2a53bafbd139d7502bc30e8593922cefd54f9494a23fc3d9463", "tx_index": 51, - "block_time": 1726743164, + "block_time": 1726759465, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", + "tx_hash": "6ad8f1852d7ca2a53bafbd139d7502bc30e8593922cefd54f9494a23fc3d9463", "block_index": 185, - "block_time": 1726743164 + "block_time": 1726759465 } ], "next_cursor": null, @@ -916,16 +916,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "offer_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "status": "valid", - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "tx_index": 56, - "block_time": 1726743185 + "block_time": 1726759487 }, - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "block_index": 190, - "block_time": 1726743185 + "block_time": 1726759487 } ], "next_cursor": null, @@ -943,13 +943,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "block_time": 1726743090 + "order_hash": "313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "block_time": 1726759387 }, "tx_hash": null, "block_index": 182, - "block_time": 1726743090 + "block_time": 1726759387 } ], "next_cursor": 446, @@ -967,14 +967,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "block_time": 1726743090 + "order_match_id": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f_313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "tx1_address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "block_time": 1726759387 }, "tx_hash": null, "block_index": 182, - "block_time": 1726743090 + "block_time": 1726759387 } ], "next_cursor": null, @@ -999,14 +999,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": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", - "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "oracle_address": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", + "origin": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "satoshirate": 1, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "status": 0, - "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", "tx_index": 32, - "block_time": 1726743004, + "block_time": 1726759311, "asset_info": { "divisible": true, "asset_longname": null, @@ -1019,9 +1019,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": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", "block_index": 145, - "block_time": 1726743004 + "block_time": 1726759311 } ], "next_cursor": 254, @@ -1041,9 +1041,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "status": 0, - "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", "asset_info": { "divisible": true, "asset_longname": null, @@ -1053,9 +1053,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "tx_hash": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", "block_index": 146, - "block_time": 1726743009 + "block_time": 1726759315 } ], "next_cursor": 260, @@ -1074,13 +1074,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mv4u3AwUQLhBtZSeqKQQ4En5zjMMhPVAV2", + "destination": "mjrt8gpVz2Q2WB7jttGXRx1suKE5xLhpG8", "dispense_quantity": 10, - "dispenser_tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "tx_hash": "9798f9cfd72e95f6e239fc93bec2216bae9623155fff3be184ac3dac823863b1", + "dispenser_tx_hash": "a0423cc553293cdeb28e5b41a51851e2d790f3f07a46cfb825347c10dfd41d8b", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "tx_hash": "f392140bea1580a9cfd92af22a5ee3746e422c5e9ca9cc37aebed449c87c85fc", "tx_index": 31, - "block_time": 1726743000, + "block_time": 1726759307, "asset_info": { "divisible": true, "asset_longname": null, @@ -1090,9 +1090,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "9798f9cfd72e95f6e239fc93bec2216bae9623155fff3be184ac3dac823863b1", + "tx_hash": "f392140bea1580a9cfd92af22a5ee3746e422c5e9ca9cc37aebed449c87c85fc", "block_index": 144, - "block_time": 1726743000 + "block_time": 1726759307 } ], "next_cursor": null, @@ -1112,14 +1112,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", + "destination": "bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", - "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "dispenser_tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", + "tx_hash": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", "tx_index": 33, - "block_time": 1726743009, + "block_time": 1726759315, "asset_info": { "divisible": true, "asset_longname": null, @@ -1130,9 +1130,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "tx_hash": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", "block_index": 146, - "block_time": 1726743009 + "block_time": 1726759315 } ], "next_cursor": 240, @@ -1154,19 +1154,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": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20", + "tx_hash": "c4b5d1cc8a00925e3c15d44bd0c988531a54057711a7e63f686f5a8af06bb36d", "tx_index": 25, "value": 66600.0, - "block_time": 1726742975, + "block_time": 1726759281, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20", + "tx_hash": "c4b5d1cc8a00925e3c15d44bd0c988531a54057711a7e63f686f5a8af06bb36d", "block_index": 138, - "block_time": 1726742975 + "block_time": 1726759281 } ], "next_cursor": 213, @@ -1204,16 +1204,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "start_block": 0, "status": "open", - "tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", + "tx_hash": "706b65e31c4a34249d77e4307108e81d97fb7dd30b3ec327ffb4a6939ed4ef10", "tx_index": 22, - "block_time": 1726742962 + "block_time": 1726759269 }, - "tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", + "tx_hash": "706b65e31c4a34249d77e4307108e81d97fb7dd30b3ec327ffb4a6939ed4ef10", "block_index": 135, - "block_time": 1726742962 + "block_time": 1726759269 } ], "next_cursor": 161, @@ -1231,11 +1231,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "630338ac26f1db216809652acb490bc36058561df42b4800c28e5064bc629a2f" + "tx_hash": "eb2d322022ee92e05714fc66c38fbba49afd84aff7e09e02bed07949b82db774" }, "tx_hash": null, "block_index": 130, - "block_time": 1726742942 + "block_time": 1726759248 } ], "next_cursor": 110, @@ -1256,24 +1256,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", + "fairminter_tx_hash": "706b65e31c4a34249d77e4307108e81d97fb7dd30b3ec327ffb4a6939ed4ef10", "paid_quantity": 34, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "status": "valid", - "tx_hash": "7b33dfa114bb715eb9f145b2f1bbaaaef414b6b4a96bb8c6eaeb491bb5acbb6d", + "tx_hash": "7947145d9d0d16c88da9eca3487a8547f6b6002699b0195c0053923fd5a5ec4b", "tx_index": 23, - "block_time": 1726742966, + "block_time": 1726759274, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } }, - "tx_hash": "7b33dfa114bb715eb9f145b2f1bbaaaef414b6b4a96bb8c6eaeb491bb5acbb6d", + "tx_hash": "7947145d9d0d16c88da9eca3487a8547f6b6002699b0195c0053923fd5a5ec4b", "block_index": 136, - "block_time": 1726742966 + "block_time": 1726759274 } ], "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": 151, - "destination": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d:1", + "destination": "708bb60e43e813d8ca4ae1998572a856c532536a25a94adbc814428887dcb678:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "status": "valid", - "tx_hash": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", + "tx_hash": "708bb60e43e813d8ca4ae1998572a856c532536a25a94adbc814428887dcb678", "tx_index": 38, - "block_time": 1726743030, + "block_time": 1726759337, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", + "tx_hash": "708bb60e43e813d8ca4ae1998572a856c532536a25a94adbc814428887dcb678", "block_index": 151, - "block_time": 1726743030 + "block_time": 1726759337 } ], "next_cursor": 291, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3", + "destination": "bcrt1qat5k09kmzy7qlhd3qyrysmz5skknuy9y2xwsrr", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "2ff828784db699b93166c91bdc316c84bddfdb710a3c1d1f68665a7198728737:0", + "source": "feb3856b69bde1f7612a91cac62772ea765964d9cb39723d9398e80b6c125da4:0", "status": "valid", - "tx_hash": "de71c5607ca8fcdc386738b1f1eebb812aeee0e012a4ce691d1ac9f894810f09", + "tx_hash": "75d37b5fd92904c24bf1292c9f2b69e08ddeddbd381753c0c73769e397b80eb8", "tx_index": 37, - "block_time": 1726743026, + "block_time": 1726759332, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "de71c5607ca8fcdc386738b1f1eebb812aeee0e012a4ce691d1ac9f894810f09", + "tx_hash": "75d37b5fd92904c24bf1292c9f2b69e08ddeddbd381753c0c73769e397b80eb8", "block_index": 150, - "block_time": 1726743026 + "block_time": 1726759332 } ], "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": 155, - "destination": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220:1", + "destination": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9:1", "msg_index": 1, "quantity": 1500000000, - "source": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a:0", + "source": "39bd27ee5737e42422d26d899ae6bc07f2929f4eaef5eb993047290e247a385c:0", "status": "valid", - "tx_hash": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", + "tx_hash": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9", "tx_index": 42, - "block_time": 1726743048, + "block_time": 1726759354, "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": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", + "tx_hash": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9", "block_index": 155, - "block_time": 1726743048 + "block_time": 1726759354 } ], "next_cursor": 346, @@ -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": "bcrt1qsvdraccy4y6g937r7kzwjttq6j7htuuzvuzcpx", + "source": "bcrt1qyd2lpsyqnwusjevzc2d6cs835xwyt3cyztaek2", "status": "valid", - "tx_hash": "8cb6afe98c6fd78fe63d3400ff07363c80671a5aa675d073676e7be684d2d8a7", + "tx_hash": "edc9e270e42ffd60a6524c60aa99d6fc47820a1305a15c399022256a40930336", "tx_index": 9, - "block_time": 1726742903, + "block_time": 1726759210, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "8cb6afe98c6fd78fe63d3400ff07363c80671a5aa675d073676e7be684d2d8a7", + "tx_hash": "edc9e270e42ffd60a6524c60aa99d6fc47820a1305a15c399022256a40930336", "block_index": 121, - "block_time": 1726742903 + "block_time": 1726759210 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 193, - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", - "block_time": 1726743198, - "previous_block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", + "block_time": 1726759498, + "previous_block_hash": "7f71d687e0d39c2280dffb1bc1b46d850a664a73ebe5a93584f0435c187aa470", "difficulty": 545259519, - "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", - "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", - "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", + "ledger_hash": "d780942d01b58e13071c1994b611b6f67c8b6644f5c3fcd20aa9fdf899dc8224", + "txlist_hash": "baa06d9619fa0e75b227f944f0efc483c0198619ddd6ebdd4484b50dba4402ea", + "messages_hash": "a234caace5f00f4aeb2098f24859f045a43954bd6e6daaef09d01baa70e16884", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", - "block_time": 1726743194, - "previous_block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", + "block_hash": "7f71d687e0d39c2280dffb1bc1b46d850a664a73ebe5a93584f0435c187aa470", + "block_time": 1726759495, + "previous_block_hash": "7dc097d23b09caa394c4394050d0ea0d1a994c22edab169d4207cf13a9b9dd04", "difficulty": 545259519, - "ledger_hash": "f5ce379ab00c2982a4a45f4ad87c82d7b3198e7fa39818af38a9702a68da9521", - "txlist_hash": "52eff7cd239691d1efa5da6dbc00227fd5fe9d2ebc1e525f4abec71f1c847da8", - "messages_hash": "427641ca80d9aee9afc778c264a77c308a6be71a5761db8532a744992561bb63", + "ledger_hash": "bfc661d57bc6474c5424d607eb6bb78e678f0d327795688017bd151b26e28283", + "txlist_hash": "82b255349cbba20900c13049bff0fcc98494f621e7e908ecf22d69a0171c66f7", + "messages_hash": "f9d86ce32496f88adafdbc8f8714a7b0c197299fa4f9ca5eb92dfb3565440da4", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", - "block_time": 1726743189, - "previous_block_hash": "47b3fb7b19695ffc7ac303e23eb3315b747c15d26456b38b337030006305e979", + "block_hash": "7dc097d23b09caa394c4394050d0ea0d1a994c22edab169d4207cf13a9b9dd04", + "block_time": 1726759491, + "previous_block_hash": "292d4e219931ec9c3aeede24e6b165e9f8c11f47ac4bb4ed128388d6003af39d", "difficulty": 545259519, - "ledger_hash": "97c6a9a9dfd360766c66484b6a2371fc523c88768dd82631e77ddafcc71a8b60", - "txlist_hash": "a3a75d3eef307cc600ea559da8c7e6114eeb7c089d783c0aca0a09c91a3c9aff", - "messages_hash": "585ca23f5198daa88c7c982d0e320b36405d74b4e4520ac95c0f150c80e25ae8", + "ledger_hash": "1bec9f5277d954d9e7b76a59890eaeb4218a177f30eeced39246ee3147f7e263", + "txlist_hash": "eaf4d3646a37ab7440aa489661fe5915c192f87cb38dbac9e99f562d8d6c29fc", + "messages_hash": "d6bba5f598c31a364106a860659653773e458987c3b7d860bca8c72f0dba4b41", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "47b3fb7b19695ffc7ac303e23eb3315b747c15d26456b38b337030006305e979", - "block_time": 1726743185, - "previous_block_hash": "1257ebae1dd6b4cdc6b62a8ed6a80f99571bd3bc27f37129fb28997aca21f3e1", + "block_hash": "292d4e219931ec9c3aeede24e6b165e9f8c11f47ac4bb4ed128388d6003af39d", + "block_time": 1726759487, + "previous_block_hash": "09b669375c195107a735f34dd62bb883e07e68460f7a52630b8e822acb905886", "difficulty": 545259519, - "ledger_hash": "52e23c330c89b46771efd78aa458e3f82def371c7cbf1ee4c0921bc347339f58", - "txlist_hash": "4f40bf44aa9fe5ec1030dd443132aa6c993ee869442ae6fe6e452a9933b12633", - "messages_hash": "86586a2a004808ca3cdaa719be924b71770a53050fa445fcd6b7a3635f663e96", + "ledger_hash": "83b70a115d466f42f45671cb26a84c4ece8494c485593fc39a2e91e01dc4cf49", + "txlist_hash": "f23ad582ed2a84d2897a924dbc1b3573c47a7c3944254a1d4a745e782f778c47", + "messages_hash": "9cb2b6d41714ebc0dd8e087978b099d97ca9a89cfd4b68a7fb85e3dddd4205f9", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "1257ebae1dd6b4cdc6b62a8ed6a80f99571bd3bc27f37129fb28997aca21f3e1", - "block_time": 1726743181, - "previous_block_hash": "427129e75f1858594b1c563d06e55db5f97f7e6425d5c064a509dec7a90698b2", + "block_hash": "09b669375c195107a735f34dd62bb883e07e68460f7a52630b8e822acb905886", + "block_time": 1726759482, + "previous_block_hash": "7f31db406f1290796ed8a19cf8d56ec624ee0916c1c38ff2cdf7cc1843a1c168", "difficulty": 545259519, - "ledger_hash": "d8889a73fe9dd722a5624327b070c876b4d4d73ab28b7b4af363169b20c82d56", - "txlist_hash": "89b6834dab2d42c9ed636574a742baa1b920fdd2df6ff29af5654633cd1bd291", - "messages_hash": "2a78bccf0050c392e1f1435a8eb950e5e21e20d28b0310a6d344702a10a45fca", + "ledger_hash": "99f3b42fb4ac5d76395e45cad69612d4616522679be81e5cfe955044f423a26e", + "txlist_hash": "22247c10e0e0c8d3d8623285d2e32fec91d62597fd459333be07896948007021", + "messages_hash": "13b940af77c2aba3a309b51c3fa708b09adf5a942a0b00a59b285def2c682a1e", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 193, - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", - "block_time": 1726743198, - "previous_block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", + "block_time": 1726759498, + "previous_block_hash": "7f71d687e0d39c2280dffb1bc1b46d850a664a73ebe5a93584f0435c187aa470", "difficulty": 545259519, - "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", - "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", - "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", + "ledger_hash": "d780942d01b58e13071c1994b611b6f67c8b6644f5c3fcd20aa9fdf899dc8224", + "txlist_hash": "baa06d9619fa0e75b227f944f0efc483c0198619ddd6ebdd4484b50dba4402ea", + "messages_hash": "a234caace5f00f4aeb2098f24859f045a43954bd6e6daaef09d01baa70e16884", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86` (str, required) - The index of the block to return + + block_hash: `61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba` (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": 193, - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", - "block_time": 1726743198, - "previous_block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", + "block_time": 1726759498, + "previous_block_hash": "7f71d687e0d39c2280dffb1bc1b46d850a664a73ebe5a93584f0435c187aa470", "difficulty": 545259519, - "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", - "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", - "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", + "ledger_hash": "d780942d01b58e13071c1994b611b6f67c8b6644f5c3fcd20aa9fdf899dc8224", + "txlist_hash": "baa06d9619fa0e75b227f944f0efc483c0198619ddd6ebdd4484b50dba4402ea", + "messages_hash": "a234caace5f00f4aeb2098f24859f045a43954bd6e6daaef09d01baa70e16884", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 59, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", - "block_time": 1726743198, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", + "block_time": 1726759498, + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", + "utxos_info": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1706,11 +1706,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "f5ce379ab00c2982a4a45f4ad87c82d7b3198e7fa39818af38a9702a68da9521", - "messages_hash": "427641ca80d9aee9afc778c264a77c308a6be71a5761db8532a744992561bb63", + "ledger_hash": "bfc661d57bc6474c5424d607eb6bb78e678f0d327795688017bd151b26e28283", + "messages_hash": "f9d86ce32496f88adafdbc8f8714a7b0c197299fa4f9ca5eb92dfb3565440da4", "transaction_count": 1, - "txlist_hash": "52eff7cd239691d1efa5da6dbc00227fd5fe9d2ebc1e525f4abec71f1c847da8", - "block_time": 1726743194 + "txlist_hash": "82b255349cbba20900c13049bff0fcc98494f621e7e908ecf22d69a0171c66f7", + "block_time": 1726759495 }, "tx_hash": null }, @@ -1719,43 +1719,43 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58 }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "status": "valid", - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, - "block_time": 1726743194, + "block_time": 1726759495, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -1765,22 +1765,22 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "XCP", "block_index": 192, - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -1790,7 +1790,7 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499" } ], "next_cursor": 524, @@ -1873,16 +1873,16 @@ Returns the events of a block filtered by event "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -1892,57 +1892,57 @@ Returns the events of a block filtered by event }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499" } ], "next_cursor": null, @@ -2005,16 +2005,16 @@ Returns the credits of a block "result": [ { "block_index": 192, - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,20 +2026,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2047,20 +2047,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2116,16 +2116,16 @@ Returns the debits of a block "result": [ { "block_index": 193, - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "event": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -2165,24 +2165,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "object_id": "313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", "block_index": 182, "confirmed": true, - "block_time": 1726743090 + "block_time": 1726759387 }, { "type": "order", - "object_id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", + "object_id": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f", "block_index": 182, "confirmed": true, - "block_time": 1726743090 + "block_time": 1726759387 }, { "type": "order_match", - "object_id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "object_id": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f_313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", "block_index": 182, "confirmed": true, - "block_time": 1726743090 + "block_time": 1726759387 } ], "next_cursor": null, @@ -2214,13 +2214,13 @@ Returns the cancels of a block "result": [ { "tx_index": 56, - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "block_index": 190, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "offer_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "status": "valid", "confirmed": true, - "block_time": 1726743185 + "block_time": 1726759487 } ], "next_cursor": null, @@ -2252,15 +2252,15 @@ Returns the destructions of a block "result": [ { "tx_index": 59, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -2300,14 +2300,14 @@ Returns the issuances of a block "result": [ { "tx_index": 46, - "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", + "tx_hash": "87ca606c50f4b00fd77a11909134e01944eabcc4d7abf7a72e3a348c6647c2de", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -2322,7 +2322,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743075, + "block_time": 1726759371, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2356,10 +2356,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2367,7 +2367,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "divisible": true, "asset_longname": null, @@ -2380,10 +2380,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2391,11 +2391,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2404,10 +2404,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2415,11 +2415,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2457,27 +2457,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "tx_hash": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", - "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", + "destination": "bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "dispenser_tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "oracle_address": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "last_status_tx_hash": null, - "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "origin": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2492,7 +2492,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726743009, + "block_time": 1726759315, "asset_info": { "divisible": true, "asset_longname": null, @@ -2533,16 +2533,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 58, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "fee_paid_normalized": "0.00600000" } ], @@ -2576,17 +2576,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20", + "tx_hash": "c4b5d1cc8a00925e3c15d44bd0c988531a54057711a7e63f686f5a8af06bb36d", "block_index": 138, - "block_hash": "40b7d2b2f91ac007e251245971c029e99041307eba2caa7e230e1e97017bf0cd", - "block_time": 1726742975, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "block_hash": "2194ee84c7315e8c1d98f8957e8be443afc14549facb87b83aa91b0b773512bc", + "block_time": 1726759281, + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20:1", + "utxos_info": "c4b5d1cc8a00925e3c15d44bd0c988531a54057711a7e63f686f5a8af06bb36d:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2611,25 +2611,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 51, - "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", + "tx_hash": "6ad8f1852d7ca2a53bafbd139d7502bc30e8593922cefd54f9494a23fc3d9463", "block_index": 185, - "block_hash": "2e3c3d44591be34a2361ad5452925ffafe95f3ead188d15cba2bfc08d0bc2745", - "block_time": 1726743164, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "00205a51a474984c6414f18d2da9788eef87f120b42e1dae821e87c6518567f6", + "block_time": 1726759465, + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "destination": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "btc_amount": 2000, "fee": 10000, - "data": "0bdf69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a58b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "data": "0b2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab326dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "supported": true, - "utxos_info": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a:0", + "utxos_info": "6ad8f1852d7ca2a53bafbd139d7502bc30e8593922cefd54f9494a23fc3d9463:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", - "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", - "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", + "tx1_hash": "6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", + "order_match_id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "status": "valid" } }, @@ -2644,23 +2644,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "block_index": 190, - "block_hash": "47b3fb7b19695ffc7ac303e23eb3315b747c15d26456b38b337030006305e979", - "block_time": 1726743185, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "292d4e219931ec9c3aeede24e6b165e9f8c11f47ac4bb4ed128388d6003af39d", + "block_time": 1726759487, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "data": "469939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "supported": true, - "utxos_info": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7:1", + "utxos_info": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "offer_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "status": "valid" } }, @@ -2675,17 +2675,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", - "block_time": 1726743198, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", + "block_time": 1726759498, + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", + "utxos_info": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2715,17 +2715,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 32, - "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", "block_index": 145, - "block_hash": "4c30f1cd067582d1da225db2560d0c4fb431a388d40e6aba52007cddf9e42504", - "block_time": 1726743004, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "block_hash": "63da0226ae8a22c01d5fa3b548eb0e3cd9068b33244caf772f847ce1617e47aa", + "block_time": 1726759311, + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c0000000000000001000000000000000100000000000027100000000000000001008002bb60a8fb0d463362922422eb8ec7a4b57f2f22", + "data": "0c00000000000000010000000000000001000000000000271000000000000000010080cfe9e2a423f59de2337e9bc04c33586953cbe5df", "supported": true, - "utxos_info": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892:1", + "utxos_info": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2737,7 +2737,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "oracle_address": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "status": "valid", "asset_info": { "divisible": true, @@ -2761,17 +2761,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "tx_hash": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", "block_index": 146, - "block_hash": "6dbfdf8a6821f528293d7c3e91ef9bf75276801b91172dfa114f3ea3d42746ed", - "block_time": 1726743009, - "source": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", - "destination": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "block_hash": "49438d4aed994599e49045a7813e64de19c8a07a10ce9d6f21cc2d83acef5b43", + "block_time": 1726759315, + "source": "bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4", + "destination": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "btc_amount": 10000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc:0", + "utxos_info": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 40, - "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", + "tx_hash": "a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df", "block_index": 153, - "block_hash": "593b1516c224742a97169f1523b456457ef396989bb7a2c10247482baad3a464", - "block_time": 1726743039, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "14b1de04ac2d50ef05927be50efdb63ac8df204d2ca85ef80092dae07df95b7e", + "block_time": 1726759345, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc:1", + "utxos_info": "a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2814,7 +2814,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2839,17 +2839,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 46, - "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", + "tx_hash": "87ca606c50f4b00fd77a11909134e01944eabcc4d7abf7a72e3a348c6647c2de", "block_index": 159, - "block_hash": "55757585ce78618f61bae0994262243b8db0aa0324d00884b6bb5a4f6da4e474", - "block_time": 1726743075, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "4e4200b1655dcaa98b87cb3a92316ab05f0f839baca46074ec30d571fd86a1d5", + "block_time": 1726759371, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a:1", + "utxos_info": "87ca606c50f4b00fd77a11909134e01944eabcc4d7abf7a72e3a348c6647c2de:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2881,17 +2881,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", - "block_time": 1726743189, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "7dc097d23b09caa394c4394050d0ea0d1a994c22edab169d4207cf13a9b9dd04", + "block_time": 1726759491, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b:1", + "utxos_info": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2934,17 +2934,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3", + "tx_hash": "4e88b4042628b7d9f55b444cab0a47fb3ca70fa7a8c02ae51daab7f1edb2360a", "block_index": 187, - "block_hash": "2135b27a10d511d65e41c436158549a35203522e87028111c0f726144c430fb4", - "block_time": 1726743172, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "block_hash": "2f1527a5edb2808bde60a74f95005498e5aba4ba49b8ae55addbe0eaad29bfd5", + "block_time": 1726759474, + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710804a5bd60b2d454cc549130f385b94d63db6269c02", + "data": "020000000000000001000000000000271080eef93355f6ecdf9098a2d776fe6db68c709388ab", "supported": true, - "utxos_info": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3:1", + "utxos_info": "4e88b4042628b7d9f55b444cab0a47fb3ca70fa7a8c02ae51daab7f1edb2360a:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2952,7 +2952,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "memo": null, "asset_info": { "divisible": true, @@ -2975,17 +2975,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "block_hash": "427129e75f1858594b1c563d06e55db5f97f7e6425d5c064a509dec7a90698b2", - "block_time": 1726743177, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "7f31db406f1290796ed8a19cf8d56ec624ee0916c1c38ff2cdf7cc1843a1c168", + "block_time": 1726759478, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380386a5bb745b1ba84d5953b77406457e9415704a1806a51cc766215db7e153afcd60bb43d6c1c61cff8804a5bd60b2d454cc549130f385b94d63db6269c02400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a5f7d4ec4b195c3969ee5a70445cabac9ab241d380f66c2fe4d178214c277858ba6ea2c347149d097480eef93355f6ecdf9098a2d776fe6db68c709388ab400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926:0", + "utxos_info": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2993,14 +2993,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -3008,7 +3008,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3034,23 +3034,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", - "block_time": 1726743194, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "block_hash": "7f71d687e0d39c2280dffb1bc1b46d850a664a73ebe5a93584f0435c187aa470", + "block_time": 1726759495, + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04804a5bd60b2d454cc549130f385b94d63db6269c02017377656570206d7920617373657473", + "data": "0480eef93355f6ecdf9098a2d776fe6db68c709388ab017377656570206d7920617373657473", "supported": true, - "utxos_info": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d:1", + "utxos_info": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "flags": 1, "memo": "sweep my assets" } @@ -3083,17 +3083,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 59, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", - "block_time": 1726743198, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", + "block_time": 1726759498, + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", + "utxos_info": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3116,23 +3116,23 @@ Returns the list of the last ten transactions }, { "tx_index": 58, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", - "block_time": 1726743194, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "block_hash": "7f71d687e0d39c2280dffb1bc1b46d850a664a73ebe5a93584f0435c187aa470", + "block_time": 1726759495, + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04804a5bd60b2d454cc549130f385b94d63db6269c02017377656570206d7920617373657473", + "data": "0480eef93355f6ecdf9098a2d776fe6db68c709388ab017377656570206d7920617373657473", "supported": true, - "utxos_info": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d:1", + "utxos_info": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "flags": 1, "memo": "sweep my assets" } @@ -3150,7 +3150,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000101b93823fbfeeb9f76b4b3dbf8d504b3270e4c171496e5f13196dc3fc6fe92e87a0000000000ffffffff0200000000000000002b6a2903bea53b8a00584e261286de22388d23b7dc3a0597b34285293f38479f388d5b70efedc67135feabfaf0ca052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802473044022047ce42e81f859ce022cbaf63b11f09264a702ecc91a88c97aa699b3c7b2aa8e702203b0b2b063104f30aa11a3a8b23ee17e20eef5b3279a073afebf3f2902f98e482012103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d300000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001013c9c32a64226eb8ee4b93a0ccf6d8ed19ac047aa3798bc6285e64531fb81d43b0000000000ffffffff0200000000000000002b6a29f10a63984a4ded3495599817bf776dc2ea3eb1506fbfb4e138ac21916fb0490125ae31066eb3e071d8f0ca052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e160247304402201654f2b772de7b3bec095ad0b725954e97bcb6e1d71b74d4ffce545f60d43e2d0220015c33154ce0176acc7560c449c5c3ee7caacb75e9e600bf07773c54506648d8012102bfcb850450d8d8e21ef6816c4a816932bf7f87fde3f5c93af0a2fdefa5569b6100000000` (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. @@ -3163,18 +3163,18 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "data": "469939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "b93823fbfeeb9f76b4b3dbf8d504b3270e4c171496e5f13196dc3fc6fe92e87a", + "hash": "3c9c32a64226eb8ee4b93a0ccf6d8ed19ac047aa3798bc6285e64531fb81d43b", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3184,26 +3184,26 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a2903bea53b8a00584e261286de22388d23b7dc3a0597b34285293f38479f388d5b70efedc67135feabfa" + "script_pub_key": "6a29f10a63984a4ded3495599817bf776dc2ea3eb1506fbfb4e138ac21916fb0490125ae31066eb3e071d8" }, { "value": 4999990000, - "script_pub_key": "0014a58c27e8ecd410f6848b7abd7e26f355bce15dd8" + "script_pub_key": "00148b069ce3f96bfa60fcb5705deda3d019de3c6e16" } ], "vtxinwit": [ - "3044022047ce42e81f859ce022cbaf63b11f09264a702ecc91a88c97aa699b3c7b2aa8e702203b0b2b063104f30aa11a3a8b23ee17e20eef5b3279a073afebf3f2902f98e48201", - "03471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d3" + "304402201654f2b772de7b3bec095ad0b725954e97bcb6e1d71b74d4ffce545f60d43e2d0220015c33154ce0176acc7560c449c5c3ee7caacb75e9e600bf07773c54506648d801", + "02bfcb850450d8d8e21ef6816c4a816932bf7f87fde3f5c93af0a2fdefa5569b61" ], "lock_time": 0, - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", - "tx_id": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7" + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", + "tx_id": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9" }, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "offer_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "status": "valid" } }, @@ -3217,7 +3217,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b` (str, required) - Transaction hash + + tx_hash: `472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a` (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. @@ -3228,18 +3228,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710806a51cc766215db7e153afcd60bb43d6c1c61cff8", + "data": "020000000000000001000000000000271080f66c2fe4d178214c277858ba6ea2c347149d0974", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "add0ff4d3c6a3c0c9d63ac1bf61b93fd110dbaab08e940fa0ce360d28cf1eb0d", + "hash": "af1480cf6505b909487a26c1914f854ffd17ee0cc7cccf5c8755da361bd49460", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3249,20 +3249,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2efa02b5f0469c532efb017222c6d9df54fccd3aec8ca11621123b71e65ec38b865db46a7808815e4b258f1698fb7c" + "script_pub_key": "6a2e1b1e6e29a9ab036203604534244c061accb4eb656d333ff04acc7a0ca02c3d7fff59cd1df5caefe0f180d5880c82" }, { "value": 4999955000, - "script_pub_key": "00144a5bd60b2d454cc549130f385b94d63db6269c02" + "script_pub_key": "0014eef93355f6ecdf9098a2d776fe6db68c709388ab" } ], "vtxinwit": [ - "3044022021768aad5381cac8962caceab2ec74c9556e4e17369d6f6721a2c5632669a8b202203399c0a66d8fe767f5951dcdd32ac38bfbb074f59fa6d4cacd56d9e61a1f03eb01", - "020cb277fa643a47f001fd66be1b219cd0a025338e3d793d3482eb2d1d81209c2c" + "304402203ad8a66c7b17eba68200cd30c714e7853b7db85cf694a5b4c8b8429976b2a16d02200d707d3da3be336f823112af075c80468be8d8a7073c6290f8f805370ace20c801", + "0213beb0e758eb62ab96ac405982eda8ca8a8434131f7342c218f6b6488d9fd045" ], "lock_time": 0, - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", - "tx_id": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b" + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", + "tx_id": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3270,7 +3270,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "memo": null, "asset_info": { "divisible": true, @@ -3331,17 +3331,17 @@ Returns a transaction by its index. { "result": { "tx_index": 59, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", - "block_time": 1726743198, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", + "block_time": 1726759498, + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", + "utxos_info": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3370,7 +3370,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7` (str, required) - The hash of the transaction + + tx_hash: `baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba` (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. @@ -3382,17 +3382,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 59, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", - "block_time": 1726743198, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", + "block_time": 1726759498, + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", + "utxos_info": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3445,47 +3445,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58 }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "status": "valid", - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, - "block_time": 1726743194, + "block_time": 1726759495, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -3495,24 +3495,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "XCP", "block_index": 192, - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -3522,36 +3522,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 } ], "next_cursor": 523, @@ -3564,7 +3564,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d` (str, required) - The hash of the transaction to return + + tx_hash: `09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -3588,47 +3588,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58 }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "status": "valid", - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, - "block_time": 1726743194, + "block_time": 1726759495, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -3638,24 +3638,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "XCP", "block_index": 192, - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -3665,36 +3665,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 } ], "next_cursor": 523, @@ -3707,7 +3707,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926` (str, required) - The hash of the transaction to return + + tx_hash: `b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354` (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 @@ -3726,10 +3726,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "quantity": 10, "status": "valid", @@ -3737,7 +3737,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "divisible": true, "asset_longname": null, @@ -3750,10 +3750,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3761,11 +3761,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -3774,10 +3774,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3785,11 +3785,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -3807,7 +3807,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc` (str, required) - The hash of the transaction to return + + tx_hash: `57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5` (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 @@ -3827,27 +3827,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "tx_hash": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", - "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", + "destination": "bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "dispenser_tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "oracle_address": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "last_status_tx_hash": null, - "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "origin": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3862,7 +3862,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726743009, + "block_time": 1726759315, "asset_info": { "divisible": true, "asset_longname": null, @@ -3906,16 +3906,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -3925,63 +3925,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 } ], "next_cursor": null, @@ -3994,7 +3994,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d` (str, required) - The hash of the transaction to return + + tx_hash: `09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `535` (str, optional) - The last event index to return + Default: `None` @@ -4016,16 +4016,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -4035,63 +4035,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 } ], "next_cursor": null, @@ -4106,7 +4106,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk,bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl,bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp` (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 @@ -4130,7 +4130,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4140,7 +4140,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -4151,7 +4151,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4161,7 +4161,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -4172,7 +4172,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4182,7 +4182,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -4193,7 +4193,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4203,7 +4203,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -4214,7 +4214,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4224,7 +4224,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -4241,7 +4241,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk,bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl,bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp` (str, required) - Comma separated list of addresses to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4260,17 +4260,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 57, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", - "block_time": 1726743189, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "7dc097d23b09caa394c4394050d0ea0d1a994c22edab169d4207cf13a9b9dd04", + "block_time": 1726759491, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b:1", + "utxos_info": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4306,23 +4306,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "block_index": 190, - "block_hash": "47b3fb7b19695ffc7ac303e23eb3315b747c15d26456b38b337030006305e979", - "block_time": 1726743185, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "292d4e219931ec9c3aeede24e6b165e9f8c11f47ac4bb4ed128388d6003af39d", + "block_time": 1726759487, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "data": "469939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "supported": true, - "utxos_info": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7:1", + "utxos_info": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "offer_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "status": "valid" } }, @@ -4330,17 +4330,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 55, - "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "tx_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "block_index": 189, - "block_hash": "1257ebae1dd6b4cdc6b62a8ed6a80f99571bd3bc27f37129fb28997aca21f3e1", - "block_time": 1726743181, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "09b669375c195107a735f34dd62bb883e07e68460f7a52630b8e822acb905886", + "block_time": 1726759482, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba:1", + "utxos_info": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4376,17 +4376,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "block_hash": "427129e75f1858594b1c563d06e55db5f97f7e6425d5c064a509dec7a90698b2", - "block_time": 1726743177, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "7f31db406f1290796ed8a19cf8d56ec624ee0916c1c38ff2cdf7cc1843a1c168", + "block_time": 1726759478, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380386a5bb745b1ba84d5953b77406457e9415704a1806a51cc766215db7e153afcd60bb43d6c1c61cff8804a5bd60b2d454cc549130f385b94d63db6269c02400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a5f7d4ec4b195c3969ee5a70445cabac9ab241d380f66c2fe4d178214c277858ba6ea2c347149d097480eef93355f6ecdf9098a2d776fe6db68c709388ab400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926:0", + "utxos_info": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4394,14 +4394,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -4409,7 +4409,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4428,25 +4428,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 51, - "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", + "tx_hash": "6ad8f1852d7ca2a53bafbd139d7502bc30e8593922cefd54f9494a23fc3d9463", "block_index": 185, - "block_hash": "2e3c3d44591be34a2361ad5452925ffafe95f3ead188d15cba2bfc08d0bc2745", - "block_time": 1726743164, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "00205a51a474984c6414f18d2da9788eef87f120b42e1dae821e87c6518567f6", + "block_time": 1726759465, + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "destination": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "btc_amount": 2000, "fee": 10000, - "data": "0bdf69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a58b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "data": "0b2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab326dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "supported": true, - "utxos_info": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a:0", + "utxos_info": "6ad8f1852d7ca2a53bafbd139d7502bc30e8593922cefd54f9494a23fc3d9463:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", - "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", - "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", + "tx1_hash": "6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", + "order_match_id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "status": "valid" } }, @@ -4463,7 +4463,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk,bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl,bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -4499,11 +4499,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "status": "open", - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "tx_index": 57, - "block_time": 1726743189, + "block_time": 1726759491, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4527,24 +4527,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "block_time": 1726743189 + "block_time": 1726759491 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "block_index": 191, - "event": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "event": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1726743189, + "block_time": 1726759491, "asset_info": { "divisible": true, "asset_longname": null, @@ -4554,25 +4554,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "block_time": 1726743189 + "block_time": 1726759491 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", + "block_hash": "7dc097d23b09caa394c4394050d0ea0d1a994c22edab169d4207cf13a9b9dd04", "block_index": 191, - "block_time": 1726743189, + "block_time": 1726759491, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "tx_index": 57, - "utxos_info": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b:1", + "utxos_info": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4604,40 +4604,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "block_time": 1726743189 + "block_time": 1726759491 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "offer_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "status": "valid", - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "tx_index": 56, - "block_time": 1726743185 + "block_time": 1726759487 }, - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "block_index": 190, - "block_time": 1726743185 + "block_time": 1726759487 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "event": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726743185, + "block_time": 1726759487, "asset_info": { "divisible": true, "asset_longname": null, @@ -4647,9 +4647,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "block_index": 190, - "block_time": 1726743185 + "block_time": 1726759487 } ], "next_cursor": 506, @@ -4662,7 +4662,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v,bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe,bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr` (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 @@ -4678,17 +4678,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "memo": null, "quantity": 10000, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "status": "valid", - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "tx_index": 60, "asset_info": { "divisible": true, @@ -4701,19 +4701,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "CREDIT", "params": { - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "event": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -4725,19 +4725,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 193, - "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "event": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -4749,27 +4749,27 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726743212.580398, + "block_time": 1726759503.0888908, "btc_amount": 0, - "data": "0200000000000000010000000000002710806a51cc766215db7e153afcd60bb43d6c1c61cff8", + "data": "020000000000000001000000000000271080f66c2fe4d178214c277858ba6ea2c347149d0974", "destination": "", "fee": 10000, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "tx_index": 60, - "utxos_info": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b:1", + "utxos_info": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "memo": null, "asset_info": { "divisible": true, @@ -4795,7 +4795,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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 @@ -4815,7 +4815,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4823,14 +4823,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4838,14 +4838,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4860,7 +4860,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4868,7 +4868,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -4885,7 +4885,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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` @@ -4897,7 +4897,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4919,7 +4919,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4969,16 +4969,16 @@ Returns the credits of an address "result": [ { "block_index": 190, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "event": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743185, + "block_time": 1726759487, "asset_info": { "divisible": true, "asset_longname": null, @@ -4990,16 +4990,16 @@ Returns the credits of an address }, { "block_index": 182, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", + "event": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743090, + "block_time": 1726759387, "asset_info": { "divisible": true, "asset_longname": null, @@ -5011,20 +5011,20 @@ Returns the credits of an address }, { "block_index": 159, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", + "event": "87ca606c50f4b00fd77a11909134e01944eabcc4d7abf7a72e3a348c6647c2de", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743075, + "block_time": 1726759371, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5032,20 +5032,20 @@ Returns the credits of an address }, { "block_index": 156, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "735d36c3e66e9e8eca66da2247ef421376f463c3a71166b90f79a1fb65c39ce0", + "event": "770197523ac78726980a37594b8357b76337ab79e7e9f0b6aa0755c687962f57", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743052, + "block_time": 1726759359, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5057,16 +5057,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", + "event": "708bb60e43e813d8ca4ae1998572a856c532536a25a94adbc814428887dcb678", "tx_index": 38, - "utxo": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d:1", - "utxo_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "utxo": "708bb60e43e813d8ca4ae1998572a856c532536a25a94adbc814428887dcb678:1", + "utxo_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "confirmed": true, - "block_time": 1726743030, + "block_time": 1726759337, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5083,7 +5083,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5122,16 +5122,16 @@ Returns the debits of an address "result": [ { "block_index": 191, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "event": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743189, + "block_time": 1726759491, "asset_info": { "divisible": true, "asset_longname": null, @@ -5143,16 +5143,16 @@ Returns the debits of an address }, { "block_index": 189, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "event": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743181, + "block_time": 1726759482, "asset_info": { "divisible": true, "asset_longname": null, @@ -5164,16 +5164,16 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "event": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "divisible": true, "asset_longname": null, @@ -5185,20 +5185,20 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "event": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5206,16 +5206,16 @@ Returns the debits of an address }, { "block_index": 183, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "event": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743155, + "block_time": 1726759457, "asset_info": { "divisible": true, "asset_longname": null, @@ -5236,7 +5236,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address of the feed + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5271,7 +5271,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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 @@ -5290,9 +5290,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "5966fd52717602850bfb43b55f7da2b2e0c9be1896b41b65c6f9bf5b0e1099ab", + "tx_hash": "d8507cb8324f5f355a72cec6acd17023e9e11cb6fda1e1f42af403bd5f79cf25", "block_index": 137, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5300,7 +5300,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726742970, + "block_time": 1726759277, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5314,7 +5314,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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 @@ -5333,14 +5333,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "5c97acb757b578558483987eb8e2a40e0e3ccb308bcedc6914f04a5586f71723", + "tx_hash": "b8091dc4b2cd4b26340a204c563fd567fe8bad0e58ca8ad6976031e867ec8321", "block_index": 112, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1726742865, + "block_time": 1726759172, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5355,7 +5355,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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 @@ -5374,10 +5374,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5385,7 +5385,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "divisible": true, "asset_longname": null, @@ -5398,10 +5398,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5409,11 +5409,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5422,10 +5422,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5433,11 +5433,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5446,10 +5446,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 38, - "tx_hash": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", + "tx_hash": "708bb60e43e813d8ca4ae1998572a856c532536a25a94adbc814428887dcb678", "block_index": 151, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d:1", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "708bb60e43e813d8ca4ae1998572a856c532536a25a94adbc814428887dcb678:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5457,11 +5457,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743030, + "block_time": 1726759337, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5470,10 +5470,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 35, - "tx_hash": "05be62933b931d190c6d9b32d1dcc6437a18e38abb5a77f5655459963314f6e3", + "tx_hash": "f46d0f31b7153ee6402ea55711baa6d611a72581ca4dab5fc6815a2e070f834b", "block_index": 148, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "e4bcefdccfc18fddbc4afe4282d88bfa16c2de310ab0d2a3117b800f68102f7f:1", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "312fbde68c58a1d25eabd4c01745601063d8392cb5a0921fb936cc89023f4a06:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5481,11 +5481,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743017, + "block_time": 1726759324, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5503,7 +5503,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3` (str, required) - The address to return + + address: `bcrt1qat5k09kmzy7qlhd3qyrysmz5skknuy9y2xwsrr` (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 @@ -5522,10 +5522,10 @@ Returns the receives of an address "result": [ { "tx_index": 37, - "tx_hash": "de71c5607ca8fcdc386738b1f1eebb812aeee0e012a4ce691d1ac9f894810f09", + "tx_hash": "75d37b5fd92904c24bf1292c9f2b69e08ddeddbd381753c0c73769e397b80eb8", "block_index": 150, - "source": "2ff828784db699b93166c91bdc316c84bddfdb710a3c1d1f68665a7198728737:0", - "destination": "bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3", + "source": "feb3856b69bde1f7612a91cac62772ea765964d9cb39723d9398e80b6c125da4:0", + "destination": "bcrt1qat5k09kmzy7qlhd3qyrysmz5skknuy9y2xwsrr", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5533,11 +5533,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743026, + "block_time": 1726759332, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5555,7 +5555,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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` @@ -5575,10 +5575,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5586,11 +5586,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5599,10 +5599,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5610,11 +5610,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5623,10 +5623,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 38, - "tx_hash": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", + "tx_hash": "708bb60e43e813d8ca4ae1998572a856c532536a25a94adbc814428887dcb678", "block_index": 151, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d:1", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "708bb60e43e813d8ca4ae1998572a856c532536a25a94adbc814428887dcb678:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5634,11 +5634,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743030, + "block_time": 1726759337, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5647,10 +5647,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 35, - "tx_hash": "05be62933b931d190c6d9b32d1dcc6437a18e38abb5a77f5655459963314f6e3", + "tx_hash": "f46d0f31b7153ee6402ea55711baa6d611a72581ca4dab5fc6815a2e070f834b", "block_index": 148, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "e4bcefdccfc18fddbc4afe4282d88bfa16c2de310ab0d2a3117b800f68102f7f:1", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "312fbde68c58a1d25eabd4c01745601063d8392cb5a0921fb936cc89023f4a06:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5658,11 +5658,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743017, + "block_time": 1726759324, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5680,7 +5680,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3` (str, required) - The address to return + + address: `bcrt1qat5k09kmzy7qlhd3qyrysmz5skknuy9y2xwsrr` (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` @@ -5700,10 +5700,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 37, - "tx_hash": "de71c5607ca8fcdc386738b1f1eebb812aeee0e012a4ce691d1ac9f894810f09", + "tx_hash": "75d37b5fd92904c24bf1292c9f2b69e08ddeddbd381753c0c73769e397b80eb8", "block_index": 150, - "source": "2ff828784db699b93166c91bdc316c84bddfdb710a3c1d1f68665a7198728737:0", - "destination": "bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3", + "source": "feb3856b69bde1f7612a91cac62772ea765964d9cb39723d9398e80b6c125da4:0", + "destination": "bcrt1qat5k09kmzy7qlhd3qyrysmz5skknuy9y2xwsrr", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5711,11 +5711,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743026, + "block_time": 1726759332, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5733,7 +5733,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5760,9 +5760,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 30, - "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", + "tx_hash": "a0423cc553293cdeb28e5b41a51851e2d790f3f07a46cfb825347c10dfd41d8b", "block_index": 144, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5771,7 +5771,7 @@ Returns the dispensers of an address "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5781,7 +5781,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726743000, + "block_time": 1726759307, "asset_info": { "divisible": true, "asset_longname": null, @@ -5797,9 +5797,9 @@ Returns the dispensers of an address }, { "tx_index": 26, - "tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5808,7 +5808,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5818,7 +5818,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -5843,7 +5843,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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` @@ -5856,9 +5856,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", + "tx_hash": "a0423cc553293cdeb28e5b41a51851e2d790f3f07a46cfb825347c10dfd41d8b", "block_index": 144, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5867,7 +5867,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5877,7 +5877,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726743000, + "block_time": 1726759307, "asset_info": { "divisible": true, "asset_longname": null, @@ -5899,7 +5899,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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 @@ -5919,19 +5919,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", + "tx_hash": "831bf049f1c6fa58850f84876ef47c4b729a3c318226ab0e23028f0c5d8105ad", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5939,7 +5939,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5954,7 +5954,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -5968,19 +5968,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", + "tx_hash": "2b75bab8c081422960be9d6fabb52cac807a284735c4987863ccf7c51d93efd2", "block_index": 140, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5988,7 +5988,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6003,7 +6003,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742983, + "block_time": 1726759290, "asset_info": { "divisible": true, "asset_longname": null, @@ -6025,7 +6025,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (str, required) - The address to return + + address: `bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp` (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 @@ -6045,19 +6045,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", + "tx_hash": "831bf049f1c6fa58850f84876ef47c4b729a3c318226ab0e23028f0c5d8105ad", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6065,7 +6065,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6080,7 +6080,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -6094,19 +6094,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", + "tx_hash": "2b75bab8c081422960be9d6fabb52cac807a284735c4987863ccf7c51d93efd2", "block_index": 140, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6114,7 +6114,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6129,7 +6129,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742983, + "block_time": 1726759290, "asset_info": { "divisible": true, "asset_longname": null, @@ -6151,7 +6151,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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` @@ -6172,19 +6172,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", + "tx_hash": "831bf049f1c6fa58850f84876ef47c4b729a3c318226ab0e23028f0c5d8105ad", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6192,7 +6192,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6207,7 +6207,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -6221,19 +6221,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", + "tx_hash": "2b75bab8c081422960be9d6fabb52cac807a284735c4987863ccf7c51d93efd2", "block_index": 140, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6241,7 +6241,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6256,7 +6256,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742983, + "block_time": 1726759290, "asset_info": { "divisible": true, "asset_longname": null, @@ -6278,7 +6278,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (str, required) - The address to return + + address: `bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp` (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` @@ -6299,19 +6299,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", + "tx_hash": "831bf049f1c6fa58850f84876ef47c4b729a3c318226ab0e23028f0c5d8105ad", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6319,7 +6319,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6334,7 +6334,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -6348,19 +6348,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", + "tx_hash": "2b75bab8c081422960be9d6fabb52cac807a284735c4987863ccf7c51d93efd2", "block_index": 140, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6368,7 +6368,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6383,7 +6383,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742983, + "block_time": 1726759290, "asset_info": { "divisible": true, "asset_longname": null, @@ -6405,7 +6405,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v` (str, required) - The address to return + + address: `bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe` (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 @@ -6424,16 +6424,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 58, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "fee_paid_normalized": "0.00600000" } ], @@ -6447,7 +6447,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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 @@ -6466,14 +6466,14 @@ Returns the issuances of an address "result": [ { "tx_index": 46, - "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", + "tx_hash": "87ca606c50f4b00fd77a11909134e01944eabcc4d7abf7a72e3a348c6647c2de", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -6488,20 +6488,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743075, + "block_time": 1726759371, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "02aeb11d1f8356db859ac3dd71599fbe3da1c8e3d517cf4a171e9e980045e2a1", + "tx_hash": "f998620aef9ecaa6f854d94c022c526f78a24a35bd0c70ac93d6efd149e6dd71", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -6516,20 +6516,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726743070, + "block_time": 1726759367, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "dd63df7abf9b1ae09c158bce761f704944f67bb94cc345329b4b926372bc11c9", + "tx_hash": "1542301a127e8ee0647990c91437188bece4afc134beda35fd5ea7cc4206b140", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -6544,20 +6544,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743066, + "block_time": 1726759363, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "735d36c3e66e9e8eca66da2247ef421376f463c3a71166b90f79a1fb65c39ce0", + "tx_hash": "770197523ac78726980a37594b8357b76337ab79e7e9f0b6aa0755c687962f57", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -6572,20 +6572,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743052, + "block_time": 1726759359, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "c94682346a1b879d3cda19a8edaedfde8160a8d03713b250908824343581020b", + "tx_hash": "36ba0f91debb6a5bde41ec0a04b8d9c0e4a1c9829af3aace037876e44292c761", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -6600,7 +6600,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743013, + "block_time": 1726759320, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -6615,7 +6615,7 @@ Returns the issuances of an address Returns the valid assets of an issuer + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The issuer to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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 @@ -6638,8 +6638,8 @@ Returns the valid assets of an issuer "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 10000000000, @@ -6647,16 +6647,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726743052, - "last_issuance_block_time": 1726743070, + "first_issuance_block_time": 1726759359, + "last_issuance_block_time": 1726759367, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 100000000000, @@ -6664,16 +6664,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726743013, - "last_issuance_block_time": 1726743013, + "first_issuance_block_time": 1726759320, + "last_issuance_block_time": 1726759320, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 40, @@ -6681,16 +6681,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726742962, - "last_issuance_block_time": 1726742966, + "first_issuance_block_time": 1726759269, + "last_issuance_block_time": 1726759274, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 19, @@ -6698,16 +6698,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726742946, - "last_issuance_block_time": 1726742957, + "first_issuance_block_time": 1726759252, + "last_issuance_block_time": 1726759265, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 0, @@ -6715,8 +6715,8 @@ Returns the valid assets of an issuer "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1726742925, - "last_issuance_block_time": 1726742942, + "first_issuance_block_time": 1726759231, + "last_issuance_block_time": 1726759248, "supply_normalized": "0.00000000" } ], @@ -6730,7 +6730,7 @@ Returns the valid assets of an issuer Returns the transactions of an address + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (str, required) - The address to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -6749,17 +6749,17 @@ Returns the transactions of an address "result": [ { "tx_index": 57, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", - "block_time": 1726743189, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "7dc097d23b09caa394c4394050d0ea0d1a994c22edab169d4207cf13a9b9dd04", + "block_time": 1726759491, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b:1", + "utxos_info": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6795,23 +6795,23 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "block_index": 190, - "block_hash": "47b3fb7b19695ffc7ac303e23eb3315b747c15d26456b38b337030006305e979", - "block_time": 1726743185, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "292d4e219931ec9c3aeede24e6b165e9f8c11f47ac4bb4ed128388d6003af39d", + "block_time": 1726759487, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "data": "469939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "supported": true, - "utxos_info": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7:1", + "utxos_info": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "offer_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "status": "valid" } }, @@ -6819,17 +6819,17 @@ Returns the transactions of an address }, { "tx_index": 55, - "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "tx_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "block_index": 189, - "block_hash": "1257ebae1dd6b4cdc6b62a8ed6a80f99571bd3bc27f37129fb28997aca21f3e1", - "block_time": 1726743181, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "09b669375c195107a735f34dd62bb883e07e68460f7a52630b8e822acb905886", + "block_time": 1726759482, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba:1", + "utxos_info": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6865,17 +6865,17 @@ Returns the transactions of an address }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "block_hash": "427129e75f1858594b1c563d06e55db5f97f7e6425d5c064a509dec7a90698b2", - "block_time": 1726743177, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "7f31db406f1290796ed8a19cf8d56ec624ee0916c1c38ff2cdf7cc1843a1c168", + "block_time": 1726759478, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380386a5bb745b1ba84d5953b77406457e9415704a1806a51cc766215db7e153afcd60bb43d6c1c61cff8804a5bd60b2d454cc549130f385b94d63db6269c02400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a5f7d4ec4b195c3969ee5a70445cabac9ab241d380f66c2fe4d178214c277858ba6ea2c347149d097480eef93355f6ecdf9098a2d776fe6db68c709388ab400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926:0", + "utxos_info": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -6883,14 +6883,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -6898,7 +6898,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -6917,17 +6917,17 @@ Returns the transactions of an address }, { "tx_index": 49, - "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", "block_index": 183, - "block_hash": "32ee38bd8523c5f18899a3a371090d2166ca60babc13231b279dc58acdf866a0", - "block_time": 1726743155, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "1dab43a8c41932514875294e7666ae504e57e4c5a72b896d3caba0c91c6036b7", + "block_time": 1726759457, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5:1", + "utxos_info": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6972,7 +6972,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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 @@ -6991,20 +6991,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 40, - "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", + "tx_hash": "a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df", "block_index": 153, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726743039, + "block_time": 1726759345, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -7029,7 +7029,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7056,9 +7056,9 @@ Returns the orders of an address "result": [ { "tx_index": 57, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7073,7 +7073,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726743189, + "block_time": 1726759491, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7099,9 +7099,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "tx_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "block_index": 190, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7116,7 +7116,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726743185, + "block_time": 1726759487, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7142,9 +7142,9 @@ Returns the orders of an address }, { "tx_index": 49, - "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", "block_index": 186, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7159,7 +7159,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726743168, + "block_time": 1726759470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7185,9 +7185,9 @@ Returns the orders of an address }, { "tx_index": 47, - "tx_hash": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", + "tx_hash": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f", "block_index": 182, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7202,7 +7202,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1726743090, + "block_time": 1726759387, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7237,7 +7237,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The source of the fairminter to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7255,10 +7255,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", + "tx_hash": "706b65e31c4a34249d77e4307108e81d97fb7dd30b3ec327ffb4a6939ed4ef10", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7283,13 +7283,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726742962 + "block_time": 1726759269 }, { - "tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", + "tx_hash": "d2119d24b6bcf04967f1beff06372383e5fc165c0922cb6afaea3b4eec7369af", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7314,13 +7314,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726742946 + "block_time": 1726759252 }, { - "tx_hash": "630338ac26f1db216809652acb490bc36058561df42b4800c28e5064bc629a2f", + "tx_hash": "eb2d322022ee92e05714fc66c38fbba49afd84aff7e09e02bed07949b82db774", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7345,13 +7345,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726742942 + "block_time": 1726759248 }, { - "tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7376,7 +7376,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726742920 + "block_time": 1726759227 } ], "next_cursor": null, @@ -7389,7 +7389,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (str, required) - The address of the mints to return + + address: `bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7407,127 +7407,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "7b33dfa114bb715eb9f145b2f1bbaaaef414b6b4a96bb8c6eaeb491bb5acbb6d", + "tx_hash": "7947145d9d0d16c88da9eca3487a8547f6b6002699b0195c0053923fd5a5ec4b", "tx_index": 23, "block_index": 136, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "fairminter_tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "fairminter_tx_hash": "706b65e31c4a34249d77e4307108e81d97fb7dd30b3ec327ffb4a6939ed4ef10", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742966, + "block_time": 1726759274, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } }, { - "tx_hash": "325787e9f0effbc24bc985f71f26f683dbe75a9105b6414d5e5315b4ceaac1c9", + "tx_hash": "09d249043040c9ec8160e7fb49d2ff7c557d2086f1be736eaf4b07ac636cc724", "tx_index": 21, "block_index": 134, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "fairminter_tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "fairminter_tx_hash": "d2119d24b6bcf04967f1beff06372383e5fc165c0922cb6afaea3b4eec7369af", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742957, + "block_time": 1726759265, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } }, { - "tx_hash": "675009915a6db39339ca7bb454f89704ff9da57f16c45c251e9ea253247a56af", + "tx_hash": "3521ba5de537a177c5063c549c8ec3ae6be77b576abedb8d51105bc5be47d292", "tx_index": 20, "block_index": 133, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "fairminter_tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "fairminter_tx_hash": "d2119d24b6bcf04967f1beff06372383e5fc165c0922cb6afaea3b4eec7369af", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742953, + "block_time": 1726759261, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } }, { - "tx_hash": "07fbae4d51d0beaccb7486518f1989ad7e9a734c21cf2c7e3752d1cd2a1ceb9f", + "tx_hash": "3bd0cfeab6358da21969de8958cfdccca48de1b088085be9843630ac16b83cee", "tx_index": 19, "block_index": 132, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "fairminter_tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "fairminter_tx_hash": "d2119d24b6bcf04967f1beff06372383e5fc165c0922cb6afaea3b4eec7369af", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742949, + "block_time": 1726759257, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } }, { - "tx_hash": "d6edd904969de8dd3c68546fdf7b24b76ec81d2ab8954e7abd4d5af6655ec6d4", + "tx_hash": "1377b97953bf540b306caa49df922660348b13f629155ec615a5304fab16d354", "tx_index": 15, "block_index": 127, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "fairminter_tx_hash": "630338ac26f1db216809652acb490bc36058561df42b4800c28e5064bc629a2f", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "fairminter_tx_hash": "eb2d322022ee92e05714fc66c38fbba49afd84aff7e09e02bed07949b82db774", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742929, + "block_time": 1726759236, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } }, { - "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", + "tx_hash": "eb49f271058899b7c9a13607563ebc0577ce924f1ac4c34f58ce66acbef8081b", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "fairminter_tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742912, + "block_time": 1726759219, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } @@ -7543,7 +7543,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (str, required) - The address of the mints to return + + address: `bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp` (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` @@ -7562,22 +7562,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", + "tx_hash": "eb49f271058899b7c9a13607563ebc0577ce924f1ac4c34f58ce66acbef8081b", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "fairminter_tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742912, + "block_time": 1726759219, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } @@ -7616,8 +7616,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: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address that will make the bet - + feed_address: `bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (str, required) - The address that will make the bet + + feed_address: `bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp` (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) @@ -7683,7 +7683,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: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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) @@ -7736,15 +7736,23 @@ Composes a transaction to broadcast textual and numerical information to the net ``` { "result": { - "rawtransaction": "02000000000101455dd36b3835387a4749ce9b9ad47320d3fdf8f65429f928c78dd49978a3c8a800000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff0200000000000000002b6a295e696832cb4fc3445a30e8938af20a15cf77d2fd605947df25628371583fba1b8c08f186f8a96bb15d3bb1052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "020000000001013295f09f553a49428dfe3439a11803eb9833aae63b05db2a26027dd9f7ae76b4000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff0200000000000000002b6a29e62c11a7cb09a2e33fcea70596e700910622e66fa2d4fb895543f0f66a4227d1e6a2e31560462e82314ab1052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, "text": "\"Hello, world!\"" }, - "name": "broadcast" + "name": "broadcast", + "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } } ``` @@ -7754,8 +7762,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: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address that will be sending the payment - + order_match_id: `df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62` (str, required) - The ID of the order match to pay for + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (str, required) - The address that will be sending the payment + + order_match_id: `2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106` (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) @@ -7804,12 +7812,20 @@ Composes a transaction to pay for a BTC order match. ``` { "result": { - "rawtransaction": "0200000000010162343c5171670775a4634b881780814be84fc168abb2f23373cb1bded16a809b00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff03b80b000000000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd800000000000000004b6a49986e5c19872a7e7f4c1ba5170aab0623e426a3458c5e36a3b56a9c11209451095478d14222796f1a4083a66dfbbe1c434f0f50226fcb1cc26c64c649f6c4b68cdc0eabda5a9477a7ced993052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "02000000000101917813cedb5eb175772167b2edc3097448c3caf5aad7f752b9a367e3284943a0000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff03b80b0000000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1600000000000000004b6a496db7f666d052bd3064bfa45481da322c7f3b6672e82dc939384f92e2ebebde45bb637ff6fdf10c127a552dbb1e77c79f522478a97f78f05a62dbcab380b38a74785991d1b389d7652dec93052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62" + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "order_match_id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106" }, - "name": "btcpay" + "name": "btcpay", + "data": "434e5452505254590b2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab326bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } } ``` @@ -7819,7 +7835,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: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address with the BTC to burn + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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` @@ -7871,13 +7887,14 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss ``` { "result": { - "rawtransaction": "0200000000010169f458476b337a147ca1d77f3089faaafeca77876c20a7dc6a3c43b5b51f67d900000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "020000000001010af74a46c47f7b9a8230d99914e7559332ac27ee8cd703396e05e3a621bf5f7a000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88aceeb1052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "quantity": 1000, "overburn": false }, - "name": "burn" + "name": "burn", + "data": null } } ``` @@ -7887,8 +7904,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: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b` (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) @@ -7937,12 +7954,20 @@ Composes a transaction to cancel an open order or bet. ``` { "result": { - "rawtransaction": "02000000000101a64db30bac9176f429af313e998036f5c1f26875686a8cba1356f85c29c9e82000000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff0200000000000000002b6a29dba244cc1dab36434818a4e318a7fcaaac0ad653ea52fabe08b7e7537ffe084b14a3dcb5d71a9f8e273bb1052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "020000000001019455248e7c5119a50efeb61e9e0864415d77e27ca3ce49eb46dcc03dea4bf47f000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff0200000000000000002b6a291a65e4ae8509efbd54cb523f22cf5f36e7b4a90d4848a7b2fb7019a9ae6814a842e1bea6640a83b12b4ab1052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "offer_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b" + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "offer_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b" }, - "name": "cancel" + "name": "cancel", + "data": "434e54525052545946056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } } ``` @@ -7952,7 +7977,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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 @@ -8004,9 +8029,9 @@ Composes a transaction to destroy a quantity of an asset. ``` { "result": { - "rawtransaction": "02000000000101fb80710aa438bee7755e2d302b63428bc1a42436ad64b6a52e946c9d96fdc18400000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000226a20b5273c4d58bf7b38bbd0858b5072ae53bbc2e20f884322266b5bc0faf61d288da4b3052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "02000000000101d4ae3ba314b9ef16421ff04ee6a7b6dc14aced89214c85a808c23223dcdf70e7000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff020000000000000000226a20981d4f7255ef6c17fa5a6cfa4d18d399d79d32e109a1efdf021b90d6d4c3aedcb2b3052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8019,7 +8044,15 @@ Composes a transaction to destroy a quantity of an asset. }, "quantity_normalized": "0.00001000" }, - "name": "destroy" + "name": "destroy", + "data": "434e5452505254596e000000000000000100000000000003e822627567732122", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } } ``` @@ -8029,7 +8062,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: `bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4` (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) @@ -8087,9 +8120,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv ``` { "result": { - "rawtransaction": "02000000000101dc2cafa3d48e7f864eb99f783d4aadcea96c948e8fc819d8ee9cc79c1dba2a450200000016001404ea61fb15d719aed8e3e1f0d7b3b54e5509e480ffffffff0200000000000000002c6a2a96c037babd4b19641faead1555b630fc18bee5e95fe1be05efe76f11af1f99a3595b225e2838b5f90180474b0a270100000016001404ea61fb15d719aed8e3e1f0d7b3b54e5509e48002000000000000", + "rawtransaction": "02000000000101d5375d4e6750ce63511ed9bc0718d7ce9b60203ce1e78b98c526a95f104cc9570200000016001480120f3877d5c56a2602265124a8015c69015ec0ffffffff0200000000000000002c6a2a3cccbbeeb4f2105af98d9bfa2ab1295fe47c30b25771d9028c746544bd8999f7aec32033ae3c5509f3ee564b0a270100000016001480120f3877d5c56a2602265124a8015c69015ec002000000000000", "params": { - "source": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", + "source": "bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8107,7 +8140,15 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "give_quantity_normalized": "0.00001000", "escrow_quantity_normalized": "0.00001000" }, - "name": "dispenser" + "name": "dispenser", + "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } } ``` @@ -8117,7 +8158,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: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (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: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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 @@ -8169,16 +8210,16 @@ Composes a transaction to issue a dividend to holders of a given asset. ``` { "result": { - "rawtransaction": "02000000000101629a1a55a170534ace8caa3df91a22a6f73c8d44e01c5f6d79c454d08a38a96a00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000236a217080ed31b543b2ee339312b13dd1028356efaab963f12c626b15df27a0bf9af1e360b3052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "02000000000101198dff4429c0c40244fd7895ca01612b11bcf8e9c7a934c2cacbf05191d8e8f0000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff020000000000000000236a21a3b1a714a1be993850e1ec1b7c34f91fd5c606b26813958b09e390df54b6bf47d66eb3052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -8191,7 +8232,15 @@ Composes a transaction to issue a dividend to holders of a given asset. }, "quantity_per_unit_normalized": "0.00000001" }, - "name": "dividend" + "name": "dividend", + "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } } ``` @@ -8201,10 +8250,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: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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` @@ -8262,19 +8311,27 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo ``` { "result": { - "rawtransaction": "020000000001018ba0b023fa73aa2ff93bccd19cf5b5bb64f413f2156fc64cf5b25bd1ae9f4ced00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff032202000000000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd80000000000000000236a21f8e7af26548f10263a98542360afa1939cfeec745f4b82aa032bfd827b5b2a13af24a8052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "0200000000010185bbde5e048c9f15874e28538f6592d0022e5ef9cebca6a42fbd318b6b03b3ea000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff0322020000000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e160000000000000000236a218f8d1fd584605c81d35d309736ca0930048773986b128df2a81ee121aa98f9132d35a8052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "transfer_destination": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "lock": false, "reset": false, "description": null, "quantity_normalized": "0.00001000" }, - "name": "issuance" + "name": "issuance", + "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } } ``` @@ -8284,9 +8341,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: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk,bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl,bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp` (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` @@ -8340,25 +8397,33 @@ Composes a transaction to send multiple payments to multiple addresses. ``` { "result": { - "rawtransaction": "020000000001045d403484e6cd3b9c7351b8cd4672591e4993bc9e602c00f0e751002fcdce5a1400000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff681d94ee9c101450b7e54672d663bf63c20736d5cc2c0223cc2c3d5be65e052300000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff3294ea38c4e18a1cb8750fa2c7729a8763cedb509ebe782e78413d2e2b675df500000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff27b9c1c3c26fe34df163805de9fbdd03726cc512f6edb1c37747fe770cb1abeb00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff03e8030000000000006951210208458172b4a3d400be809a1b156c59c8098450af72241a24f2c291bcba10bff2210399741568a8870147af5eb7fd6db52327fc36d38a5db849a4968fc43161212fb02103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353aee8030000000000006951210207458172b4a3d400bea3ed76e7a5b1cec3e884bf88b50ad5f89cb74fefac5ed92102c4acdd50c2dcb6021ee43b28f88e5467986138cb0abce82bb4c7a15d0d4e033c2103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353ae61d016a804000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000002000002000002000000000000", + "rawtransaction": "02000000000104ccdd81bd5f8de94ac52859df66a849d61b10783ea8728d53e04583024673a470000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff1ca877543395e7c8ba06a56971a5fbfdb6806674aadfebb13911ff1ab4c2859d000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff70f1d5e27b9face2eac34ad67350eaee153e187dbd0f2d433f418ff811772d09000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff6e4218ec237a98933af2d84b1052fcdc874eeeb8b95a1702b98352133e7c8fd0000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff03e803000000000000695121036b4bcda7d8c534b6a3db6de84e0183f18ed62e7aad19247e52136bd88597a1172102040d6b1067a097e6a6faeaa036163ae1bbd75549f471593d398f914851dd5e342102bfcb850450d8d8e21ef6816c4a816932bf7f87fde3f5c93af0a2fdefa5569b6153aee80300000000000069512102644bcda7d8c534b6a3f81a85bce6e14c4faf4580c1f00a85b8dec8089c499d4f21026a1ba3b590747badbfa6dbc9d84c4aa5e77cfbd346308ab21bc7f4243db272d72102bfcb850450d8d8e21ef6816c4a816932bf7f87fde3f5c93af0a2fdefa5569b6153ae99d016a8040000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000002000002000002000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", 1 ], [ "MYASSETA", - "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", 2 ] ], "memo": "\"Hello, world!\"", "memo_is_hex": false }, - "name": "mpma" + "name": "mpma", + "data": "434e545250525459030002808b069ce3f96bfa60fcb5705deda3d019de3c6e1680a5f7d4ec4b195c3969ee5a70445cabac9ab241d38f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } } ``` @@ -8368,7 +8433,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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 @@ -8423,9 +8488,9 @@ Composes a transaction to place an order on the distributed exchange. ``` { "result": { - "rawtransaction": "02000000000101470aeefc8460adc3d7d43217314977efcb13e84313996c94981926e0ab134f1500000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000356a3351eb067ed8025df87aa31bc50a3cfd8b667cba38b40f78a376613362acf75ff76f528ddc779d94ca1c6d68b0e54a92333543cf8eae052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "02000000000101b41a82c676c9cbff2cf8768795e0f433a320aa1163ea30d4299a4932988127bc000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff020000000000000000356a33b2903605253c11260dfad5e14e3631336a3ad6ba3fdeaeafbd9e1a99be6559dad26315494feca7a287ed2427917eee65b1f02c9eae052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8442,7 +8507,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -8450,7 +8515,15 @@ Composes a transaction to place an order on the distributed exchange. "get_quantity_normalized": "0.00001000", "fee_required_normalized": "0.00000100" }, - "name": "order" + "name": "order", + "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } } ``` @@ -8460,8 +8533,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: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (str, required) - The address that will be receiving the asset + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp` (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 @@ -8518,10 +8591,10 @@ Composes a transaction to send a quantity of an asset to another address. ``` { "result": { - "rawtransaction": "02000000000101865cd70b1713d01302f2c630b2a4039d16068b5d3418b1e6142f36dfd773317900000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000306a2eea85613120d262f8080fa39e970831172c3b902a2f0319c910bb26d0d4cdda9b8ec1cfb05d25a876652fde2293d6e5af052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "02000000000101cbd9c13356a505064f0d5cd7807f33a46517ae7bde5c50a4eeda0604dc6457a1000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff020000000000000000306a2e120e7824751f6bf5a2d2db003818b76f46347bba139638be7e95a90d4162774e523eb831c9ee47268a8c23b48615f4af052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8536,7 +8609,15 @@ Composes a transaction to send a quantity of an asset to another address. }, "quantity_normalized": "0.00001000" }, - "name": "send" + "name": "send", + "data": "434e54525052545902000000000000000100000000000003e880a5f7d4ec4b195c3969ee5a70445cabac9ab241d3", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } } ``` @@ -8546,8 +8627,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: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address that will be sending - + destination: `bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (str, required) - The address that will be sending + + destination: `bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp` (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 @@ -8598,14 +8679,22 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti ``` { "result": { - "rawtransaction": "02000000000101883fa75bc4939a651bf39cd09fc40bc8b8d7cda75179be83dfde5c20183009b400000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000236a214c01f5eb691e0ef1c9870453c5348c9fc9e461b45eb316a1851155de8b7fa5274d60b3052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "02000000000101a982c68ec82faf517817471dd65e9005b39090b2ef286183829315b0cec15acd000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff020000000000000000236a21548e2fff4af53e278f08b2cce705294d0756dd392f3878e2f110d2165f973383a56eb3052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "flags": 7, "memo": "FFFF" }, - "name": "sweep" + "name": "sweep", + "data": "434e5452505254590480a5f7d4ec4b195c3969ee5a70445cabac9ab241d307ffff", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } } ``` @@ -8615,8 +8704,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: `bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr` (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` @@ -8666,13 +8755,21 @@ Composes a transaction to send BTC to a dispenser. ``` { "result": { - "rawtransaction": "020000000001019a64dc4268831546b8049e2d83ea7815ad1d57ffb22159a371db0095fe49972602000000160014386a5bb745b1ba84d5953b77406457e9415704a1ffffffff03e8030000000000001600144a5bd60b2d454cc549130f385b94d63db6269c0200000000000000000c6a0a61cbab5b6afe230df59066b8082701000000160014386a5bb745b1ba84d5953b77406457e9415704a102000000000000", + "rawtransaction": "0200000000010163943dfc234a49f954fdce223959e830bc02759d13bdaf3ba5a27c2d85f1d86a02000000160014a5f7d4ec4b195c3969ee5a70445cabac9ab241d3ffffffff03e803000000000000160014eef93355f6ecdf9098a2d776fe6db68c709388ab00000000000000000c6a0a3c1ef2916994af8d7cc575b8082701000000160014a5f7d4ec4b195c3969ee5a70445cabac9ab241d302000000000000", "params": { - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "quantity": 1000 }, - "name": "dispense" + "name": "dispense", + "data": "434e5452505254590d00", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } } ``` @@ -8682,7 +8779,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address that will be issuing the asset + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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: `` @@ -8764,9 +8861,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. ``` { "result": { - "rawtransaction": "020000000001013fbd5422024abb48ee9485d695285713372b57111294a91b8525f42f6f7cbb2b00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000316a2f9fceca9ab28020e0c6e7a5d05f25606cc61476d39e0a324378237a93a5ef9e0ea6671ea942443176e5ca32a93e4ef9a0af052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "02000000000101f7f9bfce8290718c761690b7f79fd3e5053feb07f14983882ec532cf2af50957000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff020000000000000000316a2fb1e78b14c741f240ba244b9b14659f7a98d74b78cb1a29a306bee2fc490df1b7d78294f98a7272b1e50950bae5d9fcb0af052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -8785,7 +8882,15 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "divisible": true, "description": "" }, - "name": "fairminter" + "name": "fairminter", + "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } } ``` @@ -8795,7 +8900,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: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address that will be minting the asset + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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` @@ -8847,21 +8952,29 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto ``` { "result": { - "rawtransaction": "020000000001013cf1f96b60f8523ee7061cef5fd17b8a8eaedee6258fe0a1b7d4ce45654e444f00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000166a14da1ae31127f35dbd1e07b60a109f471ac9ee7234dab6052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "020000000001012beb90e150b76896ff89a14d84b18f8a6ebf05350922a8eed6538a572bcaa443000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff020000000000000000166a14ce7774dac91dd4f18b86b2bd4a205c258a9822a0e8b6052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000001" }, - "name": "fairmint" + "name": "fairmint", + "data": "434e5452505254595b464149524d494e54437c31", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } } ``` @@ -8871,10 +8984,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: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address from which the assets are attached + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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: `b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7:1` (str, optional) - The utxo to attach the assets to + + destination: `828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -8924,10 +9037,10 @@ Composes a transaction to attach assets from an address to UTXO. ``` { "result": { - "rawtransaction": "02000000000106fd27c9dfe14c2a77d55756f4ee13ec395595c857d40fd4a86fe8e1a9c36a87dc00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffffa61d11b7b871670fa79bbf46d37067ccdc812dda8997e9a5d5e3cd8fb9f8263600000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffffee6f9d6281382259986a7502887428c9a4b238f8f195c6831ba7ec1467bce1e300000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff08ca50fcfcd4f9e2363685d8cf27114e8b2cb12e9a1834dd68baade344948d5600000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff1e9a4fc8c1da01c2f0a699296267510892b8049e35c878e376cdbdb13e7e06e500000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffffd6c595074a7ce05e2655e5298d419338b07f5a31a7ed947cab076a109afb0d5a00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff04e80300000000000069512102331217b11cb7bc62051cf80482082680301db962d8e93434c4531fbb124606e32103b506e22e605f706292b93191c97e47bc498b38bb6ccbb64cfbb5a487561497ba2103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353aee80300000000000069512103331217b11cb7bc62054dab03c24925c53c42f52e8cef6927ca104cb8460549e42102f350e7213a1f2469cde862908b6518fe4cd533be798abe52fdb5a6da0544c7a12103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353aee80300000000000069512103191217b11cb7bc62051efc02c746268d5d359164d9ef3c72f220788b76367f002102c136d019082a160afc8b5aa6be042fcb2ae6018f1cb3dd309982c7e36326f3192103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353aee83922fc06000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106f71803f26b8e5172ddac5ffa75ba2bb0b2744be95c99ca3e784f0f080ee3f03c000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff26a6780a2b17e508f4a91c2c2e52a6c7568ea4385bd0ee2f82539909e48a2036000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff5c48dedfe74941b513467b08760762ef1d5e29f226b60075af04ed10334c9abc000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff6af9f386078dad2ee450019c34fb890a27db060e6fc44af0f32aa58bf911ed24000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff5809873b32a879243ed38837d2e874d9ee8dcf4e8b16d72565e27c1e43edae44000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffffa6dd0efa6e8367ff3f190ea9a081385a711e3e2944affa063d8f91f5530e2520000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff04e80300000000000069512102f948e9859a0721cea993ad725b488683979a412c3fee2b47581d0c275fa7ca53210213f3e5e7f0144f478404395bb80bd6eba4b21e15ddfe1962b052b8bfe37fd0642102bfcb850450d8d8e21ef6816c4a816932bf7f87fde3f5c93af0a2fdefa5569b6153aee80300000000000069512103f948e9859a0721cea994f775180cd490c0dc01793cbb7317584c596a1df9ca2b210311e6f7a2f14b4916ce15620faf5f8cfbf7f046589ced427bbb04b4e9e12fd2432102bfcb850450d8d8e21ef6816c4a816932bf7f87fde3f5c93af0a2fdefa5569b6153aee80300000000000069512102d348e9859a0721cea9c1f8701006868efcaf63366bbd77123c2d6d5f2fcbf36b210227849590c7792870f776016bca68bb98cfc3706cad8e751e886080da851be45e2102bfcb850450d8d8e21ef6816c4a816932bf7f87fde3f5c93af0a2fdefa5569b6153ae3b3a22fc060000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7:1", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -8939,7 +9052,15 @@ Composes a transaction to attach assets from an address to UTXO. }, "quantity_normalized": "0.00001000" }, - "name": "utxo" + "name": "utxo", + "data": "434e545250525459646263727431713376726665636c6564306178706c3934777077376d67377372383072636d736b716e7970706c7c383238656664346338643130636264303233663634356461343532323936626232363261663963636465373763383336343163376533643433643436363761393a317c5843507c31303030", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } } ``` @@ -8949,8 +9070,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: `28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220:1` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to detach the assets to + + utxo: `05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9:1` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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 @@ -9001,10 +9122,10 @@ Composes a transaction to detach assets from UTXO to an address. ``` { "result": { - "rawtransaction": "0200000000010120829d2d32e93049620018aaf84a30db1526d8492ab2126cd94294e9a11dc02801000000160014868ddcf66027a85e5173ab966513d76bacc08c9cffffffff04e803000000000000695121036c4b4a849e8af6cf00b9b8d565354d479463dbe85f4200079bd95035229727192102d93bb440a25968ff4ed35f4b9243117d8eb4726d6e9d1262384c7998d64b827021030f3089de8881f2438da4d941cac5f57df85c6692d0ddcf89f713e22f1172f2c253aee803000000000000695121036c4b4a849e8af6cf00b8b3de3437181a916a8ce3564c05499d83142222d4709a21028071af44ad0526fb0b855a4b80095579dde5227969c44460634d3cd6870fd1b121030f3089de8881f2438da4d941cac5f57df85c6692d0ddcf89f713e22f1172f2c253aee80300000000000069512103464b4a849e8af6cf00b0b3d9767d175fad11eead57460405ffe0665613a545d12102eb09d5749b3d50cd78e26a2ff0702149efd24a0c0fac2a52087a4bacef78b2a521030f3089de8881f2438da4d941cac5f57df85c6692d0ddcf89f713e22f1172f2c253aef498082701000000160014868ddcf66027a85e5173ab966513d76bacc08c9c02000000000000", + "rawtransaction": "02000000000101d9e7a6b130b33624da1201eda320c3a8b13e9d45b6d981cbdd2ef23c66e6fd0501000000160014323730b58e0cef21d16a948f9a4a170a3a448bebffffffff04e803000000000000695121029cc0c7c590b0c32c57ff67f3bea12bba5f50cd86bb9d4c882a6ab7ce0d0174af2103a93686846e316a658d3c97ce9b90915d0f78ec4b9a15064ce4b9e072808673722102f2fc0efb1dd27c53d3b0af42c0e596d9c3a9b4df93ce6f7c78c3a2351d03ef7c53aee803000000000000695121029cc0c7c590b0c32c57f964f5e8a77fed5f03c981e4954f912c6da6d8044123c62103e626d6d538646b32d83fdedfcfca96184f6ee8439912440feeedf323d9c62e132102f2fc0efb1dd27c53d3b0af42c0e596d9c3a9b4df93ce6f7c78c3a2351d03ef7c53aee80300000000000069512103b6c0c7c590b0c32c57ea39bfa8b522f03125ae99ec9f4edd4e0ed4ac3530106021039054b0b05b080e56e85ea6afa3f3a26f3f19df2efe25377dd6dd8140b4b545a62102f2fc0efb1dd27c53d3b0af42c0e596d9c3a9b4df93ce6f7c78c3a2351d03ef7c53ae0f99082701000000160014323730b58e0cef21d16a948f9a4a170a3a448beb02000000000000", "params": { - "source": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220:1", - "destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9:1", + "destination": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9016,7 +9137,15 @@ Composes a transaction to detach assets from UTXO to an address. }, "quantity_normalized": "0.00001000" }, - "name": "utxo" + "name": "utxo", + "data": "434e54525052545964303566646536363633636632326564646362383164396236343539643365623161386333323061336564303131326461323433366233333062316136653764393a317c6263727431713376726665636c6564306178706c3934777077376d67377372383072636d736b716e7970706c7c5843507c31303030", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } } ``` @@ -9064,8 +9193,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 10000000000, @@ -9073,16 +9202,16 @@ Returns the valid assets "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726743052, - "last_issuance_block_time": 1726743070, + "first_issuance_block_time": 1726759359, + "last_issuance_block_time": 1726759367, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", - "owner": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", + "issuer": "bcrt1qxgmnpdvwpnhjr5t2jj8e5jshpgayfzltreejtt", + "owner": "bcrt1qxgmnpdvwpnhjr5t2jj8e5jshpgayfzltreejtt", "divisible": true, "locked": false, "supply": 100000000000, @@ -9090,16 +9219,16 @@ Returns the valid assets "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1726743048, - "last_issuance_block_time": 1726743048, + "first_issuance_block_time": 1726759354, + "last_issuance_block_time": 1726759354, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 100000000000, @@ -9107,16 +9236,16 @@ Returns the valid assets "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726743013, - "last_issuance_block_time": 1726743013, + "first_issuance_block_time": 1726759320, + "last_issuance_block_time": 1726759320, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 40, @@ -9124,16 +9253,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726742962, - "last_issuance_block_time": 1726742966, + "first_issuance_block_time": 1726759269, + "last_issuance_block_time": 1726759274, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 19, @@ -9141,8 +9270,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726742946, - "last_issuance_block_time": 1726742957, + "first_issuance_block_time": 1726759252, + "last_issuance_block_time": 1726759265, "supply_normalized": "0.00000019" } ], @@ -9170,8 +9299,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 10000000000, @@ -9179,8 +9308,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1726742908, - "last_issuance_block_time": 1726742920, + "first_issuance_block_time": 1726759214, + "last_issuance_block_time": 1726759227, "supply_normalized": "100.00000000" } } @@ -9211,7 +9340,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9219,14 +9348,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9234,7 +9363,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -9251,7 +9380,7 @@ Returns the asset balances Returns the balance of an address and asset + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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` @@ -9263,7 +9392,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -9312,9 +9441,9 @@ Returns the orders of an asset "result": [ { "tx_index": 57, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9329,7 +9458,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726743189, + "block_time": 1726759491, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9355,9 +9484,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "tx_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "block_index": 190, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9372,7 +9501,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726743185, + "block_time": 1726759487, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9398,9 +9527,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "tx_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "block_index": 186, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -9415,7 +9544,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726743168, + "block_time": 1726759470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9441,9 +9570,9 @@ Returns the orders of an asset }, { "tx_index": 50, - "tx_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "tx_hash": "6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "block_index": 185, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -9458,7 +9587,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726743164, + "block_time": 1726759465, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9484,9 +9613,9 @@ Returns the orders of an asset }, { "tx_index": 49, - "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", "block_index": 186, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9501,7 +9630,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726743168, + "block_time": 1726759470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9561,13 +9690,13 @@ Returns the orders of an asset { "result": [ { - "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "tx0_index": 49, - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 52, - "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", - "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "tx1_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", + "tx1_address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -9581,7 +9710,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726743168, + "block_time": 1726759470, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9601,13 +9730,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "tx0_index": 49, - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 50, - "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", - "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "tx1_hash": "6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", + "tx1_address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -9621,7 +9750,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726743164, + "block_time": 1726759465, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9641,13 +9770,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "id": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f_313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", "tx0_index": 47, - "tx0_hash": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 48, - "tx1_hash": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", - "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "tx1_hash": "313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", + "tx1_address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -9661,7 +9790,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726743090, + "block_time": 1726759387, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9741,20 +9870,20 @@ Returns the credits of an asset "result": [ { "block_index": 192, - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -9762,20 +9891,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "a067ff65963d10f1ef8f3d33058456506bf8d8dff9fe6e30436e77d40da1b4a8", + "event": "f3826547c9fb9636d8f3a4e45ed812aa75ec34928ae3b616f7c5ee4d10325f59", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742920, + "block_time": 1726759227, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -9783,20 +9912,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad", + "event": "5a549be142e41682221fa380ebbd90acf1be772250a41d813a65aa54428b5a88", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742916, + "block_time": 1726759223, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -9804,20 +9933,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", + "event": "eb49f271058899b7c9a13607563ebc0577ce924f1ac4c34f58ce66acbef8081b", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742916, + "block_time": 1726759223, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -9829,16 +9958,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad", + "event": "5a549be142e41682221fa380ebbd90acf1be772250a41d813a65aa54428b5a88", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742916, + "block_time": 1726759223, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -9894,16 +10023,16 @@ Returns the debits of an asset "result": [ { "block_index": 193, - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "event": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -9915,16 +10044,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -9936,16 +10065,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -9957,16 +10086,16 @@ Returns the debits of an asset }, { "block_index": 191, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "event": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743189, + "block_time": 1726759491, "asset_info": { "divisible": true, "asset_longname": null, @@ -9978,16 +10107,16 @@ Returns the debits of an asset }, { "block_index": 189, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "event": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743181, + "block_time": 1726759482, "asset_info": { "divisible": true, "asset_longname": null, @@ -10027,20 +10156,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 40, - "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", + "tx_hash": "a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df", "block_index": 153, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726743039, + "block_time": 1726759345, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -10084,14 +10213,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "a067ff65963d10f1ef8f3d33058456506bf8d8dff9fe6e30436e77d40da1b4a8", + "tx_hash": "f3826547c9fb9636d8f3a4e45ed812aa75ec34928ae3b616f7c5ee4d10325f59", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -10106,20 +10235,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726742920, + "block_time": 1726759227, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad", + "tx_hash": "5a549be142e41682221fa380ebbd90acf1be772250a41d813a65aa54428b5a88", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -10134,20 +10263,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726742916, + "block_time": 1726759223, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", + "tx_hash": "eb49f271058899b7c9a13607563ebc0577ce924f1ac4c34f58ce66acbef8081b", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -10162,20 +10291,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726742912, + "block_time": 1726759219, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -10190,7 +10319,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1726742908, + "block_time": 1726759214, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10224,10 +10353,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10235,7 +10364,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "divisible": true, "asset_longname": null, @@ -10248,10 +10377,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 53, - "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3", + "tx_hash": "4e88b4042628b7d9f55b444cab0a47fb3ca70fa7a8c02ae51daab7f1edb2360a", "block_index": 187, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10259,7 +10388,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743172, + "block_time": 1726759474, "asset_info": { "divisible": true, "asset_longname": null, @@ -10272,10 +10401,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 42, - "tx_hash": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", + "tx_hash": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9", "block_index": 155, - "source": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a:0", - "destination": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220:1", + "source": "39bd27ee5737e42422d26d899ae6bc07f2929f4eaef5eb993047290e247a385c:0", + "destination": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10283,7 +10412,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743048, + "block_time": 1726759354, "asset_info": { "divisible": true, "asset_longname": null, @@ -10296,10 +10425,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 41, - "tx_hash": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a", + "tx_hash": "39bd27ee5737e42422d26d899ae6bc07f2929f4eaef5eb993047290e247a385c", "block_index": 154, - "source": "0debf18cd260e30cfa40e908abba0d11fd931bf61bac639d0c3c6a3c4dffd0ad:0", - "destination": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a:0", + "source": "6094d41b36da55875ccfccc70cee17fd4f854f91c1267a4809b90565cf8014af:0", + "destination": "39bd27ee5737e42422d26d899ae6bc07f2929f4eaef5eb993047290e247a385c:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10307,7 +10436,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743043, + "block_time": 1726759350, "asset_info": { "divisible": true, "asset_longname": null, @@ -10356,18 +10485,18 @@ Returns the dispensers of an asset "result": [ { "tx_index": 32, - "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "oracle_address": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "last_status_tx_hash": null, - "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "origin": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10377,7 +10506,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726743009, + "block_time": 1726759315, "asset_info": { "divisible": true, "asset_longname": null, @@ -10393,9 +10522,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", + "tx_hash": "a0423cc553293cdeb28e5b41a51851e2d790f3f07a46cfb825347c10dfd41d8b", "block_index": 144, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10404,7 +10533,7 @@ Returns the dispensers of an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10414,7 +10543,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726743000, + "block_time": 1726759307, "asset_info": { "divisible": true, "asset_longname": null, @@ -10430,9 +10559,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "d2babdd8ac4bb366d33be8955dd3360e02b0fedd8e3167db62af445fc82eac8c", + "tx_hash": "811594a7a1eb27f36748cf973583618ff3c25d6ed8d4b0e60a4542bfd6fbdee1", "block_index": 142, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10441,7 +10570,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "origin": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10451,7 +10580,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742992, + "block_time": 1726759298, "asset_info": { "divisible": true, "asset_longname": null, @@ -10467,9 +10596,9 @@ Returns the dispensers of an asset }, { "tx_index": 26, - "tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10478,7 +10607,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10488,7 +10617,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -10513,7 +10642,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - The address to return + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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` @@ -10526,9 +10655,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", + "tx_hash": "a0423cc553293cdeb28e5b41a51851e2d790f3f07a46cfb825347c10dfd41d8b", "block_index": 144, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10537,7 +10666,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10547,7 +10676,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726743000, + "block_time": 1726759307, "asset_info": { "divisible": true, "asset_longname": null, @@ -10597,7 +10726,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -10605,7 +10734,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -10614,7 +10743,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -10622,7 +10751,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -10631,7 +10760,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -10639,7 +10768,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -10648,7 +10777,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -10685,27 +10814,27 @@ Returns the dispenses of an asset { "tx_index": 33, "dispense_index": 0, - "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "tx_hash": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", - "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", + "destination": "bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "dispenser_tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "oracle_address": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "last_status_tx_hash": null, - "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "origin": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10720,7 +10849,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726743009, + "block_time": 1726759315, "asset_info": { "divisible": true, "asset_longname": null, @@ -10734,19 +10863,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", + "tx_hash": "831bf049f1c6fa58850f84876ef47c4b729a3c318226ab0e23028f0c5d8105ad", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10754,7 +10883,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10769,7 +10898,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -10783,19 +10912,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", + "tx_hash": "2b75bab8c081422960be9d6fabb52cac807a284735c4987863ccf7c51d93efd2", "block_index": 140, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10803,7 +10932,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10818,7 +10947,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742983, + "block_time": 1726759290, "asset_info": { "divisible": true, "asset_longname": null, @@ -10861,8 +10990,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 0, @@ -10870,8 +10999,8 @@ Returns asset subassets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1726743066, - "last_issuance_block_time": 1726743066, + "first_issuance_block_time": 1726759363, + "last_issuance_block_time": 1726759363, "supply_normalized": "0.00000000" } ], @@ -10903,10 +11032,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -10931,7 +11060,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726742920 + "block_time": 1726759227 } ], "next_cursor": null, @@ -10962,64 +11091,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "a067ff65963d10f1ef8f3d33058456506bf8d8dff9fe6e30436e77d40da1b4a8", + "tx_hash": "f3826547c9fb9636d8f3a4e45ed812aa75ec34928ae3b616f7c5ee4d10325f59", "tx_index": 13, "block_index": 125, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", - "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", + "fairminter_tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742920, + "block_time": 1726759227, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } }, { - "tx_hash": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad", + "tx_hash": "5a549be142e41682221fa380ebbd90acf1be772250a41d813a65aa54428b5a88", "tx_index": 12, "block_index": 124, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", - "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", + "fairminter_tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742916, + "block_time": 1726759223, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } }, { - "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", + "tx_hash": "eb49f271058899b7c9a13607563ebc0577ce924f1ac4c34f58ce66acbef8081b", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "fairminter_tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742912, + "block_time": 1726759219, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } @@ -11035,7 +11164,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a` (str, required) - The address of the mints to return + + address: `bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp` (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` @@ -11054,22 +11183,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", + "tx_hash": "eb49f271058899b7c9a13607563ebc0577ce924f1ac4c34f58ce66acbef8081b", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "fairminter_tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742912, + "block_time": 1726759219, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } @@ -11113,9 +11242,9 @@ Returns all the orders "result": [ { "tx_index": 57, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11130,7 +11259,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726743189, + "block_time": 1726759491, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11156,9 +11285,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "tx_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "block_index": 190, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11173,7 +11302,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726743185, + "block_time": 1726759487, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11199,9 +11328,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "tx_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "block_index": 186, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11216,7 +11345,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726743168, + "block_time": 1726759470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11242,9 +11371,9 @@ Returns all the orders }, { "tx_index": 50, - "tx_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "tx_hash": "6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "block_index": 185, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11259,7 +11388,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726743164, + "block_time": 1726759465, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11285,9 +11414,9 @@ Returns all the orders }, { "tx_index": 49, - "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", "block_index": 186, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11302,7 +11431,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726743168, + "block_time": 1726759470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11337,7 +11466,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b` (str, required) - The hash of the transaction that created the order + + order_hash: `056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b` (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. @@ -11349,9 +11478,9 @@ Returns the information of an order { "result": { "tx_index": 57, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11366,7 +11495,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726743189, + "block_time": 1726759491, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11398,7 +11527,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5` (str, required) - The hash of the transaction that created the order + + order_hash: `2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32` (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 @@ -11423,13 +11552,13 @@ Returns the order matches of an order { "result": [ { - "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "tx0_index": 49, - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 52, - "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", - "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "tx1_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", + "tx1_address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11443,7 +11572,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726743168, + "block_time": 1726759470, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11463,13 +11592,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "tx0_index": 49, - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 50, - "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", - "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "tx1_hash": "6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", + "tx1_address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11483,7 +11612,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726743164, + "block_time": 1726759465, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11513,7 +11642,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5` (str, required) - The hash of the transaction that created the order + + order_hash: `2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32` (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 @@ -11532,15 +11661,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 51, - "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", + "tx_hash": "6ad8f1852d7ca2a53bafbd139d7502bc30e8593922cefd54f9494a23fc3d9463", "block_index": 185, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "destination": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "btc_amount": 2000, - "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "order_match_id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "status": "valid", "confirmed": true, - "block_time": 1726743164, + "block_time": 1726759465, "btc_amount_normalized": "0.00002000" } ], @@ -11582,9 +11711,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 57, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11602,7 +11731,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726743189, + "block_time": 1726759491, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11628,9 +11757,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "tx_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "block_index": 190, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11648,7 +11777,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726743185, + "block_time": 1726759487, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11674,9 +11803,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "tx_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "block_index": 186, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11694,7 +11823,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726743168, + "block_time": 1726759470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11720,9 +11849,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "tx_hash": "6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "block_index": 185, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11740,7 +11869,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726743164, + "block_time": 1726759465, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11766,9 +11895,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", "block_index": 186, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11786,7 +11915,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726743168, + "block_time": 1726759470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11847,13 +11976,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "tx0_index": 49, - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 52, - "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", - "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "tx1_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", + "tx1_address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11870,7 +11999,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726743168, + "block_time": 1726759470, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11890,13 +12019,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "tx0_index": 49, - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 50, - "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", - "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "tx1_hash": "6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", + "tx1_address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11913,7 +12042,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726743164, + "block_time": 1726759465, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11933,13 +12062,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "id": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f_313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", "tx0_index": 47, - "tx0_hash": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 48, - "tx1_hash": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", - "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "tx1_hash": "313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", + "tx1_address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -11956,7 +12085,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726743090, + "block_time": 1726759387, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12012,13 +12141,13 @@ Returns all the order matches { "result": [ { - "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "tx0_index": 49, - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 52, - "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", - "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "tx1_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", + "tx1_address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12032,7 +12161,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726743168, + "block_time": 1726759470, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12052,13 +12181,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "tx0_index": 49, - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 50, - "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", - "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "tx1_hash": "6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", + "tx1_address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12072,7 +12201,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726743164, + "block_time": 1726759465, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12092,13 +12221,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "id": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f_313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", "tx0_index": 47, - "tx0_hash": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 48, - "tx1_hash": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", - "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "tx1_hash": "313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", + "tx1_address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12112,7 +12241,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726743090, + "block_time": 1726759387, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12280,66 +12409,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "8cb6afe98c6fd78fe63d3400ff07363c80671a5aa675d073676e7be684d2d8a7", + "tx_hash": "edc9e270e42ffd60a6524c60aa99d6fc47820a1305a15c399022256a40930336", "block_index": 121, - "source": "bcrt1qsvdraccy4y6g937r7kzwjttq6j7htuuzvuzcpx", + "source": "bcrt1qyd2lpsyqnwusjevzc2d6cs835xwyt3cyztaek2", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1726742903, + "block_time": 1726759210, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "35c14d3851228713850558049f8ef10ae51d6653920573a6969cb1b7baa4fc62", + "tx_hash": "0d972bca2e6c8a4726b4c2bd42e23b759e8fd0af088857cd404e55e27d118ddb", "block_index": 120, - "source": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", + "source": "bcrt1qxgmnpdvwpnhjr5t2jj8e5jshpgayfzltreejtt", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1726742899, + "block_time": 1726759206, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "baf2f258040ff731a98db0127f9b7e60175906c48cf36ddc978fa4c385e02b54", + "tx_hash": "aaddb8cbf390ff8e3053dd3591ddb08208680c52e3595d80dd8656c754c74c99", "block_index": 119, - "source": "bcrt1qqqrd70rps4uzjnfwyd8n88d4h0ytlrf9hte2xs", + "source": "bcrt1qvdzn9pgnwhdszdnpayu7phnxfjnqt5ezmpuz3j", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1726742895, + "block_time": 1726759202, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "0628b5a3f2bde30471935b31d3997d20ee6fa78118c88421e24a2c8bba32a38d", + "tx_hash": "7a2390f9b0af65379950c1225e4e8918053869ba73d488d1c93f8c77aef53977", "block_index": 118, - "source": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", + "source": "bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1726742890, + "block_time": 1726759197, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "ac90cd09ee4c1693a9a5eb34f190055f9e1a1d3f9096a01e96a77ffff5f3bdd0", + "tx_hash": "571365ee5f6b7e2f1d03d3e6ad0be805dfae8f04e9bcc5637cae1c78686e4bd9", "block_index": 117, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1726742886, + "block_time": 1726759193, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12382,18 +12511,18 @@ Returns all dispensers "result": [ { "tx_index": 32, - "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "oracle_address": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "last_status_tx_hash": null, - "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "origin": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -12403,7 +12532,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726743009, + "block_time": 1726759315, "asset_info": { "divisible": true, "asset_longname": null, @@ -12419,9 +12548,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", + "tx_hash": "a0423cc553293cdeb28e5b41a51851e2d790f3f07a46cfb825347c10dfd41d8b", "block_index": 144, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -12430,7 +12559,7 @@ Returns all dispensers "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12440,7 +12569,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726743000, + "block_time": 1726759307, "asset_info": { "divisible": true, "asset_longname": null, @@ -12456,9 +12585,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "d2babdd8ac4bb366d33be8955dd3360e02b0fedd8e3167db62af445fc82eac8c", + "tx_hash": "811594a7a1eb27f36748cf973583618ff3c25d6ed8d4b0e60a4542bfd6fbdee1", "block_index": 142, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12467,7 +12596,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "origin": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12477,7 +12606,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742992, + "block_time": 1726759298, "asset_info": { "divisible": true, "asset_longname": null, @@ -12493,9 +12622,9 @@ Returns all dispensers }, { "tx_index": 26, - "tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12504,7 +12633,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12514,7 +12643,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -12539,7 +12668,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d` (str, required) - The hash of the dispenser to return + + dispenser_hash: `5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc` (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. @@ -12551,9 +12680,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12562,7 +12691,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12572,7 +12701,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -12594,7 +12723,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d` (str, required) - The hash of the dispenser to return + + dispenser_hash: `5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc` (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 @@ -12614,19 +12743,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", + "tx_hash": "831bf049f1c6fa58850f84876ef47c4b729a3c318226ab0e23028f0c5d8105ad", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12634,7 +12763,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12649,7 +12778,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -12663,19 +12792,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", + "tx_hash": "2b75bab8c081422960be9d6fabb52cac807a284735c4987863ccf7c51d93efd2", "block_index": 140, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12683,7 +12812,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12698,7 +12827,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742983, + "block_time": 1726759290, "asset_info": { "divisible": true, "asset_longname": null, @@ -12740,20 +12869,20 @@ Returns all the dividends "result": [ { "tx_index": 40, - "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", + "tx_hash": "a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df", "block_index": 153, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726743039, + "block_time": 1726759345, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -12778,7 +12907,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc` (str, required) - The hash of the dividend to return + + dividend_hash: `a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df` (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. @@ -12790,20 +12919,20 @@ Returns a dividend by its hash { "result": { "tx_index": 40, - "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", + "tx_hash": "a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df", "block_index": 153, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726743039, + "block_time": 1726759345, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -12825,7 +12954,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df` (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 @@ -12848,12 +12977,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", + "event": "a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df", "tx_index": 40, - "utxo": "0debf18cd260e30cfa40e908abba0d11fd931bf61bac639d0c3c6a3c4dffd0ad:0", - "utxo_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "utxo": "6094d41b36da55875ccfccc70cee17fd4f854f91c1267a4809b90565cf8014af:0", + "utxo_address": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "confirmed": true, - "block_time": 1726743039, + "block_time": 1726759345, "asset_info": { "divisible": true, "asset_longname": null, @@ -12865,16 +12994,16 @@ Returns a dividend distribution by its hash }, { "block_index": 153, - "address": "bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3", + "address": "bcrt1qat5k09kmzy7qlhd3qyrysmz5skknuy9y2xwsrr", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", + "event": "a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743039, + "block_time": 1726759345, "asset_info": { "divisible": true, "asset_longname": null, @@ -12920,27 +13049,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", - "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", + "ledger_hash": "d780942d01b58e13071c1994b611b6f67c8b6644f5c3fcd20aa9fdf899dc8224", + "messages_hash": "a234caace5f00f4aeb2098f24859f045a43954bd6e6daaef09d01baa70e16884", "transaction_count": 1, - "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", - "block_time": 1726743198 + "txlist_hash": "baa06d9619fa0e75b227f944f0efc483c0198619ddd6ebdd4484b50dba4402ea", + "block_time": 1726759498 }, "tx_hash": null, "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "tx_index": 59 }, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 }, { "event_index": 533, @@ -12949,12 +13078,12 @@ Returns all events "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "status": "valid", "tag": "64657374726f79", - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "tx_index": 59, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -12964,24 +13093,24 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 193, - "event": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "event": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -12991,25 +13120,25 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", "block_index": 193, - "block_time": 1726743198, + "block_time": 1726759498, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "tx_index": 59, - "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", + "utxos_info": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -13029,9 +13158,9 @@ Returns all events }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 } ], "next_cursor": 530, @@ -13059,15 +13188,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", - "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", + "ledger_hash": "d780942d01b58e13071c1994b611b6f67c8b6644f5c3fcd20aa9fdf899dc8224", + "messages_hash": "a234caace5f00f4aeb2098f24859f045a43954bd6e6daaef09d01baa70e16884", "transaction_count": 1, - "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", - "block_time": 1726743198 + "txlist_hash": "baa06d9619fa0e75b227f944f0efc483c0198619ddd6ebdd4484b50dba4402ea", + "block_time": 1726759498 }, "tx_hash": null, "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 } } ``` @@ -13145,16 +13274,16 @@ Returns the events filtered by event name "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -13164,78 +13293,78 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "event": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726743185, + "block_time": 1726759487, "asset_info": { "divisible": true, "asset_longname": null, @@ -13245,24 +13374,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "block_index": 190, - "block_time": 1726743185 + "block_time": 1726759487 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "event": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "divisible": true, "asset_longname": null, @@ -13272,9 +13401,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "block_time": 1726743177 + "block_time": 1726759478 } ], "next_cursor": 490, @@ -13330,27 +13459,27 @@ Returns all the dispenses { "tx_index": 33, "dispense_index": 0, - "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "tx_hash": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", - "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", + "destination": "bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "dispenser_tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "oracle_address": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "last_status_tx_hash": null, - "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "origin": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13365,7 +13494,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726743009, + "block_time": 1726759315, "asset_info": { "divisible": true, "asset_longname": null, @@ -13379,19 +13508,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", + "tx_hash": "831bf049f1c6fa58850f84876ef47c4b729a3c318226ab0e23028f0c5d8105ad", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13399,7 +13528,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13414,7 +13543,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -13428,19 +13557,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", + "tx_hash": "2b75bab8c081422960be9d6fabb52cac807a284735c4987863ccf7c51d93efd2", "block_index": 140, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13448,7 +13577,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13463,7 +13592,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742983, + "block_time": 1726759290, "asset_info": { "divisible": true, "asset_longname": null, @@ -13505,10 +13634,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "quantity": 10, "status": "valid", @@ -13516,7 +13645,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "divisible": true, "asset_longname": null, @@ -13529,10 +13658,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13540,11 +13669,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -13553,10 +13682,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13564,11 +13693,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -13577,10 +13706,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 53, - "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3", + "tx_hash": "4e88b4042628b7d9f55b444cab0a47fb3ca70fa7a8c02ae51daab7f1edb2360a", "block_index": 187, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -13588,7 +13717,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743172, + "block_time": 1726759474, "asset_info": { "divisible": true, "asset_longname": null, @@ -13601,10 +13730,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 42, - "tx_hash": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", + "tx_hash": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9", "block_index": 155, - "source": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a:0", - "destination": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220:1", + "source": "39bd27ee5737e42422d26d899ae6bc07f2929f4eaef5eb993047290e247a385c:0", + "destination": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -13612,7 +13741,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743048, + "block_time": 1726759354, "asset_info": { "divisible": true, "asset_longname": null, @@ -13654,14 +13783,14 @@ Returns all the issuances "result": [ { "tx_index": 46, - "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", + "tx_hash": "87ca606c50f4b00fd77a11909134e01944eabcc4d7abf7a72e3a348c6647c2de", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -13676,20 +13805,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743075, + "block_time": 1726759371, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "02aeb11d1f8356db859ac3dd71599fbe3da1c8e3d517cf4a171e9e980045e2a1", + "tx_hash": "f998620aef9ecaa6f854d94c022c526f78a24a35bd0c70ac93d6efd149e6dd71", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -13704,20 +13833,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726743070, + "block_time": 1726759367, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "dd63df7abf9b1ae09c158bce761f704944f67bb94cc345329b4b926372bc11c9", + "tx_hash": "1542301a127e8ee0647990c91437188bece4afc134beda35fd5ea7cc4206b140", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -13732,20 +13861,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743066, + "block_time": 1726759363, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "735d36c3e66e9e8eca66da2247ef421376f463c3a71166b90f79a1fb65c39ce0", + "tx_hash": "770197523ac78726980a37594b8357b76337ab79e7e9f0b6aa0755c687962f57", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -13760,20 +13889,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743052, + "block_time": 1726759359, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", + "tx_hash": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", - "issuer": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", + "source": "bcrt1qxgmnpdvwpnhjr5t2jj8e5jshpgayfzltreejtt", + "issuer": "bcrt1qxgmnpdvwpnhjr5t2jj8e5jshpgayfzltreejtt", "transfer": false, "callable": false, "call_date": 0, @@ -13788,7 +13917,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743048, + "block_time": 1726759354, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -13803,7 +13932,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a` (str, required) - The hash of the transaction to return + + tx_hash: `87ca606c50f4b00fd77a11909134e01944eabcc4d7abf7a72e3a348c6647c2de` (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. @@ -13815,14 +13944,14 @@ Returns the issuances of a block { "result": { "tx_index": 46, - "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", + "tx_hash": "87ca606c50f4b00fd77a11909134e01944eabcc4d7abf7a72e3a348c6647c2de", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -13837,7 +13966,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743075, + "block_time": 1726759371, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -13869,16 +13998,16 @@ Returns all sweeps "result": [ { "tx_index": 58, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "fee_paid_normalized": "0.00600000" } ], @@ -13892,7 +14021,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d` (str, required) - The hash of the transaction to return + + tx_hash: `09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499` (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. @@ -13905,16 +14034,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 58, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "fee_paid_normalized": "0.00600000" } ], @@ -13948,9 +14077,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20", + "tx_hash": "c4b5d1cc8a00925e3c15d44bd0c988531a54057711a7e63f686f5a8af06bb36d", "block_index": 138, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -13958,14 +14087,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726742975, + "block_time": 1726759281, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "5966fd52717602850bfb43b55f7da2b2e0c9be1896b41b65c6f9bf5b0e1099ab", + "tx_hash": "d8507cb8324f5f355a72cec6acd17023e9e11cb6fda1e1f42af403bd5f79cf25", "block_index": 137, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -13973,7 +14102,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726742970, + "block_time": 1726759277, "fee_fraction_int_normalized": "0.00000000" } ], @@ -13987,7 +14116,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20` (str, required) - The hash of the transaction to return + + tx_hash: `c4b5d1cc8a00925e3c15d44bd0c988531a54057711a7e63f686f5a8af06bb36d` (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. @@ -13999,9 +14128,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20", + "tx_hash": "c4b5d1cc8a00925e3c15d44bd0c988531a54057711a7e63f686f5a8af06bb36d", "block_index": 138, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14009,7 +14138,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726742975, + "block_time": 1726759281, "fee_fraction_int_normalized": "0.00000000" } } @@ -14039,10 +14168,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", + "tx_hash": "706b65e31c4a34249d77e4307108e81d97fb7dd30b3ec327ffb4a6939ed4ef10", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14067,13 +14196,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726742962 + "block_time": 1726759269 }, { - "tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", + "tx_hash": "d2119d24b6bcf04967f1beff06372383e5fc165c0922cb6afaea3b4eec7369af", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14098,13 +14227,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726742946 + "block_time": 1726759252 }, { - "tx_hash": "630338ac26f1db216809652acb490bc36058561df42b4800c28e5064bc629a2f", + "tx_hash": "eb2d322022ee92e05714fc66c38fbba49afd84aff7e09e02bed07949b82db774", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14129,13 +14258,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726742942 + "block_time": 1726759248 }, { - "tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14160,7 +14289,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726742920 + "block_time": 1726759227 } ], "next_cursor": null, @@ -14203,7 +14332,7 @@ Returns the mints by fairminter Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g,bcrt1qqqrd70rps4uzjnfwyd8n88d4h0ytlrf9hte2xs` (str, required) - The addresses to search for + + addresses: `bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4,bcrt1qvdzn9pgnwhdszdnpayu7phnxfjnqt5ezmpuz3j` (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. @@ -14222,8 +14351,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", - "address": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g" + "txid": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", + "address": "bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4" }, { "vout": 2, @@ -14231,8 +14360,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", - "address": "bcrt1qqqrd70rps4uzjnfwyd8n88d4h0ytlrf9hte2xs" + "txid": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9", + "address": "bcrt1qvdzn9pgnwhdszdnpayu7phnxfjnqt5ezmpuz3j" } ], "next_cursor": null, @@ -14245,7 +14374,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v` (str, required) - The address to search for + + address: `bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe` (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 @@ -14261,28 +14390,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "2ff828784db699b93166c91bdc316c84bddfdb710a3c1d1f68665a7198728737" + "tx_hash": "312fbde68c58a1d25eabd4c01745601063d8392cb5a0921fb936cc89023f4a06" }, { - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" + "tx_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106" }, { - "tx_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62" + "tx_hash": "4e88b4042628b7d9f55b444cab0a47fb3ca70fa7a8c02ae51daab7f1edb2360a" }, { - "tx_hash": "d87b786b54a63498e93c8c2782a91997eb80f69458ca2ffe70320eef27155f6a" + "tx_hash": "5a549be142e41682221fa380ebbd90acf1be772250a41d813a65aa54428b5a88" }, { - "tx_hash": "e4bcefdccfc18fddbc4afe4282d88bfa16c2de310ab0d2a3117b800f68102f7f" + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499" }, { - "tx_hash": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad" + "tx_hash": "4148a920e41c0e140a3076237e7371343daecd6c77f7619825ed27705b89b8a3" }, { - "tx_hash": "00199dce5d95beedbb99993b1c89f7a9d6b10e5fe571601ac03c7f5922de2ae2" + "tx_hash": "feb3856b69bde1f7612a91cac62772ea765964d9cb39723d9398e80b6c125da4" }, { - "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3" + "tx_hash": "6bd500714a76d0e0f57a68cf6330148dbe20d71d9f9d03a5cbf5ae9ae26d54b6" } ], "next_cursor": null, @@ -14295,7 +14424,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn` (str, required) - The address to search for. + + address: `bcrt1qxgmnpdvwpnhjr5t2jj8e5jshpgayfzltreejtt` (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. @@ -14308,8 +14437,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 9, - "tx_hash": "ca276a9e0fcccc10f25da14f88b9a9d1aaa1d9aa119e44716e66bdbf6fa97cc9" + "block_index": 8, + "tx_hash": "6a3d486a892578cac40859fab2191bdb8c13c7af0864bdec9c17ec40c17e3534" } } ``` @@ -14319,7 +14448,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g` (str, required) - The address to search for + + address: `bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4` (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 @@ -14340,7 +14469,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc" + "txid": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5" } ], "next_cursor": null, @@ -14353,7 +14482,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk` (str, required) - Address to get pubkey for. + + address: `bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl` (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. @@ -14365,7 +14494,7 @@ Get pubkey for an address. ``` { - "result": "03471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d3" + "result": "02bfcb850450d8d8e21ef6816c4a816932bf7f87fde3f5c93af0a2fdefa5569b61" } ``` @@ -14374,7 +14503,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7` (str, required) - The transaction hash + + tx_hash: `baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba` (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. @@ -14386,7 +14515,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101090f8194f8c91a1d69cea412e0e0ee2a81bbeef1b1386738dcfca87c60c571de0300000000ffffffff020000000000000000226a2066219dcdea1454a56b714138ca78be964ca44c1cb07456da31c97a272364d074680b0a27010000001600144a5bd60b2d454cc549130f385b94d63db6269c02024730440220014095efb57789cc7f02e982530a3eeaed1c3e3fd7dd80590bdaf44c193f3f68022044a2ddffc13fe034cd51684e3fb39a5c090ae9631dc0735f38c68d298fb54a8c0121020cb277fa643a47f001fd66be1b219cd0a025338e3d793d3482eb2d1d81209c2c00000000" + "result": "02000000000101b80eb897e36937c7c0531738bdddde8de0692b9f2c29f14bc20429d95f7bd3750300000000ffffffff020000000000000000226a20e472c508fb60c3145b8ff8eebf91206c26b7a9d3669f3eefae09b13b8db36192680b0a2701000000160014eef93355f6ecdf9098a2d776fe6db68c709388ab0247304402202708cade14f9947efaca3d675719b0bc7dd4ed4136d59e558bd581847bd7111602205232a974956fb57d8d34a96d3bb7b0e2bea74da6d874aee15e9ecfae15a6d99201210213beb0e758eb62ab96ac405982eda8ca8a8434131f7342c218f6b6488d9fd04500000000" } ``` @@ -14408,7 +14537,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 68517 + "result": 68455 } ``` @@ -14479,26 +14608,26 @@ Returns all mempool events { "result": [ { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "tx_index": 60 } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "memo": null, "quantity": 10000, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "status": "valid", - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "tx_index": 60, "asset_info": { "divisible": true, @@ -14511,19 +14640,19 @@ Returns all mempool events } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "CREDIT", "params": { - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "event": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -14535,19 +14664,19 @@ Returns all mempool events } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 193, - "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "event": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -14559,27 +14688,27 @@ Returns all mempool events } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726743212.580398, + "block_time": 1726759503.0888908, "btc_amount": 0, - "data": "0200000000000000010000000000002710806a51cc766215db7e153afcd60bb43d6c1c61cff8", + "data": "020000000000000001000000000000271080f66c2fe4d178214c277858ba6ea2c347149d0974", "destination": "", "fee": 10000, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "tx_index": 60, - "utxos_info": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b:1", + "utxos_info": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "memo": null, "asset_info": { "divisible": true, @@ -14623,19 +14752,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "CREDIT", "params": { - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "event": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -14657,7 +14786,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b` (str, required) - The hash of the transaction to return + + tx_hash: `472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a` (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 @@ -14677,26 +14806,26 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "tx_index": 60 } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "memo": null, "quantity": 10000, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "status": "valid", - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "tx_index": 60, "asset_info": { "divisible": true, @@ -14709,19 +14838,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "CREDIT", "params": { - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "event": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -14733,19 +14862,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 193, - "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "event": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -14757,27 +14886,27 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726743212.580398, + "block_time": 1726759503.0888908, "btc_amount": 0, - "data": "0200000000000000010000000000002710806a51cc766215db7e153afcd60bb43d6c1c61cff8", + "data": "020000000000000001000000000000271080f66c2fe4d178214c277858ba6ea2c347149d0974", "destination": "", "fee": 10000, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "tx_index": 60, - "utxos_info": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b:1", + "utxos_info": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "memo": null, "asset_info": { "divisible": true, diff --git a/counterparty-core/counterpartycore/lib/api/api_v1.py b/counterparty-core/counterpartycore/lib/api/api_v1.py index 6c5c419c53..e55cd34703 100644 --- a/counterparty-core/counterpartycore/lib/api/api_v1.py +++ b/counterparty-core/counterpartycore/lib/api/api_v1.py @@ -31,6 +31,7 @@ transaction, util, ) +from counterpartycore.lib.api import compose as api_compose from counterpartycore.lib.api import util as api_util from counterpartycore.lib.database import APIDBConnectionPool from counterpartycore.lib.messages import ( @@ -562,7 +563,7 @@ def generate_create_method(tx): def create_method(**kwargs): try: transaction_args, common_args, private_key_wif = ( - transaction.split_compose_params(**kwargs) + api_compose.split_compose_params(**kwargs) ) with self.connection_pool.connection() as db: rawtransaction, data = transaction.compose_transaction( @@ -585,7 +586,7 @@ def create_method(**kwargs): return create_method - for tx in transaction.COMPOSABLE_TRANSACTIONS: + for tx in api_compose.COMPOSABLE_TRANSACTIONS: create_method = generate_create_method(tx) create_method.__name__ = f"create_{tx}" dispatcher.add_method(create_method) @@ -1162,7 +1163,7 @@ def handle_rest(path_args, flask_request): error = "No query_type provided." return flask.Response(error, 400, mimetype="application/json") # Check if message type or table name are valid. - if (compose and query_type not in transaction.COMPOSABLE_TRANSACTIONS) or ( + if (compose and query_type not in api_compose.COMPOSABLE_TRANSACTIONS) or ( not compose and query_type not in API_TABLES ): error = f'No such query type in supported queries: "{query_type}".' @@ -1173,7 +1174,7 @@ def handle_rest(path_args, flask_request): query_data = {} if compose: - transaction_args, common_args, private_key_wif = transaction.split_compose_params( + transaction_args, common_args, private_key_wif = api_compose.split_compose_params( **extra_args ) diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py new file mode 100644 index 0000000000..81f70e8987 --- /dev/null +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -0,0 +1,878 @@ +import binascii +import decimal + +from counterpartycore.lib import ( + backend, + config, + deserialize, + exceptions, + gettxinfo, + message_type, + messages, + script, + transaction, + util, +) + +D = decimal.Decimal + +COMPOSABLE_TRANSACTIONS = [ + "bet", + "broadcast", + "btcpay", + "burn", + "cancel", + "destroy", + "dispenser", + "dispense", + "dividend", + "issuance", + "versions.mpma", + "order", + "send", + "sweep", + "utxo", + "fairminter", + "fairmint", +] + +COMPOSE_COMMONS_ARGS = { + "encoding": (str, "auto", "The encoding method to use"), + "fee_per_kb": ( + int, + None, + "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)", + ), + "regular_dust_size": ( + int, + config.DEFAULT_REGULAR_DUST_SIZE, + "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.", + ), + "multisig_dust_size": ( + int, + config.DEFAULT_MULTISIG_DUST_SIZE, + "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output", + ), + "pubkey": ( + str, + None, + "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + ), + "allow_unconfirmed_inputs": ( + bool, + False, + "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs", + ), + "fee": ( + int, + None, + "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", + ), + "fee_provided": ( + int, + 0, + "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value", + ), + "unspent_tx_hash": ( + str, + None, + "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + ), + "dust_return_pubkey": ( + str, + None, + "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception", + ), + "disable_utxo_locks": ( + bool, + False, + "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", + ), + "extended_tx_info": ( + bool, + False, + "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", + ), + "p2sh_pretx_txid": ( + str, + None, + "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction", + ), + "segwit": (bool, False, "Use segwit"), + "confirmation_target": ( + int, + config.ESTIMATE_FEE_CONF_TARGET, + "The number of blocks to target for confirmation", + ), + "return_psbt": ( + bool, + False, + "Construct a PSBT instead of a raw transaction hex", + ), + "exclude_utxos": ( + str, + None, + "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + ), + "return_only_data": ( + bool, + False, + "Return only the data part of the transaction", + ), + "custom_inputs": ( + str, + None, + "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + ), +} + + +def split_compose_params(**kwargs): + transaction_args = {} + common_args = {} + private_key_wif = None + for key, value in kwargs.items(): + if key in COMPOSE_COMMONS_ARGS: + common_args[key] = value + elif key == "privkey": + private_key_wif = value + else: + transaction_args[key] = value + return transaction_args, common_args, private_key_wif + + +def get_key_name(**construct_args): + if construct_args.get("return_only_data"): + return "data" + if construct_args.get("return_psbt"): + return "psbt" + return "rawtransaction" + + +def compose(db, name, params, **construct_args): + if name not in COMPOSABLE_TRANSACTIONS: + raise exceptions.TransactionError("Transaction type not composable.") + rawtransaction, data = transaction.compose_transaction( + db, + name=name, + params=params, + **construct_args, + ) + if construct_args.get("return_only_data"): + return {"data": data} + return { + get_key_name(**construct_args): rawtransaction, + "params": params, + "name": name.split(".")[-1], + "data": data, + } + + +def compose_bet( + db, + address: str, + feed_address: str, + bet_type: int, + deadline: int, + wager_quantity: int, + counterwager_quantity: int, + expiration: int, + leverage: int = 5040, + target_value: int = None, + **construct_args, +): + """ + Composes a transaction to issue a bet against a feed. + :param address: The address that will make the bet (e.g. $ADDRESS_1) + :param feed_address: The address that hosts the feed to be bet on (e.g. $ADDRESS_2) + :param bet_type: Bet 0 for Bullish CFD (deprecated), 1 for Bearish CFD (deprecated), 2 for Equal, 3 for NotEqual (e.g. 2) + :param deadline: The time at which the bet should be decided/settled, in Unix time (seconds since epoch) (e.g. 3000000000) + :param wager_quantity: The quantities of XCP to wager (in satoshis, hence integer) (e.g. 1000) + :param counterwager_quantity: The minimum quantities of XCP to be wagered against, for the bets to match (in satoshis, hence integer) (e.g. 1000) + :param expiration: The number of blocks after which the bet expires if it remains unmatched (e.g. 100) + :param leverage: Leverage, as a fraction of 5040 + :param target_value: Target value for Equal/NotEqual bet (e.g. 1000) + """ + params = { + "source": address, + "feed_address": feed_address, + "bet_type": bet_type, + "deadline": deadline, + "wager_quantity": wager_quantity, + "counterwager_quantity": counterwager_quantity, + "target_value": target_value, + "leverage": leverage, + "expiration": expiration, + } + return compose(db, "bet", params, **construct_args) + + +def compose_broadcast( + db, address: str, timestamp: int, value: float, fee_fraction: float, text: str, **construct_args +): + """ + Composes a transaction to broadcast textual and numerical information to the network. + :param address: The address that will be sending (must have the necessary quantity of the specified asset) (e.g. $ADDRESS_1) + :param timestamp: The timestamp of the broadcast, in Unix time (e.g. 4003903985) + :param value: Numerical value of the broadcast (e.g. 100) + :param fee_fraction: How much of every bet on this feed should go to its operator; a fraction of 1, (i.e. 0.05 is five percent) (e.g. 0.05) + :param text: The textual part of the broadcast (e.g. "Hello, world!") + """ + params = { + "source": address, + "timestamp": timestamp, + "value": value, + "fee_fraction": fee_fraction, + "text": text, + } + return compose(db, "broadcast", params, **construct_args) + + +def compose_btcpay(db, address: str, order_match_id: str, **construct_args): + """ + Composes a transaction to pay for a BTC order match. + :param address: The address that will be sending the payment (e.g. $ADDRESS_1) + :param order_match_id: The ID of the order match to pay for (e.g. $LAST_ORDER_MATCH_ID) + """ + params = {"source": address, "order_match_id": order_match_id} + return compose(db, "btcpay", params, **construct_args) + + +def compose_burn(db, address: str, quantity: int, overburn: bool = False, **construct_args): + """ + 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). + :param address: The address with the BTC to burn (e.g. $ADDRESS_1) + :param quantity: The quantities of BTC to burn (in satoshis, hence integer) (1 BTC maximum burn per address) (e.g. 1000) + :param overburn: Whether to allow the burn to exceed 1 BTC for the address + """ + params = {"source": address, "quantity": quantity, "overburn": overburn} + return compose(db, "burn", params, **construct_args) + + +def compose_cancel(db, address: str, offer_hash: str, **construct_args): + """ + Composes a transaction to cancel an open order or bet. + :param address: The address that placed the order/bet to be cancelled (e.g. $ADDRESS_1) + :param offer_hash: The hash of the order/bet to be cancelled (e.g. $LAST_ORDER_TX_HASH) + """ + params = {"source": address, "offer_hash": offer_hash} + return compose(db, "cancel", params, **construct_args) + + +def compose_destroy(db, address: str, asset: str, quantity: int, tag: str, **construct_args): + """ + Composes a transaction to destroy a quantity of an asset. + :param address: The address that will be sending the asset to be destroyed (e.g. $ADDRESS_1) + :param asset: The asset to be destroyed (e.g. XCP) + :param quantity: The quantity of the asset to be destroyed (in satoshis, hence integer) (e.g. 1000) + :param tag: A tag for the destruction (e.g. "bugs!") + """ + params = {"source": address, "asset": asset, "quantity": quantity, "tag": tag} + return compose(db, "destroy", params, **construct_args) + + +def compose_dispenser( + db, + address: str, + asset: str, + give_quantity: int, + escrow_quantity: int, + mainchainrate: int, + status: int, + open_address: str = None, + oracle_address: str = None, + **construct_args, +): + """ + 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. + :param address: The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) (e.g. $ADDRESS_7) + :param asset: The asset or subasset to dispense (e.g. XCP) + :param give_quantity: The quantity of the asset to dispense (in satoshis, hence integer) (e.g. 1000) + :param escrow_quantity: The quantity of the asset to reserve for this dispenser (in satoshis, hence integer) (e.g. 1000) + :param mainchainrate: The quantity of the main chain asset (BTC) per dispensed portion (in satoshis, hence integer) (e.g. 100) + :param status: The state of the dispenser. 0 for open, 1 for open using open_address, 10 for closed (e.g. 0) + :param open_address: The address that you would like to open the dispenser on; MUST be equal to `address` from block 900000 onwards + :param oracle_address: The address that you would like to use as a price oracle for this dispenser + """ + params = { + "source": address, + "asset": asset, + "give_quantity": give_quantity, + "escrow_quantity": escrow_quantity, + "mainchainrate": mainchainrate, + "status": status, + "open_address": open_address, + "oracle_address": oracle_address, + } + return compose(db, "dispenser", params, **construct_args) + + +def compose_dividend( + db, address: str, quantity_per_unit: int, asset: str, dividend_asset: str, **construct_args +): + """ + Composes a transaction to issue a dividend to holders of a given asset. + :param address: The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) (e.g. $ADDRESS_1) + :param quantity_per_unit: The amount of dividend_asset rewarded (in satoshis, hence integer) (e.g. 1) + :param asset: The asset or subasset that the dividends are being rewarded on (e.g. $ASSET_1) + :param dividend_asset: The asset or subasset that the dividends are paid in (e.g. XCP) + """ + params = { + "source": address, + "quantity_per_unit": quantity_per_unit, + "asset": asset, + "dividend_asset": dividend_asset, + } + return compose(db, "dividend", params, **construct_args) + + +def compose_issuance( + db, + address: str, + asset: str, + quantity: int, + transfer_destination: str = None, + divisible: bool = True, + lock: bool = False, + reset: bool = False, + description: str = None, + **construct_args, +): + """ + 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. + :param address: The address that will be issuing or transfering the asset (e.g. $ADDRESS_1) + :param asset: The assets to issue or transfer. This can also be a subasset longname for new subasset issuances (e.g. XCPTEST) + :param quantity: The quantity of the asset to issue (set to 0 if transferring an asset) (in satoshis, hence integer) (e.g. 1000) + :param transfer_destination: The address to receive the asset (e.g. $ADDRESS_1) + :param divisible: Whether this asset is divisible or not (if a transfer, this value must match the value specified when the asset was originally issued) + :param lock: Whether this issuance should lock supply of this asset forever + :param reset: Wether this issuance should reset any existing supply + :param description: A textual description for the asset + """ + params = { + "source": address, + "asset": asset, + "quantity": quantity, + "transfer_destination": transfer_destination, + "divisible": divisible, + "lock": lock, + "reset": reset, + "description": description, + } + return compose(db, "issuance", params, **construct_args) + + +def compose_mpma( + db, + address: str, + assets: str, + destinations: str, + quantities: str, + memo: str = None, + memo_is_hex: bool = False, + **construct_args, +): + """ + Composes a transaction to send multiple payments to multiple addresses. + :param address: The address that will be sending (must have the necessary quantity of the specified asset) (e.g. $ADDRESS_1) + :param assets: comma-separated list of assets to send (e.g. XCP,$ASSET_5) + :param destinations: comma-separated list of addresses to send to (e.g. $ADDRESS_1,$ADDRESS_2) + :param quantities: comma-separated list of quantities to send (in satoshis, hence integer) (e.g. 1,2) + :param memo: The Memo associated with this transaction (e.g. "Hello, world!") + :param memo_is_hex: Whether the memo field is a hexadecimal string (e.g. False) + """ + asset_list = assets.split(",") + destination_list = destinations.split(",") + quantity_list = quantities.split(",") + if len(asset_list) != len(destination_list) or len(asset_list) != len(quantity_list): + raise exceptions.ComposeError( + "The number of assets, destinations, and quantities must be equal" + ) + for quantity in quantity_list: + if not quantity.isdigit(): + raise exceptions.ComposeError("Quantity must be an integer") + quantity_list = [int(quantity) for quantity in quantity_list] + asset_dest_quant_list = list(zip(asset_list, destination_list, quantity_list)) + + params = { + "source": address, + "asset_dest_quant_list": asset_dest_quant_list, + "memo": memo, + "memo_is_hex": memo_is_hex, + } + return compose(db, "versions.mpma", params, **construct_args) + + +def compose_order( + db, + address: str, + give_asset: str, + give_quantity: int, + get_asset: str, + get_quantity: int, + expiration: int, + fee_required: int, + **construct_args, +): + """ + Composes a transaction to place an order on the distributed exchange. + :param address: The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) (e.g. $ADDRESS_1) + :param give_asset: The asset that will be given in the trade (e.g. XCP) + :param give_quantity: The quantity of the asset that will be given (in satoshis, hence integer) (e.g. 1000) + :param get_asset: The asset that will be received in the trade (e.g. $ASSET_1) + :param get_quantity: The quantity of the asset that will be received (in satoshis, hence integer) (e.g. 1000) + :param expiration: The number of blocks for which the order should be valid (e.g. 100) + :param fee_required: The miners’ fee required to be paid by orders for them to match this one; in BTC; required only if buying BTC (may be zero, though) (e.g. 100) + """ + params = { + "source": address, + "give_asset": give_asset, + "give_quantity": give_quantity, + "get_asset": get_asset, + "get_quantity": get_quantity, + "expiration": expiration, + "fee_required": fee_required, + } + return compose(db, "order", params, **construct_args) + + +def compose_send( + db, + address: str, + destination: str, + asset: str, + quantity: int, + memo: str = None, + memo_is_hex: bool = False, + use_enhanced_send: bool = True, + **construct_args, +): + """ + Composes a transaction to send a quantity of an asset to another address. + :param address: The address that will be sending (must have the necessary quantity of the specified asset) (e.g. $ADDRESS_1) + :param destination: The address that will be receiving the asset (e.g. $ADDRESS_2) + :param asset: The asset or subasset to send (e.g. XCP) + :param quantity: The quantity of the asset to send (in satoshis, hence integer) (e.g. 1000) + :param memo: The Memo associated with this transaction + :param memo_is_hex: Whether the memo field is a hexadecimal string + :param use_enhanced_send: If this is false, the construct a legacy transaction sending bitcoin dust + """ + params = { + "source": address, + "destination": destination, + "asset": asset, + "quantity": quantity, + "memo": memo, + "memo_is_hex": memo_is_hex, + "use_enhanced_send": use_enhanced_send, + } + return compose(db, "send", params, **construct_args) + + +def compose_dispense( + db, + address: str, + dispenser: str, + quantity: int, + **construct_args, +): + """ + Composes a transaction to send BTC to a dispenser. + :param address: The address that will be sending (must have the necessary quantity of BTC) (e.g. $ADDRESS_2) + :param dispenser: The dispenser that will be receiving the asset (e.g. $ADDRESS_4) + :param quantity: The quantity of BTC to send (in satoshis, hence integer) (e.g. 1000) + """ + params = { + "source": address, + "destination": dispenser, + "quantity": quantity, + } + return compose(db, "dispense", params, **construct_args) + + +def compose_sweep(db, address: str, destination: str, flags: int, memo: str, **construct_args): + """ + Composes a transaction to Sends all assets and/or transfer ownerships to a destination address. + :param address: The address that will be sending (e.g. $ADDRESS_1) + :param destination: The address to receive the assets and/or ownerships (e.g. $ADDRESS_2) + :param flags: 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. + (e.g. 7) + :param memo: The Memo associated with this transaction in hex format (e.g. FFFF) + """ + params = { + "source": address, + "destination": destination, + "flags": flags, + "memo": memo, + } + return compose(db, "sweep", params, **construct_args) + + +def compose_fairminter( + db, + address: str, + asset: str, + asset_parent: str = "", + price: int = 0, + quantity_by_price: int = 1, + max_mint_per_tx: int = 0, + hard_cap: int = 0, + premint_quantity: int = 0, + start_block: int = 0, + end_block: int = 0, + soft_cap: int = 0, + soft_cap_deadline_block: int = 0, + minted_asset_commission: float = 0.0, + burn_payment: bool = False, + lock_description: bool = False, + lock_quantity: bool = False, + divisible: bool = True, + description: str = "", + **construct_args, +): + """ + Composes a transaction to issue a new asset using the FairMinter protocol. + :param address: The address that will be issuing the asset (e.g. $ADDRESS_1) + :param asset: The asset to issue (e.g. MYASSET) + :param asset_parent: The parent asset of the asset to issue + :param price: The price in XCP of the asset to issue (e.g. 10) + :param quantity_by_price: The quantity of asset to mint per `price` paid + :param max_mint_per_tx: Amount minted if price is equal to 0; otherwise, maximum amount of asset that can be minted in a single transaction; if 0, there is no limit + :param hard_cap: The maximum amount of asset that can be minted; if 0 there is no limit + :param premint_quantity: Amount of asset to be minted when the sale starts, if 0, no premint; preminted assets are sent to the source of the transaction + :param start_block: The block at which the sale starts + :param end_block: The block at which the sale ends + :param soft_cap: Minimum amount of asset to be minted, if None, no minimum; if the soft cap is not reached by the soft_cap_deadline_block, the sale is canceled, asset is revoked from all minters and all payments are refunded + :param soft_cap_deadline_block: The block at which the soft cap must be reached + :param minted_asset_commission: Commission to be paid in minted asset, a fraction of 1 (i.e., 0.05 is five percent); the commission is deducted from the asset received by the minter and sent to the Fair Minter owner + :param burn_payment: If True, the payment asset is burned, otherwise it is sent to the source + :param lock_description: If True, the description of the asset is locked + :param lock_quantity: If True, the quantity of the asset cannot be changed after the minting + :param divisible: If True, the asset is divisible + :param description: The description of the asset + """ + params = { + "source": address, + "asset": asset, + "asset_parent": asset_parent, + "price": price, + "quantity_by_price": quantity_by_price, + "max_mint_per_tx": max_mint_per_tx, + "hard_cap": hard_cap, + "premint_quantity": premint_quantity, + "start_block": start_block, + "end_block": end_block, + "soft_cap": soft_cap, + "soft_cap_deadline_block": soft_cap_deadline_block, + "minted_asset_commission": minted_asset_commission, + "burn_payment": burn_payment, + "lock_description": lock_description, + "lock_quantity": lock_quantity, + "divisible": divisible, + "description": description, + } + return compose(db, "fairminter", params, **construct_args) + + +def compose_fairmint(db, address: str, asset: str, quantity: int = 0, **construct_args): + """ + Composes a transaction to mint a quantity of an asset using the FairMinter protocol. + :param address: The address that will be minting the asset (e.g. $ADDRESS_1) + :param asset: The asset to mint (e.g. $ASSET_3) + :param quantity: The quantity of the asset to mint (in satoshis, hence integer) (e.g. 1) + """ + params = {"source": address, "asset": asset, "quantity": quantity} + return compose(db, "fairmint", params, **construct_args) + + +def compose_utxo( + db, + source: str, + destination: str, + asset: str, + quantity: int, + **construct_args, +): + params = { + "source": source, + "destination": destination, + "asset": asset, + "quantity": quantity, + } + return compose(db, "utxo", params, **construct_args) + + +def compose_attach( + db, + address: str, + asset: str, + quantity: int, + destination: str = None, + **construct_args, +): + """ + Composes a transaction to attach assets from an address to UTXO. + :param address: The address from which the assets are attached (e.g. $ADDRESS_1) + :param destination: The utxo to attach the assets to (e.g. $UTXO_1_ADDRESS_1) + :param asset: The asset or subasset to attach (e.g. XCP) + :param quantity: The quantity of the asset to attach (in satoshis, hence integer) (e.g. 1000) + """ + return compose_utxo( + db, + source=address, + destination=destination, + asset=asset, + quantity=quantity, + **construct_args, + ) + + +def compose_detach( + db, + utxo: str, + destination: str, + asset: str, + quantity: int, + **construct_args, +): + """ + Composes a transaction to detach assets from UTXO to an address. + :param utxo: The utxo from which the assets are detached (e.g. $UTXO_WITH_BALANCE) + :param destination: The address to detach the assets to (e.g. $ADDRESS_1) + :param asset: The asset or subasset to detach (e.g. XCP) + :param quantity: The quantity of the asset to detach (in satoshis, hence integer) (e.g. 1000) + """ + return compose_utxo( + db, + source=utxo, + destination=destination, + asset=asset, + quantity=quantity, + **construct_args, + ) + + +def compose_movetoutxo(db, utxo: str, destination: str, more_utxos: str = ""): + """ + Composes a transaction to move assets from UTXO to another UTXO. + :param utxo: The utxo from which the assets are moved + :param destination: The address to move the assets to + :param more_utxos: The additional utxos to fund the transaction + """ + decimal.getcontext().prec = 8 + + more_utxos_list = [] + input_count = 1 + total_value = D("0") + try: + source_address, source_value = backend.bitcoind.get_utxo_address_and_value(utxo) + total_value += D(source_value) + for more_utxo in more_utxos.split(","): + if more_utxo == "": + continue + _more_utxo_address, more_utxo_value = backend.bitcoind.get_utxo_address_and_value( + more_utxo + ) + more_utxo_tx_hash, more_utxo_vout = more_utxo.split(":") + more_utxos_list.append({"txid": more_utxo_tx_hash, "vout": int(more_utxo_vout)}) + input_count += 1 + total_value += D(more_utxo_value) + except exceptions.InvalidUTXOError as e: + raise exceptions.ComposeError("Invalid UTXO for source") from e + + try: + script.validate(destination) + except Exception as e: + raise exceptions.ComposeError("Invalid address for destination") from e + + 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) + + dust = D("0.0000546") + change = D(total_value) - dust - fee + + if change < 0: + 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)}] + rawtransaction = backend.bitcoind.createrawtransaction(inputs, outputs) + + return { + "rawtransaction": rawtransaction, + "params": { + "source": utxo, + "destination": destination, + }, + "name": "movetoutxo", + "data": None, + } + + +def info_by_tx_hash(db, tx_hash: str): + """ + Returns Counterparty information from a transaction hash. + :param tx_hash: Transaction hash (e.g. $LAST_MEMPOOL_TX_HASH) + """ + try: + rawtransaction = backend.bitcoind.getrawtransaction(tx_hash) + except Exception as e: + raise exceptions.ComposeError("Invalid transaction") from e + return info(db, rawtransaction) + + +def info(db, rawtransaction: str, block_index: int = None): + """ + Returns Counterparty information from a raw transaction in hex format. + :param rawtransaction: Raw transaction in hex format (e.g. $RAW_TRANSACTION_1) + :param block_index: Block index mandatory for transactions before block 335000 + """ + try: + decoded_tx = deserialize.deserialize_tx( + rawtransaction, use_txid=util.enabled("correct_segwit_txids", block_index) + ) + except Exception as e: + raise exceptions.ComposeError("Invalid rawtransaction") from e + + source, destination, btc_amount, fee, data, _dispensers_outs, _utxos_info = ( + gettxinfo.get_tx_info( + db, + decoded_tx, + block_index=block_index, + ) + ) + del decoded_tx["__data__"] + result = { + "source": source, + "destination": destination if destination else None, + "btc_amount": btc_amount, + "fee": fee, + "data": util.hexlify(data) if data else "", + "decoded_tx": decoded_tx, + } + if data: + result["data"] = util.hexlify(data) + result["unpacked_data"] = unpack(db, result["data"], block_index) + return result + + +def unpack(db, datahex: str, block_index: int = None): + """ + Unpacks Counterparty data in hex format and returns the message type and data. + :param datahex: Data in hex format (e.g. 020000000001016a65c1624e53f4d33ce02e726a6606faed60cc014d5b1a578ba3e09b4b3f8f890100000000ffffffff020000000000000000176a150d55e8b6118808b7b663b365473f142274028b8af60245092701000000160014a3df8a5a83d4e2827b59b43f5ce6ce5d2e52093f0247304402204b7a2859cbce34e725a1132fec2dd4b075503dadff0a0c407ae7c22a7712fe4d0220563ceb2ceebdf649343bb24819fc808639cce7781305b4588ffbe4a20390d2780121020ace9adf60fe4ec05dab922ccdc5727cbf664cafc7cdb845de534855266314c800000000) + :param block_index: Block index of the transaction containing this data + """ + data = binascii.unhexlify(datahex) + message_type_id, message = message_type.unpack(data) + block_index = block_index or util.CURRENT_BLOCK_INDEX + + issuance_ids = [ + messages.issuance.ID, + messages.issuance.LR_ISSUANCE_ID, + messages.issuance.SUBASSET_ID, + messages.issuance.LR_SUBASSET_ID, + ] + + # Unknown message type + message_data = {"error": "Unknown message type"} + message_type_name = "unknown" + try: + # Bet + if message_type_id == messages.bet.ID: + message_type_name = "bet" + message_data = messages.bet.unpack(message, return_dict=True) + # Broadcast + elif message_type_id == messages.broadcast.ID: + message_type_name = "broadcast" + message_data = messages.broadcast.unpack(message, block_index, return_dict=True) + # BTCPay + elif message_type_id == messages.btcpay.ID: + message_type_name = "btcpay" + message_data = messages.btcpay.unpack(message, return_dict=True) + # Cancel + elif message_type_id == messages.cancel.ID: + message_type_name = "cancel" + message_data = messages.cancel.unpack(message, return_dict=True) + # Destroy + elif message_type_id == messages.destroy.ID: + message_type_name = "destroy" + message_data = messages.destroy.unpack(db, message, return_dict=True) + # Dispenser + elif message_type_id == messages.dispenser.ID: + message_type_name = "dispenser" + message_data = messages.dispenser.unpack(message, return_dict=True) + elif message_type_id == messages.dispenser.DISPENSE_ID: + message_type_name = "dispense" + message_data = messages.dispense.unpack(message, return_dict=True) + # Dividend + elif message_type_id == messages.dividend.ID: + message_type_name = "dividend" + message_data = messages.dividend.unpack(db, message, block_index, return_dict=True) + # Issuance + elif message_type_id in issuance_ids: + message_type_name = "issuance" + message_data = messages.issuance.unpack( + db, message, message_type_id, block_index, return_dict=True + ) + # Order + elif message_type_id == messages.order.ID: + message_type_name = "order" + message_data = messages.order.unpack(db, message, block_index, return_dict=True) + # Send + elif message_type_id == messages.send.ID: + message_type_name = "send" + message_data = messages.send.unpack(db, message, block_index) + # Enhanced send + elif message_type_id == messages.versions.enhanced_send.ID: + message_type_name = "enhanced_send" + message_data = messages.versions.enhanced_send.unpack(message, block_index) + # MPMA send + elif message_type_id == messages.versions.mpma.ID: + message_type_name = "mpma_send" + mpma_message_data = messages.versions.mpma.unpack(message, block_index) + message_data = [] + for asset_name, send_info in mpma_message_data.items(): + message_data.append( + { + "asset": asset_name, + "destination": send_info[0][0], + "quantity": send_info[0][1], + "memo": send_info[0][2] if len(send_info[0]) > 2 else None, + "memo_is_hex": send_info[0][3] if len(send_info[0]) > 3 else None, + } + ) + # RPS + elif message_type_id == messages.rps.ID: + message_type_name = "rps" + message_data = messages.rps.unpack(message, return_dict=True) + # RPS Resolve + elif message_type_id == messages.rpsresolve.ID: + message_type_name = "rpsresolve" + message_data = messages.rpsresolve.unpack(message, return_dict=True) + # Sweep + elif message_type_id == messages.sweep.ID: + message_type_name = "sweep" + message_data = messages.sweep.unpack(message) + # Fair Minter + elif message_type_id == messages.fairminter.ID: + message_type_name = "fairminter" + message_data = messages.fairminter.unpack(message) + # Fair Mint + elif message_type_id == messages.fairmint.ID: + message_type_name = "fairmint" + message_data = messages.fairmint.unpack(message) + except (exceptions.UnpackError, UnicodeDecodeError) as e: + message_data = {"error": str(e)} + + return { + "message_type": message_type_name, + "message_type_id": message_type_id, + "message_data": message_data, + } diff --git a/counterparty-core/counterpartycore/lib/api/routes.py b/counterparty-core/counterpartycore/lib/api/routes.py index c99c9286f9..fc227c83c9 100644 --- a/counterparty-core/counterpartycore/lib/api/routes.py +++ b/counterparty-core/counterpartycore/lib/api/routes.py @@ -1,5 +1,4 @@ -from counterpartycore.lib import transaction -from counterpartycore.lib.api import queries, util +from counterpartycore.lib.api import compose, queries, util from counterpartycore.lib.backend import addrindexrs, bitcoind @@ -31,9 +30,9 @@ def get_routes(): "/v2/blocks//sweeps": queries.get_sweeps_by_block, ### /transactions ### "/v2/transactions": queries.get_transactions, - "/v2/transactions/info": transaction.info, - "/v2/transactions//info": transaction.info_by_tx_hash, - "/v2/transactions/unpack": transaction.unpack, + "/v2/transactions/info": compose.info, + "/v2/transactions//info": compose.info_by_tx_hash, + "/v2/transactions/unpack": compose.unpack, "/v2/transactions/": queries.get_transaction_by_tx_index, "/v2/transactions/": queries.get_transaction_by_hash, "/v2/transactions//events": queries.get_events_by_transaction_index, @@ -74,25 +73,25 @@ def get_routes(): "/v2/addresses/
/fairmints": queries.get_fairmints_by_address, "/v2/addresses/
/fairmints/": queries.get_fairmints_by_address_and_asset, ### /addresses/
/compose/ ### - "/v2/addresses/
/compose/bet": transaction.compose_bet, - "/v2/addresses/
/compose/broadcast": transaction.compose_broadcast, - "/v2/addresses/
/compose/btcpay": transaction.compose_btcpay, - "/v2/addresses/
/compose/burn": transaction.compose_burn, - "/v2/addresses/
/compose/cancel": transaction.compose_cancel, - "/v2/addresses/
/compose/destroy": transaction.compose_destroy, - "/v2/addresses/
/compose/dispenser": transaction.compose_dispenser, - "/v2/addresses/
/compose/dividend": transaction.compose_dividend, - "/v2/addresses/
/compose/issuance": transaction.compose_issuance, - "/v2/addresses/
/compose/mpma": transaction.compose_mpma, - "/v2/addresses/
/compose/order": transaction.compose_order, - "/v2/addresses/
/compose/send": transaction.compose_send, - "/v2/addresses/
/compose/sweep": transaction.compose_sweep, - "/v2/addresses/
/compose/dispense": transaction.compose_dispense, - "/v2/addresses/
/compose/fairminter": transaction.compose_fairminter, - "/v2/addresses/
/compose/fairmint": transaction.compose_fairmint, - "/v2/addresses/
/compose/attach": transaction.compose_attach, - "/v2/utxos//compose/detach": transaction.compose_detach, - "/v2/utxos//compose/movetoutxo": transaction.compose_movetoutxo, + "/v2/addresses/
/compose/bet": compose.compose_bet, + "/v2/addresses/
/compose/broadcast": compose.compose_broadcast, + "/v2/addresses/
/compose/btcpay": compose.compose_btcpay, + "/v2/addresses/
/compose/burn": compose.compose_burn, + "/v2/addresses/
/compose/cancel": compose.compose_cancel, + "/v2/addresses/
/compose/destroy": compose.compose_destroy, + "/v2/addresses/
/compose/dispenser": compose.compose_dispenser, + "/v2/addresses/
/compose/dividend": compose.compose_dividend, + "/v2/addresses/
/compose/issuance": compose.compose_issuance, + "/v2/addresses/
/compose/mpma": compose.compose_mpma, + "/v2/addresses/
/compose/order": compose.compose_order, + "/v2/addresses/
/compose/send": compose.compose_send, + "/v2/addresses/
/compose/sweep": compose.compose_sweep, + "/v2/addresses/
/compose/dispense": compose.compose_dispense, + "/v2/addresses/
/compose/fairminter": compose.compose_fairminter, + "/v2/addresses/
/compose/fairmint": compose.compose_fairmint, + "/v2/addresses/
/compose/attach": compose.compose_attach, + "/v2/utxos//compose/detach": compose.compose_detach, + "/v2/utxos//compose/movetoutxo": compose.compose_movetoutxo, ### /assets ### "/v2/assets": queries.get_valid_assets, "/v2/assets/": queries.get_asset, diff --git a/counterparty-core/counterpartycore/lib/api/util.py b/counterparty-core/counterpartycore/lib/api/util.py index d2e1898df0..b22d326cdf 100644 --- a/counterparty-core/counterpartycore/lib/api/util.py +++ b/counterparty-core/counterpartycore/lib/api/util.py @@ -12,6 +12,7 @@ import requests import werkzeug from counterpartycore.lib import backend, config, exceptions, ledger, transaction, util +from counterpartycore.lib.api import compose from docstring_parser import parse as parse_docstring D = decimal.Decimal @@ -204,7 +205,7 @@ def prepare_route_args(function): args_description = get_args_description(function) for arg_name, arg in function_args.items(): if arg_name == "construct_args": - for carg_name, carg_info in transaction.COMPOSE_COMMONS_ARGS.items(): + for carg_name, carg_info in compose.COMPOSE_COMMONS_ARGS.items(): args.append( { "name": carg_name, @@ -660,8 +661,9 @@ def inject_dispensers(db, result_list): def inject_unpacked_data_in_dict(db, item): if "data" in item: data = binascii.hexlify(item["data"]) if isinstance(item["data"], bytes) else item["data"] - block_index = item.get("block_index") - item["unpacked_data"] = transaction.unpack(db, data, block_index=block_index) + if data: + block_index = item.get("block_index") + item["unpacked_data"] = compose.unpack(db, data, block_index=block_index) return item diff --git a/counterparty-core/counterpartycore/lib/ledger.py b/counterparty-core/counterpartycore/lib/ledger.py index def083436a..299439c230 100644 --- a/counterparty-core/counterpartycore/lib/ledger.py +++ b/counterparty-core/counterpartycore/lib/ledger.py @@ -1879,6 +1879,8 @@ def mark_order_as_filled(db, tx0_hash, tx1_hash, source=None): "ORDER_FILLED", {"tx_hash": order["tx_hash"]}, ) + if not util.PARSING_MEMPOOL: + OrdersCache(db).update_order(order["tx_hash"], update_data) def update_order_match_status(db, id, status): diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index 507b4d1936..08e863355c 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -24,8 +24,6 @@ deserialize, exceptions, gettxinfo, - message_type, - messages, script, util, ) @@ -1041,111 +1039,6 @@ def get_dust_return_pubkey(source, provided_pubkeys, encoding): return dust_return_pubkey -COMPOSE_COMMONS_ARGS = { - "encoding": (str, "auto", "The encoding method to use"), - "fee_per_kb": ( - int, - None, - "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)", - ), - "regular_dust_size": ( - int, - config.DEFAULT_REGULAR_DUST_SIZE, - "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.", - ), - "multisig_dust_size": ( - int, - config.DEFAULT_MULTISIG_DUST_SIZE, - "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output", - ), - "pubkey": ( - str, - None, - "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", - ), - "allow_unconfirmed_inputs": ( - bool, - False, - "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs", - ), - "fee": ( - int, - None, - "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", - ), - "fee_provided": ( - int, - 0, - "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value", - ), - "unspent_tx_hash": ( - str, - None, - "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", - ), - "dust_return_pubkey": ( - str, - None, - "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception", - ), - "disable_utxo_locks": ( - bool, - False, - "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", - ), - "extended_tx_info": ( - bool, - False, - "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - ), - "p2sh_pretx_txid": ( - str, - None, - "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction", - ), - "segwit": (bool, False, "Use segwit"), - "confirmation_target": ( - int, - config.ESTIMATE_FEE_CONF_TARGET, - "The number of blocks to target for confirmation", - ), - "return_psbt": ( - bool, - False, - "Construct a PSBT instead of a raw transaction hex", - ), - "exclude_utxos": ( - str, - None, - "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", - ), - "return_only_data": ( - bool, - False, - "Return only the data part of the transaction", - ), - "custom_inputs": ( - str, - None, - "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", - ), -} - - -def split_compose_params(**kwargs): - transaction_args = {} - common_args = {} - private_key_wif = None - for key, value in kwargs.items(): - if key in COMPOSE_COMMONS_ARGS: - common_args[key] = value - elif key == "privkey": - private_key_wif = value - else: - transaction_args[key] = value - return transaction_args, common_args, private_key_wif - - def get_default_args(func): signature = inspect.signature(func) return { @@ -1278,9 +1171,9 @@ def compose_transaction( tx_info = compose_method(db, **params) - data = config.PREFIX + tx_info[2] + data = config.PREFIX + tx_info[2] if tx_info[2] else None if return_only_data: - return data + return None, data raw_transaction = construct( db, @@ -1312,935 +1205,3 @@ def compose_transaction( psbt = backend.bitcoind.convert_to_psbt(raw_transaction) return psbt return raw_transaction, data - - -COMPOSABLE_TRANSACTIONS = [ - "bet", - "broadcast", - "btcpay", - "burn", - "cancel", - "destroy", - "dispenser", - "dividend", - "issuance", - "mpma", - "order", - "send", - "sweep", -] - - -def compose(db, source, transaction_name, api_v1=False, **kwargs): - if transaction_name not in COMPOSABLE_TRANSACTIONS: - raise exceptions.TransactionError("Transaction type not composable.") - transaction_args, common_args, _ = split_compose_params(**kwargs) - transaction_args["source"] = source - return compose_transaction( - db, name=transaction_name, params=transaction_args, api_v1=api_v1, **common_args - ) - - -def get_key_name(**construct_args): - if construct_args.get("return_only_data"): - return "data" - if construct_args.get("return_psbt"): - return "psbt" - return "rawtransaction" - - -def compose_bet( - db, - address: str, - feed_address: str, - bet_type: int, - deadline: int, - wager_quantity: int, - counterwager_quantity: int, - expiration: int, - leverage: int = 5040, - target_value: int = None, - **construct_args, -): - """ - Composes a transaction to issue a bet against a feed. - :param address: The address that will make the bet (e.g. $ADDRESS_1) - :param feed_address: The address that hosts the feed to be bet on (e.g. $ADDRESS_2) - :param bet_type: Bet 0 for Bullish CFD (deprecated), 1 for Bearish CFD (deprecated), 2 for Equal, 3 for NotEqual (e.g. 2) - :param deadline: The time at which the bet should be decided/settled, in Unix time (seconds since epoch) (e.g. 3000000000) - :param wager_quantity: The quantities of XCP to wager (in satoshis, hence integer) (e.g. 1000) - :param counterwager_quantity: The minimum quantities of XCP to be wagered against, for the bets to match (in satoshis, hence integer) (e.g. 1000) - :param expiration: The number of blocks after which the bet expires if it remains unmatched (e.g. 100) - :param leverage: Leverage, as a fraction of 5040 - :param target_value: Target value for Equal/NotEqual bet (e.g. 1000) - """ - params = { - "source": address, - "feed_address": feed_address, - "bet_type": bet_type, - "deadline": deadline, - "wager_quantity": wager_quantity, - "counterwager_quantity": counterwager_quantity, - "target_value": target_value, - "leverage": leverage, - "expiration": expiration, - } - rawtransaction, data = compose_transaction( - db, - name="bet", - params=params, - **construct_args, - ) - return { - get_key_name(**construct_args): rawtransaction, - "params": params, - "name": "bet", - "data": data, - } - - -def compose_broadcast( - db, address: str, timestamp: int, value: float, fee_fraction: float, text: str, **construct_args -): - """ - Composes a transaction to broadcast textual and numerical information to the network. - :param address: The address that will be sending (must have the necessary quantity of the specified asset) (e.g. $ADDRESS_1) - :param timestamp: The timestamp of the broadcast, in Unix time (e.g. 4003903985) - :param value: Numerical value of the broadcast (e.g. 100) - :param fee_fraction: How much of every bet on this feed should go to its operator; a fraction of 1, (i.e. 0.05 is five percent) (e.g. 0.05) - :param text: The textual part of the broadcast (e.g. "Hello, world!") - """ - params = { - "source": address, - "timestamp": timestamp, - "value": value, - "fee_fraction": fee_fraction, - "text": text, - } - rawtransaction, data = compose_transaction( - db, - name="broadcast", - params=params, - **construct_args, - ) - return { - get_key_name(**construct_args): rawtransaction, - "params": params, - "name": "broadcast", - "data": data, - } - - -def compose_btcpay(db, address: str, order_match_id: str, **construct_args): - """ - Composes a transaction to pay for a BTC order match. - :param address: The address that will be sending the payment (e.g. $ADDRESS_1) - :param order_match_id: The ID of the order match to pay for (e.g. $LAST_ORDER_MATCH_ID) - """ - params = {"source": address, "order_match_id": order_match_id} - rawtransaction, data = compose_transaction( - db, - name="btcpay", - params=params, - **construct_args, - ) - return { - get_key_name(**construct_args): rawtransaction, - "params": params, - "name": "btcpay", - "data": data, - } - - -def compose_burn(db, address: str, quantity: int, overburn: bool = False, **construct_args): - """ - 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). - :param address: The address with the BTC to burn (e.g. $ADDRESS_1) - :param quantity: The quantities of BTC to burn (in satoshis, hence integer) (1 BTC maximum burn per address) (e.g. 1000) - :param overburn: Whether to allow the burn to exceed 1 BTC for the address - """ - params = {"source": address, "quantity": quantity, "overburn": overburn} - rawtransaction, data = compose_transaction( - db, - name="burn", - params=params, - **construct_args, - ) - return { - get_key_name(**construct_args): rawtransaction, - "params": params, - "name": "burn", - "data": data, - } - - -def compose_cancel(db, address: str, offer_hash: str, **construct_args): - """ - Composes a transaction to cancel an open order or bet. - :param address: The address that placed the order/bet to be cancelled (e.g. $ADDRESS_1) - :param offer_hash: The hash of the order/bet to be cancelled (e.g. $LAST_ORDER_TX_HASH) - """ - params = {"source": address, "offer_hash": offer_hash} - rawtransaction, data = compose_transaction( - db, - name="cancel", - params=params, - **construct_args, - ) - return { - get_key_name(**construct_args): rawtransaction, - "params": params, - "name": "cancel", - "data": data, - } - - -def compose_destroy(db, address: str, asset: str, quantity: int, tag: str, **construct_args): - """ - Composes a transaction to destroy a quantity of an asset. - :param address: The address that will be sending the asset to be destroyed (e.g. $ADDRESS_1) - :param asset: The asset to be destroyed (e.g. XCP) - :param quantity: The quantity of the asset to be destroyed (in satoshis, hence integer) (e.g. 1000) - :param tag: A tag for the destruction (e.g. "bugs!") - """ - params = {"source": address, "asset": asset, "quantity": quantity, "tag": tag} - rawtransaction, data = compose_transaction( - db, - name="destroy", - params=params, - **construct_args, - ) - return { - get_key_name(**construct_args): rawtransaction, - "params": params, - "name": "destroy", - "data": data, - } - - -def compose_dispenser( - db, - address: str, - asset: str, - give_quantity: int, - escrow_quantity: int, - mainchainrate: int, - status: int, - open_address: str = None, - oracle_address: str = None, - **construct_args, -): - """ - 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. - :param address: The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) (e.g. $ADDRESS_7) - :param asset: The asset or subasset to dispense (e.g. XCP) - :param give_quantity: The quantity of the asset to dispense (in satoshis, hence integer) (e.g. 1000) - :param escrow_quantity: The quantity of the asset to reserve for this dispenser (in satoshis, hence integer) (e.g. 1000) - :param mainchainrate: The quantity of the main chain asset (BTC) per dispensed portion (in satoshis, hence integer) (e.g. 100) - :param status: The state of the dispenser. 0 for open, 1 for open using open_address, 10 for closed (e.g. 0) - :param open_address: The address that you would like to open the dispenser on; MUST be equal to `address` from block 900000 onwards - :param oracle_address: The address that you would like to use as a price oracle for this dispenser - """ - params = { - "source": address, - "asset": asset, - "give_quantity": give_quantity, - "escrow_quantity": escrow_quantity, - "mainchainrate": mainchainrate, - "status": status, - "open_address": open_address, - "oracle_address": oracle_address, - } - rawtransaction, data = compose_transaction( - db, - name="dispenser", - params=params, - **construct_args, - ) - return { - get_key_name(**construct_args): rawtransaction, - "params": params, - "name": "dispenser", - "data": data, - } - - -def compose_dividend( - db, address: str, quantity_per_unit: int, asset: str, dividend_asset: str, **construct_args -): - """ - Composes a transaction to issue a dividend to holders of a given asset. - :param address: The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) (e.g. $ADDRESS_1) - :param quantity_per_unit: The amount of dividend_asset rewarded (in satoshis, hence integer) (e.g. 1) - :param asset: The asset or subasset that the dividends are being rewarded on (e.g. $ASSET_1) - :param dividend_asset: The asset or subasset that the dividends are paid in (e.g. XCP) - """ - params = { - "source": address, - "quantity_per_unit": quantity_per_unit, - "asset": asset, - "dividend_asset": dividend_asset, - } - rawtransaction, data = compose_transaction( - db, - name="dividend", - params=params, - **construct_args, - ) - return { - get_key_name(**construct_args): rawtransaction, - "params": params, - "name": "dividend", - "data": data, - } - - -def compose_issuance( - db, - address: str, - asset: str, - quantity: int, - transfer_destination: str = None, - divisible: bool = True, - lock: bool = False, - reset: bool = False, - description: str = None, - **construct_args, -): - """ - 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. - :param address: The address that will be issuing or transfering the asset (e.g. $ADDRESS_1) - :param asset: The assets to issue or transfer. This can also be a subasset longname for new subasset issuances (e.g. XCPTEST) - :param quantity: The quantity of the asset to issue (set to 0 if transferring an asset) (in satoshis, hence integer) (e.g. 1000) - :param transfer_destination: The address to receive the asset (e.g. $ADDRESS_1) - :param divisible: Whether this asset is divisible or not (if a transfer, this value must match the value specified when the asset was originally issued) - :param lock: Whether this issuance should lock supply of this asset forever - :param reset: Wether this issuance should reset any existing supply - :param description: A textual description for the asset - """ - params = { - "source": address, - "asset": asset, - "quantity": quantity, - "transfer_destination": transfer_destination, - "divisible": divisible, - "lock": lock, - "reset": reset, - "description": description, - } - rawtransaction, data = compose_transaction( - db, - name="issuance", - params=params, - **construct_args, - ) - return { - get_key_name(**construct_args): rawtransaction, - "params": params, - "name": "issuance", - "data": data, - } - - -def compose_mpma( - db, - address: str, - assets: str, - destinations: str, - quantities: str, - memo: str = None, - memo_is_hex: bool = False, - **construct_args, -): - """ - Composes a transaction to send multiple payments to multiple addresses. - :param address: The address that will be sending (must have the necessary quantity of the specified asset) (e.g. $ADDRESS_1) - :param assets: comma-separated list of assets to send (e.g. XCP,$ASSET_5) - :param destinations: comma-separated list of addresses to send to (e.g. $ADDRESS_1,$ADDRESS_2) - :param quantities: comma-separated list of quantities to send (in satoshis, hence integer) (e.g. 1,2) - :param memo: The Memo associated with this transaction (e.g. "Hello, world!") - :param memo_is_hex: Whether the memo field is a hexadecimal string (e.g. False) - """ - asset_list = assets.split(",") - destination_list = destinations.split(",") - quantity_list = quantities.split(",") - if len(asset_list) != len(destination_list) or len(asset_list) != len(quantity_list): - raise exceptions.ComposeError( - "The number of assets, destinations, and quantities must be equal" - ) - for quantity in quantity_list: - if not quantity.isdigit(): - raise exceptions.ComposeError("Quantity must be an integer") - quantity_list = [int(quantity) for quantity in quantity_list] - asset_dest_quant_list = list(zip(asset_list, destination_list, quantity_list)) - - params = { - "source": address, - "asset_dest_quant_list": asset_dest_quant_list, - "memo": memo, - "memo_is_hex": memo_is_hex, - } - - rawtransaction, data = compose_transaction( - db, - name="versions.mpma", - params=params, - **construct_args, - ) - return { - get_key_name(**construct_args): rawtransaction, - "params": params, - "name": "mpma", - "data": data, - } - - -def compose_order( - db, - address: str, - give_asset: str, - give_quantity: int, - get_asset: str, - get_quantity: int, - expiration: int, - fee_required: int, - **construct_args, -): - """ - Composes a transaction to place an order on the distributed exchange. - :param address: The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) (e.g. $ADDRESS_1) - :param give_asset: The asset that will be given in the trade (e.g. XCP) - :param give_quantity: The quantity of the asset that will be given (in satoshis, hence integer) (e.g. 1000) - :param get_asset: The asset that will be received in the trade (e.g. $ASSET_1) - :param get_quantity: The quantity of the asset that will be received (in satoshis, hence integer) (e.g. 1000) - :param expiration: The number of blocks for which the order should be valid (e.g. 100) - :param fee_required: The miners’ fee required to be paid by orders for them to match this one; in BTC; required only if buying BTC (may be zero, though) (e.g. 100) - """ - params = { - "source": address, - "give_asset": give_asset, - "give_quantity": give_quantity, - "get_asset": get_asset, - "get_quantity": get_quantity, - "expiration": expiration, - "fee_required": fee_required, - } - rawtransaction, data = compose_transaction( - db, - name="order", - params=params, - **construct_args, - ) - return { - get_key_name(**construct_args): rawtransaction, - "params": params, - "name": "order", - "data": data, - } - - -def compose_send( - db, - address: str, - destination: str, - asset: str, - quantity: int, - memo: str = None, - memo_is_hex: bool = False, - use_enhanced_send: bool = True, - **construct_args, -): - """ - Composes a transaction to send a quantity of an asset to another address. - :param address: The address that will be sending (must have the necessary quantity of the specified asset) (e.g. $ADDRESS_1) - :param destination: The address that will be receiving the asset (e.g. $ADDRESS_2) - :param asset: The asset or subasset to send (e.g. XCP) - :param quantity: The quantity of the asset to send (in satoshis, hence integer) (e.g. 1000) - :param memo: The Memo associated with this transaction - :param memo_is_hex: Whether the memo field is a hexadecimal string - :param use_enhanced_send: If this is false, the construct a legacy transaction sending bitcoin dust - """ - params = { - "source": address, - "destination": destination, - "asset": asset, - "quantity": quantity, - "memo": memo, - "memo_is_hex": memo_is_hex, - "use_enhanced_send": use_enhanced_send, - } - rawtransaction, data = compose_transaction( - db, - name="send", - params=params, - **construct_args, - ) - return { - get_key_name(**construct_args): rawtransaction, - "params": params, - "name": "send", - "data": data, - } - - -def compose_dispense( - db, - address: str, - dispenser: str, - quantity: int, - **construct_args, -): - """ - Composes a transaction to send BTC to a dispenser. - :param address: The address that will be sending (must have the necessary quantity of BTC) (e.g. $ADDRESS_2) - :param dispenser: The dispenser that will be receiving the asset (e.g. $ADDRESS_4) - :param quantity: The quantity of BTC to send (in satoshis, hence integer) (e.g. 1000) - """ - params = { - "source": address, - "destination": dispenser, - "quantity": quantity, - } - rawtransaction, data = compose_transaction( - db, - name="dispense", - params=params, - **construct_args, - ) - return { - get_key_name(**construct_args): rawtransaction, - "params": params, - "name": "dispense", - "data": data, - } - - -def compose_sweep(db, address: str, destination: str, flags: int, memo: str, **construct_args): - """ - Composes a transaction to Sends all assets and/or transfer ownerships to a destination address. - :param address: The address that will be sending (e.g. $ADDRESS_1) - :param destination: The address to receive the assets and/or ownerships (e.g. $ADDRESS_2) - :param flags: 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. - (e.g. 7) - :param memo: The Memo associated with this transaction in hex format (e.g. FFFF) - """ - params = { - "source": address, - "destination": destination, - "flags": flags, - "memo": memo, - } - rawtransaction, data = compose_transaction( - db, - name="sweep", - params=params, - **construct_args, - ) - return { - get_key_name(**construct_args): rawtransaction, - "params": params, - "name": "sweep", - "data": data, - } - - -def compose_fairminter( - db, - address: str, - asset: str, - asset_parent: str = "", - price: int = 0, - quantity_by_price: int = 1, - max_mint_per_tx: int = 0, - hard_cap: int = 0, - premint_quantity: int = 0, - start_block: int = 0, - end_block: int = 0, - soft_cap: int = 0, - soft_cap_deadline_block: int = 0, - minted_asset_commission: float = 0.0, - burn_payment: bool = False, - lock_description: bool = False, - lock_quantity: bool = False, - divisible: bool = True, - description: str = "", - **construct_args, -): - """ - Composes a transaction to issue a new asset using the FairMinter protocol. - :param address: The address that will be issuing the asset (e.g. $ADDRESS_1) - :param asset: The asset to issue (e.g. MYASSET) - :param asset_parent: The parent asset of the asset to issue - :param price: The price in XCP of the asset to issue (e.g. 10) - :param quantity_by_price: The quantity of asset to mint per `price` paid - :param max_mint_per_tx: Amount minted if price is equal to 0; otherwise, maximum amount of asset that can be minted in a single transaction; if 0, there is no limit - :param hard_cap: The maximum amount of asset that can be minted; if 0 there is no limit - :param premint_quantity: Amount of asset to be minted when the sale starts, if 0, no premint; preminted assets are sent to the source of the transaction - :param start_block: The block at which the sale starts - :param end_block: The block at which the sale ends - :param soft_cap: Minimum amount of asset to be minted, if None, no minimum; if the soft cap is not reached by the soft_cap_deadline_block, the sale is canceled, asset is revoked from all minters and all payments are refunded - :param soft_cap_deadline_block: The block at which the soft cap must be reached - :param minted_asset_commission: Commission to be paid in minted asset, a fraction of 1 (i.e., 0.05 is five percent); the commission is deducted from the asset received by the minter and sent to the Fair Minter owner - :param burn_payment: If True, the payment asset is burned, otherwise it is sent to the source - :param lock_description: If True, the description of the asset is locked - :param lock_quantity: If True, the quantity of the asset cannot be changed after the minting - :param divisible: If True, the asset is divisible - :param description: The description of the asset - """ - params = { - "source": address, - "asset": asset, - "asset_parent": asset_parent, - "price": price, - "quantity_by_price": quantity_by_price, - "max_mint_per_tx": max_mint_per_tx, - "hard_cap": hard_cap, - "premint_quantity": premint_quantity, - "start_block": start_block, - "end_block": end_block, - "soft_cap": soft_cap, - "soft_cap_deadline_block": soft_cap_deadline_block, - "minted_asset_commission": minted_asset_commission, - "burn_payment": burn_payment, - "lock_description": lock_description, - "lock_quantity": lock_quantity, - "divisible": divisible, - "description": description, - } - rawtransaction, data = compose_transaction( - db, - name="fairminter", - params=params, - **construct_args, - ) - return { - get_key_name(**construct_args): rawtransaction, - "params": params, - "name": "fairminter", - "data": data, - } - - -def compose_fairmint(db, address: str, asset: str, quantity: int = 0, **construct_args): - """ - Composes a transaction to mint a quantity of an asset using the FairMinter protocol. - :param address: The address that will be minting the asset (e.g. $ADDRESS_1) - :param asset: The asset to mint (e.g. $ASSET_3) - :param quantity: The quantity of the asset to mint (in satoshis, hence integer) (e.g. 1) - """ - params = {"source": address, "asset": asset, "quantity": quantity} - rawtransaction, data = compose_transaction( - db, - name="fairmint", - params=params, - **construct_args, - ) - return { - get_key_name(**construct_args): rawtransaction, - "params": params, - "name": "fairmint", - "data": data, - } - - -def compose_utxo( - db, - source: str, - destination: str, - asset: str, - quantity: int, - **construct_args, -): - params = { - "source": source, - "destination": destination, - "asset": asset, - "quantity": quantity, - } - rawtransaction, data = compose_transaction( - db, - name="utxo", - params=params, - **construct_args, - ) - return { - get_key_name(**construct_args): rawtransaction, - "params": params, - "name": "utxo", - "data": data, - } - - -def compose_attach( - db, - address: str, - asset: str, - quantity: int, - destination: str = None, - **construct_args, -): - """ - Composes a transaction to attach assets from an address to UTXO. - :param address: The address from which the assets are attached (e.g. $ADDRESS_1) - :param destination: The utxo to attach the assets to (e.g. $UTXO_1_ADDRESS_1) - :param asset: The asset or subasset to attach (e.g. XCP) - :param quantity: The quantity of the asset to attach (in satoshis, hence integer) (e.g. 1000) - """ - return compose_utxo( - db, - source=address, - destination=destination, - asset=asset, - quantity=quantity, - **construct_args, - ) - - -def compose_detach( - db, - utxo: str, - destination: str, - asset: str, - quantity: int, - **construct_args, -): - """ - Composes a transaction to detach assets from UTXO to an address. - :param utxo: The utxo from which the assets are detached (e.g. $UTXO_WITH_BALANCE) - :param destination: The address to detach the assets to (e.g. $ADDRESS_1) - :param asset: The asset or subasset to detach (e.g. XCP) - :param quantity: The quantity of the asset to detach (in satoshis, hence integer) (e.g. 1000) - """ - return compose_utxo( - db, - source=utxo, - destination=destination, - asset=asset, - quantity=quantity, - **construct_args, - ) - - -def compose_movetoutxo(db, utxo: str, destination: str, more_utxos: str = ""): - """ - Composes a transaction to move assets from UTXO to another UTXO. - :param utxo: The utxo from which the assets are moved - :param destination: The address to move the assets to - :param more_utxos: The additional utxos to fund the transaction - """ - decimal.getcontext().prec = 8 - - more_utxos_list = [] - input_count = 1 - total_value = D("0") - try: - source_address, source_value = backend.bitcoind.get_utxo_address_and_value(utxo) - total_value += D(source_value) - for more_utxo in more_utxos.split(","): - if more_utxo == "": - continue - _more_utxo_address, more_utxo_value = backend.bitcoind.get_utxo_address_and_value( - more_utxo - ) - more_utxo_tx_hash, more_utxo_vout = more_utxo.split(":") - more_utxos_list.append({"txid": more_utxo_tx_hash, "vout": int(more_utxo_vout)}) - input_count += 1 - total_value += D(more_utxo_value) - except exceptions.InvalidUTXOError as e: - raise exceptions.ComposeError("Invalid UTXO for source") from e - - try: - script.validate(destination) - except Exception as e: - raise exceptions.ComposeError("Invalid address for destination") from e - - 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) - - dust = D("0.0000546") - change = D(total_value) - dust - fee - - if change < 0: - 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)}] - rawtransaction = backend.bitcoind.createrawtransaction(inputs, outputs) - - return { - "rawtransaction": rawtransaction, - "params": { - "source": utxo, - "destination": destination, - }, - "name": "movetoutxo", - } - - -def info_by_tx_hash(db, tx_hash: str): - """ - Returns Counterparty information from a transaction hash. - :param tx_hash: Transaction hash (e.g. $LAST_MEMPOOL_TX_HASH) - """ - try: - rawtransaction = backend.bitcoind.getrawtransaction(tx_hash) - except Exception as e: - raise exceptions.ComposeError("Invalid transaction") from e - return info(db, rawtransaction) - - -def info(db, rawtransaction: str, block_index: int = None): - """ - Returns Counterparty information from a raw transaction in hex format. - :param rawtransaction: Raw transaction in hex format (e.g. $RAW_TRANSACTION_1) - :param block_index: Block index mandatory for transactions before block 335000 - """ - try: - decoded_tx = deserialize.deserialize_tx( - rawtransaction, use_txid=util.enabled("correct_segwit_txids", block_index) - ) - except Exception as e: - raise exceptions.ComposeError("Invalid rawtransaction") from e - - source, destination, btc_amount, fee, data, _dispensers_outs, _utxos_info = ( - gettxinfo.get_tx_info( - db, - decoded_tx, - block_index=block_index, - ) - ) - del decoded_tx["__data__"] - result = { - "source": source, - "destination": destination if destination else None, - "btc_amount": btc_amount, - "fee": fee, - "data": util.hexlify(data) if data else "", - "decoded_tx": decoded_tx, - } - if data: - result["data"] = util.hexlify(data) - result["unpacked_data"] = unpack(db, result["data"], block_index) - return result - - -def unpack(db, datahex: str, block_index: int = None): - """ - Unpacks Counterparty data in hex format and returns the message type and data. - :param datahex: Data in hex format (e.g. 020000000001016a65c1624e53f4d33ce02e726a6606faed60cc014d5b1a578ba3e09b4b3f8f890100000000ffffffff020000000000000000176a150d55e8b6118808b7b663b365473f142274028b8af60245092701000000160014a3df8a5a83d4e2827b59b43f5ce6ce5d2e52093f0247304402204b7a2859cbce34e725a1132fec2dd4b075503dadff0a0c407ae7c22a7712fe4d0220563ceb2ceebdf649343bb24819fc808639cce7781305b4588ffbe4a20390d2780121020ace9adf60fe4ec05dab922ccdc5727cbf664cafc7cdb845de534855266314c800000000) - :param block_index: Block index of the transaction containing this data - """ - data = binascii.unhexlify(datahex) - message_type_id, message = message_type.unpack(data) - block_index = block_index or util.CURRENT_BLOCK_INDEX - - issuance_ids = [ - messages.issuance.ID, - messages.issuance.LR_ISSUANCE_ID, - messages.issuance.SUBASSET_ID, - messages.issuance.LR_SUBASSET_ID, - ] - - # Unknown message type - message_data = {"error": "Unknown message type"} - message_type_name = "unknown" - try: - # Bet - if message_type_id == messages.bet.ID: - message_type_name = "bet" - message_data = messages.bet.unpack(message, return_dict=True) - # Broadcast - elif message_type_id == messages.broadcast.ID: - message_type_name = "broadcast" - message_data = messages.broadcast.unpack(message, block_index, return_dict=True) - # BTCPay - elif message_type_id == messages.btcpay.ID: - message_type_name = "btcpay" - message_data = messages.btcpay.unpack(message, return_dict=True) - # Cancel - elif message_type_id == messages.cancel.ID: - message_type_name = "cancel" - message_data = messages.cancel.unpack(message, return_dict=True) - # Destroy - elif message_type_id == messages.destroy.ID: - message_type_name = "destroy" - message_data = messages.destroy.unpack(db, message, return_dict=True) - # Dispenser - elif message_type_id == messages.dispenser.ID: - message_type_name = "dispenser" - message_data = messages.dispenser.unpack(message, return_dict=True) - elif message_type_id == messages.dispenser.DISPENSE_ID: - message_type_name = "dispense" - message_data = messages.dispense.unpack(message, return_dict=True) - # Dividend - elif message_type_id == messages.dividend.ID: - message_type_name = "dividend" - message_data = messages.dividend.unpack(db, message, block_index, return_dict=True) - # Issuance - elif message_type_id in issuance_ids: - message_type_name = "issuance" - message_data = messages.issuance.unpack( - db, message, message_type_id, block_index, return_dict=True - ) - # Order - elif message_type_id == messages.order.ID: - message_type_name = "order" - message_data = messages.order.unpack(db, message, block_index, return_dict=True) - # Send - elif message_type_id == messages.send.ID: - message_type_name = "send" - message_data = messages.send.unpack(db, message, block_index) - # Enhanced send - elif message_type_id == messages.versions.enhanced_send.ID: - message_type_name = "enhanced_send" - message_data = messages.versions.enhanced_send.unpack(message, block_index) - # MPMA send - elif message_type_id == messages.versions.mpma.ID: - message_type_name = "mpma_send" - mpma_message_data = messages.versions.mpma.unpack(message, block_index) - message_data = [] - for asset_name, send_info in mpma_message_data.items(): - message_data.append( - { - "asset": asset_name, - "destination": send_info[0][0], - "quantity": send_info[0][1], - "memo": send_info[0][2] if len(send_info[0]) > 2 else None, - "memo_is_hex": send_info[0][3] if len(send_info[0]) > 3 else None, - } - ) - # RPS - elif message_type_id == messages.rps.ID: - message_type_name = "rps" - message_data = messages.rps.unpack(message, return_dict=True) - # RPS Resolve - elif message_type_id == messages.rpsresolve.ID: - message_type_name = "rpsresolve" - message_data = messages.rpsresolve.unpack(message, return_dict=True) - # Sweep - elif message_type_id == messages.sweep.ID: - message_type_name = "sweep" - message_data = messages.sweep.unpack(message) - # Fair Minter - elif message_type_id == messages.fairminter.ID: - message_type_name = "fairminter" - message_data = messages.fairminter.unpack(message) - # Fair Mint - elif message_type_id == messages.fairmint.ID: - message_type_name = "fairmint" - message_data = messages.fairmint.unpack(message) - except (exceptions.UnpackError, UnicodeDecodeError) as e: - message_data = {"error": str(e)} - - return { - "message_type": message_type_name, - "message_type_id": message_type_id, - "message_data": message_data, - } diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index dd39d4d54e..6937bea761 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -7948,6 +7948,32 @@ } ] }, + "/v2/transactions//info": { + "function": "info_by_tx_hash", + "description": "Returns Counterparty information from a transaction hash.", + "args": [ + { + "name": "tx_hash", + "required": true, + "type": "str", + "description": "Transaction hash (e.g. $LAST_MEMPOOL_TX_HASH)" + }, + { + "name": "verbose", + "type": "bool", + "default": "false", + "description": "Include asset and dispenser info and normalized quantities in the response.", + "required": false + }, + { + "name": "show_unconfirmed", + "type": "bool", + "default": "false", + "description": "Include results from Mempool.", + "required": false + } + ] + }, "/v2/transactions/unpack": { "function": "unpack", "description": "Unpacks Counterparty data in hex format and returns the message type and data.", @@ -10043,7 +10069,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -10057,7 +10083,7 @@ { "name": "custom_inputs", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -10226,7 +10252,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -10240,7 +10266,7 @@ { "name": "custom_inputs", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -10391,7 +10417,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -10405,7 +10431,7 @@ { "name": "custom_inputs", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -10563,7 +10589,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -10577,7 +10603,7 @@ { "name": "custom_inputs", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -10728,7 +10754,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -10742,7 +10768,7 @@ { "name": "custom_inputs", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -10905,7 +10931,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -10919,7 +10945,7 @@ { "name": "custom_inputs", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -11108,7 +11134,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -11122,7 +11148,7 @@ { "name": "custom_inputs", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -11285,7 +11311,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -11299,7 +11325,7 @@ { "name": "custom_inputs", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -11491,7 +11517,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -11505,7 +11531,7 @@ { "name": "custom_inputs", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -11682,7 +11708,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -11696,7 +11722,7 @@ { "name": "custom_inputs", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -11877,7 +11903,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -11891,7 +11917,7 @@ { "name": "custom_inputs", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -12075,7 +12101,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -12089,7 +12115,7 @@ { "name": "custom_inputs", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -12252,7 +12278,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -12266,7 +12292,7 @@ { "name": "custom_inputs", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -12423,7 +12449,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -12437,7 +12463,7 @@ { "name": "custom_inputs", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -12700,7 +12726,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -12714,7 +12740,7 @@ { "name": "custom_inputs", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -12872,7 +12898,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -12886,7 +12912,7 @@ { "name": "custom_inputs", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -13050,7 +13076,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -13064,7 +13090,7 @@ { "name": "custom_inputs", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -13227,7 +13253,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -13241,7 +13267,7 @@ { "name": "custom_inputs", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index e7eefc1ab2..5c9f19d896 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": 193, - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", - "block_time": 1726743198, - "previous_block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", + "block_time": 1726759498, + "previous_block_hash": "7f71d687e0d39c2280dffb1bc1b46d850a664a73ebe5a93584f0435c187aa470", "difficulty": 545259519, - "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", - "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", - "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", + "ledger_hash": "d780942d01b58e13071c1994b611b6f67c8b6644f5c3fcd20aa9fdf899dc8224", + "txlist_hash": "baa06d9619fa0e75b227f944f0efc483c0198619ddd6ebdd4484b50dba4402ea", + "messages_hash": "a234caace5f00f4aeb2098f24859f045a43954bd6e6daaef09d01baa70e16884", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", - "block_time": 1726743194, - "previous_block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", + "block_hash": "7f71d687e0d39c2280dffb1bc1b46d850a664a73ebe5a93584f0435c187aa470", + "block_time": 1726759495, + "previous_block_hash": "7dc097d23b09caa394c4394050d0ea0d1a994c22edab169d4207cf13a9b9dd04", "difficulty": 545259519, - "ledger_hash": "f5ce379ab00c2982a4a45f4ad87c82d7b3198e7fa39818af38a9702a68da9521", - "txlist_hash": "52eff7cd239691d1efa5da6dbc00227fd5fe9d2ebc1e525f4abec71f1c847da8", - "messages_hash": "427641ca80d9aee9afc778c264a77c308a6be71a5761db8532a744992561bb63", + "ledger_hash": "bfc661d57bc6474c5424d607eb6bb78e678f0d327795688017bd151b26e28283", + "txlist_hash": "82b255349cbba20900c13049bff0fcc98494f621e7e908ecf22d69a0171c66f7", + "messages_hash": "f9d86ce32496f88adafdbc8f8714a7b0c197299fa4f9ca5eb92dfb3565440da4", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", - "block_time": 1726743189, - "previous_block_hash": "47b3fb7b19695ffc7ac303e23eb3315b747c15d26456b38b337030006305e979", + "block_hash": "7dc097d23b09caa394c4394050d0ea0d1a994c22edab169d4207cf13a9b9dd04", + "block_time": 1726759491, + "previous_block_hash": "292d4e219931ec9c3aeede24e6b165e9f8c11f47ac4bb4ed128388d6003af39d", "difficulty": 545259519, - "ledger_hash": "97c6a9a9dfd360766c66484b6a2371fc523c88768dd82631e77ddafcc71a8b60", - "txlist_hash": "a3a75d3eef307cc600ea559da8c7e6114eeb7c089d783c0aca0a09c91a3c9aff", - "messages_hash": "585ca23f5198daa88c7c982d0e320b36405d74b4e4520ac95c0f150c80e25ae8", + "ledger_hash": "1bec9f5277d954d9e7b76a59890eaeb4218a177f30eeced39246ee3147f7e263", + "txlist_hash": "eaf4d3646a37ab7440aa489661fe5915c192f87cb38dbac9e99f562d8d6c29fc", + "messages_hash": "d6bba5f598c31a364106a860659653773e458987c3b7d860bca8c72f0dba4b41", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "47b3fb7b19695ffc7ac303e23eb3315b747c15d26456b38b337030006305e979", - "block_time": 1726743185, - "previous_block_hash": "1257ebae1dd6b4cdc6b62a8ed6a80f99571bd3bc27f37129fb28997aca21f3e1", + "block_hash": "292d4e219931ec9c3aeede24e6b165e9f8c11f47ac4bb4ed128388d6003af39d", + "block_time": 1726759487, + "previous_block_hash": "09b669375c195107a735f34dd62bb883e07e68460f7a52630b8e822acb905886", "difficulty": 545259519, - "ledger_hash": "52e23c330c89b46771efd78aa458e3f82def371c7cbf1ee4c0921bc347339f58", - "txlist_hash": "4f40bf44aa9fe5ec1030dd443132aa6c993ee869442ae6fe6e452a9933b12633", - "messages_hash": "86586a2a004808ca3cdaa719be924b71770a53050fa445fcd6b7a3635f663e96", + "ledger_hash": "83b70a115d466f42f45671cb26a84c4ece8494c485593fc39a2e91e01dc4cf49", + "txlist_hash": "f23ad582ed2a84d2897a924dbc1b3573c47a7c3944254a1d4a745e782f778c47", + "messages_hash": "9cb2b6d41714ebc0dd8e087978b099d97ca9a89cfd4b68a7fb85e3dddd4205f9", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "1257ebae1dd6b4cdc6b62a8ed6a80f99571bd3bc27f37129fb28997aca21f3e1", - "block_time": 1726743181, - "previous_block_hash": "427129e75f1858594b1c563d06e55db5f97f7e6425d5c064a509dec7a90698b2", + "block_hash": "09b669375c195107a735f34dd62bb883e07e68460f7a52630b8e822acb905886", + "block_time": 1726759482, + "previous_block_hash": "7f31db406f1290796ed8a19cf8d56ec624ee0916c1c38ff2cdf7cc1843a1c168", "difficulty": 545259519, - "ledger_hash": "d8889a73fe9dd722a5624327b070c876b4d4d73ab28b7b4af363169b20c82d56", - "txlist_hash": "89b6834dab2d42c9ed636574a742baa1b920fdd2df6ff29af5654633cd1bd291", - "messages_hash": "2a78bccf0050c392e1f1435a8eb950e5e21e20d28b0310a6d344702a10a45fca", + "ledger_hash": "99f3b42fb4ac5d76395e45cad69612d4616522679be81e5cfe955044f423a26e", + "txlist_hash": "22247c10e0e0c8d3d8623285d2e32fec91d62597fd459333be07896948007021", + "messages_hash": "13b940af77c2aba3a309b51c3fa708b09adf5a942a0b00a59b285def2c682a1e", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", - "block_time": 1726743198, - "previous_block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", + "block_time": 1726759498, + "previous_block_hash": "7f71d687e0d39c2280dffb1bc1b46d850a664a73ebe5a93584f0435c187aa470", "difficulty": 545259519, - "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", - "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", - "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", + "ledger_hash": "d780942d01b58e13071c1994b611b6f67c8b6644f5c3fcd20aa9fdf899dc8224", + "txlist_hash": "baa06d9619fa0e75b227f944f0efc483c0198619ddd6ebdd4484b50dba4402ea", + "messages_hash": "a234caace5f00f4aeb2098f24859f045a43954bd6e6daaef09d01baa70e16884", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", - "block_time": 1726743198, - "previous_block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", + "block_time": 1726759498, + "previous_block_hash": "7f71d687e0d39c2280dffb1bc1b46d850a664a73ebe5a93584f0435c187aa470", "difficulty": 545259519, - "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", - "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", - "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", + "ledger_hash": "d780942d01b58e13071c1994b611b6f67c8b6644f5c3fcd20aa9fdf899dc8224", + "txlist_hash": "baa06d9619fa0e75b227f944f0efc483c0198619ddd6ebdd4484b50dba4402ea", + "messages_hash": "a234caace5f00f4aeb2098f24859f045a43954bd6e6daaef09d01baa70e16884", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", - "block_time": 1726743198, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", + "block_time": 1726759498, + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", + "utxos_info": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -139,11 +139,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "f5ce379ab00c2982a4a45f4ad87c82d7b3198e7fa39818af38a9702a68da9521", - "messages_hash": "427641ca80d9aee9afc778c264a77c308a6be71a5761db8532a744992561bb63", + "ledger_hash": "bfc661d57bc6474c5424d607eb6bb78e678f0d327795688017bd151b26e28283", + "messages_hash": "f9d86ce32496f88adafdbc8f8714a7b0c197299fa4f9ca5eb92dfb3565440da4", "transaction_count": 1, - "txlist_hash": "52eff7cd239691d1efa5da6dbc00227fd5fe9d2ebc1e525f4abec71f1c847da8", - "block_time": 1726743194 + "txlist_hash": "82b255349cbba20900c13049bff0fcc98494f621e7e908ecf22d69a0171c66f7", + "block_time": 1726759495 }, "tx_hash": null }, @@ -152,43 +152,43 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58 }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "status": "valid", - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, - "block_time": 1726743194, + "block_time": 1726759495, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -198,22 +198,22 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "XCP", "block_index": 192, - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -223,7 +223,7 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499" } ], "next_cursor": 524, @@ -261,16 +261,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -280,57 +280,57 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499" } ], "next_cursor": null, @@ -340,16 +340,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -361,20 +361,20 @@ }, { "block_index": 192, - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -382,20 +382,20 @@ }, { "block_index": 192, - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -409,16 +409,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "event": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -436,24 +436,24 @@ "result": [ { "type": "order", - "object_id": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "object_id": "313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", "block_index": 182, "confirmed": true, - "block_time": 1726743090 + "block_time": 1726759387 }, { "type": "order", - "object_id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", + "object_id": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f", "block_index": 182, "confirmed": true, - "block_time": 1726743090 + "block_time": 1726759387 }, { "type": "order_match", - "object_id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "object_id": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f_313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", "block_index": 182, "confirmed": true, - "block_time": 1726743090 + "block_time": 1726759387 } ], "next_cursor": null, @@ -463,13 +463,13 @@ "result": [ { "tx_index": 56, - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "block_index": 190, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "offer_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "status": "valid", "confirmed": true, - "block_time": 1726743185 + "block_time": 1726759487 } ], "next_cursor": null, @@ -479,15 +479,15 @@ "result": [ { "tx_index": 59, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -505,14 +505,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", + "tx_hash": "87ca606c50f4b00fd77a11909134e01944eabcc4d7abf7a72e3a348c6647c2de", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -527,7 +527,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743075, + "block_time": 1726759371, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -539,10 +539,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "quantity": 10, "status": "valid", @@ -550,7 +550,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "divisible": true, "asset_longname": null, @@ -563,10 +563,10 @@ }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -574,11 +574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -587,10 +587,10 @@ }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -598,11 +598,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -618,27 +618,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "tx_hash": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", - "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", + "destination": "bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "dispenser_tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "oracle_address": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "last_status_tx_hash": null, - "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "origin": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -653,7 +653,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726743009, + "block_time": 1726759315, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,16 +672,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "fee_paid_normalized": "0.00600000" } ], @@ -692,17 +692,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", - "block_time": 1726743198, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", + "block_time": 1726759498, + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", + "utxos_info": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -725,23 +725,23 @@ }, { "tx_index": 58, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50", - "block_time": 1726743194, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "block_hash": "7f71d687e0d39c2280dffb1bc1b46d850a664a73ebe5a93584f0435c187aa470", + "block_time": 1726759495, + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04804a5bd60b2d454cc549130f385b94d63db6269c02017377656570206d7920617373657473", + "data": "0480eef93355f6ecdf9098a2d776fe6db68c709388ab017377656570206d7920617373657473", "supported": true, - "utxos_info": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d:1", + "utxos_info": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "flags": 1, "memo": "sweep my assets" } @@ -754,18 +754,18 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "data": "469939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "b93823fbfeeb9f76b4b3dbf8d504b3270e4c171496e5f13196dc3fc6fe92e87a", + "hash": "3c9c32a64226eb8ee4b93a0ccf6d8ed19ac047aa3798bc6285e64531fb81d43b", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -775,26 +775,26 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2903bea53b8a00584e261286de22388d23b7dc3a0597b34285293f38479f388d5b70efedc67135feabfa" + "script_pub_key": "6a29f10a63984a4ded3495599817bf776dc2ea3eb1506fbfb4e138ac21916fb0490125ae31066eb3e071d8" }, { "value": 4999990000, - "script_pub_key": "0014a58c27e8ecd410f6848b7abd7e26f355bce15dd8" + "script_pub_key": "00148b069ce3f96bfa60fcb5705deda3d019de3c6e16" } ], "vtxinwit": [ - "3044022047ce42e81f859ce022cbaf63b11f09264a702ecc91a88c97aa699b3c7b2aa8e702203b0b2b063104f30aa11a3a8b23ee17e20eef5b3279a073afebf3f2902f98e48201", - "03471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d3" + "304402201654f2b772de7b3bec095ad0b725954e97bcb6e1d71b74d4ffce545f60d43e2d0220015c33154ce0176acc7560c449c5c3ee7caacb75e9e600bf07773c54506648d801", + "02bfcb850450d8d8e21ef6816c4a816932bf7f87fde3f5c93af0a2fdefa5569b61" ], "lock_time": 0, - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", - "tx_id": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7" + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", + "tx_id": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9" }, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "offer_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "status": "valid" } }, @@ -803,18 +803,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710806a51cc766215db7e153afcd60bb43d6c1c61cff8", + "data": "020000000000000001000000000000271080f66c2fe4d178214c277858ba6ea2c347149d0974", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "add0ff4d3c6a3c0c9d63ac1bf61b93fd110dbaab08e940fa0ce360d28cf1eb0d", + "hash": "af1480cf6505b909487a26c1914f854ffd17ee0cc7cccf5c8755da361bd49460", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -824,20 +824,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2efa02b5f0469c532efb017222c6d9df54fccd3aec8ca11621123b71e65ec38b865db46a7808815e4b258f1698fb7c" + "script_pub_key": "6a2e1b1e6e29a9ab036203604534244c061accb4eb656d333ff04acc7a0ca02c3d7fff59cd1df5caefe0f180d5880c82" }, { "value": 4999955000, - "script_pub_key": "00144a5bd60b2d454cc549130f385b94d63db6269c02" + "script_pub_key": "0014eef93355f6ecdf9098a2d776fe6db68c709388ab" } ], "vtxinwit": [ - "3044022021768aad5381cac8962caceab2ec74c9556e4e17369d6f6721a2c5632669a8b202203399c0a66d8fe767f5951dcdd32ac38bfbb074f59fa6d4cacd56d9e61a1f03eb01", - "020cb277fa643a47f001fd66be1b219cd0a025338e3d793d3482eb2d1d81209c2c" + "304402203ad8a66c7b17eba68200cd30c714e7853b7db85cf694a5b4c8b8429976b2a16d02200d707d3da3be336f823112af075c80468be8d8a7073c6290f8f805370ace20c801", + "0213beb0e758eb62ab96ac405982eda8ca8a8434131f7342c218f6b6488d9fd045" ], "lock_time": 0, - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", - "tx_id": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b" + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", + "tx_id": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a" }, "unpacked_data": { "message_type": "enhanced_send", @@ -845,7 +845,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "memo": null, "asset_info": { "divisible": true, @@ -872,17 +872,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", - "block_time": 1726743198, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", + "block_time": 1726759498, + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", + "utxos_info": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -907,17 +907,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", - "block_time": 1726743198, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", + "block_time": 1726759498, + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", + "utxos_info": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -946,47 +946,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58 }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "status": "valid", - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, - "block_time": 1726743194, + "block_time": 1726759495, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -996,24 +996,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "XCP", "block_index": 192, - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -1023,36 +1023,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 } ], "next_cursor": 523, @@ -1065,47 +1065,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58 }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "status": "valid", - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, - "block_time": 1726743194, + "block_time": 1726759495, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -1115,24 +1115,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "XCP", "block_index": 192, - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -1142,36 +1142,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 } ], "next_cursor": 523, @@ -1181,10 +1181,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "quantity": 10, "status": "valid", @@ -1192,7 +1192,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "divisible": true, "asset_longname": null, @@ -1205,10 +1205,10 @@ }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1216,11 +1216,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -1229,10 +1229,10 @@ }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1240,11 +1240,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -1260,27 +1260,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "tx_hash": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", - "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", + "destination": "bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "dispenser_tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "oracle_address": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "last_status_tx_hash": null, - "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "origin": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -1295,7 +1295,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726743009, + "block_time": 1726759315, "asset_info": { "divisible": true, "asset_longname": null, @@ -1316,16 +1316,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -1335,63 +1335,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 } ], "next_cursor": null, @@ -1403,16 +1403,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -1422,63 +1422,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 } ], "next_cursor": null, @@ -1491,7 +1491,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1501,7 +1501,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -1512,7 +1512,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1522,7 +1522,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -1533,7 +1533,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1543,7 +1543,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -1554,7 +1554,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1564,7 +1564,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -1575,7 +1575,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1585,7 +1585,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -1599,17 +1599,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", - "block_time": 1726743189, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "7dc097d23b09caa394c4394050d0ea0d1a994c22edab169d4207cf13a9b9dd04", + "block_time": 1726759491, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b:1", + "utxos_info": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1645,23 +1645,23 @@ }, { "tx_index": 56, - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "block_index": 190, - "block_hash": "47b3fb7b19695ffc7ac303e23eb3315b747c15d26456b38b337030006305e979", - "block_time": 1726743185, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "292d4e219931ec9c3aeede24e6b165e9f8c11f47ac4bb4ed128388d6003af39d", + "block_time": 1726759487, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "data": "469939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "supported": true, - "utxos_info": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7:1", + "utxos_info": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "offer_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "status": "valid" } }, @@ -1669,17 +1669,17 @@ }, { "tx_index": 55, - "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "tx_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "block_index": 189, - "block_hash": "1257ebae1dd6b4cdc6b62a8ed6a80f99571bd3bc27f37129fb28997aca21f3e1", - "block_time": 1726743181, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "09b669375c195107a735f34dd62bb883e07e68460f7a52630b8e822acb905886", + "block_time": 1726759482, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba:1", + "utxos_info": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1715,17 +1715,17 @@ }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "block_hash": "427129e75f1858594b1c563d06e55db5f97f7e6425d5c064a509dec7a90698b2", - "block_time": 1726743177, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "7f31db406f1290796ed8a19cf8d56ec624ee0916c1c38ff2cdf7cc1843a1c168", + "block_time": 1726759478, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380386a5bb745b1ba84d5953b77406457e9415704a1806a51cc766215db7e153afcd60bb43d6c1c61cff8804a5bd60b2d454cc549130f385b94d63db6269c02400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a5f7d4ec4b195c3969ee5a70445cabac9ab241d380f66c2fe4d178214c277858ba6ea2c347149d097480eef93355f6ecdf9098a2d776fe6db68c709388ab400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926:0", + "utxos_info": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1733,14 +1733,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -1748,7 +1748,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1767,25 +1767,25 @@ }, { "tx_index": 51, - "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", + "tx_hash": "6ad8f1852d7ca2a53bafbd139d7502bc30e8593922cefd54f9494a23fc3d9463", "block_index": 185, - "block_hash": "2e3c3d44591be34a2361ad5452925ffafe95f3ead188d15cba2bfc08d0bc2745", - "block_time": 1726743164, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "00205a51a474984c6414f18d2da9788eef87f120b42e1dae821e87c6518567f6", + "block_time": 1726759465, + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "destination": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "btc_amount": 2000, "fee": 10000, - "data": "0bdf69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a58b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "data": "0b2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab326dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "supported": true, - "utxos_info": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a:0", + "utxos_info": "6ad8f1852d7ca2a53bafbd139d7502bc30e8593922cefd54f9494a23fc3d9463:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", - "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", - "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", + "tx1_hash": "6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", + "order_match_id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "status": "valid" } }, @@ -1814,11 +1814,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "status": "open", - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "tx_index": 57, - "block_time": 1726743189, + "block_time": 1726759491, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1842,24 +1842,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "block_time": 1726743189 + "block_time": 1726759491 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "block_index": 191, - "event": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "event": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1726743189, + "block_time": 1726759491, "asset_info": { "divisible": true, "asset_longname": null, @@ -1869,25 +1869,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "block_time": 1726743189 + "block_time": 1726759491 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", + "block_hash": "7dc097d23b09caa394c4394050d0ea0d1a994c22edab169d4207cf13a9b9dd04", "block_index": 191, - "block_time": 1726743189, + "block_time": 1726759491, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "tx_index": 57, - "utxos_info": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b:1", + "utxos_info": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1919,40 +1919,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "block_time": 1726743189 + "block_time": 1726759491 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "offer_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "status": "valid", - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "tx_index": 56, - "block_time": 1726743185 + "block_time": 1726759487 }, - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "block_index": 190, - "block_time": 1726743185 + "block_time": 1726759487 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "event": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726743185, + "block_time": 1726759487, "asset_info": { "divisible": true, "asset_longname": null, @@ -1962,9 +1962,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "block_index": 190, - "block_time": 1726743185 + "block_time": 1726759487 } ], "next_cursor": 506, @@ -1973,17 +1973,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "memo": null, "quantity": 10000, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "status": "valid", - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "tx_index": 60, "asset_info": { "divisible": true, @@ -1996,19 +1996,19 @@ } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "CREDIT", "params": { - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "event": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -2020,19 +2020,19 @@ } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 193, - "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "event": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -2044,27 +2044,27 @@ } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726743212.580398, + "block_time": 1726759503.0888908, "btc_amount": 0, - "data": "0200000000000000010000000000002710806a51cc766215db7e153afcd60bb43d6c1c61cff8", + "data": "020000000000000001000000000000271080f66c2fe4d178214c277858ba6ea2c347149d0974", "destination": "", "fee": 10000, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "tx_index": 60, - "utxos_info": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b:1", + "utxos_info": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "memo": null, "asset_info": { "divisible": true, @@ -2086,7 +2086,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2094,14 +2094,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2109,14 +2109,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2131,7 +2131,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2139,7 +2139,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2151,7 +2151,7 @@ }, "/v2/addresses/
/balances/": { "result": { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2170,16 +2170,16 @@ "result": [ { "block_index": 190, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "event": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743185, + "block_time": 1726759487, "asset_info": { "divisible": true, "asset_longname": null, @@ -2191,16 +2191,16 @@ }, { "block_index": 182, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", + "event": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743090, + "block_time": 1726759387, "asset_info": { "divisible": true, "asset_longname": null, @@ -2212,20 +2212,20 @@ }, { "block_index": 159, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", + "event": "87ca606c50f4b00fd77a11909134e01944eabcc4d7abf7a72e3a348c6647c2de", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743075, + "block_time": 1726759371, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2233,20 +2233,20 @@ }, { "block_index": 156, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "735d36c3e66e9e8eca66da2247ef421376f463c3a71166b90f79a1fb65c39ce0", + "event": "770197523ac78726980a37594b8357b76337ab79e7e9f0b6aa0755c687962f57", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743052, + "block_time": 1726759359, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2258,16 +2258,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", + "event": "708bb60e43e813d8ca4ae1998572a856c532536a25a94adbc814428887dcb678", "tx_index": 38, - "utxo": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d:1", - "utxo_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "utxo": "708bb60e43e813d8ca4ae1998572a856c532536a25a94adbc814428887dcb678:1", + "utxo_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "confirmed": true, - "block_time": 1726743030, + "block_time": 1726759337, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2281,16 +2281,16 @@ "result": [ { "block_index": 191, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "event": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743189, + "block_time": 1726759491, "asset_info": { "divisible": true, "asset_longname": null, @@ -2302,16 +2302,16 @@ }, { "block_index": 189, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "event": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743181, + "block_time": 1726759482, "asset_info": { "divisible": true, "asset_longname": null, @@ -2323,16 +2323,16 @@ }, { "block_index": 188, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "event": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "divisible": true, "asset_longname": null, @@ -2344,20 +2344,20 @@ }, { "block_index": 188, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "event": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2365,16 +2365,16 @@ }, { "block_index": 183, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "event": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743155, + "block_time": 1726759457, "asset_info": { "divisible": true, "asset_longname": null, @@ -2397,9 +2397,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "5966fd52717602850bfb43b55f7da2b2e0c9be1896b41b65c6f9bf5b0e1099ab", + "tx_hash": "d8507cb8324f5f355a72cec6acd17023e9e11cb6fda1e1f42af403bd5f79cf25", "block_index": 137, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2407,7 +2407,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726742970, + "block_time": 1726759277, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2418,14 +2418,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "5c97acb757b578558483987eb8e2a40e0e3ccb308bcedc6914f04a5586f71723", + "tx_hash": "b8091dc4b2cd4b26340a204c563fd567fe8bad0e58ca8ad6976031e867ec8321", "block_index": 112, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1726742865, + "block_time": 1726759172, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2437,10 +2437,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2448,7 +2448,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "divisible": true, "asset_longname": null, @@ -2461,10 +2461,10 @@ }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2472,11 +2472,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2485,10 +2485,10 @@ }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2496,11 +2496,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2509,10 +2509,10 @@ }, { "tx_index": 38, - "tx_hash": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", + "tx_hash": "708bb60e43e813d8ca4ae1998572a856c532536a25a94adbc814428887dcb678", "block_index": 151, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d:1", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "708bb60e43e813d8ca4ae1998572a856c532536a25a94adbc814428887dcb678:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2520,11 +2520,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743030, + "block_time": 1726759337, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2533,10 +2533,10 @@ }, { "tx_index": 35, - "tx_hash": "05be62933b931d190c6d9b32d1dcc6437a18e38abb5a77f5655459963314f6e3", + "tx_hash": "f46d0f31b7153ee6402ea55711baa6d611a72581ca4dab5fc6815a2e070f834b", "block_index": 148, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "e4bcefdccfc18fddbc4afe4282d88bfa16c2de310ab0d2a3117b800f68102f7f:1", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "312fbde68c58a1d25eabd4c01745601063d8392cb5a0921fb936cc89023f4a06:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2544,11 +2544,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743017, + "block_time": 1726759324, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2563,10 +2563,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "de71c5607ca8fcdc386738b1f1eebb812aeee0e012a4ce691d1ac9f894810f09", + "tx_hash": "75d37b5fd92904c24bf1292c9f2b69e08ddeddbd381753c0c73769e397b80eb8", "block_index": 150, - "source": "2ff828784db699b93166c91bdc316c84bddfdb710a3c1d1f68665a7198728737:0", - "destination": "bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3", + "source": "feb3856b69bde1f7612a91cac62772ea765964d9cb39723d9398e80b6c125da4:0", + "destination": "bcrt1qat5k09kmzy7qlhd3qyrysmz5skknuy9y2xwsrr", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2574,11 +2574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743026, + "block_time": 1726759332, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2593,10 +2593,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2604,11 +2604,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2617,10 +2617,10 @@ }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2628,11 +2628,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2641,10 +2641,10 @@ }, { "tx_index": 38, - "tx_hash": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", + "tx_hash": "708bb60e43e813d8ca4ae1998572a856c532536a25a94adbc814428887dcb678", "block_index": 151, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d:1", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "708bb60e43e813d8ca4ae1998572a856c532536a25a94adbc814428887dcb678:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2652,11 +2652,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743030, + "block_time": 1726759337, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2665,10 +2665,10 @@ }, { "tx_index": 35, - "tx_hash": "05be62933b931d190c6d9b32d1dcc6437a18e38abb5a77f5655459963314f6e3", + "tx_hash": "f46d0f31b7153ee6402ea55711baa6d611a72581ca4dab5fc6815a2e070f834b", "block_index": 148, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "e4bcefdccfc18fddbc4afe4282d88bfa16c2de310ab0d2a3117b800f68102f7f:1", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "312fbde68c58a1d25eabd4c01745601063d8392cb5a0921fb936cc89023f4a06:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2676,11 +2676,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743017, + "block_time": 1726759324, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2695,10 +2695,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "de71c5607ca8fcdc386738b1f1eebb812aeee0e012a4ce691d1ac9f894810f09", + "tx_hash": "75d37b5fd92904c24bf1292c9f2b69e08ddeddbd381753c0c73769e397b80eb8", "block_index": 150, - "source": "2ff828784db699b93166c91bdc316c84bddfdb710a3c1d1f68665a7198728737:0", - "destination": "bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3", + "source": "feb3856b69bde1f7612a91cac62772ea765964d9cb39723d9398e80b6c125da4:0", + "destination": "bcrt1qat5k09kmzy7qlhd3qyrysmz5skknuy9y2xwsrr", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2706,11 +2706,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743026, + "block_time": 1726759332, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -2725,9 +2725,9 @@ "result": [ { "tx_index": 30, - "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", + "tx_hash": "a0423cc553293cdeb28e5b41a51851e2d790f3f07a46cfb825347c10dfd41d8b", "block_index": 144, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2736,7 +2736,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2746,7 +2746,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726743000, + "block_time": 1726759307, "asset_info": { "divisible": true, "asset_longname": null, @@ -2762,9 +2762,9 @@ }, { "tx_index": 26, - "tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2773,7 +2773,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2783,7 +2783,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -2804,9 +2804,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 30, - "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", + "tx_hash": "a0423cc553293cdeb28e5b41a51851e2d790f3f07a46cfb825347c10dfd41d8b", "block_index": 144, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2815,7 +2815,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2825,7 +2825,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726743000, + "block_time": 1726759307, "asset_info": { "divisible": true, "asset_longname": null, @@ -2845,19 +2845,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", + "tx_hash": "831bf049f1c6fa58850f84876ef47c4b729a3c318226ab0e23028f0c5d8105ad", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2865,7 +2865,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2880,7 +2880,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -2894,19 +2894,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", + "tx_hash": "2b75bab8c081422960be9d6fabb52cac807a284735c4987863ccf7c51d93efd2", "block_index": 140, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2914,7 +2914,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2929,7 +2929,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742983, + "block_time": 1726759290, "asset_info": { "divisible": true, "asset_longname": null, @@ -2949,19 +2949,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", + "tx_hash": "831bf049f1c6fa58850f84876ef47c4b729a3c318226ab0e23028f0c5d8105ad", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2969,7 +2969,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2984,7 +2984,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -2998,19 +2998,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", + "tx_hash": "2b75bab8c081422960be9d6fabb52cac807a284735c4987863ccf7c51d93efd2", "block_index": 140, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3018,7 +3018,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3033,7 +3033,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742983, + "block_time": 1726759290, "asset_info": { "divisible": true, "asset_longname": null, @@ -3053,19 +3053,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", + "tx_hash": "831bf049f1c6fa58850f84876ef47c4b729a3c318226ab0e23028f0c5d8105ad", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3073,7 +3073,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3088,7 +3088,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -3102,19 +3102,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", + "tx_hash": "2b75bab8c081422960be9d6fabb52cac807a284735c4987863ccf7c51d93efd2", "block_index": 140, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3122,7 +3122,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3137,7 +3137,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742983, + "block_time": 1726759290, "asset_info": { "divisible": true, "asset_longname": null, @@ -3157,19 +3157,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", + "tx_hash": "831bf049f1c6fa58850f84876ef47c4b729a3c318226ab0e23028f0c5d8105ad", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3177,7 +3177,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3192,7 +3192,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -3206,19 +3206,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", + "tx_hash": "2b75bab8c081422960be9d6fabb52cac807a284735c4987863ccf7c51d93efd2", "block_index": 140, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3226,7 +3226,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3241,7 +3241,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742983, + "block_time": 1726759290, "asset_info": { "divisible": true, "asset_longname": null, @@ -3260,16 +3260,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "fee_paid_normalized": "0.00600000" } ], @@ -3280,14 +3280,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", + "tx_hash": "87ca606c50f4b00fd77a11909134e01944eabcc4d7abf7a72e3a348c6647c2de", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -3302,20 +3302,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743075, + "block_time": 1726759371, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "02aeb11d1f8356db859ac3dd71599fbe3da1c8e3d517cf4a171e9e980045e2a1", + "tx_hash": "f998620aef9ecaa6f854d94c022c526f78a24a35bd0c70ac93d6efd149e6dd71", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -3330,20 +3330,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726743070, + "block_time": 1726759367, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "dd63df7abf9b1ae09c158bce761f704944f67bb94cc345329b4b926372bc11c9", + "tx_hash": "1542301a127e8ee0647990c91437188bece4afc134beda35fd5ea7cc4206b140", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -3358,20 +3358,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743066, + "block_time": 1726759363, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "735d36c3e66e9e8eca66da2247ef421376f463c3a71166b90f79a1fb65c39ce0", + "tx_hash": "770197523ac78726980a37594b8357b76337ab79e7e9f0b6aa0755c687962f57", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -3386,20 +3386,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743052, + "block_time": 1726759359, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "c94682346a1b879d3cda19a8edaedfde8160a8d03713b250908824343581020b", + "tx_hash": "36ba0f91debb6a5bde41ec0a04b8d9c0e4a1c9829af3aace037876e44292c761", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -3414,7 +3414,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743013, + "block_time": 1726759320, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -3428,8 +3428,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 10000000000, @@ -3437,16 +3437,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726743052, - "last_issuance_block_time": 1726743070, + "first_issuance_block_time": 1726759359, + "last_issuance_block_time": 1726759367, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 100000000000, @@ -3454,16 +3454,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726743013, - "last_issuance_block_time": 1726743013, + "first_issuance_block_time": 1726759320, + "last_issuance_block_time": 1726759320, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 40, @@ -3471,16 +3471,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726742962, - "last_issuance_block_time": 1726742966, + "first_issuance_block_time": 1726759269, + "last_issuance_block_time": 1726759274, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 19, @@ -3488,16 +3488,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726742946, - "last_issuance_block_time": 1726742957, + "first_issuance_block_time": 1726759252, + "last_issuance_block_time": 1726759265, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 0, @@ -3505,8 +3505,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1726742925, - "last_issuance_block_time": 1726742942, + "first_issuance_block_time": 1726759231, + "last_issuance_block_time": 1726759248, "supply_normalized": "0.00000000" } ], @@ -3517,17 +3517,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "block_hash": "08aeea522d1ab6fc942eaab85f506d56d9aaf98a01ca64c67d8657f63295729d", - "block_time": 1726743189, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "7dc097d23b09caa394c4394050d0ea0d1a994c22edab169d4207cf13a9b9dd04", + "block_time": 1726759491, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b:1", + "utxos_info": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3563,23 +3563,23 @@ }, { "tx_index": 56, - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "block_index": 190, - "block_hash": "47b3fb7b19695ffc7ac303e23eb3315b747c15d26456b38b337030006305e979", - "block_time": 1726743185, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "292d4e219931ec9c3aeede24e6b165e9f8c11f47ac4bb4ed128388d6003af39d", + "block_time": 1726759487, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "data": "469939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "supported": true, - "utxos_info": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7:1", + "utxos_info": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "offer_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "status": "valid" } }, @@ -3587,17 +3587,17 @@ }, { "tx_index": 55, - "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "tx_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "block_index": 189, - "block_hash": "1257ebae1dd6b4cdc6b62a8ed6a80f99571bd3bc27f37129fb28997aca21f3e1", - "block_time": 1726743181, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "09b669375c195107a735f34dd62bb883e07e68460f7a52630b8e822acb905886", + "block_time": 1726759482, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba:1", + "utxos_info": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3633,17 +3633,17 @@ }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "block_hash": "427129e75f1858594b1c563d06e55db5f97f7e6425d5c064a509dec7a90698b2", - "block_time": 1726743177, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "7f31db406f1290796ed8a19cf8d56ec624ee0916c1c38ff2cdf7cc1843a1c168", + "block_time": 1726759478, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380386a5bb745b1ba84d5953b77406457e9415704a1806a51cc766215db7e153afcd60bb43d6c1c61cff8804a5bd60b2d454cc549130f385b94d63db6269c02400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a5f7d4ec4b195c3969ee5a70445cabac9ab241d380f66c2fe4d178214c277858ba6ea2c347149d097480eef93355f6ecdf9098a2d776fe6db68c709388ab400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926:0", + "utxos_info": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3651,14 +3651,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -3666,7 +3666,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3685,17 +3685,17 @@ }, { "tx_index": 49, - "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", "block_index": 183, - "block_hash": "32ee38bd8523c5f18899a3a371090d2166ca60babc13231b279dc58acdf866a0", - "block_time": 1726743155, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "block_hash": "1dab43a8c41932514875294e7666ae504e57e4c5a72b896d3caba0c91c6036b7", + "block_time": 1726759457, + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5:1", + "utxos_info": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3737,20 +3737,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", + "tx_hash": "a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df", "block_index": 153, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726743039, + "block_time": 1726759345, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -3772,9 +3772,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3789,7 +3789,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726743189, + "block_time": 1726759491, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3815,9 +3815,9 @@ }, { "tx_index": 55, - "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "tx_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "block_index": 190, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3832,7 +3832,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726743185, + "block_time": 1726759487, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3858,9 +3858,9 @@ }, { "tx_index": 49, - "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", "block_index": 186, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3875,7 +3875,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726743168, + "block_time": 1726759470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3901,9 +3901,9 @@ }, { "tx_index": 47, - "tx_hash": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", + "tx_hash": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f", "block_index": 182, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3918,7 +3918,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1726743090, + "block_time": 1726759387, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3949,10 +3949,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", + "tx_hash": "706b65e31c4a34249d77e4307108e81d97fb7dd30b3ec327ffb4a6939ed4ef10", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -3977,13 +3977,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726742962 + "block_time": 1726759269 }, { - "tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", + "tx_hash": "d2119d24b6bcf04967f1beff06372383e5fc165c0922cb6afaea3b4eec7369af", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4008,13 +4008,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726742946 + "block_time": 1726759252 }, { - "tx_hash": "630338ac26f1db216809652acb490bc36058561df42b4800c28e5064bc629a2f", + "tx_hash": "eb2d322022ee92e05714fc66c38fbba49afd84aff7e09e02bed07949b82db774", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4039,13 +4039,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726742942 + "block_time": 1726759248 }, { - "tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4070,7 +4070,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726742920 + "block_time": 1726759227 } ], "next_cursor": null, @@ -4079,127 +4079,127 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "7b33dfa114bb715eb9f145b2f1bbaaaef414b6b4a96bb8c6eaeb491bb5acbb6d", + "tx_hash": "7947145d9d0d16c88da9eca3487a8547f6b6002699b0195c0053923fd5a5ec4b", "tx_index": 23, "block_index": 136, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "fairminter_tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "fairminter_tx_hash": "706b65e31c4a34249d77e4307108e81d97fb7dd30b3ec327ffb4a6939ed4ef10", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742966, + "block_time": 1726759274, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } }, { - "tx_hash": "325787e9f0effbc24bc985f71f26f683dbe75a9105b6414d5e5315b4ceaac1c9", + "tx_hash": "09d249043040c9ec8160e7fb49d2ff7c557d2086f1be736eaf4b07ac636cc724", "tx_index": 21, "block_index": 134, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "fairminter_tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "fairminter_tx_hash": "d2119d24b6bcf04967f1beff06372383e5fc165c0922cb6afaea3b4eec7369af", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742957, + "block_time": 1726759265, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } }, { - "tx_hash": "675009915a6db39339ca7bb454f89704ff9da57f16c45c251e9ea253247a56af", + "tx_hash": "3521ba5de537a177c5063c549c8ec3ae6be77b576abedb8d51105bc5be47d292", "tx_index": 20, "block_index": 133, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "fairminter_tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "fairminter_tx_hash": "d2119d24b6bcf04967f1beff06372383e5fc165c0922cb6afaea3b4eec7369af", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742953, + "block_time": 1726759261, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } }, { - "tx_hash": "07fbae4d51d0beaccb7486518f1989ad7e9a734c21cf2c7e3752d1cd2a1ceb9f", + "tx_hash": "3bd0cfeab6358da21969de8958cfdccca48de1b088085be9843630ac16b83cee", "tx_index": 19, "block_index": 132, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "fairminter_tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "fairminter_tx_hash": "d2119d24b6bcf04967f1beff06372383e5fc165c0922cb6afaea3b4eec7369af", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742949, + "block_time": 1726759257, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } }, { - "tx_hash": "d6edd904969de8dd3c68546fdf7b24b76ec81d2ab8954e7abd4d5af6655ec6d4", + "tx_hash": "1377b97953bf540b306caa49df922660348b13f629155ec615a5304fab16d354", "tx_index": 15, "block_index": 127, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "fairminter_tx_hash": "630338ac26f1db216809652acb490bc36058561df42b4800c28e5064bc629a2f", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "fairminter_tx_hash": "eb2d322022ee92e05714fc66c38fbba49afd84aff7e09e02bed07949b82db774", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742929, + "block_time": 1726759236, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } }, { - "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", + "tx_hash": "eb49f271058899b7c9a13607563ebc0577ce924f1ac4c34f58ce66acbef8081b", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "fairminter_tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742912, + "block_time": 1726759219, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } @@ -4211,22 +4211,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", + "tx_hash": "eb49f271058899b7c9a13607563ebc0577ce924f1ac4c34f58ce66acbef8081b", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "fairminter_tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742912, + "block_time": 1726759219, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } @@ -4240,53 +4240,78 @@ }, "/v2/addresses/
/compose/broadcast": { "result": { - "rawtransaction": "02000000000101455dd36b3835387a4749ce9b9ad47320d3fdf8f65429f928c78dd49978a3c8a800000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff0200000000000000002b6a295e696832cb4fc3445a30e8938af20a15cf77d2fd605947df25628371583fba1b8c08f186f8a96bb15d3bb1052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "020000000001013295f09f553a49428dfe3439a11803eb9833aae63b05db2a26027dd9f7ae76b4000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff0200000000000000002b6a29e62c11a7cb09a2e33fcea70596e700910622e66fa2d4fb895543f0f66a4227d1e6a2e31560462e82314ab1052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, "text": "\"Hello, world!\"" }, - "name": "broadcast" + "name": "broadcast", + "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } }, "/v2/addresses/
/compose/btcpay": { "result": { - "rawtransaction": "0200000000010162343c5171670775a4634b881780814be84fc168abb2f23373cb1bded16a809b00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff03b80b000000000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd800000000000000004b6a49986e5c19872a7e7f4c1ba5170aab0623e426a3458c5e36a3b56a9c11209451095478d14222796f1a4083a66dfbbe1c434f0f50226fcb1cc26c64c649f6c4b68cdc0eabda5a9477a7ced993052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "02000000000101917813cedb5eb175772167b2edc3097448c3caf5aad7f752b9a367e3284943a0000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff03b80b0000000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1600000000000000004b6a496db7f666d052bd3064bfa45481da322c7f3b6672e82dc939384f92e2ebebde45bb637ff6fdf10c127a552dbb1e77c79f522478a97f78f05a62dbcab380b38a74785991d1b389d7652dec93052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62" + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "order_match_id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106" }, - "name": "btcpay" + "name": "btcpay", + "data": "434e5452505254590b2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab326bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } }, "/v2/addresses/
/compose/burn": { "result": { - "rawtransaction": "0200000000010169f458476b337a147ca1d77f3089faaafeca77876c20a7dc6a3c43b5b51f67d900000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "020000000001010af74a46c47f7b9a8230d99914e7559332ac27ee8cd703396e05e3a621bf5f7a000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88aceeb1052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "quantity": 1000, "overburn": false }, - "name": "burn" + "name": "burn", + "data": null } }, "/v2/addresses/
/compose/cancel": { "result": { - "rawtransaction": "02000000000101a64db30bac9176f429af313e998036f5c1f26875686a8cba1356f85c29c9e82000000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff0200000000000000002b6a29dba244cc1dab36434818a4e318a7fcaaac0ad653ea52fabe08b7e7537ffe084b14a3dcb5d71a9f8e273bb1052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "020000000001019455248e7c5119a50efeb61e9e0864415d77e27ca3ce49eb46dcc03dea4bf47f000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff0200000000000000002b6a291a65e4ae8509efbd54cb523f22cf5f36e7b4a90d4848a7b2fb7019a9ae6814a842e1bea6640a83b12b4ab1052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "offer_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b" + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "offer_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b" }, - "name": "cancel" + "name": "cancel", + "data": "434e54525052545946056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } }, "/v2/addresses/
/compose/destroy": { "result": { - "rawtransaction": "02000000000101fb80710aa438bee7755e2d302b63428bc1a42436ad64b6a52e946c9d96fdc18400000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000226a20b5273c4d58bf7b38bbd0858b5072ae53bbc2e20f884322266b5bc0faf61d288da4b3052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "02000000000101d4ae3ba314b9ef16421ff04ee6a7b6dc14aced89214c85a808c23223dcdf70e7000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff020000000000000000226a20981d4f7255ef6c17fa5a6cfa4d18d399d79d32e109a1efdf021b90d6d4c3aedcb2b3052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4299,14 +4324,22 @@ }, "quantity_normalized": "0.00001000" }, - "name": "destroy" + "name": "destroy", + "data": "434e5452505254596e000000000000000100000000000003e822627567732122", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } }, "/v2/addresses/
/compose/dispenser": { "result": { - "rawtransaction": "02000000000101dc2cafa3d48e7f864eb99f783d4aadcea96c948e8fc819d8ee9cc79c1dba2a450200000016001404ea61fb15d719aed8e3e1f0d7b3b54e5509e480ffffffff0200000000000000002c6a2a96c037babd4b19641faead1555b630fc18bee5e95fe1be05efe76f11af1f99a3595b225e2838b5f90180474b0a270100000016001404ea61fb15d719aed8e3e1f0d7b3b54e5509e48002000000000000", + "rawtransaction": "02000000000101d5375d4e6750ce63511ed9bc0718d7ce9b60203ce1e78b98c526a95f104cc9570200000016001480120f3877d5c56a2602265124a8015c69015ec0ffffffff0200000000000000002c6a2a3cccbbeeb4f2105af98d9bfa2ab1295fe47c30b25771d9028c746544bd8999f7aec32033ae3c5509f3ee564b0a270100000016001480120f3877d5c56a2602265124a8015c69015ec002000000000000", "params": { - "source": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", + "source": "bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4324,21 +4357,29 @@ "give_quantity_normalized": "0.00001000", "escrow_quantity_normalized": "0.00001000" }, - "name": "dispenser" + "name": "dispenser", + "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } }, "/v2/addresses/
/compose/dividend": { "result": { - "rawtransaction": "02000000000101629a1a55a170534ace8caa3df91a22a6f73c8d44e01c5f6d79c454d08a38a96a00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000236a217080ed31b543b2ee339312b13dd1028356efaab963f12c626b15df27a0bf9af1e360b3052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "02000000000101198dff4429c0c40244fd7895ca01612b11bcf8e9c7a934c2cacbf05191d8e8f0000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff020000000000000000236a21a3b1a714a1be993850e1ec1b7c34f91fd5c606b26813958b09e390df54b6bf47d66eb3052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -4351,54 +4392,78 @@ }, "quantity_per_unit_normalized": "0.00000001" }, - "name": "dividend" + "name": "dividend", + "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } }, "/v2/addresses/
/compose/issuance": { "result": { - "rawtransaction": "020000000001018ba0b023fa73aa2ff93bccd19cf5b5bb64f413f2156fc64cf5b25bd1ae9f4ced00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff032202000000000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd80000000000000000236a21f8e7af26548f10263a98542360afa1939cfeec745f4b82aa032bfd827b5b2a13af24a8052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "0200000000010185bbde5e048c9f15874e28538f6592d0022e5ef9cebca6a42fbd318b6b03b3ea000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff0322020000000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e160000000000000000236a218f8d1fd584605c81d35d309736ca0930048773986b128df2a81ee121aa98f9132d35a8052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "transfer_destination": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "lock": false, "reset": false, "description": null, "quantity_normalized": "0.00001000" }, - "name": "issuance" + "name": "issuance", + "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } }, "/v2/addresses/
/compose/mpma": { "result": { - "rawtransaction": "020000000001045d403484e6cd3b9c7351b8cd4672591e4993bc9e602c00f0e751002fcdce5a1400000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff681d94ee9c101450b7e54672d663bf63c20736d5cc2c0223cc2c3d5be65e052300000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff3294ea38c4e18a1cb8750fa2c7729a8763cedb509ebe782e78413d2e2b675df500000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff27b9c1c3c26fe34df163805de9fbdd03726cc512f6edb1c37747fe770cb1abeb00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff03e8030000000000006951210208458172b4a3d400be809a1b156c59c8098450af72241a24f2c291bcba10bff2210399741568a8870147af5eb7fd6db52327fc36d38a5db849a4968fc43161212fb02103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353aee8030000000000006951210207458172b4a3d400bea3ed76e7a5b1cec3e884bf88b50ad5f89cb74fefac5ed92102c4acdd50c2dcb6021ee43b28f88e5467986138cb0abce82bb4c7a15d0d4e033c2103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353ae61d016a804000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000002000002000002000000000000", + "rawtransaction": "02000000000104ccdd81bd5f8de94ac52859df66a849d61b10783ea8728d53e04583024673a470000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff1ca877543395e7c8ba06a56971a5fbfdb6806674aadfebb13911ff1ab4c2859d000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff70f1d5e27b9face2eac34ad67350eaee153e187dbd0f2d433f418ff811772d09000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff6e4218ec237a98933af2d84b1052fcdc874eeeb8b95a1702b98352133e7c8fd0000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff03e803000000000000695121036b4bcda7d8c534b6a3db6de84e0183f18ed62e7aad19247e52136bd88597a1172102040d6b1067a097e6a6faeaa036163ae1bbd75549f471593d398f914851dd5e342102bfcb850450d8d8e21ef6816c4a816932bf7f87fde3f5c93af0a2fdefa5569b6153aee80300000000000069512102644bcda7d8c534b6a3f81a85bce6e14c4faf4580c1f00a85b8dec8089c499d4f21026a1ba3b590747badbfa6dbc9d84c4aa5e77cfbd346308ab21bc7f4243db272d72102bfcb850450d8d8e21ef6816c4a816932bf7f87fde3f5c93af0a2fdefa5569b6153ae99d016a8040000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000002000002000002000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", 1 ], [ "MYASSETA", - "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", 2 ] ], "memo": "\"Hello, world!\"", "memo_is_hex": false }, - "name": "mpma" + "name": "mpma", + "data": "434e545250525459030002808b069ce3f96bfa60fcb5705deda3d019de3c6e1680a5f7d4ec4b195c3969ee5a70445cabac9ab241d38f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } }, "/v2/addresses/
/compose/order": { "result": { - "rawtransaction": "02000000000101470aeefc8460adc3d7d43217314977efcb13e84313996c94981926e0ab134f1500000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000356a3351eb067ed8025df87aa31bc50a3cfd8b667cba38b40f78a376613362acf75ff76f528ddc779d94ca1c6d68b0e54a92333543cf8eae052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "02000000000101b41a82c676c9cbff2cf8768795e0f433a320aa1163ea30d4299a4932988127bc000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff020000000000000000356a33b2903605253c11260dfad5e14e3631336a3ad6ba3fdeaeafbd9e1a99be6559dad26315494feca7a287ed2427917eee65b1f02c9eae052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4415,7 +4480,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -4423,15 +4488,23 @@ "get_quantity_normalized": "0.00001000", "fee_required_normalized": "0.00000100" }, - "name": "order" + "name": "order", + "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } }, "/v2/addresses/
/compose/send": { "result": { - "rawtransaction": "02000000000101865cd70b1713d01302f2c630b2a4039d16068b5d3418b1e6142f36dfd773317900000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000306a2eea85613120d262f8080fa39e970831172c3b902a2f0319c910bb26d0d4cdda9b8ec1cfb05d25a876652fde2293d6e5af052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "02000000000101cbd9c13356a505064f0d5cd7807f33a46517ae7bde5c50a4eeda0604dc6457a1000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff020000000000000000306a2e120e7824751f6bf5a2d2db003818b76f46347bba139638be7e95a90d4162774e523eb831c9ee47268a8c23b48615f4af052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4446,37 +4519,61 @@ }, "quantity_normalized": "0.00001000" }, - "name": "send" + "name": "send", + "data": "434e54525052545902000000000000000100000000000003e880a5f7d4ec4b195c3969ee5a70445cabac9ab241d3", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } }, "/v2/addresses/
/compose/sweep": { "result": { - "rawtransaction": "02000000000101883fa75bc4939a651bf39cd09fc40bc8b8d7cda75179be83dfde5c20183009b400000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000236a214c01f5eb691e0ef1c9870453c5348c9fc9e461b45eb316a1851155de8b7fa5274d60b3052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "02000000000101a982c68ec82faf517817471dd65e9005b39090b2ef286183829315b0cec15acd000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff020000000000000000236a21548e2fff4af53e278f08b2cce705294d0756dd392f3878e2f110d2165f973383a56eb3052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "flags": 7, "memo": "FFFF" }, - "name": "sweep" + "name": "sweep", + "data": "434e5452505254590480a5f7d4ec4b195c3969ee5a70445cabac9ab241d307ffff", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } }, "/v2/addresses/
/compose/dispense": { "result": { - "rawtransaction": "020000000001019a64dc4268831546b8049e2d83ea7815ad1d57ffb22159a371db0095fe49972602000000160014386a5bb745b1ba84d5953b77406457e9415704a1ffffffff03e8030000000000001600144a5bd60b2d454cc549130f385b94d63db6269c0200000000000000000c6a0a61cbab5b6afe230df59066b8082701000000160014386a5bb745b1ba84d5953b77406457e9415704a102000000000000", + "rawtransaction": "0200000000010163943dfc234a49f954fdce223959e830bc02759d13bdaf3ba5a27c2d85f1d86a02000000160014a5f7d4ec4b195c3969ee5a70445cabac9ab241d3ffffffff03e803000000000000160014eef93355f6ecdf9098a2d776fe6db68c709388ab00000000000000000c6a0a3c1ef2916994af8d7cc575b8082701000000160014a5f7d4ec4b195c3969ee5a70445cabac9ab241d302000000000000", "params": { - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "quantity": 1000 }, - "name": "dispense" + "name": "dispense", + "data": "434e5452505254590d00", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } }, "/v2/addresses/
/compose/fairminter": { "result": { - "rawtransaction": "020000000001013fbd5422024abb48ee9485d695285713372b57111294a91b8525f42f6f7cbb2b00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000316a2f9fceca9ab28020e0c6e7a5d05f25606cc61476d39e0a324378237a93a5ef9e0ea6671ea942443176e5ca32a93e4ef9a0af052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "02000000000101f7f9bfce8290718c761690b7f79fd3e5053feb07f14983882ec532cf2af50957000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff020000000000000000316a2fb1e78b14c741f240ba244b9b14659f7a98d74b78cb1a29a306bee2fc490df1b7d78294f98a7272b1e50950bae5d9fcb0af052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4495,34 +4592,50 @@ "divisible": true, "description": "" }, - "name": "fairminter" + "name": "fairminter", + "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } }, "/v2/addresses/
/compose/fairmint": { "result": { - "rawtransaction": "020000000001013cf1f96b60f8523ee7061cef5fd17b8a8eaedee6258fe0a1b7d4ce45654e444f00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff020000000000000000166a14da1ae31127f35dbd1e07b60a109f471ac9ee7234dab6052a01000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000000000000", + "rawtransaction": "020000000001012beb90e150b76896ff89a14d84b18f8a6ebf05350922a8eed6538a572bcaa443000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff020000000000000000166a14ce7774dac91dd4f18b86b2bd4a205c258a9822a0e8b6052a010000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000001" }, - "name": "fairmint" + "name": "fairmint", + "data": "434e5452505254595b464149524d494e54437c31", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } }, "/v2/addresses/
/compose/attach": { "result": { - "rawtransaction": "02000000000106fd27c9dfe14c2a77d55756f4ee13ec395595c857d40fd4a86fe8e1a9c36a87dc00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffffa61d11b7b871670fa79bbf46d37067ccdc812dda8997e9a5d5e3cd8fb9f8263600000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffffee6f9d6281382259986a7502887428c9a4b238f8f195c6831ba7ec1467bce1e300000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff08ca50fcfcd4f9e2363685d8cf27114e8b2cb12e9a1834dd68baade344948d5600000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff1e9a4fc8c1da01c2f0a699296267510892b8049e35c878e376cdbdb13e7e06e500000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffffd6c595074a7ce05e2655e5298d419338b07f5a31a7ed947cab076a109afb0d5a00000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd8ffffffff04e80300000000000069512102331217b11cb7bc62051cf80482082680301db962d8e93434c4531fbb124606e32103b506e22e605f706292b93191c97e47bc498b38bb6ccbb64cfbb5a487561497ba2103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353aee80300000000000069512103331217b11cb7bc62054dab03c24925c53c42f52e8cef6927ca104cb8460549e42102f350e7213a1f2469cde862908b6518fe4cd533be798abe52fdb5a6da0544c7a12103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353aee80300000000000069512103191217b11cb7bc62051efc02c746268d5d359164d9ef3c72f220788b76367f002102c136d019082a160afc8b5aa6be042fcb2ae6018f1cb3dd309982c7e36326f3192103471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d353aee83922fc06000000160014a58c27e8ecd410f6848b7abd7e26f355bce15dd802000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106f71803f26b8e5172ddac5ffa75ba2bb0b2744be95c99ca3e784f0f080ee3f03c000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff26a6780a2b17e508f4a91c2c2e52a6c7568ea4385bd0ee2f82539909e48a2036000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff5c48dedfe74941b513467b08760762ef1d5e29f226b60075af04ed10334c9abc000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff6af9f386078dad2ee450019c34fb890a27db060e6fc44af0f32aa58bf911ed24000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff5809873b32a879243ed38837d2e874d9ee8dcf4e8b16d72565e27c1e43edae44000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffffa6dd0efa6e8367ff3f190ea9a081385a711e3e2944affa063d8f91f5530e2520000000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e16ffffffff04e80300000000000069512102f948e9859a0721cea993ad725b488683979a412c3fee2b47581d0c275fa7ca53210213f3e5e7f0144f478404395bb80bd6eba4b21e15ddfe1962b052b8bfe37fd0642102bfcb850450d8d8e21ef6816c4a816932bf7f87fde3f5c93af0a2fdefa5569b6153aee80300000000000069512103f948e9859a0721cea994f775180cd490c0dc01793cbb7317584c596a1df9ca2b210311e6f7a2f14b4916ce15620faf5f8cfbf7f046589ced427bbb04b4e9e12fd2432102bfcb850450d8d8e21ef6816c4a816932bf7f87fde3f5c93af0a2fdefa5569b6153aee80300000000000069512102d348e9859a0721cea9c1f8701006868efcaf63366bbd77123c2d6d5f2fcbf36b210227849590c7792870f776016bca68bb98cfc3706cad8e751e886080da851be45e2102bfcb850450d8d8e21ef6816c4a816932bf7f87fde3f5c93af0a2fdefa5569b6153ae3b3a22fc060000001600148b069ce3f96bfa60fcb5705deda3d019de3c6e1602000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7:1", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4534,15 +4647,23 @@ }, "quantity_normalized": "0.00001000" }, - "name": "utxo" + "name": "utxo", + "data": "434e545250525459646263727431713376726665636c6564306178706c3934777077376d67377372383072636d736b716e7970706c7c383238656664346338643130636264303233663634356461343532323936626232363261663963636465373763383336343163376533643433643436363761393a317c5843507c31303030", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } }, "/v2/utxos//compose/detach": { "result": { - "rawtransaction": "0200000000010120829d2d32e93049620018aaf84a30db1526d8492ab2126cd94294e9a11dc02801000000160014868ddcf66027a85e5173ab966513d76bacc08c9cffffffff04e803000000000000695121036c4b4a849e8af6cf00b9b8d565354d479463dbe85f4200079bd95035229727192102d93bb440a25968ff4ed35f4b9243117d8eb4726d6e9d1262384c7998d64b827021030f3089de8881f2438da4d941cac5f57df85c6692d0ddcf89f713e22f1172f2c253aee803000000000000695121036c4b4a849e8af6cf00b8b3de3437181a916a8ce3564c05499d83142222d4709a21028071af44ad0526fb0b855a4b80095579dde5227969c44460634d3cd6870fd1b121030f3089de8881f2438da4d941cac5f57df85c6692d0ddcf89f713e22f1172f2c253aee80300000000000069512103464b4a849e8af6cf00b0b3d9767d175fad11eead57460405ffe0665613a545d12102eb09d5749b3d50cd78e26a2ff0702149efd24a0c0fac2a52087a4bacef78b2a521030f3089de8881f2438da4d941cac5f57df85c6692d0ddcf89f713e22f1172f2c253aef498082701000000160014868ddcf66027a85e5173ab966513d76bacc08c9c02000000000000", + "rawtransaction": "02000000000101d9e7a6b130b33624da1201eda320c3a8b13e9d45b6d981cbdd2ef23c66e6fd0501000000160014323730b58e0cef21d16a948f9a4a170a3a448bebffffffff04e803000000000000695121029cc0c7c590b0c32c57ff67f3bea12bba5f50cd86bb9d4c882a6ab7ce0d0174af2103a93686846e316a658d3c97ce9b90915d0f78ec4b9a15064ce4b9e072808673722102f2fc0efb1dd27c53d3b0af42c0e596d9c3a9b4df93ce6f7c78c3a2351d03ef7c53aee803000000000000695121029cc0c7c590b0c32c57f964f5e8a77fed5f03c981e4954f912c6da6d8044123c62103e626d6d538646b32d83fdedfcfca96184f6ee8439912440feeedf323d9c62e132102f2fc0efb1dd27c53d3b0af42c0e596d9c3a9b4df93ce6f7c78c3a2351d03ef7c53aee80300000000000069512103b6c0c7c590b0c32c57ea39bfa8b522f03125ae99ec9f4edd4e0ed4ac3530106021039054b0b05b080e56e85ea6afa3f3a26f3f19df2efe25377dd6dd8140b4b545a62102f2fc0efb1dd27c53d3b0af42c0e596d9c3a9b4df93ce6f7c78c3a2351d03ef7c53ae0f99082701000000160014323730b58e0cef21d16a948f9a4a170a3a448beb02000000000000", "params": { - "source": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220:1", - "destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9:1", + "destination": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4554,7 +4675,15 @@ }, "quantity_normalized": "0.00001000" }, - "name": "utxo" + "name": "utxo", + "data": "434e54525052545964303566646536363633636632326564646362383164396236343539643365623161386333323061336564303131326461323433366233333062316136653764393a317c6263727431713376726665636c6564306178706c3934777077376d67377372383072636d736b716e7970706c7c5843507c31303030", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 67, + "message_data": { + "error": "Unknown message type" + } + } } }, "/v2/assets": { @@ -4563,8 +4692,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 10000000000, @@ -4572,16 +4701,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726743052, - "last_issuance_block_time": 1726743070, + "first_issuance_block_time": 1726759359, + "last_issuance_block_time": 1726759367, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", - "owner": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", + "issuer": "bcrt1qxgmnpdvwpnhjr5t2jj8e5jshpgayfzltreejtt", + "owner": "bcrt1qxgmnpdvwpnhjr5t2jj8e5jshpgayfzltreejtt", "divisible": true, "locked": false, "supply": 100000000000, @@ -4589,16 +4718,16 @@ "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1726743048, - "last_issuance_block_time": 1726743048, + "first_issuance_block_time": 1726759354, + "last_issuance_block_time": 1726759354, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 100000000000, @@ -4606,16 +4735,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726743013, - "last_issuance_block_time": 1726743013, + "first_issuance_block_time": 1726759320, + "last_issuance_block_time": 1726759320, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 40, @@ -4623,16 +4752,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726742962, - "last_issuance_block_time": 1726742966, + "first_issuance_block_time": 1726759269, + "last_issuance_block_time": 1726759274, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 19, @@ -4640,8 +4769,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726742946, - "last_issuance_block_time": 1726742957, + "first_issuance_block_time": 1726759252, + "last_issuance_block_time": 1726759265, "supply_normalized": "0.00000019" } ], @@ -4653,8 +4782,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 10000000000, @@ -4662,15 +4791,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1726742908, - "last_issuance_block_time": 1726742920, + "first_issuance_block_time": 1726759214, + "last_issuance_block_time": 1726759227, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4678,14 +4807,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4693,7 +4822,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -4705,7 +4834,7 @@ }, "/v2/assets//balances/
": { "result": { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4724,9 +4853,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4741,7 +4870,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726743189, + "block_time": 1726759491, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4767,9 +4896,9 @@ }, { "tx_index": 55, - "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "tx_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "block_index": 190, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4784,7 +4913,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726743185, + "block_time": 1726759487, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4810,9 +4939,9 @@ }, { "tx_index": 52, - "tx_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "tx_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "block_index": 186, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -4827,7 +4956,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726743168, + "block_time": 1726759470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4853,9 +4982,9 @@ }, { "tx_index": 50, - "tx_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "tx_hash": "6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "block_index": 185, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -4870,7 +4999,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726743164, + "block_time": 1726759465, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4896,9 +5025,9 @@ }, { "tx_index": 49, - "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", "block_index": 186, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4913,7 +5042,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726743168, + "block_time": 1726759470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4944,13 +5073,13 @@ "/v2/assets//matches": { "result": [ { - "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "tx0_index": 49, - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 52, - "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", - "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "tx1_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", + "tx1_address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -4964,7 +5093,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726743168, + "block_time": 1726759470, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4984,13 +5113,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "tx0_index": 49, - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 50, - "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", - "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "tx1_hash": "6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", + "tx1_address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5004,7 +5133,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726743164, + "block_time": 1726759465, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5024,13 +5153,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "id": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f_313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", "tx0_index": 47, - "tx0_hash": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 48, - "tx1_hash": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", - "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "tx1_hash": "313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", + "tx1_address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5044,7 +5173,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726743090, + "block_time": 1726759387, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5071,20 +5200,20 @@ "result": [ { "block_index": 192, - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5092,20 +5221,20 @@ }, { "block_index": 125, - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "a067ff65963d10f1ef8f3d33058456506bf8d8dff9fe6e30436e77d40da1b4a8", + "event": "f3826547c9fb9636d8f3a4e45ed812aa75ec34928ae3b616f7c5ee4d10325f59", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742920, + "block_time": 1726759227, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5113,20 +5242,20 @@ }, { "block_index": 124, - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad", + "event": "5a549be142e41682221fa380ebbd90acf1be772250a41d813a65aa54428b5a88", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742916, + "block_time": 1726759223, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5134,20 +5263,20 @@ }, { "block_index": 124, - "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", + "event": "eb49f271058899b7c9a13607563ebc0577ce924f1ac4c34f58ce66acbef8081b", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742916, + "block_time": 1726759223, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5159,16 +5288,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad", + "event": "5a549be142e41682221fa380ebbd90acf1be772250a41d813a65aa54428b5a88", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726742916, + "block_time": 1726759223, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5182,16 +5311,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "event": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -5203,16 +5332,16 @@ }, { "block_index": 192, - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -5224,16 +5353,16 @@ }, { "block_index": 192, - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -5245,16 +5374,16 @@ }, { "block_index": 191, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "event": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743189, + "block_time": 1726759491, "asset_info": { "divisible": true, "asset_longname": null, @@ -5266,16 +5395,16 @@ }, { "block_index": 189, - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "event": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743181, + "block_time": 1726759482, "asset_info": { "divisible": true, "asset_longname": null, @@ -5293,20 +5422,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", + "tx_hash": "a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df", "block_index": 153, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726743039, + "block_time": 1726759345, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5328,14 +5457,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "a067ff65963d10f1ef8f3d33058456506bf8d8dff9fe6e30436e77d40da1b4a8", + "tx_hash": "f3826547c9fb9636d8f3a4e45ed812aa75ec34928ae3b616f7c5ee4d10325f59", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -5350,20 +5479,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726742920, + "block_time": 1726759227, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad", + "tx_hash": "5a549be142e41682221fa380ebbd90acf1be772250a41d813a65aa54428b5a88", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -5378,20 +5507,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726742916, + "block_time": 1726759223, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", + "tx_hash": "eb49f271058899b7c9a13607563ebc0577ce924f1ac4c34f58ce66acbef8081b", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -5406,20 +5535,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726742912, + "block_time": 1726759219, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -5434,7 +5563,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1726742908, + "block_time": 1726759214, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5446,10 +5575,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5457,7 +5586,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "divisible": true, "asset_longname": null, @@ -5470,10 +5599,10 @@ }, { "tx_index": 53, - "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3", + "tx_hash": "4e88b4042628b7d9f55b444cab0a47fb3ca70fa7a8c02ae51daab7f1edb2360a", "block_index": 187, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5481,7 +5610,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743172, + "block_time": 1726759474, "asset_info": { "divisible": true, "asset_longname": null, @@ -5494,10 +5623,10 @@ }, { "tx_index": 42, - "tx_hash": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", + "tx_hash": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9", "block_index": 155, - "source": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a:0", - "destination": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220:1", + "source": "39bd27ee5737e42422d26d899ae6bc07f2929f4eaef5eb993047290e247a385c:0", + "destination": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5505,7 +5634,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743048, + "block_time": 1726759354, "asset_info": { "divisible": true, "asset_longname": null, @@ -5518,10 +5647,10 @@ }, { "tx_index": 41, - "tx_hash": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a", + "tx_hash": "39bd27ee5737e42422d26d899ae6bc07f2929f4eaef5eb993047290e247a385c", "block_index": 154, - "source": "0debf18cd260e30cfa40e908abba0d11fd931bf61bac639d0c3c6a3c4dffd0ad:0", - "destination": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a:0", + "source": "6094d41b36da55875ccfccc70cee17fd4f854f91c1267a4809b90565cf8014af:0", + "destination": "39bd27ee5737e42422d26d899ae6bc07f2929f4eaef5eb993047290e247a385c:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5529,7 +5658,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743043, + "block_time": 1726759350, "asset_info": { "divisible": true, "asset_longname": null, @@ -5548,18 +5677,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "oracle_address": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "last_status_tx_hash": null, - "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "origin": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5569,7 +5698,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726743009, + "block_time": 1726759315, "asset_info": { "divisible": true, "asset_longname": null, @@ -5585,9 +5714,9 @@ }, { "tx_index": 30, - "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", + "tx_hash": "a0423cc553293cdeb28e5b41a51851e2d790f3f07a46cfb825347c10dfd41d8b", "block_index": 144, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5596,7 +5725,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5606,7 +5735,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726743000, + "block_time": 1726759307, "asset_info": { "divisible": true, "asset_longname": null, @@ -5622,9 +5751,9 @@ }, { "tx_index": 29, - "tx_hash": "d2babdd8ac4bb366d33be8955dd3360e02b0fedd8e3167db62af445fc82eac8c", + "tx_hash": "811594a7a1eb27f36748cf973583618ff3c25d6ed8d4b0e60a4542bfd6fbdee1", "block_index": 142, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5633,7 +5762,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "origin": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5643,7 +5772,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742992, + "block_time": 1726759298, "asset_info": { "divisible": true, "asset_longname": null, @@ -5659,9 +5788,9 @@ }, { "tx_index": 26, - "tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5670,7 +5799,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5680,7 +5809,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -5701,9 +5830,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 30, - "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", + "tx_hash": "a0423cc553293cdeb28e5b41a51851e2d790f3f07a46cfb825347c10dfd41d8b", "block_index": 144, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5712,7 +5841,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5722,7 +5851,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726743000, + "block_time": 1726759307, "asset_info": { "divisible": true, "asset_longname": null, @@ -5750,7 +5879,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5758,7 +5887,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -5767,7 +5896,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5775,7 +5904,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -5784,7 +5913,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5792,7 +5921,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -5801,7 +5930,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -5816,27 +5945,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "tx_hash": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", - "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", + "destination": "bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "dispenser_tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "oracle_address": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "last_status_tx_hash": null, - "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "origin": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5851,7 +5980,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726743009, + "block_time": 1726759315, "asset_info": { "divisible": true, "asset_longname": null, @@ -5865,19 +5994,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", + "tx_hash": "831bf049f1c6fa58850f84876ef47c4b729a3c318226ab0e23028f0c5d8105ad", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5885,7 +6014,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5900,7 +6029,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -5914,19 +6043,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", + "tx_hash": "2b75bab8c081422960be9d6fabb52cac807a284735c4987863ccf7c51d93efd2", "block_index": 140, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5934,7 +6063,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5949,7 +6078,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742983, + "block_time": 1726759290, "asset_info": { "divisible": true, "asset_longname": null, @@ -5970,8 +6099,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "owner": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "owner": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false, "supply": 0, @@ -5979,8 +6108,8 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1726743066, - "last_issuance_block_time": 1726743066, + "first_issuance_block_time": 1726759363, + "last_issuance_block_time": 1726759363, "supply_normalized": "0.00000000" } ], @@ -5990,10 +6119,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6018,7 +6147,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726742920 + "block_time": 1726759227 } ], "next_cursor": null, @@ -6027,64 +6156,64 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "a067ff65963d10f1ef8f3d33058456506bf8d8dff9fe6e30436e77d40da1b4a8", + "tx_hash": "f3826547c9fb9636d8f3a4e45ed812aa75ec34928ae3b616f7c5ee4d10325f59", "tx_index": 13, "block_index": 125, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", - "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", + "fairminter_tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742920, + "block_time": 1726759227, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } }, { - "tx_hash": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad", + "tx_hash": "5a549be142e41682221fa380ebbd90acf1be772250a41d813a65aa54428b5a88", "tx_index": 12, "block_index": 124, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", - "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", + "fairminter_tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742916, + "block_time": 1726759223, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } }, { - "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", + "tx_hash": "eb49f271058899b7c9a13607563ebc0577ce924f1ac4c34f58ce66acbef8081b", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "fairminter_tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742912, + "block_time": 1726759219, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } @@ -6096,22 +6225,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "bdd4efe58513f93e82bbc7e06f0d4e6c7146ecb67b945c0c43d09e0d216a0789", + "tx_hash": "eb49f271058899b7c9a13607563ebc0577ce924f1ac4c34f58ce66acbef8081b", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "fairminter_tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "fairminter_tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726742912, + "block_time": 1726759219, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } @@ -6124,9 +6253,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6141,7 +6270,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726743189, + "block_time": 1726759491, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6167,9 +6296,9 @@ }, { "tx_index": 55, - "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "tx_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "block_index": 190, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6184,7 +6313,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726743185, + "block_time": 1726759487, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6210,9 +6339,9 @@ }, { "tx_index": 52, - "tx_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "tx_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "block_index": 186, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6227,7 +6356,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726743168, + "block_time": 1726759470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6253,9 +6382,9 @@ }, { "tx_index": 50, - "tx_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "tx_hash": "6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "block_index": 185, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6270,7 +6399,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726743164, + "block_time": 1726759465, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6296,9 +6425,9 @@ }, { "tx_index": 49, - "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", "block_index": 186, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6313,7 +6442,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726743168, + "block_time": 1726759470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6344,9 +6473,9 @@ "/v2/orders/": { "result": { "tx_index": 57, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6361,7 +6490,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726743189, + "block_time": 1726759491, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6389,13 +6518,13 @@ "/v2/orders//matches": { "result": [ { - "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "tx0_index": 49, - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 52, - "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", - "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "tx1_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", + "tx1_address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6409,7 +6538,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726743168, + "block_time": 1726759470, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6429,13 +6558,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "tx0_index": 49, - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 50, - "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", - "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "tx1_hash": "6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", + "tx1_address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6449,7 +6578,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726743164, + "block_time": 1726759465, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6476,15 +6605,15 @@ "result": [ { "tx_index": 51, - "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", + "tx_hash": "6ad8f1852d7ca2a53bafbd139d7502bc30e8593922cefd54f9494a23fc3d9463", "block_index": 185, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "destination": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "btc_amount": 2000, - "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "order_match_id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "status": "valid", "confirmed": true, - "block_time": 1726743164, + "block_time": 1726759465, "btc_amount_normalized": "0.00002000" } ], @@ -6495,9 +6624,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6515,7 +6644,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726743189, + "block_time": 1726759491, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6541,9 +6670,9 @@ }, { "tx_index": 55, - "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "tx_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "block_index": 190, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6561,7 +6690,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726743185, + "block_time": 1726759487, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6587,9 +6716,9 @@ }, { "tx_index": 52, - "tx_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "tx_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "block_index": 186, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6607,7 +6736,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726743168, + "block_time": 1726759470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6633,9 +6762,9 @@ }, { "tx_index": 50, - "tx_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "tx_hash": "6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "block_index": 185, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6653,7 +6782,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726743164, + "block_time": 1726759465, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6679,9 +6808,9 @@ }, { "tx_index": 49, - "tx_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", "block_index": 186, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6699,7 +6828,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726743168, + "block_time": 1726759470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6730,13 +6859,13 @@ "/v2/orders///matches": { "result": [ { - "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "tx0_index": 49, - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 52, - "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", - "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "tx1_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", + "tx1_address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6753,7 +6882,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726743168, + "block_time": 1726759470, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6773,13 +6902,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "tx0_index": 49, - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 50, - "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", - "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "tx1_hash": "6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", + "tx1_address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6796,7 +6925,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726743164, + "block_time": 1726759465, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6816,13 +6945,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "id": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f_313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", "tx0_index": 47, - "tx0_hash": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 48, - "tx1_hash": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", - "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "tx1_hash": "313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", + "tx1_address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6839,7 +6968,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726743090, + "block_time": 1726759387, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6865,13 +6994,13 @@ "/v2/order_matches": { "result": [ { - "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "tx0_index": 49, - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 52, - "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", - "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "tx1_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", + "tx1_address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6885,7 +7014,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726743168, + "block_time": 1726759470, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6905,13 +7034,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "tx0_index": 49, - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 50, - "tx1_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", - "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "tx1_hash": "6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", + "tx1_address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6925,7 +7054,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726743164, + "block_time": 1726759465, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6945,13 +7074,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", + "id": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f_313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", "tx0_index": 47, - "tx0_hash": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_hash": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx1_index": 48, - "tx1_hash": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", - "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "tx1_hash": "313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", + "tx1_address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6965,7 +7094,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726743090, + "block_time": 1726759387, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7010,66 +7139,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "8cb6afe98c6fd78fe63d3400ff07363c80671a5aa675d073676e7be684d2d8a7", + "tx_hash": "edc9e270e42ffd60a6524c60aa99d6fc47820a1305a15c399022256a40930336", "block_index": 121, - "source": "bcrt1qsvdraccy4y6g937r7kzwjttq6j7htuuzvuzcpx", + "source": "bcrt1qyd2lpsyqnwusjevzc2d6cs835xwyt3cyztaek2", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1726742903, + "block_time": 1726759210, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "35c14d3851228713850558049f8ef10ae51d6653920573a6969cb1b7baa4fc62", + "tx_hash": "0d972bca2e6c8a4726b4c2bd42e23b759e8fd0af088857cd404e55e27d118ddb", "block_index": 120, - "source": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", + "source": "bcrt1qxgmnpdvwpnhjr5t2jj8e5jshpgayfzltreejtt", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1726742899, + "block_time": 1726759206, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "baf2f258040ff731a98db0127f9b7e60175906c48cf36ddc978fa4c385e02b54", + "tx_hash": "aaddb8cbf390ff8e3053dd3591ddb08208680c52e3595d80dd8656c754c74c99", "block_index": 119, - "source": "bcrt1qqqrd70rps4uzjnfwyd8n88d4h0ytlrf9hte2xs", + "source": "bcrt1qvdzn9pgnwhdszdnpayu7phnxfjnqt5ezmpuz3j", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1726742895, + "block_time": 1726759202, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "0628b5a3f2bde30471935b31d3997d20ee6fa78118c88421e24a2c8bba32a38d", + "tx_hash": "7a2390f9b0af65379950c1225e4e8918053869ba73d488d1c93f8c77aef53977", "block_index": 118, - "source": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", + "source": "bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1726742890, + "block_time": 1726759197, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "ac90cd09ee4c1693a9a5eb34f190055f9e1a1d3f9096a01e96a77ffff5f3bdd0", + "tx_hash": "571365ee5f6b7e2f1d03d3e6ad0be805dfae8f04e9bcc5637cae1c78686e4bd9", "block_index": 117, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1726742886, + "block_time": 1726759193, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7081,18 +7210,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "oracle_address": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "last_status_tx_hash": null, - "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "origin": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7102,7 +7231,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726743009, + "block_time": 1726759315, "asset_info": { "divisible": true, "asset_longname": null, @@ -7118,9 +7247,9 @@ }, { "tx_index": 30, - "tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", + "tx_hash": "a0423cc553293cdeb28e5b41a51851e2d790f3f07a46cfb825347c10dfd41d8b", "block_index": 144, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7129,7 +7258,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7139,7 +7268,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726743000, + "block_time": 1726759307, "asset_info": { "divisible": true, "asset_longname": null, @@ -7155,9 +7284,9 @@ }, { "tx_index": 29, - "tx_hash": "d2babdd8ac4bb366d33be8955dd3360e02b0fedd8e3167db62af445fc82eac8c", + "tx_hash": "811594a7a1eb27f36748cf973583618ff3c25d6ed8d4b0e60a4542bfd6fbdee1", "block_index": 142, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7166,7 +7295,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "origin": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7176,7 +7305,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742992, + "block_time": 1726759298, "asset_info": { "divisible": true, "asset_longname": null, @@ -7192,9 +7321,9 @@ }, { "tx_index": 26, - "tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7203,7 +7332,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7213,7 +7342,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -7234,9 +7363,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7245,7 +7374,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7255,7 +7384,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -7275,19 +7404,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", + "tx_hash": "831bf049f1c6fa58850f84876ef47c4b729a3c318226ab0e23028f0c5d8105ad", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7295,7 +7424,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7310,7 +7439,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -7324,19 +7453,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", + "tx_hash": "2b75bab8c081422960be9d6fabb52cac807a284735c4987863ccf7c51d93efd2", "block_index": 140, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7344,7 +7473,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7359,7 +7488,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742983, + "block_time": 1726759290, "asset_info": { "divisible": true, "asset_longname": null, @@ -7378,20 +7507,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", + "tx_hash": "a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df", "block_index": 153, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726743039, + "block_time": 1726759345, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -7412,20 +7541,20 @@ "/v2/dividends/": { "result": { "tx_index": 40, - "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", + "tx_hash": "a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df", "block_index": 153, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726743039, + "block_time": 1726759345, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -7448,12 +7577,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", + "event": "a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df", "tx_index": 40, - "utxo": "0debf18cd260e30cfa40e908abba0d11fd931bf61bac639d0c3c6a3c4dffd0ad:0", - "utxo_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "utxo": "6094d41b36da55875ccfccc70cee17fd4f854f91c1267a4809b90565cf8014af:0", + "utxo_address": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "confirmed": true, - "block_time": 1726743039, + "block_time": 1726759345, "asset_info": { "divisible": true, "asset_longname": null, @@ -7465,16 +7594,16 @@ }, { "block_index": 153, - "address": "bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3", + "address": "bcrt1qat5k09kmzy7qlhd3qyrysmz5skknuy9y2xwsrr", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", + "event": "a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726743039, + "block_time": 1726759345, "asset_info": { "divisible": true, "asset_longname": null, @@ -7495,27 +7624,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", - "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", + "ledger_hash": "d780942d01b58e13071c1994b611b6f67c8b6644f5c3fcd20aa9fdf899dc8224", + "messages_hash": "a234caace5f00f4aeb2098f24859f045a43954bd6e6daaef09d01baa70e16884", "transaction_count": 1, - "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", - "block_time": 1726743198 + "txlist_hash": "baa06d9619fa0e75b227f944f0efc483c0198619ddd6ebdd4484b50dba4402ea", + "block_time": 1726759498 }, "tx_hash": null, "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "tx_index": 59 }, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 }, { "event_index": 533, @@ -7524,12 +7653,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "status": "valid", "tag": "64657374726f79", - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "tx_index": 59, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -7539,24 +7668,24 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 193, - "event": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "event": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -7566,25 +7695,25 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", "block_index": 193, - "block_time": 1726743198, + "block_time": 1726759498, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "tx_index": 59, - "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", + "utxos_info": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -7604,9 +7733,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 } ], "next_cursor": 530, @@ -7618,15 +7747,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", - "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", + "ledger_hash": "d780942d01b58e13071c1994b611b6f67c8b6644f5c3fcd20aa9fdf899dc8224", + "messages_hash": "a234caace5f00f4aeb2098f24859f045a43954bd6e6daaef09d01baa70e16884", "transaction_count": 1, - "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", - "block_time": 1726743198 + "txlist_hash": "baa06d9619fa0e75b227f944f0efc483c0198619ddd6ebdd4484b50dba4402ea", + "block_time": 1726759498 }, "tx_hash": null, "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 } }, "/v2/events/counts": { @@ -7661,16 +7790,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -7680,78 +7809,78 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", + "event": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726743185, + "block_time": 1726759487, "asset_info": { "divisible": true, "asset_longname": null, @@ -7761,24 +7890,24 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "block_index": 190, - "block_time": 1726743185 + "block_time": 1726759487 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "event": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "divisible": true, "asset_longname": null, @@ -7788,9 +7917,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "block_time": 1726743177 + "block_time": 1726759478 } ], "next_cursor": 490, @@ -7807,27 +7936,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "tx_hash": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", - "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", + "destination": "bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "dispenser_tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "oracle_address": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "last_status_tx_hash": null, - "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "origin": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7842,7 +7971,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726743009, + "block_time": 1726759315, "asset_info": { "divisible": true, "asset_longname": null, @@ -7856,19 +7985,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3604eb84f168f001578e3d0962d24374ffdaf8b2375d008d19c979f4712c1659", + "tx_hash": "831bf049f1c6fa58850f84876ef47c4b729a3c318226ab0e23028f0c5d8105ad", "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7876,7 +8005,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7891,7 +8020,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742987, + "block_time": 1726759294, "asset_info": { "divisible": true, "asset_longname": null, @@ -7905,19 +8034,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "069a49493ab4484679492226b97fc3611c8df2d8ebc7276f518e8fdfcc556bdd", + "tx_hash": "2b75bab8c081422960be9d6fabb52cac807a284735c4987863ccf7c51d93efd2", "block_index": 140, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "209933a7ade48d7b00cecdaf22899b07db43f9f18c2e77bd43c2c5503c90e87d", + "dispenser_tx_hash": "5e7b93e202ba6d4522aba184e91f398c5cb64d21536598491d9c552904eae6dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7925,7 +8054,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "origin": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7940,7 +8069,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726742983, + "block_time": 1726759290, "asset_info": { "divisible": true, "asset_longname": null, @@ -7959,10 +8088,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "asset": "XCP", "quantity": 10, "status": "valid", @@ -7970,7 +8099,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "divisible": true, "asset_longname": null, @@ -7983,10 +8112,10 @@ }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -7994,11 +8123,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -8007,10 +8136,10 @@ }, { "tx_index": 54, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8018,11 +8147,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -8031,10 +8160,10 @@ }, { "tx_index": 53, - "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3", + "tx_hash": "4e88b4042628b7d9f55b444cab0a47fb3ca70fa7a8c02ae51daab7f1edb2360a", "block_index": 187, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -8042,7 +8171,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743172, + "block_time": 1726759474, "asset_info": { "divisible": true, "asset_longname": null, @@ -8055,10 +8184,10 @@ }, { "tx_index": 42, - "tx_hash": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", + "tx_hash": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9", "block_index": 155, - "source": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a:0", - "destination": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220:1", + "source": "39bd27ee5737e42422d26d899ae6bc07f2929f4eaef5eb993047290e247a385c:0", + "destination": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8066,7 +8195,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726743048, + "block_time": 1726759354, "asset_info": { "divisible": true, "asset_longname": null, @@ -8085,14 +8214,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", + "tx_hash": "87ca606c50f4b00fd77a11909134e01944eabcc4d7abf7a72e3a348c6647c2de", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -8107,20 +8236,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743075, + "block_time": 1726759371, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "02aeb11d1f8356db859ac3dd71599fbe3da1c8e3d517cf4a171e9e980045e2a1", + "tx_hash": "f998620aef9ecaa6f854d94c022c526f78a24a35bd0c70ac93d6efd149e6dd71", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -8135,20 +8264,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726743070, + "block_time": 1726759367, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "dd63df7abf9b1ae09c158bce761f704944f67bb94cc345329b4b926372bc11c9", + "tx_hash": "1542301a127e8ee0647990c91437188bece4afc134beda35fd5ea7cc4206b140", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -8163,20 +8292,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743066, + "block_time": 1726759363, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "735d36c3e66e9e8eca66da2247ef421376f463c3a71166b90f79a1fb65c39ce0", + "tx_hash": "770197523ac78726980a37594b8357b76337ab79e7e9f0b6aa0755c687962f57", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -8191,20 +8320,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743052, + "block_time": 1726759359, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", + "tx_hash": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", - "issuer": "bcrt1qs6xaeanqy759u5tn4wtx2y7hdwkvpryuwgmuzn", + "source": "bcrt1qxgmnpdvwpnhjr5t2jj8e5jshpgayfzltreejtt", + "issuer": "bcrt1qxgmnpdvwpnhjr5t2jj8e5jshpgayfzltreejtt", "transfer": false, "callable": false, "call_date": 0, @@ -8219,7 +8348,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743048, + "block_time": 1726759354, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8230,14 +8359,14 @@ "/v2/issuances/": { "result": { "tx_index": 46, - "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", + "tx_hash": "87ca606c50f4b00fd77a11909134e01944eabcc4d7abf7a72e3a348c6647c2de", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "transfer": false, "callable": false, "call_date": 0, @@ -8252,7 +8381,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726743075, + "block_time": 1726759371, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8261,16 +8390,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "fee_paid_normalized": "0.00600000" } ], @@ -8281,16 +8410,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726743194, + "block_time": 1726759495, "fee_paid_normalized": "0.00600000" } ], @@ -8301,9 +8430,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20", + "tx_hash": "c4b5d1cc8a00925e3c15d44bd0c988531a54057711a7e63f686f5a8af06bb36d", "block_index": 138, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8311,14 +8440,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726742975, + "block_time": 1726759281, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "5966fd52717602850bfb43b55f7da2b2e0c9be1896b41b65c6f9bf5b0e1099ab", + "tx_hash": "d8507cb8324f5f355a72cec6acd17023e9e11cb6fda1e1f42af403bd5f79cf25", "block_index": 137, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8326,7 +8455,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726742970, + "block_time": 1726759277, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8336,9 +8465,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20", + "tx_hash": "c4b5d1cc8a00925e3c15d44bd0c988531a54057711a7e63f686f5a8af06bb36d", "block_index": 138, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8346,17 +8475,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726742975, + "block_time": 1726759281, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", + "tx_hash": "706b65e31c4a34249d77e4307108e81d97fb7dd30b3ec327ffb4a6939ed4ef10", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8381,13 +8510,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726742962 + "block_time": 1726759269 }, { - "tx_hash": "f1f952b3611e0d6d3fb4e8541da2d5845a494a1a45fc3f15ae5a76a9e65595c8", + "tx_hash": "d2119d24b6bcf04967f1beff06372383e5fc165c0922cb6afaea3b4eec7369af", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8412,13 +8541,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726742946 + "block_time": 1726759252 }, { - "tx_hash": "630338ac26f1db216809652acb490bc36058561df42b4800c28e5064bc629a2f", + "tx_hash": "eb2d322022ee92e05714fc66c38fbba49afd84aff7e09e02bed07949b82db774", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8443,13 +8572,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726742942 + "block_time": 1726759248 }, { - "tx_hash": "57d2740c50e837621841a5b0066bb715616937700cddac4fe361a1af2340a27d", + "tx_hash": "d821ae1a09d7d0f9e47ee4c758904ebc33cea64d5204174026cef80a00e70938", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8474,7 +8603,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726742920 + "block_time": 1726759227 } ], "next_cursor": null, @@ -8488,8 +8617,8 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", - "address": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g" + "txid": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", + "address": "bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4" }, { "vout": 2, @@ -8497,8 +8626,8 @@ "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", - "address": "bcrt1qqqrd70rps4uzjnfwyd8n88d4h0ytlrf9hte2xs" + "txid": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9", + "address": "bcrt1qvdzn9pgnwhdszdnpayu7phnxfjnqt5ezmpuz3j" } ], "next_cursor": null, @@ -8507,28 +8636,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "2ff828784db699b93166c91bdc316c84bddfdb710a3c1d1f68665a7198728737" + "tx_hash": "312fbde68c58a1d25eabd4c01745601063d8392cb5a0921fb936cc89023f4a06" }, { - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d" + "tx_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106" }, { - "tx_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62" + "tx_hash": "4e88b4042628b7d9f55b444cab0a47fb3ca70fa7a8c02ae51daab7f1edb2360a" }, { - "tx_hash": "d87b786b54a63498e93c8c2782a91997eb80f69458ca2ffe70320eef27155f6a" + "tx_hash": "5a549be142e41682221fa380ebbd90acf1be772250a41d813a65aa54428b5a88" }, { - "tx_hash": "e4bcefdccfc18fddbc4afe4282d88bfa16c2de310ab0d2a3117b800f68102f7f" + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499" }, { - "tx_hash": "0ff3f932714ed8ad83d6224fc5f4a39d885cc607e1500bf3ec1838578ffc2cad" + "tx_hash": "4148a920e41c0e140a3076237e7371343daecd6c77f7619825ed27705b89b8a3" }, { - "tx_hash": "00199dce5d95beedbb99993b1c89f7a9d6b10e5fe571601ac03c7f5922de2ae2" + "tx_hash": "feb3856b69bde1f7612a91cac62772ea765964d9cb39723d9398e80b6c125da4" }, { - "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3" + "tx_hash": "6bd500714a76d0e0f57a68cf6330148dbe20d71d9f9d03a5cbf5ae9ae26d54b6" } ], "next_cursor": null, @@ -8536,8 +8665,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 9, - "tx_hash": "ca276a9e0fcccc10f25da14f88b9a9d1aaa1d9aa119e44716e66bdbf6fa97cc9" + "block_index": 8, + "tx_hash": "6a3d486a892578cac40859fab2191bdb8c13c7af0864bdec9c17ec40c17e3534" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -8548,20 +8677,20 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc" + "txid": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "03471f090214972585be853cbecc9e39fac76a6a16b870db8da0686a573abec4d3" + "result": "02bfcb850450d8d8e21ef6816c4a816932bf7f87fde3f5c93af0a2fdefa5569b61" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101090f8194f8c91a1d69cea412e0e0ee2a81bbeef1b1386738dcfca87c60c571de0300000000ffffffff020000000000000000226a2066219dcdea1454a56b714138ca78be964ca44c1cb07456da31c97a272364d074680b0a27010000001600144a5bd60b2d454cc549130f385b94d63db6269c02024730440220014095efb57789cc7f02e982530a3eeaed1c3e3fd7dd80590bdaf44c193f3f68022044a2ddffc13fe034cd51684e3fb39a5c090ae9631dc0735f38c68d298fb54a8c0121020cb277fa643a47f001fd66be1b219cd0a025338e3d793d3482eb2d1d81209c2c00000000" + "result": "02000000000101b80eb897e36937c7c0531738bdddde8de0692b9f2c29f14bc20429d95f7bd3750300000000ffffffff020000000000000000226a20e472c508fb60c3145b8ff8eebf91206c26b7a9d3669f3eefae09b13b8db36192680b0a2701000000160014eef93355f6ecdf9098a2d776fe6db68c709388ab0247304402202708cade14f9947efaca3d675719b0bc7dd4ed4136d59e558bd581847bd7111602205232a974956fb57d8d34a96d3bb7b0e2bea74da6d874aee15e9ecfae15a6d99201210213beb0e758eb62ab96ac405982eda8ca8a8434131f7342c218f6b6488d9fd04500000000" }, "/v2/bitcoin/estimatesmartfee": { - "result": 68517 + "result": 68455 }, "/v2/bitcoin/getmempoolinfo": { "result": { @@ -8581,26 +8710,26 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "tx_index": 60 } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "memo": null, "quantity": 10000, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "status": "valid", - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "tx_index": 60, "asset_info": { "divisible": true, @@ -8613,19 +8742,19 @@ } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "CREDIT", "params": { - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "event": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -8637,19 +8766,19 @@ } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 193, - "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "event": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -8661,27 +8790,27 @@ } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726743212.580398, + "block_time": 1726759503.0888908, "btc_amount": 0, - "data": "0200000000000000010000000000002710806a51cc766215db7e153afcd60bb43d6c1c61cff8", + "data": "020000000000000001000000000000271080f66c2fe4d178214c277858ba6ea2c347149d0974", "destination": "", "fee": 10000, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "tx_index": 60, - "utxos_info": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b:1", + "utxos_info": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "memo": null, "asset_info": { "divisible": true, @@ -8703,19 +8832,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "CREDIT", "params": { - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "event": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -8733,26 +8862,26 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "tx_index": 60 } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "destination": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "memo": null, "quantity": 10000, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "status": "valid", - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "tx_index": 60, "asset_info": { "divisible": true, @@ -8765,19 +8894,19 @@ } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "CREDIT", "params": { - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "event": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -8789,19 +8918,19 @@ } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 193, - "event": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "event": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -8813,27 +8942,27 @@ } }, { - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726743212.580398, + "block_time": 1726759503.0888908, "btc_amount": 0, - "data": "0200000000000000010000000000002710806a51cc766215db7e153afcd60bb43d6c1c61cff8", + "data": "020000000000000001000000000000271080f66c2fe4d178214c277858ba6ea2c347149d0974", "destination": "", "fee": 10000, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", - "tx_hash": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", + "tx_hash": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a", "tx_index": 60, - "utxos_info": "501f11ed3787fe8522f379bdd0bb61e6f1b761f6c8c038475f4bc71c25e77d8b:1", + "utxos_info": "472b061f5731ecb95eaecb42b5dd9990315905b934256aa85bd3b955dd53014a:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "memo": null, "asset_info": { "divisible": true, @@ -8868,15 +8997,15 @@ "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", "block_index": 193, - "block_time": 1726743198, + "block_time": 1726759498, "difficulty": 545259519, - "previous_block_hash": "370a6974137c94158fd0d478c2311289cc60cf39677697b5a316c3dd03ad2c50" + "previous_block_hash": "7f71d687e0d39c2280dffb1bc1b46d850a664a73ebe5a93584f0435c187aa470" }, "tx_hash": null, "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 } ], "next_cursor": 518, @@ -8888,17 +9017,17 @@ "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "3245f6b54998b417b5bef1f10799e2aefa8ce6cb6eae9873f3b696e6b2acbc86", + "block_hash": "61122db7cfa95a9c74002f16395d335cecf2f10e7e2d9bb12a913b1c11279aba", "block_index": 193, - "block_time": 1726743198, + "block_time": 1726759498, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "tx_index": 59, - "utxos_info": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7:1", + "utxos_info": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8918,9 +9047,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 } ], "next_cursor": 519, @@ -8934,16 +9063,16 @@ "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "destination": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "out_index": 0, - "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "tx_hash": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", "tx_index": 33, - "block_time": 1726743009, + "block_time": 1726759315, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "tx_hash": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", "block_index": 146, - "block_time": 1726743009 + "block_time": 1726759315 } ], "next_cursor": 237, @@ -8956,15 +9085,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "c98d9219740771cd82ec469372c2a3fb761f1f04060e9a989a81799a62529589", - "messages_hash": "7c1fdf186bfa5a7ca8bbfa5e39fff7a75fbc51abec09d7352e5f25e25e45707c", + "ledger_hash": "d780942d01b58e13071c1994b611b6f67c8b6644f5c3fcd20aa9fdf899dc8224", + "messages_hash": "a234caace5f00f4aeb2098f24859f045a43954bd6e6daaef09d01baa70e16884", "transaction_count": 1, - "txlist_hash": "76e3343e76807139efcd72e2d027a231f6002a493ee1f0e22f9a9a15bdf0ad60", - "block_time": 1726743198 + "txlist_hash": "baa06d9619fa0e75b227f944f0efc483c0198619ddd6ebdd4484b50dba4402ea", + "block_time": 1726759498 }, "tx_hash": null, "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 } ], "next_cursor": 529, @@ -8977,12 +9106,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "tx_index": 59 }, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 } ], "next_cursor": 528, @@ -8995,15 +9124,15 @@ "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 193, - "event": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "event": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -9013,9 +9142,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 } ], "next_cursor": 525, @@ -9027,16 +9156,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "address": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "event": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726743194, + "block_time": 1726759495, "asset_info": { "divisible": true, "asset_longname": null, @@ -9046,9 +9175,9 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 } ], "next_cursor": 524, @@ -9062,14 +9191,14 @@ "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "memo": null, "quantity": 10000, - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "status": "valid", - "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3", + "tx_hash": "4e88b4042628b7d9f55b444cab0a47fb3ca70fa7a8c02ae51daab7f1edb2360a", "tx_index": 53, - "block_time": 1726743172, + "block_time": 1726759474, "asset_info": { "divisible": true, "asset_longname": null, @@ -9079,9 +9208,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "977fdc68698a3d43ee3dea83fc000c35643e5e9be3181915a183998f465488f3", + "tx_hash": "4e88b4042628b7d9f55b444cab0a47fb3ca70fa7a8c02ae51daab7f1edb2360a", "block_index": 187, - "block_time": 1726743172 + "block_time": 1726759474 } ], "next_cursor": null, @@ -9095,15 +9224,15 @@ "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "destination": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "status": "valid", - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "tx_index": 54, - "block_time": 1726743177, + "block_time": 1726759478, "asset_info": { "divisible": true, "asset_longname": null, @@ -9113,9 +9242,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1431fea4569c797143584aa9d01147d327fb78ab15905fe151d472c74d7c7926", + "tx_hash": "b75cd31f3d69131c4f9498699106ca339e99adb8363a8bf71ab06ac766fca354", "block_index": 188, - "block_time": 1726743177 + "block_time": 1726759478 } ], "next_cursor": 495, @@ -9138,20 +9267,20 @@ "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "destination": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "source": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "status": "valid", - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "tx_index": 58, - "block_time": 1726743194, + "block_time": 1726759495, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "fdbff5612b635c6c65916314923732f0612facea062ed6d629c050b755bbe13d", + "tx_hash": "09cd11278e570a2304b0b968afe1b3cbfcad8cd5efe00abc3d3d40b366252499", "block_index": 192, - "block_time": 1726743194 + "block_time": 1726759495 } ], "next_cursor": null, @@ -9168,15 +9297,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "status": "valid", - "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", + "tx_hash": "a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df", "tx_index": 40, - "block_time": 1726743039, + "block_time": 1726759345, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, @@ -9190,9 +9319,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "a37b34715637644d0877a85c19a4b9942c9039d3e5a9cd9a4f4e80ff7e029bdc", + "tx_hash": "a8510232620b58ca0a3c1a7d25a0a43db39835d4f72d2e6a96039b9ef7eac5df", "block_index": 153, - "block_time": 1726743039 + "block_time": 1726759345 } ], "next_cursor": null, @@ -9213,11 +9342,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 159, - "block_time": 1726743075 + "block_time": 1726759371 }, - "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", + "tx_hash": "87ca606c50f4b00fd77a11909134e01944eabcc4d7abf7a72e3a348c6647c2de", "block_index": 159, - "block_time": 1726743075 + "block_time": 1726759371 } ], "next_cursor": 367, @@ -9240,22 +9369,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "status": "valid", "transfer": false, - "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", + "tx_hash": "87ca606c50f4b00fd77a11909134e01944eabcc4d7abf7a72e3a348c6647c2de", "tx_index": 46, - "block_time": 1726743075, + "block_time": 1726759371, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "59087472a9dba0ff7986240622bc6702c62afd2af9db780d12fae2d13138bb9a", + "tx_hash": "87ca606c50f4b00fd77a11909134e01944eabcc4d7abf7a72e3a348c6647c2de", "block_index": 159, - "block_time": 1726743075 + "block_time": 1726759371 } ], "next_cursor": 374, @@ -9270,12 +9399,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qffdavzedg4xv2jgnpuu9h9xk8kmzd8qzzcdvmj", + "source": "bcrt1qamunx40kan0epx9z6am0umdk33cf8z9t3yxmtr", "status": "valid", "tag": "64657374726f79", - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "tx_index": 59, - "block_time": 1726743198, + "block_time": 1726759498, "asset_info": { "divisible": true, "asset_longname": null, @@ -9285,9 +9414,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "086230a177a7d77ecb0ff13192f0722231085f22d0a8717ab10da5ca0bab5ab7", + "tx_hash": "baac647b8c5409d87ea42f54dcf59bc792e5e549e50369322d9510e170e607ba", "block_index": 193, - "block_time": 1726743198 + "block_time": 1726759498 } ], "next_cursor": 157, @@ -9312,11 +9441,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "status": "open", - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "tx_index": 57, - "block_time": 1726743189, + "block_time": 1726759491, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9340,9 +9469,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "d3a3f6430e1f19e4f7f3ca8a4ddc93734757de091fa4c2bb081f4165eabd8e6b", + "tx_hash": "056dc9708a42949c8a92b95be5062d3d0e645fdcafb3c7fe56234f2acf48728b", "block_index": 191, - "block_time": 1726743189 + "block_time": 1726759491 } ], "next_cursor": 502, @@ -9360,20 +9489,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5", + "tx0_hash": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32", "tx0_index": 49, - "tx1_address": "bcrt1qdfgucanzzhdhu9f6lntqhdpadswxrnlctrx33v", + "tx1_address": "bcrt1q7ekzlex30qs5cfmctzaxagkrgu2f6zt57jw6qe", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "tx1_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "tx1_index": 52, - "block_time": 1726743168, + "block_time": 1726759470, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9392,9 +9521,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "b87671c8be72b818e672b61defbaa1252f44f4925b406fc430fc0cb87cbe5e62", + "tx_hash": "6bd98c8ff38c1c1003bf7a5e6bdbf4bd8e4df53513a3dfc04d8bff9792a79106", "block_index": 186, - "block_time": 1726743168 + "block_time": 1726759470 } ], "next_cursor": 461, @@ -9407,11 +9536,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba" + "tx_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443" }, - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "block_index": 190, - "block_time": 1726743185 + "block_time": 1726759487 } ], "next_cursor": 476, @@ -9424,11 +9553,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e" + "tx_hash": "6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930" }, - "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", + "tx_hash": "6ad8f1852d7ca2a53bafbd139d7502bc30e8593922cefd54f9494a23fc3d9463", "block_index": 185, - "block_time": 1726743164 + "block_time": 1726759465 } ], "next_cursor": null, @@ -9440,13 +9569,13 @@ "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", - "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", + "id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", + "order_match_id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", "status": "completed" }, - "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", + "tx_hash": "6ad8f1852d7ca2a53bafbd139d7502bc30e8593922cefd54f9494a23fc3d9463", "block_index": 185, - "block_time": 1726743164 + "block_time": 1726759465 } ], "next_cursor": 440, @@ -9460,18 +9589,18 @@ "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "order_match_id": "df69f8d0ca6b84dbcc9168f1093c37c72e87dba81acb06fca5d07f7a33c6f5a5_8b3c60d1aca3fe52f166f2ff3c3d3d4d4af07b854daa7e808980dd450d2b9f2e", - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "destination": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "order_match_id": "2d7921b732b03ce166a791715779c8997615313abf08e53fb7760015b2e6ab32_6dc80c940f08eee0d4c943be91f45b3c09303469d35109769612cb3f676c3930", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "status": "valid", - "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", + "tx_hash": "6ad8f1852d7ca2a53bafbd139d7502bc30e8593922cefd54f9494a23fc3d9463", "tx_index": 51, - "block_time": 1726743164, + "block_time": 1726759465, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "269749fe9500db71a35921b2ff571dad1578ea832d9e04b84615836842dc649a", + "tx_hash": "6ad8f1852d7ca2a53bafbd139d7502bc30e8593922cefd54f9494a23fc3d9463", "block_index": 185, - "block_time": 1726743164 + "block_time": 1726759465 } ], "next_cursor": null, @@ -9484,16 +9613,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "d06666ecdac4b33ddf47219e00297ad761e48db10b48b3779fa61d9c373f3bba", - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "offer_hash": "9939cd8b9a71d0c99125ff39babecb2833e4a2ed6223af186b221758f8837443", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "status": "valid", - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "tx_index": 56, - "block_time": 1726743185 + "block_time": 1726759487 }, - "tx_hash": "b7cd52d51d25249446d0ee80430362f78252c1c865a75f321e9cbd7a9fb4ffe7", + "tx_hash": "828efd4c8d10cbd023f645da452296bb262af9ccde77c83641c7e3d43d4667a9", "block_index": 190, - "block_time": 1726743185 + "block_time": 1726759487 } ], "next_cursor": null, @@ -9506,13 +9635,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "block_time": 1726743090 + "order_hash": "313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "block_time": 1726759387 }, "tx_hash": null, "block_index": 182, - "block_time": 1726743090 + "block_time": 1726759387 } ], "next_cursor": 446, @@ -9525,14 +9654,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "67c9a887b978f49a8d51f7625735f0aadf81c18b531e49734bb1e5d5d6fadab6_d173c38c2fedff547dbe3246a950f481e68bcf01ee7afdd4360b1c0b7640f616", - "tx0_address": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "tx1_address": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", - "block_time": 1726743090 + "order_match_id": "1eb26df6f41cf3cdf478c8c7c12f81b46fa0620ecf5280e37358de0e0273c74f_313d3dffefca01303c25defad13ad42dab46a1fc40cb8a427165518cbc32708c", + "tx0_address": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "tx1_address": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", + "block_time": 1726759387 }, "tx_hash": null, "block_index": 182, - "block_time": 1726743090 + "block_time": 1726759387 } ], "next_cursor": null, @@ -9550,14 +9679,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", - "origin": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "oracle_address": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", + "origin": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "satoshirate": 1, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "status": 0, - "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", "tx_index": 32, - "block_time": 1726743004, + "block_time": 1726759311, "asset_info": { "divisible": true, "asset_longname": null, @@ -9570,9 +9699,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", "block_index": 145, - "block_time": 1726743004 + "block_time": 1726759311 } ], "next_cursor": 254, @@ -9587,9 +9716,9 @@ "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "status": 0, - "tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", + "tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", "asset_info": { "divisible": true, "asset_longname": null, @@ -9599,9 +9728,9 @@ }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "tx_hash": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", "block_index": 146, - "block_time": 1726743009 + "block_time": 1726759315 } ], "next_cursor": 260, @@ -9615,13 +9744,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mv4u3AwUQLhBtZSeqKQQ4En5zjMMhPVAV2", + "destination": "mjrt8gpVz2Q2WB7jttGXRx1suKE5xLhpG8", "dispense_quantity": 10, - "dispenser_tx_hash": "c46184752a6659d44df21150126f56adb03c6d6c8c9aad39f091e0d86bcb1147", - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", - "tx_hash": "9798f9cfd72e95f6e239fc93bec2216bae9623155fff3be184ac3dac823863b1", + "dispenser_tx_hash": "a0423cc553293cdeb28e5b41a51851e2d790f3f07a46cfb825347c10dfd41d8b", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", + "tx_hash": "f392140bea1580a9cfd92af22a5ee3746e422c5e9ca9cc37aebed449c87c85fc", "tx_index": 31, - "block_time": 1726743000, + "block_time": 1726759307, "asset_info": { "divisible": true, "asset_longname": null, @@ -9631,9 +9760,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "9798f9cfd72e95f6e239fc93bec2216bae9623155fff3be184ac3dac823863b1", + "tx_hash": "f392140bea1580a9cfd92af22a5ee3746e422c5e9ca9cc37aebed449c87c85fc", "block_index": 144, - "block_time": 1726743000 + "block_time": 1726759307 } ], "next_cursor": null, @@ -9648,14 +9777,14 @@ "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qqn4xr7c46uv6ak8ru8cd0va4fe2sneyq63223g", + "destination": "bcrt1qsqfq7wrh6hzk5fszyegjf2qpt35szhkqcvg5y4", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "6beddb3ca6fde46e22e402611e64897b4d996bd8e0443b73ca2327110a650892", - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", - "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "dispenser_tx_hash": "0a0b0b59e4182b9904a3342504b4ec4ceda6bb6163243fc3de0792e3ae741771", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", + "tx_hash": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", "tx_index": 33, - "block_time": 1726743009, + "block_time": 1726759315, "asset_info": { "divisible": true, "asset_longname": null, @@ -9666,9 +9795,9 @@ "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "452aba1d9cc79ceed819c88f8e946ca9cead4a3d789fb94e867f8ed4a3af2cdc", + "tx_hash": "57c94c105fa926c5988be7e13c20609bced71807bcd91e5163ce50674e5d37d5", "block_index": 146, - "block_time": 1726743009 + "block_time": 1726759315 } ], "next_cursor": 240, @@ -9683,19 +9812,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qq2akp28mp4rrxc5jys3whrk85j6h7tez8z60h4", + "source": "bcrt1qel579fpr7kw7yvm7n0qycv6cd9fuhewl09e825", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20", + "tx_hash": "c4b5d1cc8a00925e3c15d44bd0c988531a54057711a7e63f686f5a8af06bb36d", "tx_index": 25, "value": 66600.0, - "block_time": 1726742975, + "block_time": 1726759281, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "a619400824e7539bc073f75d595518cc404f0972690c002ebf78a00f3f729a20", + "tx_hash": "c4b5d1cc8a00925e3c15d44bd0c988531a54057711a7e63f686f5a8af06bb36d", "block_index": 138, - "block_time": 1726742975 + "block_time": 1726759281 } ], "next_cursor": 213, @@ -9726,16 +9855,16 @@ "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "start_block": 0, "status": "open", - "tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", + "tx_hash": "706b65e31c4a34249d77e4307108e81d97fb7dd30b3ec327ffb4a6939ed4ef10", "tx_index": 22, - "block_time": 1726742962 + "block_time": 1726759269 }, - "tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", + "tx_hash": "706b65e31c4a34249d77e4307108e81d97fb7dd30b3ec327ffb4a6939ed4ef10", "block_index": 135, - "block_time": 1726742962 + "block_time": 1726759269 } ], "next_cursor": 161, @@ -9748,11 +9877,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "630338ac26f1db216809652acb490bc36058561df42b4800c28e5064bc629a2f" + "tx_hash": "eb2d322022ee92e05714fc66c38fbba49afd84aff7e09e02bed07949b82db774" }, "tx_hash": null, "block_index": 130, - "block_time": 1726742942 + "block_time": 1726759248 } ], "next_cursor": 110, @@ -9768,24 +9897,24 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "08b31db1b9bdc59268bce076aa2401737de5eef8162e4d2027927cbcc0b719df", + "fairminter_tx_hash": "706b65e31c4a34249d77e4307108e81d97fb7dd30b3ec327ffb4a6939ed4ef10", "paid_quantity": 34, - "source": "bcrt1q8p49hd69kxagf4v48dm5qezha9q4wp9px2em0a", + "source": "bcrt1q5hmafmztr9wrj60wtfcygh9t4jdtyswn5pdsgp", "status": "valid", - "tx_hash": "7b33dfa114bb715eb9f145b2f1bbaaaef414b6b4a96bb8c6eaeb491bb5acbb6d", + "tx_hash": "7947145d9d0d16c88da9eca3487a8547f6b6002699b0195c0053923fd5a5ec4b", "tx_index": 23, - "block_time": 1726742966, + "block_time": 1726759274, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false } }, - "tx_hash": "7b33dfa114bb715eb9f145b2f1bbaaaef414b6b4a96bb8c6eaeb491bb5acbb6d", + "tx_hash": "7947145d9d0d16c88da9eca3487a8547f6b6002699b0195c0053923fd5a5ec4b", "block_index": 136, - "block_time": 1726742966 + "block_time": 1726759274 } ], "next_cursor": 190, @@ -9799,28 +9928,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d:1", + "destination": "708bb60e43e813d8ca4ae1998572a856c532536a25a94adbc814428887dcb678:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "source": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "status": "valid", - "tx_hash": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", + "tx_hash": "708bb60e43e813d8ca4ae1998572a856c532536a25a94adbc814428887dcb678", "tx_index": 38, - "block_time": 1726743030, + "block_time": 1726759337, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "fe3c9c397b1f9962f15ff83488a2aba708be78d99bd6a87abf88944b739ff38d", + "tx_hash": "708bb60e43e813d8ca4ae1998572a856c532536a25a94adbc814428887dcb678", "block_index": 151, - "block_time": 1726743030 + "block_time": 1726759337 } ], "next_cursor": 291, @@ -9834,28 +9963,28 @@ "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qnjaupzaade799zszwvpnzmfzez34jtxz36jee3", + "destination": "bcrt1qat5k09kmzy7qlhd3qyrysmz5skknuy9y2xwsrr", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "2ff828784db699b93166c91bdc316c84bddfdb710a3c1d1f68665a7198728737:0", + "source": "feb3856b69bde1f7612a91cac62772ea765964d9cb39723d9398e80b6c125da4:0", "status": "valid", - "tx_hash": "de71c5607ca8fcdc386738b1f1eebb812aeee0e012a4ce691d1ac9f894810f09", + "tx_hash": "75d37b5fd92904c24bf1292c9f2b69e08ddeddbd381753c0c73769e397b80eb8", "tx_index": 37, - "block_time": 1726743026, + "block_time": 1726759332, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5kxz068v6sg0dpyt027hufhn2k7wzhwcm94pxk", + "issuer": "bcrt1q3vrfecled0axpl94wpw7mg7sr80rcmskqnyppl", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "de71c5607ca8fcdc386738b1f1eebb812aeee0e012a4ce691d1ac9f894810f09", + "tx_hash": "75d37b5fd92904c24bf1292c9f2b69e08ddeddbd381753c0c73769e397b80eb8", "block_index": 150, - "block_time": 1726743026 + "block_time": 1726759332 } ], "next_cursor": null, @@ -9869,14 +9998,14 @@ "params": { "asset": "XCP", "block_index": 155, - "destination": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220:1", + "destination": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9:1", "msg_index": 1, "quantity": 1500000000, - "source": "f525e470f1af1a47c0a67afe779935bf7cc0c1ae7df9953b1634d888b1d1bc1a:0", + "source": "39bd27ee5737e42422d26d899ae6bc07f2929f4eaef5eb993047290e247a385c:0", "status": "valid", - "tx_hash": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", + "tx_hash": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9", "tx_index": 42, - "block_time": 1726743048, + "block_time": 1726759354, "asset_info": { "divisible": true, "asset_longname": null, @@ -9886,9 +10015,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "28c01da1e99442d96c12b22a49d82615db304af8aa1800624930e9322d9d8220", + "tx_hash": "05fde6663cf22eddcb81d9b6459d3eb1a8c320a3ed0112da2436b330b1a6e7d9", "block_index": 155, - "block_time": 1726743048 + "block_time": 1726759354 } ], "next_cursor": 346, @@ -9903,17 +10032,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qsvdraccy4y6g937r7kzwjttq6j7htuuzvuzcpx", + "source": "bcrt1qyd2lpsyqnwusjevzc2d6cs835xwyt3cyztaek2", "status": "valid", - "tx_hash": "8cb6afe98c6fd78fe63d3400ff07363c80671a5aa675d073676e7be684d2d8a7", + "tx_hash": "edc9e270e42ffd60a6524c60aa99d6fc47820a1305a15c399022256a40930336", "tx_index": 9, - "block_time": 1726742903, + "block_time": 1726759210, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "8cb6afe98c6fd78fe63d3400ff07363c80671a5aa675d073676e7be684d2d8a7", + "tx_hash": "edc9e270e42ffd60a6524c60aa99d6fc47820a1305a15c399022256a40930336", "block_index": 121, - "block_time": 1726742903 + "block_time": 1726759210 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index fa1a29af92..f1eef73f66 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -117,7 +117,7 @@ def send_transaction( else: raise e print(f"Transaction sent: {tx_name} {params} ({tx_hash})") - return tx_hash, block_hash, block_time + return tx_hash, block_hash, block_time, result["result"]["data"] def wait_for_counterparty_server(self, block=None): while True: diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py index 512c32999f..1ce9067f32 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py @@ -68,7 +68,7 @@ "url": "transactions/$TX_HASH/info", "result": { "btc_amount": 0, - "data": "0200000000000000010000000000002710809668fa89c3fb02c8b7a891003a3773f6eed4a656", + "data": "$TX_DATA", "decoded_tx": { "coinbase": False, "lock_time": 0, diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index d4c7f8d515..9dd2de3ecd 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -78,7 +78,7 @@ def prepare_item(item, node, context): return item -def control_result(item, node, context, block_hash, block_time, tx_hash, retry=0): +def control_result(item, node, context, block_hash, block_time, tx_hash, data, retry=0): block_index = node.block_count events = node.api_call(f"blocks/{block_index}/events")["result"] event_indexes = sorted([event["event_index"] for event in events]) @@ -99,7 +99,7 @@ def control_result(item, node, context, block_hash, block_time, tx_hash, retry=0 ): time.sleep(2) return control_result( - item, node, context, block_hash, block_time, tx_hash, retry=retry + 1 + item, node, context, block_hash, block_time, tx_hash, data, retry=retry + 1 ) expected_result = control["result"] @@ -111,6 +111,8 @@ def control_result(item, node, context, block_hash, block_time, tx_hash, retry=0 .replace('"$TX_INDEX"', str(node.tx_index)) .replace('"$BLOCK_TIME"', str(block_time)) ) + if data: + expected_result = expected_result.replace("$TX_DATA", data[16:]) # strip the prefix for i in reversed(range(len(event_indexes))): event_index = event_indexes[i] expected_result = expected_result.replace(f'"$EVENT_INDEX_{i + 1}"', str(event_index)) @@ -122,6 +124,7 @@ def control_result(item, node, context, block_hash, block_time, tx_hash, retry=0 expected_result = expected_result.replace(f'"${name}"', value) else: expected_result = expected_result.replace(f"${name}", value) + # print(f"Expected result: {expected_result}") expected_result = json.loads(expected_result) if isinstance(expected_result, dict) and "decoded_tx" in expected_result: @@ -146,6 +149,7 @@ def control_result(item, node, context, block_hash, block_time, tx_hash, retry=0 def run_item(node, item, context): print(f"Running: {item['title']}") + tx_data = None if "disable_protocol_changes" in item: node.disable_protocol_changes(item["disable_protocol_changes"]) @@ -178,7 +182,7 @@ def run_item(node, item, context): ) tx_hash, block_hash, block_time = node.broadcast_transaction(signed_transaction) else: - tx_hash, block_hash, block_time = node.send_transaction( + tx_hash, block_hash, block_time, tx_data = node.send_transaction( item["source"], item["transaction"], item["params"], @@ -215,7 +219,7 @@ def run_item(node, item, context): ) if "controls" in item: - control_result(item, node, context, block_hash, block_time, tx_hash) + control_result(item, node, context, block_hash, block_time, tx_hash, tx_data) return context diff --git a/counterparty-core/tools/compareledger.py b/counterparty-core/tools/compareledger.py index 0a1e3539a8..bc82984aaf 100644 --- a/counterparty-core/tools/compareledger.py +++ b/counterparty-core/tools/compareledger.py @@ -149,7 +149,7 @@ def get_last_block(database_file_1, database_file_2): database_file_1 = sys.argv[1] database_file_2 = sys.argv[2] -LAST_BLOCK = 700000 +LAST_BLOCK = 650000 # compare_ledger(database_file_1, database_file_2) check_hashes(database_file_1, database_file_2, "ledger_hash") # get_checkpoints(database_file_1) From ddce54179ef2f0f6f44069d21f112a6e335c4e79 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 18 Sep 2024 15:15:09 +0000 Subject: [PATCH 17/46] support and document 'custom_inputs' parameter --- .../counterpartycore/lib/transaction.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index 73ec26d68c..8ba3ba3528 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -1120,6 +1120,11 @@ def get_dust_return_pubkey(source, provided_pubkeys, encoding): False, "Return only the data part of the transaction", ), + "custom_inputs": ( + str, + "", + "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + ), } @@ -1188,6 +1193,19 @@ def compose_transaction( else: raise exceptions.TransactionError("Invalid pubkey.") + if isinstance(custom_inputs, str): + new_custom_inputs = [] + for str_input in custom_inputs.split(","): + if not util.is_utxo_format(str_input): + raise exceptions.ComposeError(f"invalid UTXO: {str_input}") + new_custom_inputs.append( + { + "txid": str_input.split(":")[0], + "vout": int(str_input.split(":")[1]), + } + ) + custom_inputs = new_custom_inputs + # Get additional pubkeys from `source` and `destination` params. # Convert `source` and `destination` to pubkeyhash form. for address_name in ["source", "destination"]: From 331bf6d32f9316abff7e2ab3bde8fe1f5e294954 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 19 Sep 2024 19:34:03 +0000 Subject: [PATCH 18/46] Rename 'custom_inputs' to 'input_set'; fixes --- apiary.apib | 3446 +++++++++-------- .../counterpartycore/lib/backend/bitcoind.py | 5 + .../counterpartycore/lib/transaction.py | 54 +- .../test/fixtures/api_v2_fixtures.json | 162 +- .../counterpartycore/test/fixtures/vectors.py | 4 +- .../test/regtest/apidoc/apicache.json | 2972 +++++++------- .../counterpartycore/test/utxolocks_test.py | 10 +- 7 files changed, 3415 insertions(+), 3238 deletions(-) diff --git a/apiary.apib b/apiary.apib index 187effe965..4fd74dc9b9 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-09-16 18:05:36.857735. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-09-19 19:30:10.387027. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -179,15 +179,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", "block_index": 193, - "block_time": 1726509912, + "block_time": 1726774194, "difficulty": 545259519, - "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e" + "previous_block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d" }, "tx_hash": null, "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 } ], "next_cursor": 518, @@ -204,17 +204,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", "block_index": 193, - "block_time": 1726509912, + "block_time": 1726774194, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "tx_index": 59, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -234,9 +234,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 } ], "next_cursor": 519, @@ -255,16 +255,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "destination": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "out_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", "tx_index": 33, - "block_time": 1726509701, + "block_time": 1726773999, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", "block_index": 146, - "block_time": 1726509701 + "block_time": 1726773999 } ], "next_cursor": 237, @@ -282,15 +282,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", + "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", "transaction_count": 1, - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "block_time": 1726509912 + "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", + "block_time": 1726774194 }, "tx_hash": null, "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 } ], "next_cursor": 529, @@ -308,12 +308,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "tx_index": 59 }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 } ], "next_cursor": 528, @@ -333,15 +333,15 @@ Here is a list of events classified by theme and for each an example response: "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 193, - "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "event": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -351,9 +351,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 } ], "next_cursor": 525, @@ -370,16 +370,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -389,9 +389,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 } ], "next_cursor": 524, @@ -410,14 +410,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "memo": null, "quantity": 10000, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "status": "valid", - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03", + "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5", "tx_index": 53, - "block_time": 1726509886, + "block_time": 1726774169, "asset_info": { "divisible": true, "asset_longname": null, @@ -427,9 +427,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03", + "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5", "block_index": 187, - "block_time": 1726509886 + "block_time": 1726774169 } ], "next_cursor": null, @@ -448,15 +448,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "status": "valid", - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "tx_index": 54, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "divisible": true, "asset_longname": null, @@ -466,9 +466,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "block_time": 1726509890 + "block_time": 1726774173 } ], "next_cursor": 495, @@ -506,20 +506,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "status": "valid", - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, - "block_time": 1726509908, + "block_time": 1726774190, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 } ], "next_cursor": null, @@ -541,15 +541,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": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "status": "valid", - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", "tx_index": 40, - "block_time": 1726509732, + "block_time": 1726774028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -563,9 +563,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": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", "block_index": 153, - "block_time": 1726509732 + "block_time": 1726774028 } ], "next_cursor": null, @@ -598,11 +598,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": 159, - "block_time": 1726509780 + "block_time": 1726774063 }, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", "block_index": 159, - "block_time": 1726509780 + "block_time": 1726774063 } ], "next_cursor": 367, @@ -630,22 +630,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": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "status": "valid", "transfer": false, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", "tx_index": 46, - "block_time": 1726509780, + "block_time": 1726774063, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", "block_index": 159, - "block_time": 1726509780 + "block_time": 1726774063 } ], "next_cursor": 374, @@ -665,12 +665,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "status": "valid", "tag": "64657374726f79", - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "tx_index": 59, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -680,9 +680,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 } ], "next_cursor": 157, @@ -714,11 +714,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": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "status": "open", - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "tx_index": 57, - "block_time": 1726509903, + "block_time": 1726774186, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -742,9 +742,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": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "block_time": 1726509903 + "block_time": 1726774186 } ], "next_cursor": 502, @@ -767,20 +767,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": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", "tx0_index": 49, - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "tx1_index": 52, - "block_time": 1726509871, + "block_time": 1726774164, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -799,9 +799,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": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "block_index": 186, - "block_time": 1726509871 + "block_time": 1726774164 } ], "next_cursor": 461, @@ -819,11 +819,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2" + "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e" }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726774182 } ], "next_cursor": 476, @@ -841,11 +841,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a" + "tx_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f" }, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", "block_index": 185, - "block_time": 1726509867 + "block_time": 1726774160 } ], "next_cursor": null, @@ -862,13 +862,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "status": "completed" }, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", "block_index": 185, - "block_time": 1726509867 + "block_time": 1726774160 } ], "next_cursor": 440, @@ -887,18 +887,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "status": "valid", - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", "tx_index": 51, - "block_time": 1726509867, + "block_time": 1726774160, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", "block_index": 185, - "block_time": 1726509867 + "block_time": 1726774160 } ], "next_cursor": null, @@ -916,16 +916,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "status": "valid", - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "tx_index": 56, - "block_time": 1726509899 + "block_time": 1726774182 }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726774182 } ], "next_cursor": null, @@ -943,13 +943,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "block_time": 1726509796 + "order_hash": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "block_time": 1726774079 }, "tx_hash": null, "block_index": 182, - "block_time": 1726509796 + "block_time": 1726774079 } ], "next_cursor": 446, @@ -967,14 +967,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "block_time": 1726509796 + "order_match_id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "block_time": 1726774079 }, "tx_hash": null, "block_index": 182, - "block_time": 1726509796 + "block_time": 1726774079 } ], "next_cursor": null, @@ -999,14 +999,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": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "satoshirate": 1, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "status": 0, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", "tx_index": 32, - "block_time": 1726509697, + "block_time": 1726773995, "asset_info": { "divisible": true, "asset_longname": null, @@ -1019,9 +1019,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": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", "block_index": 145, - "block_time": 1726509697 + "block_time": 1726773995 } ], "next_cursor": 254, @@ -1041,9 +1041,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "status": 0, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", "asset_info": { "divisible": true, "asset_longname": null, @@ -1053,9 +1053,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", "block_index": 146, - "block_time": 1726509701 + "block_time": 1726773999 } ], "next_cursor": 260, @@ -1074,13 +1074,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mnLwb4LAYvLe6gesyGs1d34NnRaSRpScfq", + "destination": "mnMNuY8rdFkTAqCBgrNvdm4pYk5Emb6kRP", "dispense_quantity": 10, - "dispenser_tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "tx_hash": "962792bfe558b1042295417f1b88d03dfa7547cb82ab870bbd57854561acf3b5", + "dispenser_tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx_hash": "03a5ab84754e8fde5c6f7f3e14c6a0f69339979e800a1e7fa16f82baa3cf62d7", "tx_index": 31, - "block_time": 1726509693, + "block_time": 1726773991, "asset_info": { "divisible": true, "asset_longname": null, @@ -1090,9 +1090,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "962792bfe558b1042295417f1b88d03dfa7547cb82ab870bbd57854561acf3b5", + "tx_hash": "03a5ab84754e8fde5c6f7f3e14c6a0f69339979e800a1e7fa16f82baa3cf62d7", "block_index": 144, - "block_time": 1726509693 + "block_time": 1726773991 } ], "next_cursor": null, @@ -1112,14 +1112,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", "tx_index": 33, - "block_time": 1726509701, + "block_time": 1726773999, "asset_info": { "divisible": true, "asset_longname": null, @@ -1130,9 +1130,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", "block_index": 146, - "block_time": 1726509701 + "block_time": 1726773999 } ], "next_cursor": 240, @@ -1154,19 +1154,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": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a", + "tx_hash": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c", "tx_index": 25, "value": 66600.0, - "block_time": 1726509656, + "block_time": 1726773966, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a", + "tx_hash": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c", "block_index": 138, - "block_time": 1726509656 + "block_time": 1726773966 } ], "next_cursor": 213, @@ -1204,16 +1204,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "start_block": 0, "status": "open", - "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", "tx_index": 22, - "block_time": 1726509644 + "block_time": 1726773953 }, - "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", "block_index": 135, - "block_time": 1726509644 + "block_time": 1726773953 } ], "next_cursor": 161, @@ -1231,11 +1231,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16" + "tx_hash": "8bf6a822f10cccc625da7811b776e108fadf45d1b9255b1ab005583ec7c9df68" }, "tx_hash": null, "block_index": 130, - "block_time": 1726509613 + "block_time": 1726773912 } ], "next_cursor": 110, @@ -1256,24 +1256,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "fairminter_tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", "paid_quantity": 34, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "status": "valid", - "tx_hash": "a899b1a361e0514262442a4a300d7571606a3462d50819092e649c490fbcb1e6", + "tx_hash": "ed4ea8c5e199862917e614d38a53e76af1da07f9c981ba9c4c961244f169fea7", "tx_index": 23, - "block_time": 1726509648, + "block_time": 1726773957, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } }, - "tx_hash": "a899b1a361e0514262442a4a300d7571606a3462d50819092e649c490fbcb1e6", + "tx_hash": "ed4ea8c5e199862917e614d38a53e76af1da07f9c981ba9c4c961244f169fea7", "block_index": 136, - "block_time": 1726509648 + "block_time": 1726773957 } ], "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": 151, - "destination": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1", + "destination": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "status": "valid", - "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "tx_hash": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", "tx_index": 38, - "block_time": 1726509724, + "block_time": 1726774019, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "tx_hash": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", "block_index": 151, - "block_time": 1726509724 + "block_time": 1726774019 } ], "next_cursor": 291, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0", + "destination": "bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88:0", + "source": "67db055172fd889ca6fa9cc47fa2ab086efcdc03871cefc9a0e6833aa2cffadc:0", "status": "valid", - "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba", + "tx_hash": "1cfb953bd23a5d5edaeccfd49b0528b6597e10acdd7f9956bc3ea49468400cfd", "tx_index": 37, - "block_time": 1726509719, + "block_time": 1726774015, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba", + "tx_hash": "1cfb953bd23a5d5edaeccfd49b0528b6597e10acdd7f9956bc3ea49468400cfd", "block_index": 150, - "block_time": 1726509719 + "block_time": 1726774015 } ], "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": 155, - "destination": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1", + "destination": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4:1", "msg_index": 1, "quantity": 1500000000, - "source": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0", + "source": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f:0", "status": "valid", - "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", "tx_index": 42, - "block_time": 1726509741, + "block_time": 1726774036, "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": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", "block_index": 155, - "block_time": 1726509741 + "block_time": 1726774036 } ], "next_cursor": 346, @@ -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": "bcrt1qyzyw25seaw22494hrmtlwsm3d5mqyp93fd25da", + "source": "bcrt1qx026kexytkv73h2sucljqxmu6dz8q5qsfvp3mw", "status": "valid", - "tx_hash": "2504c4bdafa1c2cab23605685e6a8040748f7d6df91f857b42f1cb259d3a91e0", + "tx_hash": "b7f0dde4bbad6994cc0193c8774206f9809c5f83989c87a66b294ca6afb2a852", "tx_index": 9, - "block_time": 1726509573, + "block_time": 1726773875, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "2504c4bdafa1c2cab23605685e6a8040748f7d6df91f857b42f1cb259d3a91e0", + "tx_hash": "b7f0dde4bbad6994cc0193c8774206f9809c5f83989c87a66b294ca6afb2a852", "block_index": 121, - "block_time": 1726509573 + "block_time": 1726773875 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_time": 1726774194, + "previous_block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", "difficulty": 545259519, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", + "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", + "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", - "block_time": 1726509908, - "previous_block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", + "block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", + "block_time": 1726774190, + "previous_block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", "difficulty": 545259519, - "ledger_hash": "a352fa09b0c8621cb30776de9b016c7b433da3453f51a01610e0d8a706b94c7e", - "txlist_hash": "83367c52c5808cc55d9902d446542239ae36c22d7b7d92678f128ad83f58aaea", - "messages_hash": "3172cc5949c44703a36181b1b938faf388d0cf72e686932ee5ee218ee893e4a6", + "ledger_hash": "65803d38379c30b6ac2d05ad148ef1ce11251447ffe401556c7bf9c06eebd906", + "txlist_hash": "a10e0fed77cc0ef6274cddbef2c672fb7ebe1ed630d31ee561671205aac9ecd0", + "messages_hash": "034324fb557a2ab6042fd66134a2f5c9a4a5183ee5ddde1a03677c06c17172eb", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", - "block_time": 1726509903, - "previous_block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017", + "block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", + "block_time": 1726774186, + "previous_block_hash": "651e3b0cf4808037e35d34560665bfc4d692e40ccd883d2bbc7f46c761f7ee32", "difficulty": 545259519, - "ledger_hash": "20f305d9381284d270d7c1d22ba897f66d072d2f1df42dfeeffdf903e9627921", - "txlist_hash": "57455bb363a21c6f49fa641f5bedf87e9eedc785270ddc90711b98f54eb0f113", - "messages_hash": "2f8a089ba7d158feab1cd9daea1fc5a85d43e2de099feb80f384f9fafe9efbb5", + "ledger_hash": "d0d4cc486e16045bdeffd6704f0f275cb2c4f6073bc259daaf2ec310bfdc3062", + "txlist_hash": "2d66b5f605dc1728fbeb9e5b41f8e04a57ae32c137af8d438199d7309d8bd408", + "messages_hash": "83f1641453993b2ab8575ad53e07994f91c1d0cf5c67544bf00e47422bc9f8a9", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017", - "block_time": 1726509899, - "previous_block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b", + "block_hash": "651e3b0cf4808037e35d34560665bfc4d692e40ccd883d2bbc7f46c761f7ee32", + "block_time": 1726774182, + "previous_block_hash": "0892483cda3b2359321d54521d71b9cdb5179631f9afd3a6815afbf31654f10a", "difficulty": 545259519, - "ledger_hash": "5dac3b61245453c5448b8e8ef6eaf53e9ca0a371d3b6524ca97ef99e40551036", - "txlist_hash": "5caba1ce46d6c7e9d5a7cb1c794b331dd473323683be48d62b3e03fef3a9cb75", - "messages_hash": "a3d30ea5b4343aac41752e3cbe083b2f9a5070adb3e28d3cf3b586d60b13f937", + "ledger_hash": "1898591abedb9c6efebfb7c361c3867e5598e6c92c71620cda963dfbbe4edd8e", + "txlist_hash": "89cf7a5f82297c2a7e8572eb0a362c74f3dc2ec3b01f0fdac01a8445b32c2d62", + "messages_hash": "7d0c9df38a19bbf929f126f7fd0fc7d514c2ae87adea140b9285e754ab4c6fdb", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b", - "block_time": 1726509894, - "previous_block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780", + "block_hash": "0892483cda3b2359321d54521d71b9cdb5179631f9afd3a6815afbf31654f10a", + "block_time": 1726774177, + "previous_block_hash": "21c746c1d8a7a666598b18913fd73535305caee24703a5b741f5dfc04e1ad59d", "difficulty": 545259519, - "ledger_hash": "3f97c50ca5edc66440c05c58badb6d8f26237669ef20c001a05e476404900c94", - "txlist_hash": "ed6472060345e91ae8e05a0f6d7a9a0e657098f47eae73e2e644fc7e455e67d3", - "messages_hash": "9f629d60ea05b595361922207a4b99e144e342dcc0cef5755d71e920ec551ba7", + "ledger_hash": "de085f2fd32217117cc9f9b6cb78b3136bf9153af0b2127518bcb3fe9c100452", + "txlist_hash": "0cfa2c2e5403d9416acafcf271cd9ddfd121009f1c9d60ac249e22acda1e2aa1", + "messages_hash": "6ee20d350c2f943b261ad04265acdf29297c93220360a20d862f110e2d7af316", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_time": 1726774194, + "previous_block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", "difficulty": 545259519, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", + "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", + "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58` (str, required) - The index of the block to return + + block_hash: `66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd` (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": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_time": 1726774194, + "previous_block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", "difficulty": 545259519, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", + "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", + "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_time": 1726774194, + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1706,11 +1706,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "a352fa09b0c8621cb30776de9b016c7b433da3453f51a01610e0d8a706b94c7e", - "messages_hash": "3172cc5949c44703a36181b1b938faf388d0cf72e686932ee5ee218ee893e4a6", + "ledger_hash": "65803d38379c30b6ac2d05ad148ef1ce11251447ffe401556c7bf9c06eebd906", + "messages_hash": "034324fb557a2ab6042fd66134a2f5c9a4a5183ee5ddde1a03677c06c17172eb", "transaction_count": 1, - "txlist_hash": "83367c52c5808cc55d9902d446542239ae36c22d7b7d92678f128ad83f58aaea", - "block_time": 1726509908 + "txlist_hash": "a10e0fed77cc0ef6274cddbef2c672fb7ebe1ed630d31ee561671205aac9ecd0", + "block_time": 1726774190 }, "tx_hash": null }, @@ -1719,43 +1719,43 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58 }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "status": "valid", - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, - "block_time": 1726509908, + "block_time": 1726774190, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -1765,22 +1765,22 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "XCP", "block_index": 192, - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -1790,7 +1790,7 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" } ], "next_cursor": 524, @@ -1873,16 +1873,16 @@ Returns the events of a block filtered by event "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -1892,57 +1892,57 @@ Returns the events of a block filtered by event }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" } ], "next_cursor": null, @@ -2005,16 +2005,16 @@ Returns the credits of a block "result": [ { "block_index": 192, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,20 +2026,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2047,20 +2047,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2116,16 +2116,16 @@ Returns the debits of a block "result": [ { "block_index": 193, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "event": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -2165,24 +2165,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "object_id": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", "block_index": 182, "confirmed": true, - "block_time": 1726509796 + "block_time": 1726774079 }, { "type": "order", - "object_id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", + "object_id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", "block_index": 182, "confirmed": true, - "block_time": 1726509796 + "block_time": 1726774079 }, { "type": "order_match", - "object_id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "object_id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", "block_index": 182, "confirmed": true, - "block_time": 1726509796 + "block_time": 1726774079 } ], "next_cursor": null, @@ -2214,13 +2214,13 @@ Returns the cancels of a block "result": [ { "tx_index": 56, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "status": "valid", "confirmed": true, - "block_time": 1726509899 + "block_time": 1726774182 } ], "next_cursor": null, @@ -2252,15 +2252,15 @@ Returns the destructions of a block "result": [ { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -2300,14 +2300,14 @@ Returns the issuances of a block "result": [ { "tx_index": 46, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -2322,7 +2322,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509780, + "block_time": 1726774063, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2356,10 +2356,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2367,7 +2367,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "divisible": true, "asset_longname": null, @@ -2380,10 +2380,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2391,11 +2391,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2404,10 +2404,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2415,11 +2415,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2457,27 +2457,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2492,7 +2492,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726509701, + "block_time": 1726773999, "asset_info": { "divisible": true, "asset_longname": null, @@ -2533,16 +2533,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "fee_paid_normalized": "0.00600000" } ], @@ -2576,17 +2576,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a", + "tx_hash": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c", "block_index": 138, - "block_hash": "453294ea1f1df8257210f9e7a253332b3347be306ceef8957771aff657052d9f", - "block_time": 1726509656, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "block_hash": "363da8bf54ec6bd2e21c312451d2572a6a55f610a9200b984aebf79e24b7f4ba", + "block_time": 1726773966, + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a:1", + "utxos_info": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2611,25 +2611,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 51, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", "block_index": 185, - "block_hash": "7bb18fb36cb1bd5cb99d781fabe17b43d4b67ee7530bd6ab46356fdb3e139fa6", - "block_time": 1726509867, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "4079d9964616962b4485c46f0b95a71d419ff12d2ce66578ed3e1ce2381779a6", + "block_time": 1726774160, + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "btc_amount": 2000, "fee": 10000, - "data": "0b675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "data": "0b32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "supported": true, - "utxos_info": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d:0", + "utxos_info": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "status": "valid" } }, @@ -2644,23 +2644,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "block_index": 190, - "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017", - "block_time": 1726509899, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "651e3b0cf4808037e35d34560665bfc4d692e40ccd883d2bbc7f46c761f7ee32", + "block_time": 1726774182, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "465e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "data": "46ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "supported": true, - "utxos_info": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec:1", + "utxos_info": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "status": "valid" } }, @@ -2675,17 +2675,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_time": 1726774194, + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2715,17 +2715,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 32, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", "block_index": 145, - "block_hash": "08bdc1edfb36f1d85bc67defec2acfd268f4883895a7c3d6fe6817a5438a4f25", - "block_time": 1726509697, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "block_hash": "148b96e6f2494b1f3955a8e2a4ee98633bcb37c92d38c7b0c00aafb200083d2c", + "block_time": 1726773995, + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c00000000000000010000000000000001000000000000271000000000000000010080feeb565d4498d6075cf256c2b70c424b5f5c0a04", + "data": "0c00000000000000010000000000000001000000000000271000000000000000010080da5d062545564f695405ef9ede0dbb3b5ce31f51", "supported": true, - "utxos_info": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d:1", + "utxos_info": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2737,7 +2737,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "status": "valid", "asset_info": { "divisible": true, @@ -2761,17 +2761,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", "block_index": 146, - "block_hash": "4de0e42039680e9c42b597fd03acd28e9a5efe8146eeb01f3fdc17e0544a27e8", - "block_time": 1726509701, - "source": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", - "destination": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "block_hash": "36abd62a234e24d1f4132324ccd2ac7e58ea0ff5583091d815626c4ef168fe09", + "block_time": 1726773999, + "source": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", + "destination": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "btc_amount": 10000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535:0", + "utxos_info": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 40, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", "block_index": 153, - "block_hash": "7e887e2e71767fce9ed7d481be87683d41eaed909607ad9a84d0cdaf822fd36f", - "block_time": 1726509732, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "152433c838e5b41e76817a93f3bf02b2b848bd3ce00d14e4a6e62c29a37e85b6", + "block_time": 1726774028, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00:1", + "utxos_info": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2814,7 +2814,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2839,17 +2839,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 46, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", "block_index": 159, - "block_hash": "6ba4729ba0f996337647b47d49e898b2ef75467f46f5f7e51e78ee5eb306574f", - "block_time": 1726509780, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "1c63dda30838fa40033a0c7d76bb8e9b01633bea7274ef10e33e1f726774089b", + "block_time": 1726774063, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491:1", + "utxos_info": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2881,17 +2881,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", - "block_time": 1726509903, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", + "block_time": 1726774186, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1", + "utxos_info": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2934,17 +2934,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03", + "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5", "block_index": 187, - "block_hash": "12f9ec3b5f8f740e948b461f074122b7c4d9311edf891749685e732e798b4124", - "block_time": 1726509886, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "block_hash": "253c0076a5f644b5eb5b390b9880cf75d2445e43621af89c52831df93d65cf27", + "block_time": 1726774169, + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080ae2b0c1095bbdf23747f76b242be716817701b78", + "data": "0200000000000000010000000000002710803bbe3a6dd2351dc452f0f53e2e5847e3877d10ef", "supported": true, - "utxos_info": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03:1", + "utxos_info": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2952,7 +2952,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "memo": null, "asset_info": { "divisible": true, @@ -2975,17 +2975,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780", - "block_time": 1726509890, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "21c746c1d8a7a666598b18913fd73535305caee24703a5b741f5dfc04e1ad59d", + "block_time": 1726774173, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038057841d54055a90ed31a47e9821fd3118e6e78592808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f9280ae2b0c1095bbdf23747f76b242be716817701b78400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a51d35219ae418a29d635b82e9190881258cb46480f09d239511eee425be033d403d5cc35cc271f906803bbe3a6dd2351dc452f0f53e2e5847e3877d10ef400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f:0", + "utxos_info": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2993,14 +2993,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -3008,7 +3008,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3034,23 +3034,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", - "block_time": 1726509908, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", + "block_time": 1726774190, + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480ae2b0c1095bbdf23747f76b242be716817701b78017377656570206d7920617373657473", + "data": "04803bbe3a6dd2351dc452f0f53e2e5847e3877d10ef017377656570206d7920617373657473", "supported": true, - "utxos_info": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b:1", + "utxos_info": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "flags": 1, "memo": "sweep my assets" } @@ -3083,17 +3083,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_time": 1726774194, + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3116,23 +3116,23 @@ Returns the list of the last ten transactions }, { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", - "block_time": 1726509908, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", + "block_time": 1726774190, + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480ae2b0c1095bbdf23747f76b242be716817701b78017377656570206d7920617373657473", + "data": "04803bbe3a6dd2351dc452f0f53e2e5847e3877d10ef017377656570206d7920617373657473", "supported": true, - "utxos_info": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b:1", + "utxos_info": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "flags": 1, "memo": "sweep my assets" } @@ -3150,7 +3150,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `0200000000010113f4625e1516c944a8463d27d826a53f0fcbba50aced60bf5eb00888663ce56e0000000000ffffffff020000000000000000356a332354da0a2986e439d6bf246d84f86ee1f3d79bd9604d9ff8543c944eead26bc52dcc129be40851375a2c04808350b9e7608862f0ca052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e024730440220192675f05c9144776192e2c92db009e8ed5fcedd0c45fbcda89a84a2320f2af30220196bac09bfaedbea9e4458ec76ad50697d0cb659327702787f2ceb8f11832daf0121038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616900000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000101f89d7f0229fc92436f8da698cf6e84a93b47befecf1461b747dad2e8cf0ce2940000000000ffffffff020000000000000000356a33f86a88cbd459ab1e8a7811747f2ab644821023c577bf622caa30ea790a3fbd2c5ec91fa1510cc56212ab482d7a0dd81d359991f0ca052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4024730440220182f5ce19f9c4927b2fe424a6705ee0212ebcc0d6d12ae76003c2962ff89bd4802201012a5d031f0964a88d27e2fd17b1c81970e8b61cb3d2ad1dad58b11a704e178012102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0600000000` (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. @@ -3163,7 +3163,7 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, @@ -3174,7 +3174,7 @@ Returns Counterparty information from a raw transaction in hex format. "coinbase": false, "vin": [ { - "hash": "13f4625e1516c944a8463d27d826a53f0fcbba50aced60bf5eb00888663ce56e", + "hash": "f89d7f0229fc92436f8da698cf6e84a93b47befecf1461b747dad2e8cf0ce294", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3184,20 +3184,20 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a332354da0a2986e439d6bf246d84f86ee1f3d79bd9604d9ff8543c944eead26bc52dcc129be40851375a2c04808350b9e7608862" + "script_pub_key": "6a33f86a88cbd459ab1e8a7811747f2ab644821023c577bf622caa30ea790a3fbd2c5ec91fa1510cc56212ab482d7a0dd81d359991" }, { "value": 4999990000, - "script_pub_key": "00147ed28f21558ee8ecd78a339105e7756213901b6e" + "script_pub_key": "0014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4" } ], "vtxinwit": [ - "30440220192675f05c9144776192e2c92db009e8ed5fcedd0c45fbcda89a84a2320f2af30220196bac09bfaedbea9e4458ec76ad50697d0cb659327702787f2ceb8f11832daf01", - "038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a9387076169" + "30440220182f5ce19f9c4927b2fe424a6705ee0212ebcc0d6d12ae76003c2962ff89bd4802201012a5d031f0964a88d27e2fd17b1c81970e8b61cb3d2ad1dad58b11a704e17801", + "02c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f06" ], "lock_time": 0, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", - "tx_id": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232" + "tx_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", + "tx_id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3" }, "unpacked_data": { "message_type": "order", @@ -3278,17 +3278,17 @@ Returns a transaction by its index. { "result": { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_time": 1726774194, + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3317,7 +3317,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce` (str, required) - The hash of the transaction + + tx_hash: `6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c` (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. @@ -3329,17 +3329,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_time": 1726774194, + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3392,47 +3392,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58 }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "status": "valid", - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, - "block_time": 1726509908, + "block_time": 1726774190, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -3442,24 +3442,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "XCP", "block_index": 192, - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -3469,36 +3469,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 } ], "next_cursor": 523, @@ -3511,7 +3511,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b` (str, required) - The hash of the transaction to return + + tx_hash: `a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -3535,47 +3535,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58 }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "status": "valid", - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, - "block_time": 1726509908, + "block_time": 1726774190, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -3585,24 +3585,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "XCP", "block_index": 192, - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -3612,36 +3612,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 } ], "next_cursor": 523, @@ -3654,7 +3654,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f` (str, required) - The hash of the transaction to return + + tx_hash: `adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714` (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 @@ -3673,10 +3673,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -3684,7 +3684,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "divisible": true, "asset_longname": null, @@ -3697,10 +3697,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3708,11 +3708,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -3721,10 +3721,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3732,11 +3732,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -3754,7 +3754,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535` (str, required) - The hash of the transaction to return + + tx_hash: `cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942` (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 @@ -3774,27 +3774,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3809,7 +3809,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726509701, + "block_time": 1726773999, "asset_info": { "divisible": true, "asset_longname": null, @@ -3853,16 +3853,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -3872,63 +3872,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 } ], "next_cursor": null, @@ -3941,7 +3941,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b` (str, required) - The hash of the transaction to return + + tx_hash: `a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `535` (str, optional) - The last event index to return + Default: `None` @@ -3963,16 +3963,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -3982,63 +3982,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 } ], "next_cursor": null, @@ -4053,7 +4053,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj,bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u,bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (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 @@ -4077,7 +4077,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4087,7 +4087,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -4098,7 +4098,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4108,7 +4108,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -4119,7 +4119,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4129,7 +4129,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -4140,7 +4140,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4150,7 +4150,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -4161,7 +4161,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4171,7 +4171,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -4188,7 +4188,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj,bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u,bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (str, required) - Comma separated list of addresses to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4207,17 +4207,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", - "block_time": 1726509903, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", + "block_time": 1726774186, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1", + "utxos_info": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4253,23 +4253,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "block_index": 190, - "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017", - "block_time": 1726509899, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "651e3b0cf4808037e35d34560665bfc4d692e40ccd883d2bbc7f46c761f7ee32", + "block_time": 1726774182, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "465e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "data": "46ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "supported": true, - "utxos_info": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec:1", + "utxos_info": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "status": "valid" } }, @@ -4277,17 +4277,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "block_index": 189, - "block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b", - "block_time": 1726509894, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "0892483cda3b2359321d54521d71b9cdb5179631f9afd3a6815afbf31654f10a", + "block_time": 1726774177, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2:1", + "utxos_info": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4323,17 +4323,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780", - "block_time": 1726509890, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "21c746c1d8a7a666598b18913fd73535305caee24703a5b741f5dfc04e1ad59d", + "block_time": 1726774173, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038057841d54055a90ed31a47e9821fd3118e6e78592808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f9280ae2b0c1095bbdf23747f76b242be716817701b78400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a51d35219ae418a29d635b82e9190881258cb46480f09d239511eee425be033d403d5cc35cc271f906803bbe3a6dd2351dc452f0f53e2e5847e3877d10ef400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f:0", + "utxos_info": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4341,14 +4341,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -4356,7 +4356,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4375,25 +4375,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 51, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", "block_index": 185, - "block_hash": "7bb18fb36cb1bd5cb99d781fabe17b43d4b67ee7530bd6ab46356fdb3e139fa6", - "block_time": 1726509867, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "4079d9964616962b4485c46f0b95a71d419ff12d2ce66578ed3e1ce2381779a6", + "block_time": 1726774160, + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "btc_amount": 2000, "fee": 10000, - "data": "0b675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "data": "0b32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "supported": true, - "utxos_info": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d:0", + "utxos_info": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "status": "valid" } }, @@ -4410,7 +4410,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj,bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u,bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -4446,11 +4446,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "status": "open", - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "tx_index": 57, - "block_time": 1726509903, + "block_time": 1726774186, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4474,24 +4474,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "block_time": 1726509903 + "block_time": 1726774186 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "block_index": 191, - "event": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "event": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1726509903, + "block_time": 1726774186, "asset_info": { "divisible": true, "asset_longname": null, @@ -4501,25 +4501,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "block_time": 1726509903 + "block_time": 1726774186 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", + "block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", "block_index": 191, - "block_time": 1726509903, + "block_time": 1726774186, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "tx_index": 57, - "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1", + "utxos_info": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4551,40 +4551,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "block_time": 1726509903 + "block_time": 1726774186 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "status": "valid", - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "tx_index": 56, - "block_time": 1726509899 + "block_time": 1726774182 }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726774182 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726509899, + "block_time": 1726774182, "asset_info": { "divisible": true, "asset_longname": null, @@ -4594,9 +4594,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726774182 } ], "next_cursor": 506, @@ -4609,7 +4609,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2,bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr,bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd` (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 @@ -4625,17 +4625,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "memo": null, "quantity": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "status": "valid", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "tx_index": 60, "asset_info": { "divisible": true, @@ -4648,19 +4648,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "CREDIT", "params": { - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -4672,19 +4672,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 193, - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -4696,27 +4696,27 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726509917.0831685, + "block_time": 1726774198.968543, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f92", + "data": "020000000000000001000000000000271080f09d239511eee425be033d403d5cc35cc271f906", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "tx_index": 60, - "utxos_info": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6:1", + "utxos_info": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "memo": null, "asset_info": { "divisible": true, @@ -4742,7 +4742,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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 @@ -4762,7 +4762,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4770,14 +4770,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4785,14 +4785,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4807,7 +4807,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4815,7 +4815,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -4832,7 +4832,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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` @@ -4844,7 +4844,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4866,7 +4866,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4916,16 +4916,16 @@ Returns the credits of an address "result": [ { "block_index": 190, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509899, + "block_time": 1726774182, "asset_info": { "divisible": true, "asset_longname": null, @@ -4937,16 +4937,16 @@ Returns the credits of an address }, { "block_index": 182, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", + "event": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509796, + "block_time": 1726774079, "asset_info": { "divisible": true, "asset_longname": null, @@ -4958,20 +4958,20 @@ Returns the credits of an address }, { "block_index": 159, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "event": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509780, + "block_time": 1726774063, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -4979,20 +4979,20 @@ Returns the credits of an address }, { "block_index": 156, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "23d681cb0c9d9310fd8150fcabf440c84cae363db926d0fcde70cbe12373f96f", + "event": "7d4a2bd04f1f814197a4eb9b38403dcfcf0dc8b1a4ccac05b631aa1d00d2b8b0", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509746, + "block_time": 1726774040, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5004,16 +5004,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "event": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", "tx_index": 38, - "utxo": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1", - "utxo_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "utxo": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e:1", + "utxo_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "confirmed": true, - "block_time": 1726509724, + "block_time": 1726774019, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5030,7 +5030,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5069,16 +5069,16 @@ Returns the debits of an address "result": [ { "block_index": 191, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "event": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509903, + "block_time": 1726774186, "asset_info": { "divisible": true, "asset_longname": null, @@ -5090,16 +5090,16 @@ Returns the debits of an address }, { "block_index": 189, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509894, + "block_time": 1726774177, "asset_info": { "divisible": true, "asset_longname": null, @@ -5111,16 +5111,16 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "event": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "divisible": true, "asset_longname": null, @@ -5132,20 +5132,20 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "event": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5153,16 +5153,16 @@ Returns the debits of an address }, { "block_index": 183, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "event": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509858, + "block_time": 1726774153, "asset_info": { "divisible": true, "asset_longname": null, @@ -5183,7 +5183,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address of the feed + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5218,7 +5218,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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 @@ -5237,9 +5237,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "1629a61f230d38e661231eeaac724d9336e9413ce0a9f145c49d57030ae05b8d", + "tx_hash": "04c2e5dab15ab4e26d63a5648f0d6629630b4542ae192461bdcf2113b0f3cea8", "block_index": 137, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5247,7 +5247,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726509652, + "block_time": 1726773962, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5261,7 +5261,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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 @@ -5280,14 +5280,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "84cfd2ae481d0a4171e66009619eda93802914d5ccbb4bc52a5b76fd06d2dd79", + "tx_hash": "23f9db86085e7bb684b573ea2431e4df71742706ec74943c876c80cc1321789f", "block_index": 112, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1726509535, + "block_time": 1726773838, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5302,7 +5302,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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 @@ -5321,10 +5321,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5332,7 +5332,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "divisible": true, "asset_longname": null, @@ -5345,10 +5345,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5356,11 +5356,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5369,10 +5369,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5380,11 +5380,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5393,10 +5393,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 38, - "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "tx_hash": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", "block_index": 151, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5404,11 +5404,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509724, + "block_time": 1726774019, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5417,10 +5417,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 35, - "tx_hash": "523006a2ff042bd1708eb4642871fe8df38dbb0d40fc0b07f7c4d78ea57fff6d", + "tx_hash": "41fac461930dace665e9bb44dc633220d82b7510e61470fcdf4539273a33300a", "block_index": 148, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "d2f3afeb63580aa006eee4e055138c2903f7e8172876f688b7241e2ebbe5f172:1", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "0b55d2fd4d396734b796b0ad4164d7d531839c050c4f31df53d1d4a86750b9bd:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5428,11 +5428,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509710, + "block_time": 1726774007, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5450,7 +5450,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0` (str, required) - The address to return + + address: `bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9` (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 @@ -5469,10 +5469,10 @@ Returns the receives of an address "result": [ { "tx_index": 37, - "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba", + "tx_hash": "1cfb953bd23a5d5edaeccfd49b0528b6597e10acdd7f9956bc3ea49468400cfd", "block_index": 150, - "source": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88:0", - "destination": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0", + "source": "67db055172fd889ca6fa9cc47fa2ab086efcdc03871cefc9a0e6833aa2cffadc:0", + "destination": "bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5480,11 +5480,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509719, + "block_time": 1726774015, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5502,7 +5502,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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` @@ -5522,10 +5522,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5533,11 +5533,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5546,10 +5546,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5557,11 +5557,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5570,10 +5570,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 38, - "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "tx_hash": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", "block_index": 151, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5581,11 +5581,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509724, + "block_time": 1726774019, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5594,10 +5594,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 35, - "tx_hash": "523006a2ff042bd1708eb4642871fe8df38dbb0d40fc0b07f7c4d78ea57fff6d", + "tx_hash": "41fac461930dace665e9bb44dc633220d82b7510e61470fcdf4539273a33300a", "block_index": 148, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "d2f3afeb63580aa006eee4e055138c2903f7e8172876f688b7241e2ebbe5f172:1", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "0b55d2fd4d396734b796b0ad4164d7d531839c050c4f31df53d1d4a86750b9bd:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5605,11 +5605,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509710, + "block_time": 1726774007, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5627,7 +5627,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0` (str, required) - The address to return + + address: `bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9` (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` @@ -5647,10 +5647,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 37, - "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba", + "tx_hash": "1cfb953bd23a5d5edaeccfd49b0528b6597e10acdd7f9956bc3ea49468400cfd", "block_index": 150, - "source": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88:0", - "destination": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0", + "source": "67db055172fd889ca6fa9cc47fa2ab086efcdc03871cefc9a0e6833aa2cffadc:0", + "destination": "bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5658,11 +5658,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509719, + "block_time": 1726774015, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5680,7 +5680,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5707,9 +5707,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5718,7 +5718,7 @@ Returns the dispensers of an address "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5728,7 +5728,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726773991, "asset_info": { "divisible": true, "asset_longname": null, @@ -5744,9 +5744,9 @@ Returns the dispensers of an address }, { "tx_index": 26, - "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5755,7 +5755,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5765,7 +5765,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -5790,7 +5790,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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` @@ -5803,9 +5803,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5814,7 +5814,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5824,7 +5824,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726773991, "asset_info": { "divisible": true, "asset_longname": null, @@ -5846,7 +5846,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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 @@ -5866,19 +5866,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5886,7 +5886,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5901,7 +5901,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -5915,19 +5915,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5935,7 +5935,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5950,7 +5950,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726773973, "asset_info": { "divisible": true, "asset_longname": null, @@ -5972,7 +5972,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address to return + + address: `bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (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 @@ -5992,19 +5992,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6012,7 +6012,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6027,7 +6027,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -6041,19 +6041,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6061,7 +6061,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6076,7 +6076,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726773973, "asset_info": { "divisible": true, "asset_longname": null, @@ -6098,7 +6098,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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` @@ -6119,19 +6119,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6139,7 +6139,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6154,7 +6154,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -6168,19 +6168,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6188,7 +6188,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6203,7 +6203,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726773973, "asset_info": { "divisible": true, "asset_longname": null, @@ -6225,7 +6225,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address to return + + address: `bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (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` @@ -6246,19 +6246,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6266,7 +6266,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6281,7 +6281,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -6295,19 +6295,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6315,7 +6315,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6330,7 +6330,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726773973, "asset_info": { "divisible": true, "asset_longname": null, @@ -6352,7 +6352,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2` (str, required) - The address to return + + address: `bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr` (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 @@ -6371,16 +6371,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "fee_paid_normalized": "0.00600000" } ], @@ -6394,7 +6394,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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 @@ -6413,14 +6413,14 @@ Returns the issuances of an address "result": [ { "tx_index": 46, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -6435,20 +6435,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509780, + "block_time": 1726774063, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "99d6840da9077ad147d3cb8e3a527ebcb05445b5e72d0fa4f9429f91a2ed5f9f", + "tx_hash": "a9bf93086ed282edc2b5194935329671a7e12a0af1a2408220460fd3bac8663b", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -6463,20 +6463,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726509775, + "block_time": 1726774059, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "edf7eb0a60e46ad53360d769c00fbd350628dff893bb6f1869570c9fdcfc71af", + "tx_hash": "4204b9166ff55290c1a9696502a714ae666873dd698433434047f5a70049c6b5", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "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": 1726509760, + "block_time": 1726774054, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "23d681cb0c9d9310fd8150fcabf440c84cae363db926d0fcde70cbe12373f96f", + "tx_hash": "7d4a2bd04f1f814197a4eb9b38403dcfcf0dc8b1a4ccac05b631aa1d00d2b8b0", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -6519,20 +6519,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509746, + "block_time": 1726774040, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "73ed3c167032f8d2648710f1bceb54e23fc9faf80658565c8e897ea0fa7bcf35", + "tx_hash": "acfa48a6367ebe208fe02f5a249e5d3ff83f156b26ae8ee055b9d8335bdb41c8", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -6547,7 +6547,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509706, + "block_time": 1726774002, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -6562,7 +6562,7 @@ Returns the issuances of an address Returns the valid assets of an issuer + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The issuer to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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 @@ -6585,8 +6585,8 @@ Returns the valid assets of an issuer "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 10000000000, @@ -6594,16 +6594,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726509746, - "last_issuance_block_time": 1726509775, + "first_issuance_block_time": 1726774040, + "last_issuance_block_time": 1726774059, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 100000000000, @@ -6611,16 +6611,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726509706, - "last_issuance_block_time": 1726509706, + "first_issuance_block_time": 1726774002, + "last_issuance_block_time": 1726774002, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 40, @@ -6628,16 +6628,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726509644, - "last_issuance_block_time": 1726509648, + "first_issuance_block_time": 1726773953, + "last_issuance_block_time": 1726773957, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 19, @@ -6645,16 +6645,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726509617, - "last_issuance_block_time": 1726509639, + "first_issuance_block_time": 1726773916, + "last_issuance_block_time": 1726773949, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 0, @@ -6662,8 +6662,8 @@ Returns the valid assets of an issuer "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1726509596, - "last_issuance_block_time": 1726509613, + "first_issuance_block_time": 1726773896, + "last_issuance_block_time": 1726773912, "supply_normalized": "0.00000000" } ], @@ -6677,7 +6677,7 @@ Returns the valid assets of an issuer Returns the transactions of an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -6696,17 +6696,17 @@ Returns the transactions of an address "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", - "block_time": 1726509903, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", + "block_time": 1726774186, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1", + "utxos_info": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6742,23 +6742,23 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "block_index": 190, - "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017", - "block_time": 1726509899, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "651e3b0cf4808037e35d34560665bfc4d692e40ccd883d2bbc7f46c761f7ee32", + "block_time": 1726774182, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "465e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "data": "46ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "supported": true, - "utxos_info": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec:1", + "utxos_info": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "status": "valid" } }, @@ -6766,17 +6766,17 @@ Returns the transactions of an address }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "block_index": 189, - "block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b", - "block_time": 1726509894, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "0892483cda3b2359321d54521d71b9cdb5179631f9afd3a6815afbf31654f10a", + "block_time": 1726774177, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2:1", + "utxos_info": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6812,17 +6812,17 @@ Returns the transactions of an address }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780", - "block_time": 1726509890, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "21c746c1d8a7a666598b18913fd73535305caee24703a5b741f5dfc04e1ad59d", + "block_time": 1726774173, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038057841d54055a90ed31a47e9821fd3118e6e78592808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f9280ae2b0c1095bbdf23747f76b242be716817701b78400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a51d35219ae418a29d635b82e9190881258cb46480f09d239511eee425be033d403d5cc35cc271f906803bbe3a6dd2351dc452f0f53e2e5847e3877d10ef400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f:0", + "utxos_info": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -6830,14 +6830,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -6845,7 +6845,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -6864,17 +6864,17 @@ Returns the transactions of an address }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", "block_index": 183, - "block_hash": "266c58f4906e9a1c4f81f972d7728ac8f370b75de6c542c61c838013ad48749d", - "block_time": 1726509858, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "5f31e68a975e69728a9ad8b70ceb94736ca5b9db87c23fa9186954117e830736", + "block_time": 1726774153, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1:1", + "utxos_info": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6919,7 +6919,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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 @@ -6938,20 +6938,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 40, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", "block_index": 153, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726774028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -6976,7 +6976,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7003,9 +7003,9 @@ Returns the orders of an address "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7020,7 +7020,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509903, + "block_time": 1726774186, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7046,9 +7046,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7063,7 +7063,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726509899, + "block_time": 1726774182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7089,9 +7089,9 @@ Returns the orders of an address }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", "block_index": 186, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7106,7 +7106,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726774164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7132,9 +7132,9 @@ Returns the orders of an address }, { "tx_index": 47, - "tx_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", + "tx_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", "block_index": 182, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7149,7 +7149,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1726509796, + "block_time": 1726774079, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7184,7 +7184,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The source of the fairminter to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7202,10 +7202,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7230,13 +7230,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509644 + "block_time": 1726773953 }, { - "tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7261,13 +7261,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509617 + "block_time": 1726773916 }, { - "tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16", + "tx_hash": "8bf6a822f10cccc625da7811b776e108fadf45d1b9255b1ab005583ec7c9df68", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7292,13 +7292,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509613 + "block_time": 1726773912 }, { - "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7323,7 +7323,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509592 + "block_time": 1726773891 } ], "next_cursor": null, @@ -7336,7 +7336,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address of the mints to return + + address: `bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7354,127 +7354,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "a899b1a361e0514262442a4a300d7571606a3462d50819092e649c490fbcb1e6", + "tx_hash": "ed4ea8c5e199862917e614d38a53e76af1da07f9c981ba9c4c961244f169fea7", "tx_index": 23, "block_index": 136, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "fairminter_tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509648, + "block_time": 1726773957, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } }, { - "tx_hash": "43b87a7de82b3deb9845abcc6d33d3d9b61c21d58377115c5edefeabc763c9ae", + "tx_hash": "8e423ad9a4cd9d5486d14e4674f383f71cb3c0ab9341faab56ff72641a10e21f", "tx_index": 21, "block_index": 134, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "fairminter_tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509639, + "block_time": 1726773949, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } }, { - "tx_hash": "1148cccc0b0535df22ffd1571672abb937ff57bcefafc7af5d797405c8ce0b7f", + "tx_hash": "bf0d60c7451736b319e492c83939e125c79e0887b6da99b3b6513f61d91673f0", "tx_index": 20, "block_index": 133, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "fairminter_tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509625, + "block_time": 1726773934, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } }, { - "tx_hash": "a82d30ebc85da3571118450b2e29b8230ff34da2ee40ff7df9452727b80de1be", + "tx_hash": "dbe3fab19d11222801d9998def264a54cc8303c3c6a653cb72ad34356bb7771a", "tx_index": 19, "block_index": 132, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "fairminter_tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509620, + "block_time": 1726773920, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } }, { - "tx_hash": "2fe7ff0c16953b4aff424432759c2e48819f92f9c4440a7047e3c86f9ca21161", + "tx_hash": "1576a56c7da9b4e5301b3f13da28ce1549890be7193816f00386f60aec6d9c0d", "tx_index": 15, "block_index": 127, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "fairminter_tx_hash": "8bf6a822f10cccc625da7811b776e108fadf45d1b9255b1ab005583ec7c9df68", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509599, + "block_time": 1726773900, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } }, { - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", "tx_index": 11, "block_index": 123, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726773883, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } @@ -7490,7 +7490,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address of the mints to return + + address: `bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (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` @@ -7509,22 +7509,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", "tx_index": 11, "block_index": 123, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726773883, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } @@ -7558,13 +7558,13 @@ By default the default value of the `encoding` parameter detailed above is `auto - Sign the transaction following the `Bitcoinjs-lib on javascript, signing a P2SH redeeming transaction` section - **NOTE**: Don't leave pretxs hanging without transmitting the second transaction as this pollutes the UTXO set and risks making bitcoin harder to run on low spec nodes. -### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a bet against a feed. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will make the bet - + feed_address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address that will make the bet + + feed_address: `bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (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) @@ -7590,7 +7590,7 @@ Composes a transaction to issue a bet against a feed. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -7607,9 +7607,11 @@ Composes a transaction to issue a bet against a feed. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -7623,12 +7625,12 @@ Composes a transaction to issue a bet against a feed. } ``` -### Compose Broadcast [GET /v2/addresses/{address}/compose/broadcast{?timestamp}{&value}{&fee_fraction}{&text}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Broadcast [GET /v2/addresses/{address}/compose/broadcast{?timestamp}{&value}{&fee_fraction}{&text}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] Composes a transaction to broadcast textual and numerical information to the network. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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) @@ -7649,7 +7651,7 @@ Composes a transaction to broadcast textual and numerical information to the net + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -7666,9 +7668,11 @@ Composes a transaction to broadcast textual and numerical information to the net + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -7679,9 +7683,9 @@ Composes a transaction to broadcast textual and numerical information to the net ``` { "result": { - "rawtransaction": "02000000000101b649c4e7fa40f164c03cd4447f8be4c3bbeb5ab6b102b0040141900933aac6ab000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff0200000000000000002b6a298a111578002e35f209d5778a06bfbacec513f992cc18166b895017e5651e3d9a9c8abe27c32de9bd6334b1052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "020000000001015b95f1d0edb9af21857674c34ee2eecf7c437d120ad8b11ff3c1ab30ad34941700000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff0200000000000000002b6a29d799ae735c5d8d24b2851b7d16af02fac07861af3d7cf1e0fb9831300183c7de88388d7637f673afa13bb1052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7692,13 +7696,13 @@ Composes a transaction to broadcast textual and numerical information to the net } ``` -### Compose BTCPay [GET /v2/addresses/{address}/compose/btcpay{?order_match_id}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose BTCPay [GET /v2/addresses/{address}/compose/btcpay{?order_match_id}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] Composes a transaction to pay for a BTC order match. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be sending the payment - + order_match_id: `675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21` (str, required) - The ID of the order match to pay for + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address that will be sending the payment + + order_match_id: `32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646` (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) @@ -7715,7 +7719,7 @@ Composes a transaction to pay for a BTC order match. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -7732,9 +7736,11 @@ Composes a transaction to pay for a BTC order match. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -7745,22 +7751,22 @@ Composes a transaction to pay for a BTC order match. ``` { "result": { - "rawtransaction": "020000000001014fca2cccbcf61bd93889e6594b5f5676eb7ccec2f792a180f5f069af357b7616000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff03b80b0000000000001600147ed28f21558ee8ecd78a339105e7756213901b6e00000000000000004b6a491bea0194c274239cce2dec48099450c2d32bb382ddfb3b81015ad5ec232bd55868ef141b018286e0bca6432cf028cefc16bae7d9d0f81d7cc89e7f1247e0f068e2c07fc713509850fad093052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "020000000001016ba6ddb41ff1c71ef01d5f7d99d3ff19619764fd7139395f4855ff8bbadb86fd00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff03b80b000000000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb400000000000000004b6a49ff6c16b78d62574dfbdee3b1718760b06956c4b8331be40596089000b04f43ec8266489ee5cb534d609eda9adcef6c15a3c1cddc6bea1a70a05b91a5a15756e79d38c45ebdaa3053d6d993052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21" + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646" }, "name": "btcpay" } } ``` -### Compose Burn [GET /v2/addresses/{address}/compose/burn{?quantity}{&overburn}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Burn [GET /v2/addresses/{address}/compose/burn{?quantity}{&overburn}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, possible between blocks 278310 and 283810; on testnet it is still available). + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address with the BTC to burn + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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` @@ -7780,7 +7786,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -7797,9 +7803,11 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -7810,9 +7818,9 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss ``` { "result": { - "rawtransaction": "020000000001016fe1241c086889236a07a814417e56dab847abd58d96050d2ef16d394acb7071000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88acdab1052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101f660e9eb9a1f2d2309bdf697c2b5b3f23334d8f808a8a1eff88ef6d7b2cda3d000000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "quantity": 1000, "overburn": false }, @@ -7821,13 +7829,13 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss } ``` -### Compose Cancel [GET /v2/addresses/{address}/compose/cancel{?offer_hash}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Cancel [GET /v2/addresses/{address}/compose/cancel{?offer_hash}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] Composes a transaction to cancel an open order or bet. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e` (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) @@ -7844,7 +7852,7 @@ Composes a transaction to cancel an open order or bet. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -7861,9 +7869,11 @@ Composes a transaction to cancel an open order or bet. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -7874,22 +7884,22 @@ Composes a transaction to cancel an open order or bet. ``` { "result": { - "rawtransaction": "0200000000010175b4c418d03015dec817aad5fcb40a67eb01ab8c7f9b2434e0aeae3f2c7327e5000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff0200000000000000002b6a296a415035fc0e352ad913bcc9368104122e748b6b983f39533d639f2642afa98318345f31fc54c82b4434b1052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101e0553250341793b1938805256697bc7a3589315a1b5d91b27d1df1977014c56a00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff0200000000000000002b6a295668a78e3c109c1a5cecf29d7dbc71e61654af5de8131cf438b473dbece7448090e33f297d97f622b83bb1052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "offer_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232" + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "offer_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e" }, "name": "cancel" } } ``` -### Compose Destroy [GET /v2/addresses/{address}/compose/destroy{?asset}{&quantity}{&tag}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Destroy [GET /v2/addresses/{address}/compose/destroy{?asset}{&quantity}{&tag}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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 @@ -7909,7 +7919,7 @@ Composes a transaction to destroy a quantity of an asset. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -7926,9 +7936,11 @@ Composes a transaction to destroy a quantity of an asset. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -7939,9 +7951,9 @@ Composes a transaction to destroy a quantity of an asset. ``` { "result": { - "rawtransaction": "02000000000101b6ee35e1324d5089f8d7d56494bef5bcffa8b7c4a7e486d0af9d225461966691000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000226a207b5b354f4bb56aadb60d34352b229414425ea46fd9be1edf6ea98bd29a7472df9db3052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101f4eaf156a5147856fbcf821afab570471b0e3ea3958803b006209f381ccda17600000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000226a205f50fe398595de935ba8b471bc07546d825273bad0b3a17773b38d0fa3e6410ca4b3052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -7959,12 +7971,12 @@ Composes a transaction to destroy a quantity of an asset. } ``` -### Compose Dispenser [GET /v2/addresses/{address}/compose/dispenser{?asset}{&give_quantity}{&escrow_quantity}{&mainchainrate}{&status}{&open_address}{&oracle_address}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Dispenser [GET /v2/addresses/{address}/compose/dispenser{?asset}{&give_quantity}{&escrow_quantity}{&mainchainrate}{&status}{&open_address}{&oracle_address}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] Composes a transaction to opens or closes a dispenser for a given asset at a given rate of main chain asset (BTC). Escrowed quantity on open must be equal or greater than give_quantity. It is suggested that you escrow multiples of give_quantity to ease dispenser operation. + Parameters - + address: `bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f` (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) @@ -7990,7 +8002,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8007,9 +8019,11 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8020,9 +8034,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv ``` { "result": { - "rawtransaction": "020000000001013535818da2dc8007a59f5067eb9607b1ebdae92c65ceb00a7aa84795be59615102000000160014f8303fb1d45fb1391c65bcbef0035ec2924b52ccffffffff0200000000000000002c6a2abf7584d7e313e8d8dd088940a821ea5a8220cba87c96c52763c53a2847b0809129a37280769f24c74047404b0a2701000000160014f8303fb1d45fb1391c65bcbef0035ec2924b52cc02000000000000", + "rawtransaction": "0200000000010142d963f6ecaa0237cbbc4deb242e98c0a7f2470c1ae1716af7a0c0a77cb9b3cf0200000016001499c67192e83f303947f06852e7e6e2b52c391d6effffffff0200000000000000002c6a2a484527d3b1e8bbc25f877f55a61d739b46d237d5ecdbb9499b2c8899f6cbfd05038c6795ef418236d59f474b0a270100000016001499c67192e83f303947f06852e7e6e2b52c391d6e02000000000000", "params": { - "source": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8045,12 +8059,12 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv } ``` -### Compose Dividend [GET /v2/addresses/{address}/compose/dividend{?quantity_per_unit}{&asset}{÷nd_asset}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Dividend [GET /v2/addresses/{address}/compose/dividend{?quantity_per_unit}{&asset}{÷nd_asset}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a dividend to holders of a given asset. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (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: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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 @@ -8070,7 +8084,7 @@ Composes a transaction to issue a dividend to holders of a given asset. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8087,9 +8101,11 @@ Composes a transaction to issue a dividend to holders of a given asset. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8100,16 +8116,16 @@ Composes a transaction to issue a dividend to holders of a given asset. ``` { "result": { - "rawtransaction": "02000000000101351dc0ca5529e3f5913ab348c8a5b0dab37120eb3a5362bf1edbd938a12afaa9000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000236a214c12bd38bfe6d74349de8861a285ce801c0df1aea0c2341213c29c0488e3b51bf459b3052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101484f6d3e8e8c85dbd81cf8aec5dbb048b15c0fec1d692274c7bf9745e32576b200000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000236a21f7c73dc70de462b3a2ca786bb59b835f0dcc4b5b5beaeadac7c47e19757e6d02df60b3052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -8127,15 +8143,15 @@ Composes a transaction to issue a dividend to holders of a given asset. } ``` -### Compose Issuance [GET /v2/addresses/{address}/compose/issuance{?asset}{&quantity}{&transfer_destination}{&divisible}{&lock}{&reset}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Issuance [GET /v2/addresses/{address}/compose/issuance{?asset}{&quantity}{&transfer_destination}{&divisible}{&lock}{&reset}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] Composes a transaction to Issue a new asset, issue more of an existing asset, lock an asset, reset existing supply, or transfer the ownership of an asset. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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` @@ -8161,7 +8177,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8178,9 +8194,11 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8191,12 +8209,12 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo ``` { "result": { - "rawtransaction": "020000000001018c2c4aec7dc8917d96c67ca0080178a22f670265ea42df5f51b4cf18143f8d33000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff0322020000000000001600147ed28f21558ee8ecd78a339105e7756213901b6e0000000000000000236a2161361954172494529a3d38abfce581faf126d5f844d56d0f9ff51438a6ee05c1681ca8052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "0200000000010186ad0fee458832c0de1dd9966a33069926f2f243f98469ba3fa3944273cde45b00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff032202000000000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb40000000000000000236a21a1683304b04b1d1475f3c0a20d20038a08cf6ca8acbda83a12086e9dc357fd346624a8052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "transfer_destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "lock": false, "reset": false, @@ -8208,14 +8226,14 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo } ``` -### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] Composes a transaction to send multiple payments to multiple addresses. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj,bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u,bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (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` @@ -8237,7 +8255,7 @@ Composes a transaction to send multiple payments to multiple addresses. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8254,9 +8272,11 @@ Composes a transaction to send multiple payments to multiple addresses. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8267,18 +8287,18 @@ Composes a transaction to send multiple payments to multiple addresses. ``` { "result": { - "rawtransaction": "02000000000104408d3617b81bce0c32909fc2def0c597a56244508180e231a57cd368ef04aca6000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff17bda3cda72e5b5f1532ba6749ecd58427332ebcf282c79cd16c8375a9e4a215000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffc51fabedc80ce42d8f455f8cc69c88e82938707ddda14f7a68f33094383c23f4000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff6da23b7041e4c4b6b8d7cae88d1b4fbdad16503cf3dcfe3f6c85e0ae150c17a7000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff03e80300000000000069512102c9169a3c7845490a815acdd720f2c894bb916b00b6987b846b31895a38e2814d21027759538aaa3307bc8d576cc9ae8b5cfeb4f89eecb554cbecc42baa629bc084ea21038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aee80300000000000069512102c6169a3c7845490a8179babad2e07e3ab844e5e8565a6a3c4d146e2f5af111ab21036c379bdd2e2e53b9d7c789f80af5c4df49c9840a52d15963e663cf0ef7afa8d521038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953ae47d016a8040000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000002000002000002000000000000", + "rawtransaction": "0200000000010467ae41ef8da79d935e681670825e40f24befbbdca22a7320333b43e192f8d41200000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff924ca6bfd82a132dcad89aed447aeb980aa54f8a81f4d2b640129ecb0ac6de8d00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4fffffffffb2109d82cfecc8bfdbf973756cb8915055f4107817f6f07fd8e6977915f64e100000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff075ddf0c5b084c3b6e081e3d4f33bf054378daaf6d266310ebf247e22992bee700000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff03e8030000000000006951210201a8a17f6a01b50fa2d98020050cecd2659660a886b103c25f5d88a97f6edf372103bbb7bf19e4b7bd6d38343fb525381f752c5f8de88805717e1bb3f49fd1265eed2102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653aee803000000000000695121020ea8a17f6a01b50fa2faf74df736d31e13f06c4eb8f050ee14312a92cffbf2782103840377bcf9829cf7dc2c952846639d9c35570ecd04b115f139fb91f3bd4972e82102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653ae61d016a804000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000002000002000002000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", 1 ], [ "MYASSETA", - "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", 2 ] ], @@ -8290,12 +8310,12 @@ Composes a transaction to send multiple payments to multiple addresses. } ``` -### Compose Order [GET /v2/addresses/{address}/compose/order{?give_asset}{&give_quantity}{&get_asset}{&get_quantity}{&expiration}{&fee_required}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Order [GET /v2/addresses/{address}/compose/order{?give_asset}{&give_quantity}{&get_asset}{&get_quantity}{&expiration}{&fee_required}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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 @@ -8318,7 +8338,7 @@ Composes a transaction to place an order on the distributed exchange. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8335,9 +8355,11 @@ Composes a transaction to place an order on the distributed exchange. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8348,9 +8370,9 @@ Composes a transaction to place an order on the distributed exchange. ``` { "result": { - "rawtransaction": "02000000000101c07bf8106610b1b623cb978c0aba88af7803750f54a05c0005f982825d88d475000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000356a334143661d91daa75e926ff6d79759f0577584c1a37635e27e463babf031a6b24bdcd4d41d8aebadcc6eb12b58fa950c86172ab287ae052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101b3933707ee814a13c6a0ac0728c741f4afa0c687b84c9c56007b288199eb8ab800000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000356a33c7189069e502f204f0e78cd884d8f440021fcfb552cb58038caf028c61aa0742f018ebb64fa057a574a68a4fc0eb16fbafd38d8eae052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8367,7 +8389,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -8380,13 +8402,13 @@ Composes a transaction to place an order on the distributed exchange. } ``` -### Compose Send [GET /v2/addresses/{address}/compose/send{?destination}{&asset}{&quantity}{&memo}{&memo_is_hex}{&use_enhanced_send}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Send [GET /v2/addresses/{address}/compose/send{?destination}{&asset}{&quantity}{&memo}{&memo_is_hex}{&use_enhanced_send}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] Composes a transaction to send a quantity of an asset to another address. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address that will be receiving the asset + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (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 @@ -8411,7 +8433,7 @@ Composes a transaction to send a quantity of an asset to another address. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8428,9 +8450,11 @@ Composes a transaction to send a quantity of an asset to another address. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8441,10 +8465,10 @@ Composes a transaction to send a quantity of an asset to another address. ``` { "result": { - "rawtransaction": "02000000000101d1ed4e6a2b26727a08b51181f172b8a5c8dd24188e57f543702dac89c942bd12000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000306a2eb930bb587d4fd62cbc52cc09eacb8b0dfbb418f08631a6360d98cf5ce3120e46955c4c3d48c01ca4c9bbe19f3103deaf052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101ab9c7e9d9540332260f5b115b09a402931f0659ca4f30014431a259823d177e500000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000306a2eb624a1bd5d8e105c14b7f5caeb09878243f79cd1b77be2cd639b1c7e5f557e86a06a3392aba6af329056f991c7c7e5af052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8464,13 +8488,13 @@ Composes a transaction to send a quantity of an asset to another address. } ``` -### Compose Sweep [GET /v2/addresses/{address}/compose/sweep{?destination}{&flags}{&memo}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Sweep [GET /v2/addresses/{address}/compose/sweep{?destination}{&flags}{&memo}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] Composes a transaction to Sends all assets and/or transfer ownerships to a destination address. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be sending - + destination: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address that will be sending + + destination: `bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (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 @@ -8489,7 +8513,7 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8506,9 +8530,11 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8519,10 +8545,10 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti ``` { "result": { - "rawtransaction": "02000000000101b562c0730715780ae991157f93d3a949c1cfaba285b7f621eea8d3dda79da50c000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000236a218a5634f40393d59bc3c1a4c12be1661951369bb953fbb8da7bd34ffdc310d0a1fe59b3052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "020000000001017d84d6968d3246a363b35b66859e8eab7b7f3de8fad05879d98e769c4afc76b400000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000236a21fae7d81d569a6880e110a810de905c32449ef189ee95fe540e9a1359d7530aa7cc60b3052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "flags": 7, "memo": "FFFF" }, @@ -8531,13 +8557,13 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti } ``` -### Compose Dispense [GET /v2/addresses/{address}/compose/dispense{?dispenser}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Dispense [GET /v2/addresses/{address}/compose/dispense{?dispenser}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] Composes a transaction to send BTC to a dispenser. + Parameters - + address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd` (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` @@ -8555,7 +8581,7 @@ Composes a transaction to send BTC to a dispenser. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8572,9 +8598,11 @@ Composes a transaction to send BTC to a dispenser. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8585,10 +8613,10 @@ Composes a transaction to send BTC to a dispenser. ``` { "result": { - "rawtransaction": "020000000001014d628a3e65cc9537aa62c9b42db1b2df0e61d973978cac54482a0953d6fe49d70200000016001457841d54055a90ed31a47e9821fd3118e6e78592ffffffff03e803000000000000160014ae2b0c1095bbdf23747f76b242be716817701b7800000000000000000c6a0ac17afa5cc1158f0972f85fb808270100000016001457841d54055a90ed31a47e9821fd3118e6e7859202000000000000", + "rawtransaction": "02000000000101724e212baf5ce78b5ea009a78a673da26f320390b49a7a423fc431372422c4c702000000160014a51d35219ae418a29d635b82e9190881258cb464ffffffff03e8030000000000001600143bbe3a6dd2351dc452f0f53e2e5847e3877d10ef00000000000000000c6a0ad1a4b51a70e96388926566b8082701000000160014a51d35219ae418a29d635b82e9190881258cb46402000000000000", "params": { - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "quantity": 1000 }, "name": "dispense" @@ -8596,12 +8624,12 @@ Composes a transaction to send BTC to a dispenser. } ``` -### Compose Fairminter [GET /v2/addresses/{address}/compose/fairminter{?asset}{&asset_parent}{&price}{&quantity_by_price}{&max_mint_per_tx}{&hard_cap}{&premint_quantity}{&start_block}{&end_block}{&soft_cap}{&soft_cap_deadline_block}{&minted_asset_commission}{&burn_payment}{&lock_description}{&lock_quantity}{&divisible}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Fairminter [GET /v2/addresses/{address}/compose/fairminter{?asset}{&asset_parent}{&price}{&quantity_by_price}{&max_mint_per_tx}{&hard_cap}{&premint_quantity}{&start_block}{&end_block}{&soft_cap}{&soft_cap_deadline_block}{&minted_asset_commission}{&burn_payment}{&lock_description}{&lock_quantity}{&divisible}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be issuing the asset + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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: `` @@ -8651,7 +8679,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8668,9 +8696,11 @@ Composes a transaction to issue a new asset using the FairMinter protocol. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8681,9 +8711,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. ``` { "result": { - "rawtransaction": "02000000000101fbdb9417de62f10b9120f7e3e29518b3e1b564d76efe4eeb9f5fb40810cb2695000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000316a2f1a876d6cad75159c126a8d28d8dba1389dc8a65bf6ccf9207d08f02f106901dfa932f2675b34d4dd1b20eaa13bd61e99af052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101b1a257779e1011c862cc83a92837b64c5503e6a2341747715b84cf7f59b400b500000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000316a2f6998328c1a4afe531b9a50ee73413abfb8fa4246826cbd353758090e6c701aa62b345035aaab3901c4e6c6cf77c1eaa0af052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -8707,12 +8737,12 @@ Composes a transaction to issue a new asset using the FairMinter protocol. } ``` -### Compose Fairmint [GET /v2/addresses/{address}/compose/fairmint{?asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Fairmint [GET /v2/addresses/{address}/compose/fairmint{?asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] Composes a transaction to mint a quantity of an asset using the FairMinter protocol. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be minting the asset + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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` @@ -8732,7 +8762,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8749,9 +8779,11 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8762,15 +8794,15 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto ``` { "result": { - "rawtransaction": "02000000000101ebc7922edff8bf7972bfbfc17ef1d69520687cb4a252ed0c25bc335b176b630a000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000166a14e8c879a220caa9210c9d86643046c47edc54aa60d4b6052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "020000000001016da04db66ff7c4ab6a49d406054fdc4ffd54566336864d73ed446c88f0fd41b300000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000166a141f75571447517c4608c7bc28e1748eb3b7fda914dab6052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -8781,15 +8813,15 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto } ``` -### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address from which the assets are attached + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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: `7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1` (str, optional) - The utxo to attach the assets to + + destination: `2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -8807,7 +8839,7 @@ Composes a transaction to attach assets from an address to UTXO. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8824,9 +8856,11 @@ Composes a transaction to attach assets from an address to UTXO. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8837,10 +8871,10 @@ Composes a transaction to attach assets from an address to UTXO. ``` { "result": { - "rawtransaction": "02000000000106fe554038ba01c7f82d1ded9634c1ef501e0c316f39b2f6af7d80141bcaca2bd0000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffdc2ead4b27cfb424aa6e8cc185a5e4a96185af16e10e61164e0f07e4c2b5a317000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffc0f4470bf4218838b2ade8b3782b44678183b2e5fe80c83c5b14ec65bf014a89000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffcdf72a8e033e6ffc183a3728a3842c94648a627ae5438f47b8c8f13022d6d1dd000000001600147ed28f21558ee8ecd78a339105e7756213901b6efffffffffecec22cad05d1f474cdd73f8e9ffa05eb64cf664aebe3b08aaf0bb644770738000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffb9441e2420b5197ae1b9eddcc48ff658d0a1da2e5a5cd889e1fb8c60ea4609e3000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff04e803000000000000695121029f655253bae89cf966929abd462a943a4654655b5b0150b83790569507fe3ae3210295b3c028a258fedebd0f039dac617ac2b59e7194e21ac9a98db0f47cd8943e1c21038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aee803000000000000695121029f655253bae89cf966c2c8bd0c67962840003b055e0406bc3cc5008756f22bdc2103c5fc8e2de81af98aea4800ccfb2233cdf7d466d9b64d93e38eb4a5798d9d6bb421038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aee80300000000000069512102b5655253bae89cf96692caed066494372e7a53405d5652bc04fd63e262ca4fb32103a7cbb74fd12c9bb3897964fbc91002afc2e402e0867ea3d5bad2c34cecac0ec421038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aec13922fc060000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106d255f3c870c454bf71276d1156cfe03e6e538c5650c521e12c9dcce204be897b00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff76305db0be83ba44b1ee94419d6df4123ecd9597b09874355f03cc3e53eb39ac00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff274ed97374790a48938f2d353cc074bcddcc7265ede4ee7cf3a0255b7f5a59b100000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff80a5b02da95acde46fa36874a7a971af6507046ff721c815375d03b47f5d19e200000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffffd102988a692a6725c3c639bd73704baddbaa03df453c00fe666c59d6805df06600000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffffe54fb4732703f004cd0e9610e4985fb5332d4287f5f1434f156b53889ef8c47f00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff04e803000000000000695121021393651064af76fbd387ddb787f537f823efceab25722d54e0ccac8184c27ac22103687ce2a6f2b2fd05bf0884720c4c70cd8cb42b1cfb3215ae31012b857e203e982102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653aee803000000000000695121031393651064af76fbd38087b094e230eb70ebcefe7123201ef4c6f7c799c767c02103362abca8eaeea852b055cc77054973ce88b7224da73704ea62507f872b76394e2102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653aee803000000000000695121033993651064af76fbd38187b1c6bb37f549c9fae02276251c90a2c2f3fdf6024721020f498e918bd79a36d263fe40667a40acb98313289e0460d203601de31a150b2e2102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653aee83922fc06000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -8857,13 +8891,13 @@ Composes a transaction to attach assets from an address to UTXO. } ``` -### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?destination}{&asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}] +### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?destination}{&asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to detach the assets to + + utxo: `7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4:1` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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 @@ -8882,7 +8916,7 @@ Composes a transaction to detach assets from UTXO to an address. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8899,9 +8933,11 @@ Composes a transaction to detach assets from UTXO to an address. + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `` + + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` + + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + 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. @@ -8912,10 +8948,10 @@ Composes a transaction to detach assets from UTXO to an address. ``` { "result": { - "rawtransaction": "02000000000101a7f3d5ff6cad0216060a55b7ad0a1b032687857cd0e9603223a183e5cd328ff4010000001600141811a7fe8c4732c201737549ba5dabb9e5ba8b76ffffffff04e80300000000000069512102d9e4e3e9266c080644ed9f64fec2af0f526747fd0c4bac4dddd10d11f9417b2f2102eb2503919a6e96ca62d48ebfdc837a09e9ba0e366a64d1c0e6b2e3405da3f1b2210305d4947b8fd51fc782076336b7006bffdd6e0ea462eb4be146901788a6ffdd1153aee80300000000000069512102d9e4e3e9266c080644e89d66a5c2fa59046511a90342fc008d814c57fe002ec22102bf2754919e6497c138d3cfeadbc72a41ffbc1920383cd086e0e4b00013feb4b9210305d4947b8fd51fc782076336b7006bffdd6e0ea462eb4be146901788a6ffdd1153aee80300000000000069512102f3e4e3e9266c080644f38a24a2c0f641694072b40548fd4cefe23e23cf711ea82102d24133a6f956a3f255e6b88fefb2183988db6a545d51e4f08782d5716b93c378210305d4947b8fd51fc782076336b7006bffdd6e0ea462eb4be146901788a6ffdd1153aee8980827010000001600141811a7fe8c4732c201737549ba5dabb9e5ba8b7602000000000000", + "rawtransaction": "02000000000101b42aad8aceca153d775a93dcccfd0320d169211dc5b2070ed562a2c44774d57a0100000016001475244ad93a0050562c2ba180c01a2250048932eaffffffff04e803000000000000695121025612563ba9b1cb9e6b2ce2fd898cbdc5302bee2761c7d1eb8f84ba34173675fe2102e153374cb9c68878b17b24d1614979a18921e95d55f0811cb5b68d348432cba02102d1900eb0db4eb39f4331657717a4dd2ea4d20cbdad6002640edfed85a3e7598c53aee803000000000000695121025612563ba9b1cb9e6b2bb4ff8881eb90602eec7134cfd6a589d2f825167025932103b654354be9ccc13ee671679a65012df28175f35c51fadf42aeb3d031d062cbf92102d1900eb0db4eb39f4331657717a4dd2ea4d20cbdad6002640edfed85a3e7598c53aee803000000000000695121037c12563ba9b1cb9e6b7feda8888fff8d5c5fdd6f31c5d7e9ebb18a51270117be2103d330027dddf4b94e881f15e351794ac7ed428a3936c9b229d481ba07e003fe122102d1900eb0db4eb39f4331657717a4dd2ea4d20cbdad6002640edfed85a3e7598c53aef49808270100000016001475244ad93a0050562c2ba180c01a2250048932ea02000000000000", "params": { - "source": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1", - "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4:1", + "destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -8975,8 +9011,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 10000000000, @@ -8984,16 +9020,16 @@ Returns the valid assets "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726509746, - "last_issuance_block_time": 1726509775, + "first_issuance_block_time": 1726774040, + "last_issuance_block_time": 1726774059, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", - "owner": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", + "issuer": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", + "owner": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", "divisible": true, "locked": false, "supply": 100000000000, @@ -9001,16 +9037,16 @@ Returns the valid assets "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1726509741, - "last_issuance_block_time": 1726509741, + "first_issuance_block_time": 1726774036, + "last_issuance_block_time": 1726774036, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 100000000000, @@ -9018,16 +9054,16 @@ Returns the valid assets "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726509706, - "last_issuance_block_time": 1726509706, + "first_issuance_block_time": 1726774002, + "last_issuance_block_time": 1726774002, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 40, @@ -9035,16 +9071,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726509644, - "last_issuance_block_time": 1726509648, + "first_issuance_block_time": 1726773953, + "last_issuance_block_time": 1726773957, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 19, @@ -9052,8 +9088,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726509617, - "last_issuance_block_time": 1726509639, + "first_issuance_block_time": 1726773916, + "last_issuance_block_time": 1726773949, "supply_normalized": "0.00000019" } ], @@ -9081,8 +9117,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 10000000000, @@ -9090,8 +9126,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1726509578, - "last_issuance_block_time": 1726509592, + "first_issuance_block_time": 1726773879, + "last_issuance_block_time": 1726773891, "supply_normalized": "100.00000000" } } @@ -9122,7 +9158,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9130,14 +9166,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9145,7 +9181,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -9162,7 +9198,7 @@ Returns the asset balances Returns the balance of an address and asset + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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` @@ -9174,7 +9210,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -9223,9 +9259,9 @@ Returns the orders of an asset "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9240,7 +9276,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509903, + "block_time": 1726774186, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9266,9 +9302,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9283,7 +9319,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726509899, + "block_time": 1726774182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9309,9 +9345,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "block_index": 186, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -9326,7 +9362,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726774164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9352,9 +9388,9 @@ Returns the orders of an asset }, { "tx_index": 50, - "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "tx_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "block_index": 185, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -9369,7 +9405,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726774160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9395,9 +9431,9 @@ Returns the orders of an asset }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", "block_index": 186, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9412,7 +9448,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726774164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9472,13 +9508,13 @@ Returns the orders of an asset { "result": [ { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 52, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -9492,7 +9528,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726774164, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9512,13 +9548,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 50, - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -9532,7 +9568,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726774160, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9552,13 +9588,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", "tx0_index": 47, - "tx0_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 48, - "tx1_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -9572,7 +9608,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726509796, + "block_time": 1726774079, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9652,20 +9688,20 @@ Returns the credits of an asset "result": [ { "block_index": 192, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -9673,20 +9709,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "60c597d6868e45719209ae17a0338cb00c81d5d64d82363d6dc68744ecf36351", + "event": "8aa19bcf4123dea239e553a76debd1ca8cc3bea950bb5752f247b2e686598b3d", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509592, + "block_time": 1726773891, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -9694,20 +9730,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17", + "event": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509587, + "block_time": 1726773887, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -9715,20 +9751,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "event": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509587, + "block_time": 1726773887, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -9740,16 +9776,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17", + "event": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509587, + "block_time": 1726773887, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -9805,16 +9841,16 @@ Returns the debits of an asset "result": [ { "block_index": 193, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "event": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -9826,16 +9862,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -9847,16 +9883,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -9868,16 +9904,16 @@ Returns the debits of an asset }, { "block_index": 191, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "event": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509903, + "block_time": 1726774186, "asset_info": { "divisible": true, "asset_longname": null, @@ -9889,16 +9925,16 @@ Returns the debits of an asset }, { "block_index": 189, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509894, + "block_time": 1726774177, "asset_info": { "divisible": true, "asset_longname": null, @@ -9938,20 +9974,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 40, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", "block_index": 153, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726774028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -9995,14 +10031,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "60c597d6868e45719209ae17a0338cb00c81d5d64d82363d6dc68744ecf36351", + "tx_hash": "8aa19bcf4123dea239e553a76debd1ca8cc3bea950bb5752f247b2e686598b3d", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -10017,20 +10053,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726509592, + "block_time": 1726773891, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17", + "tx_hash": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -10045,20 +10081,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726509587, + "block_time": 1726773887, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -10073,20 +10109,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726773883, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -10101,7 +10137,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1726509578, + "block_time": 1726773879, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10135,10 +10171,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10146,7 +10182,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "divisible": true, "asset_longname": null, @@ -10159,10 +10195,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 53, - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03", + "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5", "block_index": 187, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10170,7 +10206,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509886, + "block_time": 1726774169, "asset_info": { "divisible": true, "asset_longname": null, @@ -10183,10 +10219,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 42, - "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", "block_index": 155, - "source": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0", - "destination": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1", + "source": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f:0", + "destination": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10194,7 +10230,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509741, + "block_time": 1726774036, "asset_info": { "divisible": true, "asset_longname": null, @@ -10207,10 +10243,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 41, - "tx_hash": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b", + "tx_hash": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f", "block_index": 154, - "source": "9d34a868637906281a292d50facdb8551872a2d08cd28cf7a895f10f80cb0b32:0", - "destination": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0", + "source": "dd421431b6d8790a2f8d1697dc81c363a4c6900ad606f98530945c963304144c:0", + "destination": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10218,7 +10254,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509735, + "block_time": 1726774032, "asset_info": { "divisible": true, "asset_longname": null, @@ -10267,18 +10303,18 @@ Returns the dispensers of an asset "result": [ { "tx_index": 32, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10288,7 +10324,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726509701, + "block_time": 1726773999, "asset_info": { "divisible": true, "asset_longname": null, @@ -10304,9 +10340,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10315,7 +10351,7 @@ Returns the dispensers of an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10325,7 +10361,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726773991, "asset_info": { "divisible": true, "asset_longname": null, @@ -10341,9 +10377,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "ee65a85736487849d0d1ac06ea09424e477194edd27c7c31afbe06f4fbb6142c", + "tx_hash": "4d8d4ccec8ed1d84a032067715c8887702edcf52a81407942e3e2dd19132229d", "block_index": 142, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10352,7 +10388,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "origin": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10362,7 +10398,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509684, + "block_time": 1726773982, "asset_info": { "divisible": true, "asset_longname": null, @@ -10378,9 +10414,9 @@ Returns the dispensers of an asset }, { "tx_index": 26, - "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10389,7 +10425,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10399,7 +10435,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -10424,7 +10460,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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` @@ -10437,9 +10473,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10448,7 +10484,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10458,7 +10494,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726773991, "asset_info": { "divisible": true, "asset_longname": null, @@ -10508,7 +10544,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -10516,7 +10552,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -10525,7 +10561,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -10533,7 +10569,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -10542,7 +10578,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -10550,7 +10586,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -10559,7 +10595,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -10596,27 +10632,27 @@ Returns the dispenses of an asset { "tx_index": 33, "dispense_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10631,7 +10667,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726509701, + "block_time": 1726773999, "asset_info": { "divisible": true, "asset_longname": null, @@ -10645,19 +10681,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10665,7 +10701,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10680,7 +10716,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -10694,19 +10730,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10714,7 +10750,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10729,7 +10765,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726773973, "asset_info": { "divisible": true, "asset_longname": null, @@ -10772,8 +10808,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 0, @@ -10781,8 +10817,8 @@ Returns asset subassets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1726509760, - "last_issuance_block_time": 1726509760, + "first_issuance_block_time": 1726774054, + "last_issuance_block_time": 1726774054, "supply_normalized": "0.00000000" } ], @@ -10814,10 +10850,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -10842,7 +10878,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509592 + "block_time": 1726773891 } ], "next_cursor": null, @@ -10873,64 +10909,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "60c597d6868e45719209ae17a0338cb00c81d5d64d82363d6dc68744ecf36351", + "tx_hash": "8aa19bcf4123dea239e553a76debd1ca8cc3bea950bb5752f247b2e686598b3d", "tx_index": 13, "block_index": 125, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509592, + "block_time": 1726773891, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } }, { - "tx_hash": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17", + "tx_hash": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8", "tx_index": 12, "block_index": 124, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509587, + "block_time": 1726773887, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } }, { - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", "tx_index": 11, "block_index": 123, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726773883, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } @@ -10946,7 +10982,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address of the mints to return + + address: `bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (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` @@ -10965,22 +11001,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", "tx_index": 11, "block_index": 123, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726773883, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } @@ -11024,9 +11060,9 @@ Returns all the orders "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11041,7 +11077,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509903, + "block_time": 1726774186, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11067,9 +11103,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11084,7 +11120,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726509899, + "block_time": 1726774182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11110,9 +11146,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "block_index": 186, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11127,7 +11163,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726774164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11153,9 +11189,9 @@ Returns all the orders }, { "tx_index": 50, - "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "tx_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "block_index": 185, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11170,7 +11206,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726774160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11196,9 +11232,9 @@ Returns all the orders }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", "block_index": 186, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11213,7 +11249,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726774164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11248,7 +11284,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232` (str, required) - The hash of the transaction that created the order + + order_hash: `fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e` (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. @@ -11260,9 +11296,9 @@ Returns the information of an order { "result": { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11277,7 +11313,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509903, + "block_time": 1726774186, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11309,7 +11345,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1` (str, required) - The hash of the transaction that created the order + + order_hash: `32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032` (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 @@ -11334,13 +11370,13 @@ Returns the order matches of an order { "result": [ { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 52, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11354,7 +11390,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726774164, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11374,13 +11410,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 50, - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11394,7 +11430,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726774160, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11424,7 +11460,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1` (str, required) - The hash of the transaction that created the order + + order_hash: `32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032` (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 @@ -11443,15 +11479,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 51, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", "block_index": 185, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "btc_amount": 2000, - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "status": "valid", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726774160, "btc_amount_normalized": "0.00002000" } ], @@ -11493,9 +11529,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11513,7 +11549,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509903, + "block_time": 1726774186, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11539,9 +11575,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11559,7 +11595,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509899, + "block_time": 1726774182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11585,9 +11621,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "block_index": 186, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11605,7 +11641,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726509871, + "block_time": 1726774164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11631,9 +11667,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "tx_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "block_index": 185, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11651,7 +11687,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726509867, + "block_time": 1726774160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11677,9 +11713,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", "block_index": 186, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11697,7 +11733,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509871, + "block_time": 1726774164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11758,13 +11794,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 52, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11781,7 +11817,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509871, + "block_time": 1726774164, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11801,13 +11837,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 50, - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11824,7 +11860,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509867, + "block_time": 1726774160, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11844,13 +11880,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", "tx0_index": 47, - "tx0_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 48, - "tx1_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -11867,7 +11903,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509796, + "block_time": 1726774079, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11923,13 +11959,13 @@ Returns all the order matches { "result": [ { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 52, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11943,7 +11979,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726774164, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11963,13 +11999,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 50, - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11983,7 +12019,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726774160, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12003,13 +12039,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", "tx0_index": 47, - "tx0_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 48, - "tx1_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12023,7 +12059,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726509796, + "block_time": 1726774079, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12191,66 +12227,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "2504c4bdafa1c2cab23605685e6a8040748f7d6df91f857b42f1cb259d3a91e0", + "tx_hash": "b7f0dde4bbad6994cc0193c8774206f9809c5f83989c87a66b294ca6afb2a852", "block_index": 121, - "source": "bcrt1qyzyw25seaw22494hrmtlwsm3d5mqyp93fd25da", + "source": "bcrt1qx026kexytkv73h2sucljqxmu6dz8q5qsfvp3mw", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1726509573, + "block_time": 1726773875, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "6322f2e8e202acc14afc1b22b19ac8ab56b27f17712400d116568a1da72222cc", + "tx_hash": "67984637a26a30e7ea7c95835fb9c1333583499820c53a25ccc35117621efd1c", "block_index": 120, - "source": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", + "source": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1726509569, + "block_time": 1726773871, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "38fc46963011e93a419c7d62e149905064cd942d143e7452ee3a67a6183f9e98", + "tx_hash": "7217920d2226cacc0e914354a1a47e57453361706004220693b66d2de2829aef", "block_index": 119, - "source": "bcrt1qqt2dxp9pmcgvjrckeyuy29myfghay5le53hl0d", + "source": "bcrt1qt42f6kccqmjd3pstrcu3smvumgz8235g6naz5n", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1726509565, + "block_time": 1726773867, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "f8d15199587f10cbe7ee5233aba5c8fcc99d9ba2e1c6995360c80912f6eb2a6c", + "tx_hash": "886af1d613518edf54569689de9d3982e5ac2d7e181e97657a4c47fb374a6a5b", "block_index": 118, - "source": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1726509560, + "block_time": 1726773863, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "7b45fa1f2e5deab279659946a3af0948830f02d9df9dd929afc3d897f23384ef", + "tx_hash": "f6b1cbac3fd4887c14ba61bc6bc199afb8d8598d8eacf61502eadcc1f6cd6723", "block_index": 117, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1726509556, + "block_time": 1726773858, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12293,18 +12329,18 @@ Returns all dispensers "result": [ { "tx_index": 32, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -12314,7 +12350,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726509701, + "block_time": 1726773999, "asset_info": { "divisible": true, "asset_longname": null, @@ -12330,9 +12366,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -12341,7 +12377,7 @@ Returns all dispensers "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12351,7 +12387,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726773991, "asset_info": { "divisible": true, "asset_longname": null, @@ -12367,9 +12403,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "ee65a85736487849d0d1ac06ea09424e477194edd27c7c31afbe06f4fbb6142c", + "tx_hash": "4d8d4ccec8ed1d84a032067715c8887702edcf52a81407942e3e2dd19132229d", "block_index": 142, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12378,7 +12414,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "origin": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12388,7 +12424,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509684, + "block_time": 1726773982, "asset_info": { "divisible": true, "asset_longname": null, @@ -12404,9 +12440,9 @@ Returns all dispensers }, { "tx_index": 26, - "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12415,7 +12451,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12425,7 +12461,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -12450,7 +12486,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e` (str, required) - The hash of the dispenser to return + + dispenser_hash: `f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e` (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. @@ -12462,9 +12498,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12473,7 +12509,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12483,7 +12519,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -12505,7 +12541,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e` (str, required) - The hash of the dispenser to return + + dispenser_hash: `f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e` (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 @@ -12525,19 +12561,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12545,7 +12581,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12560,7 +12596,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -12574,19 +12610,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12594,7 +12630,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12609,7 +12645,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726773973, "asset_info": { "divisible": true, "asset_longname": null, @@ -12651,20 +12687,20 @@ Returns all the dividends "result": [ { "tx_index": 40, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", "block_index": 153, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726774028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -12689,7 +12725,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00` (str, required) - The hash of the dividend to return + + dividend_hash: `2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6` (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. @@ -12701,20 +12737,20 @@ Returns a dividend by its hash { "result": { "tx_index": 40, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", "block_index": 153, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726774028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -12736,7 +12772,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6` (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 @@ -12759,12 +12795,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "event": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", "tx_index": 40, - "utxo": "9d34a868637906281a292d50facdb8551872a2d08cd28cf7a895f10f80cb0b32:0", - "utxo_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "utxo": "dd421431b6d8790a2f8d1697dc81c363a4c6900ad606f98530945c963304144c:0", + "utxo_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726774028, "asset_info": { "divisible": true, "asset_longname": null, @@ -12776,16 +12812,16 @@ Returns a dividend distribution by its hash }, { "block_index": 153, - "address": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0", + "address": "bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "event": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509732, + "block_time": 1726774028, "asset_info": { "divisible": true, "asset_longname": null, @@ -12831,27 +12867,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", + "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", "transaction_count": 1, - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "block_time": 1726509912 + "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", + "block_time": 1726774194 }, "tx_hash": null, "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "tx_index": 59 }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 }, { "event_index": 533, @@ -12860,12 +12896,12 @@ Returns all events "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "status": "valid", "tag": "64657374726f79", - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "tx_index": 59, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -12875,24 +12911,24 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 193, - "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "event": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -12902,25 +12938,25 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", "block_index": 193, - "block_time": 1726509912, + "block_time": 1726774194, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "tx_index": 59, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -12940,9 +12976,9 @@ Returns all events }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 } ], "next_cursor": 530, @@ -12970,15 +13006,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", + "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", "transaction_count": 1, - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "block_time": 1726509912 + "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", + "block_time": 1726774194 }, "tx_hash": null, "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 } } ``` @@ -13056,16 +13092,16 @@ Returns the events filtered by event name "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -13075,78 +13111,78 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726509899, + "block_time": 1726774182, "asset_info": { "divisible": true, "asset_longname": null, @@ -13156,24 +13192,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726774182 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "event": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "divisible": true, "asset_longname": null, @@ -13183,9 +13219,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "block_time": 1726509890 + "block_time": 1726774173 } ], "next_cursor": 490, @@ -13241,27 +13277,27 @@ Returns all the dispenses { "tx_index": 33, "dispense_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13276,7 +13312,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726509701, + "block_time": 1726773999, "asset_info": { "divisible": true, "asset_longname": null, @@ -13290,19 +13326,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13310,7 +13346,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13325,7 +13361,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -13339,19 +13375,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13359,7 +13395,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13374,7 +13410,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726773973, "asset_info": { "divisible": true, "asset_longname": null, @@ -13416,10 +13452,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -13427,7 +13463,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "divisible": true, "asset_longname": null, @@ -13440,10 +13476,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13451,11 +13487,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -13464,10 +13500,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13475,11 +13511,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -13488,10 +13524,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 53, - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03", + "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5", "block_index": 187, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -13499,7 +13535,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509886, + "block_time": 1726774169, "asset_info": { "divisible": true, "asset_longname": null, @@ -13512,10 +13548,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 42, - "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", "block_index": 155, - "source": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0", - "destination": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1", + "source": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f:0", + "destination": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -13523,7 +13559,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509741, + "block_time": 1726774036, "asset_info": { "divisible": true, "asset_longname": null, @@ -13565,14 +13601,14 @@ Returns all the issuances "result": [ { "tx_index": 46, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -13587,20 +13623,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509780, + "block_time": 1726774063, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "99d6840da9077ad147d3cb8e3a527ebcb05445b5e72d0fa4f9429f91a2ed5f9f", + "tx_hash": "a9bf93086ed282edc2b5194935329671a7e12a0af1a2408220460fd3bac8663b", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -13615,20 +13651,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726509775, + "block_time": 1726774059, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "edf7eb0a60e46ad53360d769c00fbd350628dff893bb6f1869570c9fdcfc71af", + "tx_hash": "4204b9166ff55290c1a9696502a714ae666873dd698433434047f5a70049c6b5", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -13643,20 +13679,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509760, + "block_time": 1726774054, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "23d681cb0c9d9310fd8150fcabf440c84cae363db926d0fcde70cbe12373f96f", + "tx_hash": "7d4a2bd04f1f814197a4eb9b38403dcfcf0dc8b1a4ccac05b631aa1d00d2b8b0", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -13671,20 +13707,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509746, + "block_time": 1726774040, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", - "issuer": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", + "source": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", + "issuer": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", "transfer": false, "callable": false, "call_date": 0, @@ -13699,7 +13735,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509741, + "block_time": 1726774036, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -13714,7 +13750,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491` (str, required) - The hash of the transaction to return + + tx_hash: `73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04` (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. @@ -13726,14 +13762,14 @@ Returns the issuances of a block { "result": { "tx_index": 46, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -13748,7 +13784,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509780, + "block_time": 1726774063, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -13780,16 +13816,16 @@ Returns all sweeps "result": [ { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "fee_paid_normalized": "0.00600000" } ], @@ -13803,7 +13839,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b` (str, required) - The hash of the transaction to return + + tx_hash: `a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b` (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. @@ -13816,16 +13852,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "fee_paid_normalized": "0.00600000" } ], @@ -13859,9 +13895,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a", + "tx_hash": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c", "block_index": 138, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -13869,14 +13905,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726509656, + "block_time": 1726773966, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "1629a61f230d38e661231eeaac724d9336e9413ce0a9f145c49d57030ae05b8d", + "tx_hash": "04c2e5dab15ab4e26d63a5648f0d6629630b4542ae192461bdcf2113b0f3cea8", "block_index": 137, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -13884,7 +13920,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726509652, + "block_time": 1726773962, "fee_fraction_int_normalized": "0.00000000" } ], @@ -13898,7 +13934,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a` (str, required) - The hash of the transaction to return + + tx_hash: `16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c` (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. @@ -13910,9 +13946,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a", + "tx_hash": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c", "block_index": 138, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -13920,7 +13956,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726509656, + "block_time": 1726773966, "fee_fraction_int_normalized": "0.00000000" } } @@ -13950,10 +13986,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -13978,13 +14014,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509644 + "block_time": 1726773953 }, { - "tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14009,13 +14045,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509617 + "block_time": 1726773916 }, { - "tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16", + "tx_hash": "8bf6a822f10cccc625da7811b776e108fadf45d1b9255b1ab005583ec7c9df68", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14040,13 +14076,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509613 + "block_time": 1726773912 }, { - "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14071,7 +14107,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509592 + "block_time": 1726773891 } ], "next_cursor": null, @@ -14114,7 +14150,7 @@ Returns the mints by fairminter Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p,bcrt1qqt2dxp9pmcgvjrckeyuy29myfghay5le53hl0d` (str, required) - The addresses to search for + + addresses: `bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f,bcrt1qt42f6kccqmjd3pstrcu3smvumgz8235g6naz5n` (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. @@ -14133,8 +14169,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", - "address": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p" + "txid": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "address": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f" }, { "vout": 2, @@ -14142,8 +14178,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", - "address": "bcrt1qqt2dxp9pmcgvjrckeyuy29myfghay5le53hl0d" + "txid": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", + "address": "bcrt1qt42f6kccqmjd3pstrcu3smvumgz8235g6naz5n" } ], "next_cursor": null, @@ -14156,7 +14192,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2` (str, required) - The address to search for + + address: `bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr` (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 @@ -14172,28 +14208,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03" + "tx_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646" }, { - "tx_hash": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17" + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" }, { - "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21" + "tx_hash": "4115c489972af768c3e60643b878d4a6ecc092fe74535f163b893ee108b3d1ac" }, { - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "c0c8b02d6f939e8b2bbb01a5c627931701e2ec82cf0235bb4a3992cbbbe6afaf" }, { - "tx_hash": "d2f3afeb63580aa006eee4e055138c2903f7e8172876f688b7241e2ebbe5f172" + "tx_hash": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8" }, { - "tx_hash": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88" + "tx_hash": "0b55d2fd4d396734b796b0ad4164d7d531839c050c4f31df53d1d4a86750b9bd" }, { - "tx_hash": "58f41fb8b8ec22f12daa5aad5a4f72194f54f652542abd409766afe4de2798b9" + "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5" }, { - "tx_hash": "cd209fe04d43a38dcf842ad0d74fd71e123c66549db03f3650099a7e5f0297be" + "tx_hash": "67db055172fd889ca6fa9cc47fa2ab086efcdc03871cefc9a0e6833aa2cffadc" } ], "next_cursor": null, @@ -14206,7 +14242,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99` (str, required) - The address to search for. + + address: `bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v` (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. @@ -14219,8 +14255,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 1, - "tx_hash": "39808e5b91587a72ae37c23d618a8526cf4c292592c2681dd3400837654b0786" + "block_index": 3, + "tx_hash": "bbd270fe0e9b97f3f448b48b3775e20490cc261947529308c45a7a60ef530783" } } ``` @@ -14230,7 +14266,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p` (str, required) - The address to search for + + address: `bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f` (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 @@ -14251,7 +14287,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535" + "txid": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942" } ], "next_cursor": null, @@ -14264,7 +14300,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - Address to get pubkey for. + + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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. @@ -14276,7 +14312,7 @@ Get pubkey for an address. ``` { - "result": "038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a9387076169" + "result": "02c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f06" } ``` @@ -14285,7 +14321,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce` (str, required) - The transaction hash + + tx_hash: `6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c` (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. @@ -14297,7 +14333,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101ba21bea38dc876b1215be6872f0c75a77328eb90aea0f5e5f5d687b38e7ca5050300000000ffffffff020000000000000000226a20e661db2d032f2a3e7844cfb698121f85b2b30cced7b8b215b0e8fe1f5fd1a779680b0a2701000000160014ae2b0c1095bbdf23747f76b242be716817701b780247304402205f232b082605ae63445a865c556deef60158bbdf42b4ac8953b712ef33fe80a202203c7aebb1b51e30698a54c8e0177213dcbcd480529ede188b0a18129a80637fef0121035352a3478786437bb2f973478638b43a6bee4a925c1b0efd94dc193e94b198b500000000" + "result": "02000000000101fd0c406894a43ebc56997fddac107e59b628059bd4cfecda5e5d3ad23b95fb1c0300000000ffffffff020000000000000000226a2028ceed4b42cd7a8574dcfaf080310efd1a684767b5d9fa4c75620faed856d7da680b0a27010000001600143bbe3a6dd2351dc452f0f53e2e5847e3877d10ef02473044022014155e9bcb3ee227cfeaac8db5228fec8354c26108f8a0b8af789613ed39a88e02204cc66cf3f406a7c3fb63aef2d648fa9c69c492919b55f94ddde23ee83c35e7cb0121031a1876320c94f09b1a0c6265a68fc71d71e90127a44268a63950acae03f65be000000000" } ``` @@ -14319,7 +14355,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 68546 + "result": 68517 } ``` @@ -14390,26 +14426,26 @@ Returns all mempool events { "result": [ { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "tx_index": 60 } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "memo": null, "quantity": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "status": "valid", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "tx_index": 60, "asset_info": { "divisible": true, @@ -14422,19 +14458,19 @@ Returns all mempool events } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "CREDIT", "params": { - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -14446,19 +14482,19 @@ Returns all mempool events } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 193, - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -14470,27 +14506,27 @@ Returns all mempool events } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726509917.0831685, + "block_time": 1726774198.968543, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f92", + "data": "020000000000000001000000000000271080f09d239511eee425be033d403d5cc35cc271f906", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "tx_index": 60, - "utxos_info": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6:1", + "utxos_info": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "memo": null, "asset_info": { "divisible": true, @@ -14534,19 +14570,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "CREDIT", "params": { - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -14568,7 +14604,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6` (str, required) - The hash of the transaction to return + + tx_hash: `fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63` (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 @@ -14588,26 +14624,26 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "tx_index": 60 } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "memo": null, "quantity": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "status": "valid", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "tx_index": 60, "asset_info": { "divisible": true, @@ -14620,19 +14656,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "CREDIT", "params": { - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -14644,19 +14680,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 193, - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -14668,27 +14704,27 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726509917.0831685, + "block_time": 1726774198.968543, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f92", + "data": "020000000000000001000000000000271080f09d239511eee425be033d403d5cc35cc271f906", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "tx_index": 60, - "utxos_info": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6:1", + "utxos_info": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "memo": null, "asset_info": { "divisible": true, diff --git a/counterparty-core/counterpartycore/lib/backend/bitcoind.py b/counterparty-core/counterpartycore/lib/backend/bitcoind.py index e09839fa82..e0f73f197b 100644 --- a/counterparty-core/counterpartycore/lib/backend/bitcoind.py +++ b/counterparty-core/counterpartycore/lib/backend/bitcoind.py @@ -288,3 +288,8 @@ def sendrawtransaction(signedhex: str): :param signedhex: The signed transaction hex. """ return rpc("sendrawtransaction", [signedhex]) + + +def get_tx_out_amount(tx_hash, vout): + raw_tx = getrawtransaction(tx_hash, True) + return raw_tx["vout"][vout]["value"] diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index 8ba3ba3528..c8ccae992e 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -100,7 +100,7 @@ def construct( dust_return_pubkey=None, allow_unconfirmed_inputs=False, unspent_tx_hash=None, - custom_inputs=None, + input_set=None, disable_utxo_locks=False, extended_tx_info=False, old_style_api=None, @@ -108,7 +108,7 @@ def construct( p2sh_source_multisig_pubkeys=None, p2sh_source_multisig_pubkeys_required=None, p2sh_pretx_txid=None, - exclude_utxos="", + exclude_utxos=None, ): if TRANSACTION_SERVICE_SINGLETON is None: raise Exception("Transaction not initialized") @@ -129,7 +129,7 @@ def construct( dust_return_pubkey, allow_unconfirmed_inputs, unspent_tx_hash, - custom_inputs, + input_set, disable_utxo_locks, extended_tx_info, old_style_api, @@ -340,7 +340,7 @@ def construct_coin_selection( source, allow_unconfirmed_inputs, unspent_tx_hash, - custom_inputs, + input_set, fee_per_kb, estimate_fee_per_kb, estimate_fee_per_kb_nblocks, @@ -354,8 +354,8 @@ def construct_coin_selection( exclude_utxos, ): # Array of UTXOs, as retrieved by listunspent function from bitcoind - if custom_inputs: - use_inputs = unspent = custom_inputs + if input_set: + use_inputs = unspent = input_set else: if unspent_tx_hash is not None: unspent = self.backend.addrindexrs.get_unspent_txouts( @@ -385,7 +385,10 @@ def construct_coin_selection( make_outkey(output) not in filter_unspents_utxo_locks and self.make_outkey_vin_txid(output["txid"], output["vout"]) not in filter_unspents_p2sh_locks - and f"{output['txid']}:{output['vout']}" not in exclude_utxos.split(",") + and ( + not exclude_utxos + or f"{output['txid']}:{output['vout']}" not in exclude_utxos.split(",") + ) ): filtered_unspent.append(output) unspent = filtered_unspent @@ -562,7 +565,7 @@ def construct( dust_return_pubkey=None, allow_unconfirmed_inputs=False, unspent_tx_hash=None, - custom_inputs=None, + input_set=None, disable_utxo_locks=False, extended_tx_info=False, old_style_api=None, @@ -570,7 +573,7 @@ def construct( p2sh_source_multisig_pubkeys=None, p2sh_source_multisig_pubkeys_required=None, p2sh_pretx_txid=None, - exclude_utxos="", + exclude_utxos=None, ): if estimate_fee_per_kb is None: estimate_fee_per_kb = config.ESTIMATE_FEE_PER_KB @@ -775,7 +778,7 @@ def construct( source, allow_unconfirmed_inputs, unspent_tx_hash, - custom_inputs, + input_set, fee_per_kb, estimate_fee_per_kb, estimate_fee_per_kb_nblocks, @@ -1077,7 +1080,7 @@ def get_dust_return_pubkey(source, provided_pubkeys, encoding): "unspent_tx_hash": ( str, None, - "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", ), "dust_return_pubkey": ( str, @@ -1112,7 +1115,7 @@ def get_dust_return_pubkey(source, provided_pubkeys, encoding): ), "exclude_utxos": ( str, - "", + None, "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", ), "return_only_data": ( @@ -1120,9 +1123,9 @@ def get_dust_return_pubkey(source, provided_pubkeys, encoding): False, "Return only the data part of the transaction", ), - "custom_inputs": ( + "input_set": ( str, - "", + None, "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", ), } @@ -1167,7 +1170,7 @@ def compose_transaction( fee=None, fee_provided=0, unspent_tx_hash=None, - custom_inputs=None, + input_set=None, dust_return_pubkey=None, disable_utxo_locks=False, extended_tx_info=False, @@ -1178,7 +1181,7 @@ def compose_transaction( segwit=False, api_v1=False, return_psbt=False, - exclude_utxos="", + exclude_utxos=None, return_only_data=False, ): """Create and return a transaction.""" @@ -1193,18 +1196,25 @@ def compose_transaction( else: raise exceptions.TransactionError("Invalid pubkey.") - if isinstance(custom_inputs, str): - new_custom_inputs = [] - for str_input in custom_inputs.split(","): + if isinstance(input_set, str) and input_set: + new_input_set = [] + for str_input in input_set.split(","): if not util.is_utxo_format(str_input): raise exceptions.ComposeError(f"invalid UTXO: {str_input}") - new_custom_inputs.append( + try: + amount = backend.bitcoind.get_tx_out_amount( + str_input.split(":")[0], int(str_input.split(":")[1]) + ) + except Exception as e: + raise exceptions.ComposeError(f"invalid UTXO: {str_input}") from e + new_input_set.append( { "txid": str_input.split(":")[0], "vout": int(str_input.split(":")[1]), + "amount": amount, } ) - custom_inputs = new_custom_inputs + input_set = new_input_set # Get additional pubkeys from `source` and `destination` params. # Convert `source` and `destination` to pubkeyhash form. @@ -1281,7 +1291,7 @@ def compose_transaction( exact_fee=fee, fee_provided=fee_provided, unspent_tx_hash=unspent_tx_hash, - custom_inputs=custom_inputs, + input_set=input_set, dust_return_pubkey=dust_return_pubkey, disable_utxo_locks=disable_utxo_locks, extended_tx_info=extended_tx_info, diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index dac6834153..efaca2c797 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -9988,7 +9988,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", "required": false }, { @@ -10054,6 +10054,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "input_set", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -10164,7 +10171,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", "required": false }, { @@ -10230,6 +10237,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "input_set", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -10322,7 +10336,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", "required": false }, { @@ -10388,6 +10402,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "input_set", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -10487,7 +10508,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", "required": false }, { @@ -10553,6 +10574,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "input_set", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -10645,7 +10673,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", "required": false }, { @@ -10711,6 +10739,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "input_set", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -10815,7 +10850,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", "required": false }, { @@ -10881,6 +10916,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "input_set", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11011,7 +11053,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", "required": false }, { @@ -11077,6 +11119,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "input_set", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11181,7 +11230,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", "required": false }, { @@ -11247,6 +11296,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "input_set", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11380,7 +11436,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", "required": false }, { @@ -11446,6 +11502,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "input_set", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11564,7 +11627,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", "required": false }, { @@ -11630,6 +11693,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "input_set", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11752,7 +11822,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", "required": false }, { @@ -11818,6 +11888,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "input_set", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11943,7 +12020,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", "required": false }, { @@ -12009,6 +12086,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "input_set", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12113,7 +12197,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", "required": false }, { @@ -12179,6 +12263,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "input_set", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12277,7 +12368,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", "required": false }, { @@ -12343,6 +12434,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "input_set", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12547,7 +12645,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", "required": false }, { @@ -12613,6 +12711,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "input_set", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12712,7 +12817,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", "required": false }, { @@ -12778,6 +12883,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "input_set", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12883,7 +12995,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", "required": false }, { @@ -12949,6 +13061,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "input_set", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", @@ -13053,7 +13172,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", "required": false }, { @@ -13119,6 +13238,13 @@ "description": "Return only the data part of the transaction", "required": false }, + { + "name": "input_set", + "type": "str", + "default": "", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, { "name": "verbose", "type": "bool", diff --git a/counterparty-core/counterpartycore/test/fixtures/vectors.py b/counterparty-core/counterpartycore/test/fixtures/vectors.py index 850b19a705..1e6d73d629 100644 --- a/counterparty-core/counterpartycore/test/fixtures/vectors.py +++ b/counterparty-core/counterpartycore/test/fixtures/vectors.py @@ -6517,7 +6517,7 @@ { "encoding": "multisig", "regular_dust_size": DP["regular_dust_size"], - "custom_inputs": [ + "input_set": [ { "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "txhex": "0100000002eff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b000000006c493046022100ec6fa8316a4f5cfd69816e31011022acce0933bd3b01248caa8b49e60de1b98a022100987ba974b2a4f9976a8d61d94009cb7f7986a827dc5730e999de1fb748d2046c01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffffeff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b010000006a47304402201f8fb2d62df22592cb8d37c68ab26563dbb8e270f7f8409ac0f6d7b24ddb5c940220314e5c767fd12b20116528c028eab2bfbad30eb963bd849993410049cf14a83d01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffff02145fea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac0000000000000000346a32544553540000000a00000000000000010000000005f5e1000000000000000000000000000bebc2000032000000000000271000000000", @@ -6547,7 +6547,7 @@ { "encoding": "multisig", "regular_dust_size": DP["regular_dust_size"], - "custom_inputs": [ + "input_set": [ { "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "txhex": "0100000002eff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b000000006c493046022100ec6fa8316a4f5cfd69816e31011022acce0933bd3b01248caa8b49e60de1b98a022100987ba974b2a4f9976a8d61d94009cb7f7986a827dc5730e999de1fb748d2046c01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffffeff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b010000006a47304402201f8fb2d62df22592cb8d37c68ab26563dbb8e270f7f8409ac0f6d7b24ddb5c940220314e5c767fd12b20116528c028eab2bfbad30eb963bd849993410049cf14a83d01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffff02145fea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac0000000000000000346a32544553540000000a00000000000000010000000005f5e1000000000000000000000000000bebc2000032000000000000271000000000", diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 6e744f2a6d..12e556b322 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": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_time": 1726774194, + "previous_block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", "difficulty": 545259519, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", + "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", + "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", - "block_time": 1726509908, - "previous_block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", + "block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", + "block_time": 1726774190, + "previous_block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", "difficulty": 545259519, - "ledger_hash": "a352fa09b0c8621cb30776de9b016c7b433da3453f51a01610e0d8a706b94c7e", - "txlist_hash": "83367c52c5808cc55d9902d446542239ae36c22d7b7d92678f128ad83f58aaea", - "messages_hash": "3172cc5949c44703a36181b1b938faf388d0cf72e686932ee5ee218ee893e4a6", + "ledger_hash": "65803d38379c30b6ac2d05ad148ef1ce11251447ffe401556c7bf9c06eebd906", + "txlist_hash": "a10e0fed77cc0ef6274cddbef2c672fb7ebe1ed630d31ee561671205aac9ecd0", + "messages_hash": "034324fb557a2ab6042fd66134a2f5c9a4a5183ee5ddde1a03677c06c17172eb", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", - "block_time": 1726509903, - "previous_block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017", + "block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", + "block_time": 1726774186, + "previous_block_hash": "651e3b0cf4808037e35d34560665bfc4d692e40ccd883d2bbc7f46c761f7ee32", "difficulty": 545259519, - "ledger_hash": "20f305d9381284d270d7c1d22ba897f66d072d2f1df42dfeeffdf903e9627921", - "txlist_hash": "57455bb363a21c6f49fa641f5bedf87e9eedc785270ddc90711b98f54eb0f113", - "messages_hash": "2f8a089ba7d158feab1cd9daea1fc5a85d43e2de099feb80f384f9fafe9efbb5", + "ledger_hash": "d0d4cc486e16045bdeffd6704f0f275cb2c4f6073bc259daaf2ec310bfdc3062", + "txlist_hash": "2d66b5f605dc1728fbeb9e5b41f8e04a57ae32c137af8d438199d7309d8bd408", + "messages_hash": "83f1641453993b2ab8575ad53e07994f91c1d0cf5c67544bf00e47422bc9f8a9", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017", - "block_time": 1726509899, - "previous_block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b", + "block_hash": "651e3b0cf4808037e35d34560665bfc4d692e40ccd883d2bbc7f46c761f7ee32", + "block_time": 1726774182, + "previous_block_hash": "0892483cda3b2359321d54521d71b9cdb5179631f9afd3a6815afbf31654f10a", "difficulty": 545259519, - "ledger_hash": "5dac3b61245453c5448b8e8ef6eaf53e9ca0a371d3b6524ca97ef99e40551036", - "txlist_hash": "5caba1ce46d6c7e9d5a7cb1c794b331dd473323683be48d62b3e03fef3a9cb75", - "messages_hash": "a3d30ea5b4343aac41752e3cbe083b2f9a5070adb3e28d3cf3b586d60b13f937", + "ledger_hash": "1898591abedb9c6efebfb7c361c3867e5598e6c92c71620cda963dfbbe4edd8e", + "txlist_hash": "89cf7a5f82297c2a7e8572eb0a362c74f3dc2ec3b01f0fdac01a8445b32c2d62", + "messages_hash": "7d0c9df38a19bbf929f126f7fd0fc7d514c2ae87adea140b9285e754ab4c6fdb", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b", - "block_time": 1726509894, - "previous_block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780", + "block_hash": "0892483cda3b2359321d54521d71b9cdb5179631f9afd3a6815afbf31654f10a", + "block_time": 1726774177, + "previous_block_hash": "21c746c1d8a7a666598b18913fd73535305caee24703a5b741f5dfc04e1ad59d", "difficulty": 545259519, - "ledger_hash": "3f97c50ca5edc66440c05c58badb6d8f26237669ef20c001a05e476404900c94", - "txlist_hash": "ed6472060345e91ae8e05a0f6d7a9a0e657098f47eae73e2e644fc7e455e67d3", - "messages_hash": "9f629d60ea05b595361922207a4b99e144e342dcc0cef5755d71e920ec551ba7", + "ledger_hash": "de085f2fd32217117cc9f9b6cb78b3136bf9153af0b2127518bcb3fe9c100452", + "txlist_hash": "0cfa2c2e5403d9416acafcf271cd9ddfd121009f1c9d60ac249e22acda1e2aa1", + "messages_hash": "6ee20d350c2f943b261ad04265acdf29297c93220360a20d862f110e2d7af316", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_time": 1726774194, + "previous_block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", "difficulty": 545259519, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", + "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", + "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_time": 1726774194, + "previous_block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", "difficulty": 545259519, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", + "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", + "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_time": 1726774194, + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -139,11 +139,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "a352fa09b0c8621cb30776de9b016c7b433da3453f51a01610e0d8a706b94c7e", - "messages_hash": "3172cc5949c44703a36181b1b938faf388d0cf72e686932ee5ee218ee893e4a6", + "ledger_hash": "65803d38379c30b6ac2d05ad148ef1ce11251447ffe401556c7bf9c06eebd906", + "messages_hash": "034324fb557a2ab6042fd66134a2f5c9a4a5183ee5ddde1a03677c06c17172eb", "transaction_count": 1, - "txlist_hash": "83367c52c5808cc55d9902d446542239ae36c22d7b7d92678f128ad83f58aaea", - "block_time": 1726509908 + "txlist_hash": "a10e0fed77cc0ef6274cddbef2c672fb7ebe1ed630d31ee561671205aac9ecd0", + "block_time": 1726774190 }, "tx_hash": null }, @@ -152,43 +152,43 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58 }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "status": "valid", - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, - "block_time": 1726509908, + "block_time": 1726774190, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -198,22 +198,22 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "XCP", "block_index": 192, - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -223,7 +223,7 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" } ], "next_cursor": 524, @@ -261,16 +261,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -280,57 +280,57 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" } ], "next_cursor": null, @@ -340,16 +340,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -361,20 +361,20 @@ }, { "block_index": 192, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -382,20 +382,20 @@ }, { "block_index": 192, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -409,16 +409,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "event": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -436,24 +436,24 @@ "result": [ { "type": "order", - "object_id": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "object_id": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", "block_index": 182, "confirmed": true, - "block_time": 1726509796 + "block_time": 1726774079 }, { "type": "order", - "object_id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", + "object_id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", "block_index": 182, "confirmed": true, - "block_time": 1726509796 + "block_time": 1726774079 }, { "type": "order_match", - "object_id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "object_id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", "block_index": 182, "confirmed": true, - "block_time": 1726509796 + "block_time": 1726774079 } ], "next_cursor": null, @@ -463,13 +463,13 @@ "result": [ { "tx_index": 56, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "status": "valid", "confirmed": true, - "block_time": 1726509899 + "block_time": 1726774182 } ], "next_cursor": null, @@ -479,15 +479,15 @@ "result": [ { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -505,14 +505,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -527,7 +527,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509780, + "block_time": 1726774063, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -539,10 +539,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -550,7 +550,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "divisible": true, "asset_longname": null, @@ -563,10 +563,10 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -574,11 +574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -587,10 +587,10 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -598,11 +598,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -618,27 +618,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -653,7 +653,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726509701, + "block_time": 1726773999, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,16 +672,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "fee_paid_normalized": "0.00600000" } ], @@ -692,17 +692,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_time": 1726774194, + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -725,23 +725,23 @@ }, { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e", - "block_time": 1726509908, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", + "block_time": 1726774190, + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480ae2b0c1095bbdf23747f76b242be716817701b78017377656570206d7920617373657473", + "data": "04803bbe3a6dd2351dc452f0f53e2e5847e3877d10ef017377656570206d7920617373657473", "supported": true, - "utxos_info": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b:1", + "utxos_info": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "flags": 1, "memo": "sweep my assets" } @@ -754,7 +754,7 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, @@ -765,7 +765,7 @@ "coinbase": false, "vin": [ { - "hash": "13f4625e1516c944a8463d27d826a53f0fcbba50aced60bf5eb00888663ce56e", + "hash": "f89d7f0229fc92436f8da698cf6e84a93b47befecf1461b747dad2e8cf0ce294", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -775,20 +775,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a332354da0a2986e439d6bf246d84f86ee1f3d79bd9604d9ff8543c944eead26bc52dcc129be40851375a2c04808350b9e7608862" + "script_pub_key": "6a33f86a88cbd459ab1e8a7811747f2ab644821023c577bf622caa30ea790a3fbd2c5ec91fa1510cc56212ab482d7a0dd81d359991" }, { "value": 4999990000, - "script_pub_key": "00147ed28f21558ee8ecd78a339105e7756213901b6e" + "script_pub_key": "0014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4" } ], "vtxinwit": [ - "30440220192675f05c9144776192e2c92db009e8ed5fcedd0c45fbcda89a84a2320f2af30220196bac09bfaedbea9e4458ec76ad50697d0cb659327702787f2ceb8f11832daf01", - "038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a9387076169" + "30440220182f5ce19f9c4927b2fe424a6705ee0212ebcc0d6d12ae76003c2962ff89bd4802201012a5d031f0964a88d27e2fd17b1c81970e8b61cb3d2ad1dad58b11a704e17801", + "02c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f06" ], "lock_time": 0, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", - "tx_id": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232" + "tx_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", + "tx_id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3" }, "unpacked_data": { "message_type": "order", @@ -835,17 +835,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_time": 1726774194, + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -870,17 +870,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", - "block_time": 1726509912, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_time": 1726774194, + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -909,47 +909,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58 }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "status": "valid", - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, - "block_time": 1726509908, + "block_time": 1726774190, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -959,24 +959,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "XCP", "block_index": 192, - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -986,36 +986,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 } ], "next_cursor": 523, @@ -1028,47 +1028,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58 }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "status": "valid", - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, - "block_time": 1726509908, + "block_time": 1726774190, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -1078,24 +1078,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "XCP", "block_index": 192, - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -1105,36 +1105,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 } ], "next_cursor": 523, @@ -1144,10 +1144,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -1155,7 +1155,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "divisible": true, "asset_longname": null, @@ -1168,10 +1168,10 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1179,11 +1179,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -1192,10 +1192,10 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1203,11 +1203,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -1223,27 +1223,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -1258,7 +1258,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726509701, + "block_time": 1726773999, "asset_info": { "divisible": true, "asset_longname": null, @@ -1279,16 +1279,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -1298,63 +1298,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 } ], "next_cursor": null, @@ -1366,16 +1366,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -1385,63 +1385,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 } ], "next_cursor": null, @@ -1454,7 +1454,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1464,7 +1464,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -1475,7 +1475,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1485,7 +1485,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -1496,7 +1496,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1506,7 +1506,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -1517,7 +1517,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1527,7 +1527,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -1538,7 +1538,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1548,7 +1548,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -1562,17 +1562,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", - "block_time": 1726509903, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", + "block_time": 1726774186, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1", + "utxos_info": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1608,23 +1608,23 @@ }, { "tx_index": 56, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "block_index": 190, - "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017", - "block_time": 1726509899, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "651e3b0cf4808037e35d34560665bfc4d692e40ccd883d2bbc7f46c761f7ee32", + "block_time": 1726774182, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "465e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "data": "46ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "supported": true, - "utxos_info": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec:1", + "utxos_info": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "status": "valid" } }, @@ -1632,17 +1632,17 @@ }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "block_index": 189, - "block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b", - "block_time": 1726509894, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "0892483cda3b2359321d54521d71b9cdb5179631f9afd3a6815afbf31654f10a", + "block_time": 1726774177, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2:1", + "utxos_info": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1678,17 +1678,17 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780", - "block_time": 1726509890, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "21c746c1d8a7a666598b18913fd73535305caee24703a5b741f5dfc04e1ad59d", + "block_time": 1726774173, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038057841d54055a90ed31a47e9821fd3118e6e78592808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f9280ae2b0c1095bbdf23747f76b242be716817701b78400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a51d35219ae418a29d635b82e9190881258cb46480f09d239511eee425be033d403d5cc35cc271f906803bbe3a6dd2351dc452f0f53e2e5847e3877d10ef400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f:0", + "utxos_info": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1696,14 +1696,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -1711,7 +1711,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1730,25 +1730,25 @@ }, { "tx_index": 51, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", "block_index": 185, - "block_hash": "7bb18fb36cb1bd5cb99d781fabe17b43d4b67ee7530bd6ab46356fdb3e139fa6", - "block_time": 1726509867, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "4079d9964616962b4485c46f0b95a71d419ff12d2ce66578ed3e1ce2381779a6", + "block_time": 1726774160, + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "btc_amount": 2000, "fee": 10000, - "data": "0b675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "data": "0b32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "supported": true, - "utxos_info": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d:0", + "utxos_info": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "status": "valid" } }, @@ -1777,11 +1777,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "status": "open", - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "tx_index": 57, - "block_time": 1726509903, + "block_time": 1726774186, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1805,24 +1805,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "block_time": 1726509903 + "block_time": 1726774186 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "block_index": 191, - "event": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "event": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1726509903, + "block_time": 1726774186, "asset_info": { "divisible": true, "asset_longname": null, @@ -1832,25 +1832,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "block_time": 1726509903 + "block_time": 1726774186 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", + "block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", "block_index": 191, - "block_time": 1726509903, + "block_time": 1726774186, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "tx_index": 57, - "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1", + "utxos_info": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1882,40 +1882,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "block_time": 1726509903 + "block_time": 1726774186 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "status": "valid", - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "tx_index": 56, - "block_time": 1726509899 + "block_time": 1726774182 }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726774182 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726509899, + "block_time": 1726774182, "asset_info": { "divisible": true, "asset_longname": null, @@ -1925,9 +1925,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726774182 } ], "next_cursor": 506, @@ -1936,17 +1936,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "memo": null, "quantity": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "status": "valid", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "tx_index": 60, "asset_info": { "divisible": true, @@ -1959,19 +1959,19 @@ } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "CREDIT", "params": { - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -1983,19 +1983,19 @@ } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 193, - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -2007,27 +2007,27 @@ } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726509917.0831685, + "block_time": 1726774198.968543, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f92", + "data": "020000000000000001000000000000271080f09d239511eee425be033d403d5cc35cc271f906", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "tx_index": 60, - "utxos_info": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6:1", + "utxos_info": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "memo": null, "asset_info": { "divisible": true, @@ -2049,7 +2049,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2057,14 +2057,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2072,14 +2072,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2094,7 +2094,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2102,7 +2102,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2114,7 +2114,7 @@ }, "/v2/addresses/
/balances/": { "result": { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2133,16 +2133,16 @@ "result": [ { "block_index": 190, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509899, + "block_time": 1726774182, "asset_info": { "divisible": true, "asset_longname": null, @@ -2154,16 +2154,16 @@ }, { "block_index": 182, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", + "event": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509796, + "block_time": 1726774079, "asset_info": { "divisible": true, "asset_longname": null, @@ -2175,20 +2175,20 @@ }, { "block_index": 159, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "event": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509780, + "block_time": 1726774063, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2196,20 +2196,20 @@ }, { "block_index": 156, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "23d681cb0c9d9310fd8150fcabf440c84cae363db926d0fcde70cbe12373f96f", + "event": "7d4a2bd04f1f814197a4eb9b38403dcfcf0dc8b1a4ccac05b631aa1d00d2b8b0", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509746, + "block_time": 1726774040, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2221,16 +2221,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "event": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", "tx_index": 38, - "utxo": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1", - "utxo_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "utxo": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e:1", + "utxo_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "confirmed": true, - "block_time": 1726509724, + "block_time": 1726774019, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2244,16 +2244,16 @@ "result": [ { "block_index": 191, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "event": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509903, + "block_time": 1726774186, "asset_info": { "divisible": true, "asset_longname": null, @@ -2265,16 +2265,16 @@ }, { "block_index": 189, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509894, + "block_time": 1726774177, "asset_info": { "divisible": true, "asset_longname": null, @@ -2286,16 +2286,16 @@ }, { "block_index": 188, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "event": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "divisible": true, "asset_longname": null, @@ -2307,20 +2307,20 @@ }, { "block_index": 188, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "event": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2328,16 +2328,16 @@ }, { "block_index": 183, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "event": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509858, + "block_time": 1726774153, "asset_info": { "divisible": true, "asset_longname": null, @@ -2360,9 +2360,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "1629a61f230d38e661231eeaac724d9336e9413ce0a9f145c49d57030ae05b8d", + "tx_hash": "04c2e5dab15ab4e26d63a5648f0d6629630b4542ae192461bdcf2113b0f3cea8", "block_index": 137, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2370,7 +2370,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726509652, + "block_time": 1726773962, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2381,14 +2381,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "84cfd2ae481d0a4171e66009619eda93802914d5ccbb4bc52a5b76fd06d2dd79", + "tx_hash": "23f9db86085e7bb684b573ea2431e4df71742706ec74943c876c80cc1321789f", "block_index": 112, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1726509535, + "block_time": 1726773838, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2400,10 +2400,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2411,7 +2411,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "divisible": true, "asset_longname": null, @@ -2424,10 +2424,10 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2435,11 +2435,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2448,10 +2448,10 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2459,11 +2459,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2472,10 +2472,10 @@ }, { "tx_index": 38, - "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "tx_hash": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", "block_index": 151, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2483,11 +2483,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509724, + "block_time": 1726774019, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2496,10 +2496,10 @@ }, { "tx_index": 35, - "tx_hash": "523006a2ff042bd1708eb4642871fe8df38dbb0d40fc0b07f7c4d78ea57fff6d", + "tx_hash": "41fac461930dace665e9bb44dc633220d82b7510e61470fcdf4539273a33300a", "block_index": 148, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "d2f3afeb63580aa006eee4e055138c2903f7e8172876f688b7241e2ebbe5f172:1", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "0b55d2fd4d396734b796b0ad4164d7d531839c050c4f31df53d1d4a86750b9bd:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2507,11 +2507,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509710, + "block_time": 1726774007, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2526,10 +2526,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba", + "tx_hash": "1cfb953bd23a5d5edaeccfd49b0528b6597e10acdd7f9956bc3ea49468400cfd", "block_index": 150, - "source": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88:0", - "destination": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0", + "source": "67db055172fd889ca6fa9cc47fa2ab086efcdc03871cefc9a0e6833aa2cffadc:0", + "destination": "bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2537,11 +2537,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509719, + "block_time": 1726774015, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2556,10 +2556,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2567,11 +2567,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2580,10 +2580,10 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2591,11 +2591,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2604,10 +2604,10 @@ }, { "tx_index": 38, - "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "tx_hash": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", "block_index": 151, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2615,11 +2615,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509724, + "block_time": 1726774019, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2628,10 +2628,10 @@ }, { "tx_index": 35, - "tx_hash": "523006a2ff042bd1708eb4642871fe8df38dbb0d40fc0b07f7c4d78ea57fff6d", + "tx_hash": "41fac461930dace665e9bb44dc633220d82b7510e61470fcdf4539273a33300a", "block_index": 148, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "d2f3afeb63580aa006eee4e055138c2903f7e8172876f688b7241e2ebbe5f172:1", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "0b55d2fd4d396734b796b0ad4164d7d531839c050c4f31df53d1d4a86750b9bd:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2639,11 +2639,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509710, + "block_time": 1726774007, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2658,10 +2658,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba", + "tx_hash": "1cfb953bd23a5d5edaeccfd49b0528b6597e10acdd7f9956bc3ea49468400cfd", "block_index": 150, - "source": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88:0", - "destination": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0", + "source": "67db055172fd889ca6fa9cc47fa2ab086efcdc03871cefc9a0e6833aa2cffadc:0", + "destination": "bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2669,11 +2669,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509719, + "block_time": 1726774015, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -2688,9 +2688,9 @@ "result": [ { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2699,7 +2699,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2709,7 +2709,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726773991, "asset_info": { "divisible": true, "asset_longname": null, @@ -2725,9 +2725,9 @@ }, { "tx_index": 26, - "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2736,7 +2736,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2746,7 +2746,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -2767,9 +2767,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2778,7 +2778,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2788,7 +2788,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726773991, "asset_info": { "divisible": true, "asset_longname": null, @@ -2808,19 +2808,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2828,7 +2828,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2843,7 +2843,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -2857,19 +2857,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2877,7 +2877,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2892,7 +2892,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726773973, "asset_info": { "divisible": true, "asset_longname": null, @@ -2912,19 +2912,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2932,7 +2932,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2947,7 +2947,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -2961,19 +2961,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2981,7 +2981,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2996,7 +2996,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726773973, "asset_info": { "divisible": true, "asset_longname": null, @@ -3016,19 +3016,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3036,7 +3036,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3051,7 +3051,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -3065,19 +3065,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3085,7 +3085,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3100,7 +3100,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726773973, "asset_info": { "divisible": true, "asset_longname": null, @@ -3120,19 +3120,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3140,7 +3140,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3155,7 +3155,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -3169,19 +3169,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3189,7 +3189,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3204,7 +3204,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726773973, "asset_info": { "divisible": true, "asset_longname": null, @@ -3223,16 +3223,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "fee_paid_normalized": "0.00600000" } ], @@ -3243,14 +3243,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -3265,20 +3265,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509780, + "block_time": 1726774063, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "99d6840da9077ad147d3cb8e3a527ebcb05445b5e72d0fa4f9429f91a2ed5f9f", + "tx_hash": "a9bf93086ed282edc2b5194935329671a7e12a0af1a2408220460fd3bac8663b", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -3293,20 +3293,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726509775, + "block_time": 1726774059, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "edf7eb0a60e46ad53360d769c00fbd350628dff893bb6f1869570c9fdcfc71af", + "tx_hash": "4204b9166ff55290c1a9696502a714ae666873dd698433434047f5a70049c6b5", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -3321,20 +3321,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509760, + "block_time": 1726774054, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "23d681cb0c9d9310fd8150fcabf440c84cae363db926d0fcde70cbe12373f96f", + "tx_hash": "7d4a2bd04f1f814197a4eb9b38403dcfcf0dc8b1a4ccac05b631aa1d00d2b8b0", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -3349,20 +3349,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509746, + "block_time": 1726774040, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "73ed3c167032f8d2648710f1bceb54e23fc9faf80658565c8e897ea0fa7bcf35", + "tx_hash": "acfa48a6367ebe208fe02f5a249e5d3ff83f156b26ae8ee055b9d8335bdb41c8", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -3377,7 +3377,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509706, + "block_time": 1726774002, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -3391,8 +3391,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 10000000000, @@ -3400,16 +3400,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726509746, - "last_issuance_block_time": 1726509775, + "first_issuance_block_time": 1726774040, + "last_issuance_block_time": 1726774059, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 100000000000, @@ -3417,16 +3417,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726509706, - "last_issuance_block_time": 1726509706, + "first_issuance_block_time": 1726774002, + "last_issuance_block_time": 1726774002, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 40, @@ -3434,16 +3434,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726509644, - "last_issuance_block_time": 1726509648, + "first_issuance_block_time": 1726773953, + "last_issuance_block_time": 1726773957, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 19, @@ -3451,16 +3451,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726509617, - "last_issuance_block_time": 1726509639, + "first_issuance_block_time": 1726773916, + "last_issuance_block_time": 1726773949, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 0, @@ -3468,8 +3468,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1726509596, - "last_issuance_block_time": 1726509613, + "first_issuance_block_time": 1726773896, + "last_issuance_block_time": 1726773912, "supply_normalized": "0.00000000" } ], @@ -3480,17 +3480,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2", - "block_time": 1726509903, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", + "block_time": 1726774186, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1", + "utxos_info": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3526,23 +3526,23 @@ }, { "tx_index": 56, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "block_index": 190, - "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017", - "block_time": 1726509899, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "651e3b0cf4808037e35d34560665bfc4d692e40ccd883d2bbc7f46c761f7ee32", + "block_time": 1726774182, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "465e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "data": "46ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "supported": true, - "utxos_info": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec:1", + "utxos_info": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "status": "valid" } }, @@ -3550,17 +3550,17 @@ }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "block_index": 189, - "block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b", - "block_time": 1726509894, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "0892483cda3b2359321d54521d71b9cdb5179631f9afd3a6815afbf31654f10a", + "block_time": 1726774177, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2:1", + "utxos_info": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3596,17 +3596,17 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780", - "block_time": 1726509890, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "21c746c1d8a7a666598b18913fd73535305caee24703a5b741f5dfc04e1ad59d", + "block_time": 1726774173, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038057841d54055a90ed31a47e9821fd3118e6e78592808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f9280ae2b0c1095bbdf23747f76b242be716817701b78400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a51d35219ae418a29d635b82e9190881258cb46480f09d239511eee425be033d403d5cc35cc271f906803bbe3a6dd2351dc452f0f53e2e5847e3877d10ef400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f:0", + "utxos_info": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3614,14 +3614,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -3629,7 +3629,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3648,17 +3648,17 @@ }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", "block_index": 183, - "block_hash": "266c58f4906e9a1c4f81f972d7728ac8f370b75de6c542c61c838013ad48749d", - "block_time": 1726509858, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "block_hash": "5f31e68a975e69728a9ad8b70ceb94736ca5b9db87c23fa9186954117e830736", + "block_time": 1726774153, + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1:1", + "utxos_info": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3700,20 +3700,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", "block_index": 153, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726774028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -3735,9 +3735,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3752,7 +3752,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509903, + "block_time": 1726774186, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3778,9 +3778,9 @@ }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3795,7 +3795,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726509899, + "block_time": 1726774182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3821,9 +3821,9 @@ }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", "block_index": 186, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3838,7 +3838,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726774164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3864,9 +3864,9 @@ }, { "tx_index": 47, - "tx_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", + "tx_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", "block_index": 182, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3881,7 +3881,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1726509796, + "block_time": 1726774079, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3912,10 +3912,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -3940,13 +3940,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509644 + "block_time": 1726773953 }, { - "tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -3971,13 +3971,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509617 + "block_time": 1726773916 }, { - "tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16", + "tx_hash": "8bf6a822f10cccc625da7811b776e108fadf45d1b9255b1ab005583ec7c9df68", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4002,13 +4002,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509613 + "block_time": 1726773912 }, { - "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4033,7 +4033,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509592 + "block_time": 1726773891 } ], "next_cursor": null, @@ -4042,127 +4042,127 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "a899b1a361e0514262442a4a300d7571606a3462d50819092e649c490fbcb1e6", + "tx_hash": "ed4ea8c5e199862917e614d38a53e76af1da07f9c981ba9c4c961244f169fea7", "tx_index": 23, "block_index": 136, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "fairminter_tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509648, + "block_time": 1726773957, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } }, { - "tx_hash": "43b87a7de82b3deb9845abcc6d33d3d9b61c21d58377115c5edefeabc763c9ae", + "tx_hash": "8e423ad9a4cd9d5486d14e4674f383f71cb3c0ab9341faab56ff72641a10e21f", "tx_index": 21, "block_index": 134, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "fairminter_tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509639, + "block_time": 1726773949, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } }, { - "tx_hash": "1148cccc0b0535df22ffd1571672abb937ff57bcefafc7af5d797405c8ce0b7f", + "tx_hash": "bf0d60c7451736b319e492c83939e125c79e0887b6da99b3b6513f61d91673f0", "tx_index": 20, "block_index": 133, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "fairminter_tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509625, + "block_time": 1726773934, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } }, { - "tx_hash": "a82d30ebc85da3571118450b2e29b8230ff34da2ee40ff7df9452727b80de1be", + "tx_hash": "dbe3fab19d11222801d9998def264a54cc8303c3c6a653cb72ad34356bb7771a", "tx_index": 19, "block_index": 132, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "fairminter_tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509620, + "block_time": 1726773920, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } }, { - "tx_hash": "2fe7ff0c16953b4aff424432759c2e48819f92f9c4440a7047e3c86f9ca21161", + "tx_hash": "1576a56c7da9b4e5301b3f13da28ce1549890be7193816f00386f60aec6d9c0d", "tx_index": 15, "block_index": 127, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "fairminter_tx_hash": "8bf6a822f10cccc625da7811b776e108fadf45d1b9255b1ab005583ec7c9df68", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509599, + "block_time": 1726773900, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } }, { - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", "tx_index": 11, "block_index": 123, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726773883, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } @@ -4174,22 +4174,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", "tx_index": 11, "block_index": 123, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726773883, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } @@ -4203,9 +4203,9 @@ }, "/v2/addresses/
/compose/broadcast": { "result": { - "rawtransaction": "02000000000101b649c4e7fa40f164c03cd4447f8be4c3bbeb5ab6b102b0040141900933aac6ab000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff0200000000000000002b6a298a111578002e35f209d5778a06bfbacec513f992cc18166b895017e5651e3d9a9c8abe27c32de9bd6334b1052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "020000000001015b95f1d0edb9af21857674c34ee2eecf7c437d120ad8b11ff3c1ab30ad34941700000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff0200000000000000002b6a29d799ae735c5d8d24b2851b7d16af02fac07861af3d7cf1e0fb9831300183c7de88388d7637f673afa13bb1052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4216,19 +4216,19 @@ }, "/v2/addresses/
/compose/btcpay": { "result": { - "rawtransaction": "020000000001014fca2cccbcf61bd93889e6594b5f5676eb7ccec2f792a180f5f069af357b7616000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff03b80b0000000000001600147ed28f21558ee8ecd78a339105e7756213901b6e00000000000000004b6a491bea0194c274239cce2dec48099450c2d32bb382ddfb3b81015ad5ec232bd55868ef141b018286e0bca6432cf028cefc16bae7d9d0f81d7cc89e7f1247e0f068e2c07fc713509850fad093052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "020000000001016ba6ddb41ff1c71ef01d5f7d99d3ff19619764fd7139395f4855ff8bbadb86fd00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff03b80b000000000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb400000000000000004b6a49ff6c16b78d62574dfbdee3b1718760b06956c4b8331be40596089000b04f43ec8266489ee5cb534d609eda9adcef6c15a3c1cddc6bea1a70a05b91a5a15756e79d38c45ebdaa3053d6d993052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21" + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646" }, "name": "btcpay" } }, "/v2/addresses/
/compose/burn": { "result": { - "rawtransaction": "020000000001016fe1241c086889236a07a814417e56dab847abd58d96050d2ef16d394acb7071000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88acdab1052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101f660e9eb9a1f2d2309bdf697c2b5b3f23334d8f808a8a1eff88ef6d7b2cda3d000000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "quantity": 1000, "overburn": false }, @@ -4237,19 +4237,19 @@ }, "/v2/addresses/
/compose/cancel": { "result": { - "rawtransaction": "0200000000010175b4c418d03015dec817aad5fcb40a67eb01ab8c7f9b2434e0aeae3f2c7327e5000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff0200000000000000002b6a296a415035fc0e352ad913bcc9368104122e748b6b983f39533d639f2642afa98318345f31fc54c82b4434b1052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101e0553250341793b1938805256697bc7a3589315a1b5d91b27d1df1977014c56a00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff0200000000000000002b6a295668a78e3c109c1a5cecf29d7dbc71e61654af5de8131cf438b473dbece7448090e33f297d97f622b83bb1052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "offer_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232" + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "offer_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e" }, "name": "cancel" } }, "/v2/addresses/
/compose/destroy": { "result": { - "rawtransaction": "02000000000101b6ee35e1324d5089f8d7d56494bef5bcffa8b7c4a7e486d0af9d225461966691000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000226a207b5b354f4bb56aadb60d34352b229414425ea46fd9be1edf6ea98bd29a7472df9db3052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101f4eaf156a5147856fbcf821afab570471b0e3ea3958803b006209f381ccda17600000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000226a205f50fe398595de935ba8b471bc07546d825273bad0b3a17773b38d0fa3e6410ca4b3052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4267,9 +4267,9 @@ }, "/v2/addresses/
/compose/dispenser": { "result": { - "rawtransaction": "020000000001013535818da2dc8007a59f5067eb9607b1ebdae92c65ceb00a7aa84795be59615102000000160014f8303fb1d45fb1391c65bcbef0035ec2924b52ccffffffff0200000000000000002c6a2abf7584d7e313e8d8dd088940a821ea5a8220cba87c96c52763c53a2847b0809129a37280769f24c74047404b0a2701000000160014f8303fb1d45fb1391c65bcbef0035ec2924b52cc02000000000000", + "rawtransaction": "0200000000010142d963f6ecaa0237cbbc4deb242e98c0a7f2470c1ae1716af7a0c0a77cb9b3cf0200000016001499c67192e83f303947f06852e7e6e2b52c391d6effffffff0200000000000000002c6a2a484527d3b1e8bbc25f877f55a61d739b46d237d5ecdbb9499b2c8899f6cbfd05038c6795ef418236d59f474b0a270100000016001499c67192e83f303947f06852e7e6e2b52c391d6e02000000000000", "params": { - "source": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4292,16 +4292,16 @@ }, "/v2/addresses/
/compose/dividend": { "result": { - "rawtransaction": "02000000000101351dc0ca5529e3f5913ab348c8a5b0dab37120eb3a5362bf1edbd938a12afaa9000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000236a214c12bd38bfe6d74349de8861a285ce801c0df1aea0c2341213c29c0488e3b51bf459b3052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101484f6d3e8e8c85dbd81cf8aec5dbb048b15c0fec1d692274c7bf9745e32576b200000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000236a21f7c73dc70de462b3a2ca786bb59b835f0dcc4b5b5beaeadac7c47e19757e6d02df60b3052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -4319,12 +4319,12 @@ }, "/v2/addresses/
/compose/issuance": { "result": { - "rawtransaction": "020000000001018c2c4aec7dc8917d96c67ca0080178a22f670265ea42df5f51b4cf18143f8d33000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff0322020000000000001600147ed28f21558ee8ecd78a339105e7756213901b6e0000000000000000236a2161361954172494529a3d38abfce581faf126d5f844d56d0f9ff51438a6ee05c1681ca8052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "0200000000010186ad0fee458832c0de1dd9966a33069926f2f243f98469ba3fa3944273cde45b00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff032202000000000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb40000000000000000236a21a1683304b04b1d1475f3c0a20d20038a08cf6ca8acbda83a12086e9dc357fd346624a8052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "transfer_destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "lock": false, "reset": false, @@ -4336,18 +4336,18 @@ }, "/v2/addresses/
/compose/mpma": { "result": { - "rawtransaction": "02000000000104408d3617b81bce0c32909fc2def0c597a56244508180e231a57cd368ef04aca6000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff17bda3cda72e5b5f1532ba6749ecd58427332ebcf282c79cd16c8375a9e4a215000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffc51fabedc80ce42d8f455f8cc69c88e82938707ddda14f7a68f33094383c23f4000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff6da23b7041e4c4b6b8d7cae88d1b4fbdad16503cf3dcfe3f6c85e0ae150c17a7000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff03e80300000000000069512102c9169a3c7845490a815acdd720f2c894bb916b00b6987b846b31895a38e2814d21027759538aaa3307bc8d576cc9ae8b5cfeb4f89eecb554cbecc42baa629bc084ea21038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aee80300000000000069512102c6169a3c7845490a8179babad2e07e3ab844e5e8565a6a3c4d146e2f5af111ab21036c379bdd2e2e53b9d7c789f80af5c4df49c9840a52d15963e663cf0ef7afa8d521038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953ae47d016a8040000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000002000002000002000000000000", + "rawtransaction": "0200000000010467ae41ef8da79d935e681670825e40f24befbbdca22a7320333b43e192f8d41200000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff924ca6bfd82a132dcad89aed447aeb980aa54f8a81f4d2b640129ecb0ac6de8d00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4fffffffffb2109d82cfecc8bfdbf973756cb8915055f4107817f6f07fd8e6977915f64e100000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff075ddf0c5b084c3b6e081e3d4f33bf054378daaf6d266310ebf247e22992bee700000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff03e8030000000000006951210201a8a17f6a01b50fa2d98020050cecd2659660a886b103c25f5d88a97f6edf372103bbb7bf19e4b7bd6d38343fb525381f752c5f8de88805717e1bb3f49fd1265eed2102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653aee803000000000000695121020ea8a17f6a01b50fa2faf74df736d31e13f06c4eb8f050ee14312a92cffbf2782103840377bcf9829cf7dc2c952846639d9c35570ecd04b115f139fb91f3bd4972e82102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653ae61d016a804000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000002000002000002000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", 1 ], [ "MYASSETA", - "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", 2 ] ], @@ -4359,9 +4359,9 @@ }, "/v2/addresses/
/compose/order": { "result": { - "rawtransaction": "02000000000101c07bf8106610b1b623cb978c0aba88af7803750f54a05c0005f982825d88d475000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000356a334143661d91daa75e926ff6d79759f0577584c1a37635e27e463babf031a6b24bdcd4d41d8aebadcc6eb12b58fa950c86172ab287ae052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101b3933707ee814a13c6a0ac0728c741f4afa0c687b84c9c56007b288199eb8ab800000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000356a33c7189069e502f204f0e78cd884d8f440021fcfb552cb58038caf028c61aa0742f018ebb64fa057a574a68a4fc0eb16fbafd38d8eae052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4378,7 +4378,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -4391,10 +4391,10 @@ }, "/v2/addresses/
/compose/send": { "result": { - "rawtransaction": "02000000000101d1ed4e6a2b26727a08b51181f172b8a5c8dd24188e57f543702dac89c942bd12000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000306a2eb930bb587d4fd62cbc52cc09eacb8b0dfbb418f08631a6360d98cf5ce3120e46955c4c3d48c01ca4c9bbe19f3103deaf052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101ab9c7e9d9540332260f5b115b09a402931f0659ca4f30014431a259823d177e500000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000306a2eb624a1bd5d8e105c14b7f5caeb09878243f79cd1b77be2cd639b1c7e5f557e86a06a3392aba6af329056f991c7c7e5af052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4414,10 +4414,10 @@ }, "/v2/addresses/
/compose/sweep": { "result": { - "rawtransaction": "02000000000101b562c0730715780ae991157f93d3a949c1cfaba285b7f621eea8d3dda79da50c000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000236a218a5634f40393d59bc3c1a4c12be1661951369bb953fbb8da7bd34ffdc310d0a1fe59b3052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "020000000001017d84d6968d3246a363b35b66859e8eab7b7f3de8fad05879d98e769c4afc76b400000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000236a21fae7d81d569a6880e110a810de905c32449ef189ee95fe540e9a1359d7530aa7cc60b3052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "flags": 7, "memo": "FFFF" }, @@ -4426,10 +4426,10 @@ }, "/v2/addresses/
/compose/dispense": { "result": { - "rawtransaction": "020000000001014d628a3e65cc9537aa62c9b42db1b2df0e61d973978cac54482a0953d6fe49d70200000016001457841d54055a90ed31a47e9821fd3118e6e78592ffffffff03e803000000000000160014ae2b0c1095bbdf23747f76b242be716817701b7800000000000000000c6a0ac17afa5cc1158f0972f85fb808270100000016001457841d54055a90ed31a47e9821fd3118e6e7859202000000000000", + "rawtransaction": "02000000000101724e212baf5ce78b5ea009a78a673da26f320390b49a7a423fc431372422c4c702000000160014a51d35219ae418a29d635b82e9190881258cb464ffffffff03e8030000000000001600143bbe3a6dd2351dc452f0f53e2e5847e3877d10ef00000000000000000c6a0ad1a4b51a70e96388926566b8082701000000160014a51d35219ae418a29d635b82e9190881258cb46402000000000000", "params": { - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "quantity": 1000 }, "name": "dispense" @@ -4437,9 +4437,9 @@ }, "/v2/addresses/
/compose/fairminter": { "result": { - "rawtransaction": "02000000000101fbdb9417de62f10b9120f7e3e29518b3e1b564d76efe4eeb9f5fb40810cb2695000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000316a2f1a876d6cad75159c126a8d28d8dba1389dc8a65bf6ccf9207d08f02f106901dfa932f2675b34d4dd1b20eaa13bd61e99af052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "02000000000101b1a257779e1011c862cc83a92837b64c5503e6a2341747715b84cf7f59b400b500000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000316a2f6998328c1a4afe531b9a50ee73413abfb8fa4246826cbd353758090e6c701aa62b345035aaab3901c4e6c6cf77c1eaa0af052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4463,15 +4463,15 @@ }, "/v2/addresses/
/compose/fairmint": { "result": { - "rawtransaction": "02000000000101ebc7922edff8bf7972bfbfc17ef1d69520687cb4a252ed0c25bc335b176b630a000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000166a14e8c879a220caa9210c9d86643046c47edc54aa60d4b6052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000", + "rawtransaction": "020000000001016da04db66ff7c4ab6a49d406054fdc4ffd54566336864d73ed446c88f0fd41b300000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000166a141f75571447517c4608c7bc28e1748eb3b7fda914dab6052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -4482,10 +4482,10 @@ }, "/v2/addresses/
/compose/attach": { "result": { - "rawtransaction": "02000000000106fe554038ba01c7f82d1ded9634c1ef501e0c316f39b2f6af7d80141bcaca2bd0000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffdc2ead4b27cfb424aa6e8cc185a5e4a96185af16e10e61164e0f07e4c2b5a317000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffc0f4470bf4218838b2ade8b3782b44678183b2e5fe80c83c5b14ec65bf014a89000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffcdf72a8e033e6ffc183a3728a3842c94648a627ae5438f47b8c8f13022d6d1dd000000001600147ed28f21558ee8ecd78a339105e7756213901b6efffffffffecec22cad05d1f474cdd73f8e9ffa05eb64cf664aebe3b08aaf0bb644770738000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffb9441e2420b5197ae1b9eddcc48ff658d0a1da2e5a5cd889e1fb8c60ea4609e3000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff04e803000000000000695121029f655253bae89cf966929abd462a943a4654655b5b0150b83790569507fe3ae3210295b3c028a258fedebd0f039dac617ac2b59e7194e21ac9a98db0f47cd8943e1c21038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aee803000000000000695121029f655253bae89cf966c2c8bd0c67962840003b055e0406bc3cc5008756f22bdc2103c5fc8e2de81af98aea4800ccfb2233cdf7d466d9b64d93e38eb4a5798d9d6bb421038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aee80300000000000069512102b5655253bae89cf96692caed066494372e7a53405d5652bc04fd63e262ca4fb32103a7cbb74fd12c9bb3897964fbc91002afc2e402e0867ea3d5bad2c34cecac0ec421038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aec13922fc060000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106d255f3c870c454bf71276d1156cfe03e6e538c5650c521e12c9dcce204be897b00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff76305db0be83ba44b1ee94419d6df4123ecd9597b09874355f03cc3e53eb39ac00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff274ed97374790a48938f2d353cc074bcddcc7265ede4ee7cf3a0255b7f5a59b100000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff80a5b02da95acde46fa36874a7a971af6507046ff721c815375d03b47f5d19e200000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffffd102988a692a6725c3c639bd73704baddbaa03df453c00fe666c59d6805df06600000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffffe54fb4732703f004cd0e9610e4985fb5332d4287f5f1434f156b53889ef8c47f00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff04e803000000000000695121021393651064af76fbd387ddb787f537f823efceab25722d54e0ccac8184c27ac22103687ce2a6f2b2fd05bf0884720c4c70cd8cb42b1cfb3215ae31012b857e203e982102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653aee803000000000000695121031393651064af76fbd38087b094e230eb70ebcefe7123201ef4c6f7c799c767c02103362abca8eaeea852b055cc77054973ce88b7224da73704ea62507f872b76394e2102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653aee803000000000000695121033993651064af76fbd38187b1c6bb37f549c9fae02276251c90a2c2f3fdf6024721020f498e918bd79a36d263fe40667a40acb98313289e0460d203601de31a150b2e2102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653aee83922fc06000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4502,10 +4502,10 @@ }, "/v2/utxos//compose/detach": { "result": { - "rawtransaction": "02000000000101a7f3d5ff6cad0216060a55b7ad0a1b032687857cd0e9603223a183e5cd328ff4010000001600141811a7fe8c4732c201737549ba5dabb9e5ba8b76ffffffff04e80300000000000069512102d9e4e3e9266c080644ed9f64fec2af0f526747fd0c4bac4dddd10d11f9417b2f2102eb2503919a6e96ca62d48ebfdc837a09e9ba0e366a64d1c0e6b2e3405da3f1b2210305d4947b8fd51fc782076336b7006bffdd6e0ea462eb4be146901788a6ffdd1153aee80300000000000069512102d9e4e3e9266c080644e89d66a5c2fa59046511a90342fc008d814c57fe002ec22102bf2754919e6497c138d3cfeadbc72a41ffbc1920383cd086e0e4b00013feb4b9210305d4947b8fd51fc782076336b7006bffdd6e0ea462eb4be146901788a6ffdd1153aee80300000000000069512102f3e4e3e9266c080644f38a24a2c0f641694072b40548fd4cefe23e23cf711ea82102d24133a6f956a3f255e6b88fefb2183988db6a545d51e4f08782d5716b93c378210305d4947b8fd51fc782076336b7006bffdd6e0ea462eb4be146901788a6ffdd1153aee8980827010000001600141811a7fe8c4732c201737549ba5dabb9e5ba8b7602000000000000", + "rawtransaction": "02000000000101b42aad8aceca153d775a93dcccfd0320d169211dc5b2070ed562a2c44774d57a0100000016001475244ad93a0050562c2ba180c01a2250048932eaffffffff04e803000000000000695121025612563ba9b1cb9e6b2ce2fd898cbdc5302bee2761c7d1eb8f84ba34173675fe2102e153374cb9c68878b17b24d1614979a18921e95d55f0811cb5b68d348432cba02102d1900eb0db4eb39f4331657717a4dd2ea4d20cbdad6002640edfed85a3e7598c53aee803000000000000695121025612563ba9b1cb9e6b2bb4ff8881eb90602eec7134cfd6a589d2f825167025932103b654354be9ccc13ee671679a65012df28175f35c51fadf42aeb3d031d062cbf92102d1900eb0db4eb39f4331657717a4dd2ea4d20cbdad6002640edfed85a3e7598c53aee803000000000000695121037c12563ba9b1cb9e6b7feda8888fff8d5c5fdd6f31c5d7e9ebb18a51270117be2103d330027dddf4b94e881f15e351794ac7ed428a3936c9b229d481ba07e003fe122102d1900eb0db4eb39f4331657717a4dd2ea4d20cbdad6002640edfed85a3e7598c53aef49808270100000016001475244ad93a0050562c2ba180c01a2250048932ea02000000000000", "params": { - "source": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1", - "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4:1", + "destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4526,8 +4526,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 10000000000, @@ -4535,16 +4535,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726509746, - "last_issuance_block_time": 1726509775, + "first_issuance_block_time": 1726774040, + "last_issuance_block_time": 1726774059, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", - "owner": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", + "issuer": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", + "owner": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", "divisible": true, "locked": false, "supply": 100000000000, @@ -4552,16 +4552,16 @@ "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1726509741, - "last_issuance_block_time": 1726509741, + "first_issuance_block_time": 1726774036, + "last_issuance_block_time": 1726774036, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 100000000000, @@ -4569,16 +4569,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726509706, - "last_issuance_block_time": 1726509706, + "first_issuance_block_time": 1726774002, + "last_issuance_block_time": 1726774002, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 40, @@ -4586,16 +4586,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726509644, - "last_issuance_block_time": 1726509648, + "first_issuance_block_time": 1726773953, + "last_issuance_block_time": 1726773957, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 19, @@ -4603,8 +4603,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726509617, - "last_issuance_block_time": 1726509639, + "first_issuance_block_time": 1726773916, + "last_issuance_block_time": 1726773949, "supply_normalized": "0.00000019" } ], @@ -4616,8 +4616,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 10000000000, @@ -4625,15 +4625,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1726509578, - "last_issuance_block_time": 1726509592, + "first_issuance_block_time": 1726773879, + "last_issuance_block_time": 1726773891, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4641,14 +4641,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4656,7 +4656,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -4668,7 +4668,7 @@ }, "/v2/assets//balances/
": { "result": { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4687,9 +4687,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4704,7 +4704,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509903, + "block_time": 1726774186, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4730,9 +4730,9 @@ }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4747,7 +4747,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726509899, + "block_time": 1726774182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4773,9 +4773,9 @@ }, { "tx_index": 52, - "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "block_index": 186, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -4790,7 +4790,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726774164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4816,9 +4816,9 @@ }, { "tx_index": 50, - "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "tx_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "block_index": 185, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -4833,7 +4833,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726774160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4859,9 +4859,9 @@ }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", "block_index": 186, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4876,7 +4876,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726774164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4907,13 +4907,13 @@ "/v2/assets//matches": { "result": [ { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 52, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -4927,7 +4927,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726774164, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4947,13 +4947,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 50, - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -4967,7 +4967,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726774160, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4987,13 +4987,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", "tx0_index": 47, - "tx0_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 48, - "tx1_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5007,7 +5007,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726509796, + "block_time": 1726774079, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5034,20 +5034,20 @@ "result": [ { "block_index": 192, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5055,20 +5055,20 @@ }, { "block_index": 125, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "60c597d6868e45719209ae17a0338cb00c81d5d64d82363d6dc68744ecf36351", + "event": "8aa19bcf4123dea239e553a76debd1ca8cc3bea950bb5752f247b2e686598b3d", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509592, + "block_time": 1726773891, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5076,20 +5076,20 @@ }, { "block_index": 124, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17", + "event": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509587, + "block_time": 1726773887, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5097,20 +5097,20 @@ }, { "block_index": 124, - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "event": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509587, + "block_time": 1726773887, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5122,16 +5122,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17", + "event": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509587, + "block_time": 1726773887, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5145,16 +5145,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "event": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -5166,16 +5166,16 @@ }, { "block_index": 192, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -5187,16 +5187,16 @@ }, { "block_index": 192, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -5208,16 +5208,16 @@ }, { "block_index": 191, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "event": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509903, + "block_time": 1726774186, "asset_info": { "divisible": true, "asset_longname": null, @@ -5229,16 +5229,16 @@ }, { "block_index": 189, - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509894, + "block_time": 1726774177, "asset_info": { "divisible": true, "asset_longname": null, @@ -5256,20 +5256,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", "block_index": 153, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726774028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5291,14 +5291,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "60c597d6868e45719209ae17a0338cb00c81d5d64d82363d6dc68744ecf36351", + "tx_hash": "8aa19bcf4123dea239e553a76debd1ca8cc3bea950bb5752f247b2e686598b3d", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -5313,20 +5313,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726509592, + "block_time": 1726773891, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17", + "tx_hash": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -5341,20 +5341,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726509587, + "block_time": 1726773887, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -5369,20 +5369,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726773883, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -5397,7 +5397,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1726509578, + "block_time": 1726773879, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5409,10 +5409,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5420,7 +5420,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "divisible": true, "asset_longname": null, @@ -5433,10 +5433,10 @@ }, { "tx_index": 53, - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03", + "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5", "block_index": 187, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5444,7 +5444,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509886, + "block_time": 1726774169, "asset_info": { "divisible": true, "asset_longname": null, @@ -5457,10 +5457,10 @@ }, { "tx_index": 42, - "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", "block_index": 155, - "source": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0", - "destination": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1", + "source": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f:0", + "destination": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5468,7 +5468,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509741, + "block_time": 1726774036, "asset_info": { "divisible": true, "asset_longname": null, @@ -5481,10 +5481,10 @@ }, { "tx_index": 41, - "tx_hash": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b", + "tx_hash": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f", "block_index": 154, - "source": "9d34a868637906281a292d50facdb8551872a2d08cd28cf7a895f10f80cb0b32:0", - "destination": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0", + "source": "dd421431b6d8790a2f8d1697dc81c363a4c6900ad606f98530945c963304144c:0", + "destination": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5492,7 +5492,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509735, + "block_time": 1726774032, "asset_info": { "divisible": true, "asset_longname": null, @@ -5511,18 +5511,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5532,7 +5532,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726509701, + "block_time": 1726773999, "asset_info": { "divisible": true, "asset_longname": null, @@ -5548,9 +5548,9 @@ }, { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5559,7 +5559,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5569,7 +5569,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726773991, "asset_info": { "divisible": true, "asset_longname": null, @@ -5585,9 +5585,9 @@ }, { "tx_index": 29, - "tx_hash": "ee65a85736487849d0d1ac06ea09424e477194edd27c7c31afbe06f4fbb6142c", + "tx_hash": "4d8d4ccec8ed1d84a032067715c8887702edcf52a81407942e3e2dd19132229d", "block_index": 142, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5596,7 +5596,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "origin": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5606,7 +5606,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509684, + "block_time": 1726773982, "asset_info": { "divisible": true, "asset_longname": null, @@ -5622,9 +5622,9 @@ }, { "tx_index": 26, - "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5633,7 +5633,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5643,7 +5643,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -5664,9 +5664,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5675,7 +5675,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5685,7 +5685,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726773991, "asset_info": { "divisible": true, "asset_longname": null, @@ -5713,7 +5713,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5721,7 +5721,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -5730,7 +5730,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5738,7 +5738,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -5747,7 +5747,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5755,7 +5755,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -5764,7 +5764,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -5779,27 +5779,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5814,7 +5814,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726509701, + "block_time": 1726773999, "asset_info": { "divisible": true, "asset_longname": null, @@ -5828,19 +5828,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5848,7 +5848,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5863,7 +5863,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -5877,19 +5877,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5897,7 +5897,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5912,7 +5912,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726773973, "asset_info": { "divisible": true, "asset_longname": null, @@ -5933,8 +5933,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false, "supply": 0, @@ -5942,8 +5942,8 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1726509760, - "last_issuance_block_time": 1726509760, + "first_issuance_block_time": 1726774054, + "last_issuance_block_time": 1726774054, "supply_normalized": "0.00000000" } ], @@ -5953,10 +5953,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -5981,7 +5981,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509592 + "block_time": 1726773891 } ], "next_cursor": null, @@ -5990,64 +5990,64 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "60c597d6868e45719209ae17a0338cb00c81d5d64d82363d6dc68744ecf36351", + "tx_hash": "8aa19bcf4123dea239e553a76debd1ca8cc3bea950bb5752f247b2e686598b3d", "tx_index": 13, "block_index": 125, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509592, + "block_time": 1726773891, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } }, { - "tx_hash": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17", + "tx_hash": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8", "tx_index": 12, "block_index": 124, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509587, + "block_time": 1726773887, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } }, { - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", "tx_index": 11, "block_index": 123, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726773883, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } @@ -6059,22 +6059,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c", + "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", "tx_index": 11, "block_index": 123, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726509583, + "block_time": 1726773883, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } @@ -6087,9 +6087,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6104,7 +6104,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509903, + "block_time": 1726774186, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6130,9 +6130,9 @@ }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6147,7 +6147,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726509899, + "block_time": 1726774182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6173,9 +6173,9 @@ }, { "tx_index": 52, - "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "block_index": 186, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6190,7 +6190,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726774164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6216,9 +6216,9 @@ }, { "tx_index": 50, - "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "tx_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "block_index": 185, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6233,7 +6233,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726774160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6259,9 +6259,9 @@ }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", "block_index": 186, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6276,7 +6276,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726774164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6307,9 +6307,9 @@ "/v2/orders/": { "result": { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6324,7 +6324,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726509903, + "block_time": 1726774186, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6352,13 +6352,13 @@ "/v2/orders//matches": { "result": [ { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 52, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6372,7 +6372,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726774164, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6392,13 +6392,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 50, - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6412,7 +6412,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726774160, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6439,15 +6439,15 @@ "result": [ { "tx_index": 51, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", "block_index": 185, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "btc_amount": 2000, - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "status": "valid", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726774160, "btc_amount_normalized": "0.00002000" } ], @@ -6458,9 +6458,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6478,7 +6478,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509903, + "block_time": 1726774186, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6504,9 +6504,9 @@ }, { "tx_index": 55, - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "block_index": 190, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6524,7 +6524,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509899, + "block_time": 1726774182, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6550,9 +6550,9 @@ }, { "tx_index": 52, - "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "block_index": 186, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6570,7 +6570,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726509871, + "block_time": 1726774164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6596,9 +6596,9 @@ }, { "tx_index": 50, - "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "tx_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "block_index": 185, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6616,7 +6616,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726509867, + "block_time": 1726774160, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6642,9 +6642,9 @@ }, { "tx_index": 49, - "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", "block_index": 186, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6662,7 +6662,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509871, + "block_time": 1726774164, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6693,13 +6693,13 @@ "/v2/orders///matches": { "result": [ { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 52, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6716,7 +6716,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509871, + "block_time": 1726774164, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6736,13 +6736,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 50, - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6759,7 +6759,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509867, + "block_time": 1726774160, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6779,13 +6779,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", "tx0_index": 47, - "tx0_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 48, - "tx1_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6802,7 +6802,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726509796, + "block_time": 1726774079, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6828,13 +6828,13 @@ "/v2/order_matches": { "result": [ { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 52, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6848,7 +6848,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726509871, + "block_time": 1726774164, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6868,13 +6868,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "tx0_index": 49, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 50, - "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6888,7 +6888,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726509867, + "block_time": 1726774160, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6908,13 +6908,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", + "id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", "tx0_index": 47, - "tx0_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx1_index": 48, - "tx1_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "tx1_hash": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6928,7 +6928,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726509796, + "block_time": 1726774079, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6973,66 +6973,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "2504c4bdafa1c2cab23605685e6a8040748f7d6df91f857b42f1cb259d3a91e0", + "tx_hash": "b7f0dde4bbad6994cc0193c8774206f9809c5f83989c87a66b294ca6afb2a852", "block_index": 121, - "source": "bcrt1qyzyw25seaw22494hrmtlwsm3d5mqyp93fd25da", + "source": "bcrt1qx026kexytkv73h2sucljqxmu6dz8q5qsfvp3mw", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1726509573, + "block_time": 1726773875, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "6322f2e8e202acc14afc1b22b19ac8ab56b27f17712400d116568a1da72222cc", + "tx_hash": "67984637a26a30e7ea7c95835fb9c1333583499820c53a25ccc35117621efd1c", "block_index": 120, - "source": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", + "source": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1726509569, + "block_time": 1726773871, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "38fc46963011e93a419c7d62e149905064cd942d143e7452ee3a67a6183f9e98", + "tx_hash": "7217920d2226cacc0e914354a1a47e57453361706004220693b66d2de2829aef", "block_index": 119, - "source": "bcrt1qqt2dxp9pmcgvjrckeyuy29myfghay5le53hl0d", + "source": "bcrt1qt42f6kccqmjd3pstrcu3smvumgz8235g6naz5n", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1726509565, + "block_time": 1726773867, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "f8d15199587f10cbe7ee5233aba5c8fcc99d9ba2e1c6995360c80912f6eb2a6c", + "tx_hash": "886af1d613518edf54569689de9d3982e5ac2d7e181e97657a4c47fb374a6a5b", "block_index": 118, - "source": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1726509560, + "block_time": 1726773863, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "7b45fa1f2e5deab279659946a3af0948830f02d9df9dd929afc3d897f23384ef", + "tx_hash": "f6b1cbac3fd4887c14ba61bc6bc199afb8d8598d8eacf61502eadcc1f6cd6723", "block_index": 117, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1726509556, + "block_time": 1726773858, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7044,18 +7044,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7065,7 +7065,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726509701, + "block_time": 1726773999, "asset_info": { "divisible": true, "asset_longname": null, @@ -7081,9 +7081,9 @@ }, { "tx_index": 30, - "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", + "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", "block_index": 144, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7092,7 +7092,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7102,7 +7102,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509693, + "block_time": 1726773991, "asset_info": { "divisible": true, "asset_longname": null, @@ -7118,9 +7118,9 @@ }, { "tx_index": 29, - "tx_hash": "ee65a85736487849d0d1ac06ea09424e477194edd27c7c31afbe06f4fbb6142c", + "tx_hash": "4d8d4ccec8ed1d84a032067715c8887702edcf52a81407942e3e2dd19132229d", "block_index": 142, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7129,7 +7129,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "origin": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7139,7 +7139,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509684, + "block_time": 1726773982, "asset_info": { "divisible": true, "asset_longname": null, @@ -7155,9 +7155,9 @@ }, { "tx_index": 26, - "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7166,7 +7166,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7176,7 +7176,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -7197,9 +7197,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7208,7 +7208,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7218,7 +7218,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -7238,19 +7238,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7258,7 +7258,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7273,7 +7273,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -7287,19 +7287,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7307,7 +7307,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7322,7 +7322,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726773973, "asset_info": { "divisible": true, "asset_longname": null, @@ -7341,20 +7341,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", "block_index": 153, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726774028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -7375,20 +7375,20 @@ "/v2/dividends/": { "result": { "tx_index": 40, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", "block_index": 153, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726774028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -7411,12 +7411,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "event": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", "tx_index": 40, - "utxo": "9d34a868637906281a292d50facdb8551872a2d08cd28cf7a895f10f80cb0b32:0", - "utxo_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "utxo": "dd421431b6d8790a2f8d1697dc81c363a4c6900ad606f98530945c963304144c:0", + "utxo_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "confirmed": true, - "block_time": 1726509732, + "block_time": 1726774028, "asset_info": { "divisible": true, "asset_longname": null, @@ -7428,16 +7428,16 @@ }, { "block_index": 153, - "address": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0", + "address": "bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "event": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726509732, + "block_time": 1726774028, "asset_info": { "divisible": true, "asset_longname": null, @@ -7458,27 +7458,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", + "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", "transaction_count": 1, - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "block_time": 1726509912 + "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", + "block_time": 1726774194 }, "tx_hash": null, "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "tx_index": 59 }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 }, { "event_index": 533, @@ -7487,12 +7487,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "status": "valid", "tag": "64657374726f79", - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "tx_index": 59, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -7502,24 +7502,24 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 193, - "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "event": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -7529,25 +7529,25 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", "block_index": 193, - "block_time": 1726509912, + "block_time": 1726774194, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "tx_index": 59, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -7567,9 +7567,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 } ], "next_cursor": 530, @@ -7581,15 +7581,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", + "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", "transaction_count": 1, - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "block_time": 1726509912 + "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", + "block_time": 1726774194 }, "tx_hash": null, "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 } }, "/v2/events/counts": { @@ -7624,16 +7624,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -7643,78 +7643,78 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", + "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726509899, + "block_time": 1726774182, "asset_info": { "divisible": true, "asset_longname": null, @@ -7724,24 +7724,24 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726774182 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "event": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "divisible": true, "asset_longname": null, @@ -7751,9 +7751,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "block_time": 1726509890 + "block_time": 1726774173 } ], "next_cursor": 490, @@ -7770,27 +7770,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "last_status_tx_hash": null, - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7805,7 +7805,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726509701, + "block_time": 1726773999, "asset_info": { "divisible": true, "asset_longname": null, @@ -7819,19 +7819,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f", + "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7839,7 +7839,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7854,7 +7854,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509680, + "block_time": 1726773978, "asset_info": { "divisible": true, "asset_longname": null, @@ -7868,19 +7868,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce", + "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", "block_index": 140, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e", + "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7888,7 +7888,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7903,7 +7903,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726509665, + "block_time": 1726773973, "asset_info": { "divisible": true, "asset_longname": null, @@ -7922,10 +7922,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -7933,7 +7933,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "divisible": true, "asset_longname": null, @@ -7946,10 +7946,10 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -7957,11 +7957,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -7970,10 +7970,10 @@ }, { "tx_index": 54, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -7981,11 +7981,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -7994,10 +7994,10 @@ }, { "tx_index": 53, - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03", + "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5", "block_index": 187, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -8005,7 +8005,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509886, + "block_time": 1726774169, "asset_info": { "divisible": true, "asset_longname": null, @@ -8018,10 +8018,10 @@ }, { "tx_index": 42, - "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", "block_index": 155, - "source": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0", - "destination": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1", + "source": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f:0", + "destination": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8029,7 +8029,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726509741, + "block_time": 1726774036, "asset_info": { "divisible": true, "asset_longname": null, @@ -8048,14 +8048,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -8070,20 +8070,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509780, + "block_time": 1726774063, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "99d6840da9077ad147d3cb8e3a527ebcb05445b5e72d0fa4f9429f91a2ed5f9f", + "tx_hash": "a9bf93086ed282edc2b5194935329671a7e12a0af1a2408220460fd3bac8663b", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -8098,20 +8098,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726509775, + "block_time": 1726774059, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "edf7eb0a60e46ad53360d769c00fbd350628dff893bb6f1869570c9fdcfc71af", + "tx_hash": "4204b9166ff55290c1a9696502a714ae666873dd698433434047f5a70049c6b5", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -8126,20 +8126,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509760, + "block_time": 1726774054, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "23d681cb0c9d9310fd8150fcabf440c84cae363db926d0fcde70cbe12373f96f", + "tx_hash": "7d4a2bd04f1f814197a4eb9b38403dcfcf0dc8b1a4ccac05b631aa1d00d2b8b0", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -8154,20 +8154,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509746, + "block_time": 1726774040, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", - "issuer": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99", + "source": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", + "issuer": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", "transfer": false, "callable": false, "call_date": 0, @@ -8182,7 +8182,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509741, + "block_time": 1726774036, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8193,14 +8193,14 @@ "/v2/issuances/": { "result": { "tx_index": 46, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "transfer": false, "callable": false, "call_date": 0, @@ -8215,7 +8215,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726509780, + "block_time": 1726774063, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8224,16 +8224,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "fee_paid_normalized": "0.00600000" } ], @@ -8244,16 +8244,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726509908, + "block_time": 1726774190, "fee_paid_normalized": "0.00600000" } ], @@ -8264,9 +8264,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a", + "tx_hash": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c", "block_index": 138, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8274,14 +8274,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726509656, + "block_time": 1726773966, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "1629a61f230d38e661231eeaac724d9336e9413ce0a9f145c49d57030ae05b8d", + "tx_hash": "04c2e5dab15ab4e26d63a5648f0d6629630b4542ae192461bdcf2113b0f3cea8", "block_index": 137, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8289,7 +8289,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726509652, + "block_time": 1726773962, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8299,9 +8299,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a", + "tx_hash": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c", "block_index": 138, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8309,17 +8309,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726509656, + "block_time": 1726773966, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8344,13 +8344,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509644 + "block_time": 1726773953 }, { - "tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12", + "tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8375,13 +8375,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509617 + "block_time": 1726773916 }, { - "tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16", + "tx_hash": "8bf6a822f10cccc625da7811b776e108fadf45d1b9255b1ab005583ec7c9df68", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8406,13 +8406,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509613 + "block_time": 1726773912 }, { - "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1", + "tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8437,7 +8437,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726509592 + "block_time": 1726773891 } ], "next_cursor": null, @@ -8451,8 +8451,8 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", - "address": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p" + "txid": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "address": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f" }, { "vout": 2, @@ -8460,8 +8460,8 @@ "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", - "address": "bcrt1qqt2dxp9pmcgvjrckeyuy29myfghay5le53hl0d" + "txid": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", + "address": "bcrt1qt42f6kccqmjd3pstrcu3smvumgz8235g6naz5n" } ], "next_cursor": null, @@ -8470,28 +8470,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03" + "tx_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646" }, { - "tx_hash": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17" + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" }, { - "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21" + "tx_hash": "4115c489972af768c3e60643b878d4a6ecc092fe74535f163b893ee108b3d1ac" }, { - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b" + "tx_hash": "c0c8b02d6f939e8b2bbb01a5c627931701e2ec82cf0235bb4a3992cbbbe6afaf" }, { - "tx_hash": "d2f3afeb63580aa006eee4e055138c2903f7e8172876f688b7241e2ebbe5f172" + "tx_hash": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8" }, { - "tx_hash": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88" + "tx_hash": "0b55d2fd4d396734b796b0ad4164d7d531839c050c4f31df53d1d4a86750b9bd" }, { - "tx_hash": "58f41fb8b8ec22f12daa5aad5a4f72194f54f652542abd409766afe4de2798b9" + "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5" }, { - "tx_hash": "cd209fe04d43a38dcf842ad0d74fd71e123c66549db03f3650099a7e5f0297be" + "tx_hash": "67db055172fd889ca6fa9cc47fa2ab086efcdc03871cefc9a0e6833aa2cffadc" } ], "next_cursor": null, @@ -8499,8 +8499,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 1, - "tx_hash": "39808e5b91587a72ae37c23d618a8526cf4c292592c2681dd3400837654b0786" + "block_index": 3, + "tx_hash": "bbd270fe0e9b97f3f448b48b3775e20490cc261947529308c45a7a60ef530783" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -8511,20 +8511,20 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535" + "txid": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a9387076169" + "result": "02c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f06" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101ba21bea38dc876b1215be6872f0c75a77328eb90aea0f5e5f5d687b38e7ca5050300000000ffffffff020000000000000000226a20e661db2d032f2a3e7844cfb698121f85b2b30cced7b8b215b0e8fe1f5fd1a779680b0a2701000000160014ae2b0c1095bbdf23747f76b242be716817701b780247304402205f232b082605ae63445a865c556deef60158bbdf42b4ac8953b712ef33fe80a202203c7aebb1b51e30698a54c8e0177213dcbcd480529ede188b0a18129a80637fef0121035352a3478786437bb2f973478638b43a6bee4a925c1b0efd94dc193e94b198b500000000" + "result": "02000000000101fd0c406894a43ebc56997fddac107e59b628059bd4cfecda5e5d3ad23b95fb1c0300000000ffffffff020000000000000000226a2028ceed4b42cd7a8574dcfaf080310efd1a684767b5d9fa4c75620faed856d7da680b0a27010000001600143bbe3a6dd2351dc452f0f53e2e5847e3877d10ef02473044022014155e9bcb3ee227cfeaac8db5228fec8354c26108f8a0b8af789613ed39a88e02204cc66cf3f406a7c3fb63aef2d648fa9c69c492919b55f94ddde23ee83c35e7cb0121031a1876320c94f09b1a0c6265a68fc71d71e90127a44268a63950acae03f65be000000000" }, "/v2/bitcoin/estimatesmartfee": { - "result": 68546 + "result": 68517 }, "/v2/bitcoin/getmempoolinfo": { "result": { @@ -8544,26 +8544,26 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "tx_index": 60 } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "memo": null, "quantity": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "status": "valid", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "tx_index": 60, "asset_info": { "divisible": true, @@ -8576,19 +8576,19 @@ } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "CREDIT", "params": { - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -8600,19 +8600,19 @@ } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 193, - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -8624,27 +8624,27 @@ } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726509917.0831685, + "block_time": 1726774198.968543, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f92", + "data": "020000000000000001000000000000271080f09d239511eee425be033d403d5cc35cc271f906", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "tx_index": 60, - "utxos_info": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6:1", + "utxos_info": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "memo": null, "asset_info": { "divisible": true, @@ -8666,19 +8666,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "CREDIT", "params": { - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -8696,26 +8696,26 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "tx_index": 60 } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "memo": null, "quantity": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "status": "valid", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "tx_index": 60, "asset_info": { "divisible": true, @@ -8728,19 +8728,19 @@ } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "CREDIT", "params": { - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -8752,19 +8752,19 @@ } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 193, - "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -8776,27 +8776,27 @@ } }, { - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726509917.0831685, + "block_time": 1726774198.968543, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f92", + "data": "020000000000000001000000000000271080f09d239511eee425be033d403d5cc35cc271f906", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", "tx_index": 60, - "utxos_info": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6:1", + "utxos_info": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "memo": null, "asset_info": { "divisible": true, @@ -8831,15 +8831,15 @@ "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", "block_index": 193, - "block_time": 1726509912, + "block_time": 1726774194, "difficulty": 545259519, - "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e" + "previous_block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d" }, "tx_hash": null, "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 } ], "next_cursor": 518, @@ -8851,17 +8851,17 @@ "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58", + "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", "block_index": 193, - "block_time": 1726509912, + "block_time": 1726774194, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "tx_index": 59, - "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1", + "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8881,9 +8881,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 } ], "next_cursor": 519, @@ -8897,16 +8897,16 @@ "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "destination": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "out_index": 0, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", "tx_index": 33, - "block_time": 1726509701, + "block_time": 1726773999, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", "block_index": 146, - "block_time": 1726509701 + "block_time": 1726773999 } ], "next_cursor": 237, @@ -8919,15 +8919,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c", - "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde", + "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", + "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", "transaction_count": 1, - "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b", - "block_time": 1726509912 + "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", + "block_time": 1726774194 }, "tx_hash": null, "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 } ], "next_cursor": 529, @@ -8940,12 +8940,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "tx_index": 59 }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 } ], "next_cursor": 528, @@ -8958,15 +8958,15 @@ "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 193, - "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "event": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -8976,9 +8976,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 } ], "next_cursor": 525, @@ -8990,16 +8990,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726509908, + "block_time": 1726774190, "asset_info": { "divisible": true, "asset_longname": null, @@ -9009,9 +9009,9 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 } ], "next_cursor": 524, @@ -9025,14 +9025,14 @@ "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "memo": null, "quantity": 10000, - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "status": "valid", - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03", + "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5", "tx_index": 53, - "block_time": 1726509886, + "block_time": 1726774169, "asset_info": { "divisible": true, "asset_longname": null, @@ -9042,9 +9042,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03", + "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5", "block_index": 187, - "block_time": 1726509886 + "block_time": 1726774169 } ], "next_cursor": null, @@ -9058,15 +9058,15 @@ "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "status": "valid", - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "tx_index": 54, - "block_time": 1726509890, + "block_time": 1726774173, "asset_info": { "divisible": true, "asset_longname": null, @@ -9076,9 +9076,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f", + "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", "block_index": 188, - "block_time": 1726509890 + "block_time": 1726774173 } ], "next_cursor": 495, @@ -9101,20 +9101,20 @@ "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "status": "valid", - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "tx_index": 58, - "block_time": 1726509908, + "block_time": 1726774190, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b", + "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", "block_index": 192, - "block_time": 1726509908 + "block_time": 1726774190 } ], "next_cursor": null, @@ -9131,15 +9131,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "status": "valid", - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", "tx_index": 40, - "block_time": 1726509732, + "block_time": 1726774028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, @@ -9153,9 +9153,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00", + "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", "block_index": 153, - "block_time": 1726509732 + "block_time": 1726774028 } ], "next_cursor": null, @@ -9176,11 +9176,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 159, - "block_time": 1726509780 + "block_time": 1726774063 }, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", "block_index": 159, - "block_time": 1726509780 + "block_time": 1726774063 } ], "next_cursor": 367, @@ -9203,22 +9203,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "status": "valid", "transfer": false, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", "tx_index": 46, - "block_time": 1726509780, + "block_time": 1726774063, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491", + "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", "block_index": 159, - "block_time": 1726509780 + "block_time": 1726774063 } ], "next_cursor": 374, @@ -9233,12 +9233,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30", + "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", "status": "valid", "tag": "64657374726f79", - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "tx_index": 59, - "block_time": 1726509912, + "block_time": 1726774194, "asset_info": { "divisible": true, "asset_longname": null, @@ -9248,9 +9248,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce", + "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", "block_index": 193, - "block_time": 1726509912 + "block_time": 1726774194 } ], "next_cursor": 157, @@ -9275,11 +9275,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "status": "open", - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "tx_index": 57, - "block_time": 1726509903, + "block_time": 1726774186, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9303,9 +9303,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232", + "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", "block_index": 191, - "block_time": 1726509903 + "block_time": 1726774186 } ], "next_cursor": 502, @@ -9323,20 +9323,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1", + "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", "tx0_index": 49, - "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2", + "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "tx1_index": 52, - "block_time": 1726509871, + "block_time": 1726774164, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9355,9 +9355,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21", + "tx_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", "block_index": 186, - "block_time": 1726509871 + "block_time": 1726774164 } ], "next_cursor": 461, @@ -9370,11 +9370,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2" + "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e" }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726774182 } ], "next_cursor": 476, @@ -9387,11 +9387,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a" + "tx_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f" }, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", "block_index": 185, - "block_time": 1726509867 + "block_time": 1726774160 } ], "next_cursor": null, @@ -9403,13 +9403,13 @@ "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", + "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", "status": "completed" }, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", "block_index": 185, - "block_time": 1726509867 + "block_time": 1726774160 } ], "next_cursor": 440, @@ -9423,18 +9423,18 @@ "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a", - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "status": "valid", - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", "tx_index": 51, - "block_time": 1726509867, + "block_time": 1726774160, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d", + "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", "block_index": 185, - "block_time": 1726509867 + "block_time": 1726774160 } ], "next_cursor": null, @@ -9447,16 +9447,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2", - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "status": "valid", - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "tx_index": 56, - "block_time": 1726509899 + "block_time": 1726774182 }, - "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec", + "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", "block_index": 190, - "block_time": 1726509899 + "block_time": 1726774182 } ], "next_cursor": null, @@ -9469,13 +9469,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "block_time": 1726509796 + "order_hash": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "block_time": 1726774079 }, "tx_hash": null, "block_index": 182, - "block_time": 1726509796 + "block_time": 1726774079 } ], "next_cursor": 446, @@ -9488,14 +9488,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc", - "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", - "block_time": 1726509796 + "order_match_id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "block_time": 1726774079 }, "tx_hash": null, "block_index": 182, - "block_time": 1726509796 + "block_time": 1726774079 } ], "next_cursor": null, @@ -9513,14 +9513,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "satoshirate": 1, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "status": 0, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", "tx_index": 32, - "block_time": 1726509697, + "block_time": 1726773995, "asset_info": { "divisible": true, "asset_longname": null, @@ -9533,9 +9533,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", "block_index": 145, - "block_time": 1726509697 + "block_time": 1726773995 } ], "next_cursor": 254, @@ -9550,9 +9550,9 @@ "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "status": 0, - "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", + "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", "asset_info": { "divisible": true, "asset_longname": null, @@ -9562,9 +9562,9 @@ }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", "block_index": 146, - "block_time": 1726509701 + "block_time": 1726773999 } ], "next_cursor": 260, @@ -9578,13 +9578,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mnLwb4LAYvLe6gesyGs1d34NnRaSRpScfq", + "destination": "mnMNuY8rdFkTAqCBgrNvdm4pYk5Emb6kRP", "dispense_quantity": 10, - "dispenser_tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6", - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", - "tx_hash": "962792bfe558b1042295417f1b88d03dfa7547cb82ab870bbd57854561acf3b5", + "dispenser_tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx_hash": "03a5ab84754e8fde5c6f7f3e14c6a0f69339979e800a1e7fa16f82baa3cf62d7", "tx_index": 31, - "block_time": 1726509693, + "block_time": 1726773991, "asset_info": { "divisible": true, "asset_longname": null, @@ -9594,9 +9594,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "962792bfe558b1042295417f1b88d03dfa7547cb82ab870bbd57854561acf3b5", + "tx_hash": "03a5ab84754e8fde5c6f7f3e14c6a0f69339979e800a1e7fa16f82baa3cf62d7", "block_index": 144, - "block_time": 1726509693 + "block_time": 1726773991 } ], "next_cursor": null, @@ -9611,14 +9611,14 @@ "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p", + "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d", - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", "tx_index": 33, - "block_time": 1726509701, + "block_time": 1726773999, "asset_info": { "divisible": true, "asset_longname": null, @@ -9629,9 +9629,9 @@ "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535", + "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", "block_index": 146, - "block_time": 1726509701 + "block_time": 1726773999 } ], "next_cursor": 240, @@ -9646,19 +9646,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd", + "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a", + "tx_hash": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c", "tx_index": 25, "value": 66600.0, - "block_time": 1726509656, + "block_time": 1726773966, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a", + "tx_hash": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c", "block_index": 138, - "block_time": 1726509656 + "block_time": 1726773966 } ], "next_cursor": 213, @@ -9689,16 +9689,16 @@ "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "start_block": 0, "status": "open", - "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", "tx_index": 22, - "block_time": 1726509644 + "block_time": 1726773953 }, - "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", "block_index": 135, - "block_time": 1726509644 + "block_time": 1726773953 } ], "next_cursor": 161, @@ -9711,11 +9711,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16" + "tx_hash": "8bf6a822f10cccc625da7811b776e108fadf45d1b9255b1ab005583ec7c9df68" }, "tx_hash": null, "block_index": 130, - "block_time": 1726509613 + "block_time": 1726773912 } ], "next_cursor": 110, @@ -9731,24 +9731,24 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137", + "fairminter_tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", "paid_quantity": 34, - "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t", + "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", "status": "valid", - "tx_hash": "a899b1a361e0514262442a4a300d7571606a3462d50819092e649c490fbcb1e6", + "tx_hash": "ed4ea8c5e199862917e614d38a53e76af1da07f9c981ba9c4c961244f169fea7", "tx_index": 23, - "block_time": 1726509648, + "block_time": 1726773957, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false } }, - "tx_hash": "a899b1a361e0514262442a4a300d7571606a3462d50819092e649c490fbcb1e6", + "tx_hash": "ed4ea8c5e199862917e614d38a53e76af1da07f9c981ba9c4c961244f169fea7", "block_index": 136, - "block_time": 1726509648 + "block_time": 1726773957 } ], "next_cursor": 190, @@ -9762,28 +9762,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1", + "destination": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "status": "valid", - "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "tx_hash": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", "tx_index": 38, - "block_time": 1726509724, + "block_time": 1726774019, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a", + "tx_hash": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", "block_index": 151, - "block_time": 1726509724 + "block_time": 1726774019 } ], "next_cursor": 291, @@ -9797,28 +9797,28 @@ "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0", + "destination": "bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88:0", + "source": "67db055172fd889ca6fa9cc47fa2ab086efcdc03871cefc9a0e6833aa2cffadc:0", "status": "valid", - "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba", + "tx_hash": "1cfb953bd23a5d5edaeccfd49b0528b6597e10acdd7f9956bc3ea49468400cfd", "tx_index": 37, - "block_time": 1726509719, + "block_time": 1726774015, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj", + "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba", + "tx_hash": "1cfb953bd23a5d5edaeccfd49b0528b6597e10acdd7f9956bc3ea49468400cfd", "block_index": 150, - "block_time": 1726509719 + "block_time": 1726774015 } ], "next_cursor": null, @@ -9832,14 +9832,14 @@ "params": { "asset": "XCP", "block_index": 155, - "destination": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1", + "destination": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4:1", "msg_index": 1, "quantity": 1500000000, - "source": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0", + "source": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f:0", "status": "valid", - "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", "tx_index": 42, - "block_time": 1726509741, + "block_time": 1726774036, "asset_info": { "divisible": true, "asset_longname": null, @@ -9849,9 +9849,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7", + "tx_hash": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", "block_index": 155, - "block_time": 1726509741 + "block_time": 1726774036 } ], "next_cursor": 346, @@ -9866,17 +9866,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qyzyw25seaw22494hrmtlwsm3d5mqyp93fd25da", + "source": "bcrt1qx026kexytkv73h2sucljqxmu6dz8q5qsfvp3mw", "status": "valid", - "tx_hash": "2504c4bdafa1c2cab23605685e6a8040748f7d6df91f857b42f1cb259d3a91e0", + "tx_hash": "b7f0dde4bbad6994cc0193c8774206f9809c5f83989c87a66b294ca6afb2a852", "tx_index": 9, - "block_time": 1726509573, + "block_time": 1726773875, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "2504c4bdafa1c2cab23605685e6a8040748f7d6df91f857b42f1cb259d3a91e0", + "tx_hash": "b7f0dde4bbad6994cc0193c8774206f9809c5f83989c87a66b294ca6afb2a852", "block_index": 121, - "block_time": 1726509573 + "block_time": 1726773875 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/utxolocks_test.py b/counterparty-core/counterpartycore/test/utxolocks_test.py index ccc4b256e8..9a15b55581 100644 --- a/counterparty-core/counterpartycore/test/utxolocks_test.py +++ b/counterparty-core/counterpartycore/test/utxolocks_test.py @@ -19,10 +19,10 @@ FIXTURE_OPTIONS = {"utxo_locks_max_addresses": 2000} -def construct_tx(db, source, destination, disable_utxo_locks=False, custom_inputs=None): +def construct_tx(db, source, destination, disable_utxo_locks=False, input_set=None): tx_info = send.compose(db, source, destination, "XCP", 1) return transaction.construct( - db, tx_info, disable_utxo_locks=disable_utxo_locks, custom_inputs=custom_inputs + db, tx_info, disable_utxo_locks=disable_utxo_locks, input_set=input_set ) @@ -53,7 +53,7 @@ def test_utxolocks_custom_input(server_db): transaction.initialise(force=True) # reset UTXO_LOCKS """it should use the same UTXO""" - custom_inputs = [ + input_set = [ { "txid": "b9fc3aa355b77ecb63282fc96e63912a253e98bf9cf441fbfbecc3fb277c4985", "txhex": "0100000003114bbc2ce4f18490cd33fa17ad747f2cbb932fe4bd628e7729f18e73caa9c824000000006b4830450220170594244dacb99013340f07ca7da05c91d2f235094481213abf3b3648ff12ab022100ea612f4326e074daeb3f3b92bce7862c7377d16e66930415cb33930e773d8600012103bdd82e7398e604438316511b7be56925256b5b1f64b508432f4b4e3e728db637ffffffff22fcc4468552b950781e3facbf75a27b8d633cb7299f02b4bcc3615d9923bcfb000000006b483045022051ed13a5bf5e9ea753f0b2e4e76d1bea73de912e214314ed96e043ad21f53dee022100f6556d547c5012fcbd3348f71da8fe03eb101f73b7b1b366e3937119cc87a90c01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffffe5237334401359af1cc80b3b4af969fab42e92e636ef0523df6b68122f23d952000000006b483045022100cd74fe9ca13e44607521f410468979ed9e0b3addef2a9d48e08bf608d72c446c022058753f930f2d394410c3e6e950788e6b0371d4403ef5a9dc194980218de5ac76012102ab7a70956655c4d4cc44b73587ae70a21ab0db9ba8d704b97d911ea3bf1e5d67ffffffff02ffb3a900000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac0065cd1d000000001976a914d1ba3ba3d6f5ad06b148bcc04151ecab84fc397988ac00000000", @@ -69,13 +69,13 @@ def test_utxolocks_custom_input(server_db): server_db, "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - custom_inputs=custom_inputs, + input_set=input_set, ) tx2hex = construct_tx( server_db, "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - custom_inputs=custom_inputs, + input_set=input_set, ) tx1f = BytesIO(binascii.unhexlify(tx1hex)) From 822b652d32665160a8d08f161b9a5ff9a84cc844 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 19 Sep 2024 19:37:02 +0000 Subject: [PATCH 19/46] update release notes --- release-notes/release-notes-v10.4.1.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/release-notes/release-notes-v10.4.1.md b/release-notes/release-notes-v10.4.1.md index b66009fcd2..027c2b8489 100644 --- a/release-notes/release-notes-v10.4.1.md +++ b/release-notes/release-notes-v10.4.1.md @@ -15,6 +15,8 @@ ## API +* Add support for `input_set` parameter + ## CLI # Credits From 5c67056dd7e402e7b468874952e8b00bb3d7a792 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 20 Sep 2024 06:45:29 +0000 Subject: [PATCH 20/46] update fixtures --- .../test/fixtures/api_v2_fixtures.json | 72 +++++++++---------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index efaca2c797..71ae6491d5 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -10043,7 +10043,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -10057,7 +10057,7 @@ { "name": "input_set", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -10226,7 +10226,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -10240,7 +10240,7 @@ { "name": "input_set", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -10391,7 +10391,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -10405,7 +10405,7 @@ { "name": "input_set", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -10563,7 +10563,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -10577,7 +10577,7 @@ { "name": "input_set", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -10728,7 +10728,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -10742,7 +10742,7 @@ { "name": "input_set", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -10905,7 +10905,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -10919,7 +10919,7 @@ { "name": "input_set", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -11108,7 +11108,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -11122,7 +11122,7 @@ { "name": "input_set", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -11285,7 +11285,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -11299,7 +11299,7 @@ { "name": "input_set", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -11491,7 +11491,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -11505,7 +11505,7 @@ { "name": "input_set", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -11682,7 +11682,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -11696,7 +11696,7 @@ { "name": "input_set", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -11877,7 +11877,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -11891,7 +11891,7 @@ { "name": "input_set", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -12075,7 +12075,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -12089,7 +12089,7 @@ { "name": "input_set", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -12252,7 +12252,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -12266,7 +12266,7 @@ { "name": "input_set", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -12423,7 +12423,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -12437,7 +12437,7 @@ { "name": "input_set", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -12700,7 +12700,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -12714,7 +12714,7 @@ { "name": "input_set", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -12872,7 +12872,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -12886,7 +12886,7 @@ { "name": "input_set", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -13050,7 +13050,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -13064,7 +13064,7 @@ { "name": "input_set", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, @@ -13227,7 +13227,7 @@ { "name": "exclude_utxos", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, @@ -13241,7 +13241,7 @@ { "name": "input_set", "type": "str", - "default": "", + "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, From 98d61c1244780942271e8623dbc071a2a2aa7e7c Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 20 Sep 2024 07:00:16 +0000 Subject: [PATCH 21/46] 'input_set' -> 'inputs_set'; Add a limit of 100 utxos --- apiary.apib | 3440 ++++++++--------- .../counterpartycore/lib/transaction.py | 39 +- .../test/fixtures/api_v2_fixtures.json | 72 +- .../counterpartycore/test/fixtures/vectors.py | 4 +- .../test/regtest/apidoc/apicache.json | 3002 +++++++------- .../counterpartycore/test/utxolocks_test.py | 10 +- release-notes/release-notes-v10.4.1.md | 2 +- 7 files changed, 3266 insertions(+), 3303 deletions(-) diff --git a/apiary.apib b/apiary.apib index 4fd74dc9b9..4a95a064e7 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-09-19 19:30:10.387027. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-09-20 06:56:42.337437. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -179,15 +179,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", "block_index": 193, - "block_time": 1726774194, + "block_time": 1726815376, "difficulty": 545259519, - "previous_block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d" + "previous_block_hash": "62147c1d9cc39595807a029e240ab3a68a952e88ce5b71fff7844b86e0cb8c7f" }, "tx_hash": null, "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 } ], "next_cursor": 518, @@ -204,17 +204,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", "block_index": 193, - "block_time": 1726774194, + "block_time": 1726815376, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "tx_index": 59, - "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", + "utxos_info": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -234,9 +234,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 } ], "next_cursor": 519, @@ -255,16 +255,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "destination": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "out_index": 0, - "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "tx_hash": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", "tx_index": 33, - "block_time": 1726773999, + "block_time": 1726815183, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "tx_hash": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", "block_index": 146, - "block_time": 1726773999 + "block_time": 1726815183 } ], "next_cursor": 237, @@ -282,15 +282,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", - "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", + "ledger_hash": "c35cac3a55dd455eda44fec6808f4b04601d54416913965cf9981a7187e4ca9b", + "messages_hash": "64af7906004d705fe89433fbcec64aab6a352ca56eda19f6490882cfff161834", "transaction_count": 1, - "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", - "block_time": 1726774194 + "txlist_hash": "ffc04a3314302eecc9ed3c67fe1acc91b47b4510370eb27342c9779b5f7490e9", + "block_time": 1726815376 }, "tx_hash": null, "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 } ], "next_cursor": 529, @@ -308,12 +308,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "tx_index": 59 }, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 } ], "next_cursor": 528, @@ -333,15 +333,15 @@ Here is a list of events classified by theme and for each an example response: "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 193, - "event": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "event": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -351,9 +351,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 } ], "next_cursor": 525, @@ -370,16 +370,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -389,9 +389,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 } ], "next_cursor": 524, @@ -410,14 +410,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "memo": null, "quantity": 10000, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "status": "valid", - "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5", + "tx_hash": "2af0fdfddaf6d357f3e80c38f3319a244b08c584a2b714b8214d8123abc752fb", "tx_index": 53, - "block_time": 1726774169, + "block_time": 1726815350, "asset_info": { "divisible": true, "asset_longname": null, @@ -427,9 +427,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5", + "tx_hash": "2af0fdfddaf6d357f3e80c38f3319a244b08c584a2b714b8214d8123abc752fb", "block_index": 187, - "block_time": 1726774169 + "block_time": 1726815350 } ], "next_cursor": null, @@ -448,15 +448,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "status": "valid", - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "tx_index": 54, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "divisible": true, "asset_longname": null, @@ -466,9 +466,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "block_time": 1726774173 + "block_time": 1726815355 } ], "next_cursor": 495, @@ -506,20 +506,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "status": "valid", - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, - "block_time": 1726774190, + "block_time": 1726815372, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 } ], "next_cursor": null, @@ -541,15 +541,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": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "status": "valid", - "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", + "tx_hash": "dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d", "tx_index": 40, - "block_time": 1726774028, + "block_time": 1726815213, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -563,9 +563,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": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", + "tx_hash": "dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d", "block_index": 153, - "block_time": 1726774028 + "block_time": 1726815213 } ], "next_cursor": null, @@ -598,11 +598,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": 159, - "block_time": 1726774063 + "block_time": 1726815249 }, - "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", + "tx_hash": "9a110287c955eba18bfaed58bbce05b2312cb4f078cbb0c0a7cf71d5a12486ed", "block_index": 159, - "block_time": 1726774063 + "block_time": 1726815249 } ], "next_cursor": 367, @@ -630,22 +630,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": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "status": "valid", "transfer": false, - "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", + "tx_hash": "9a110287c955eba18bfaed58bbce05b2312cb4f078cbb0c0a7cf71d5a12486ed", "tx_index": 46, - "block_time": 1726774063, + "block_time": 1726815249, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", + "tx_hash": "9a110287c955eba18bfaed58bbce05b2312cb4f078cbb0c0a7cf71d5a12486ed", "block_index": 159, - "block_time": 1726774063 + "block_time": 1726815249 } ], "next_cursor": 374, @@ -665,12 +665,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "status": "valid", "tag": "64657374726f79", - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "tx_index": 59, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -680,9 +680,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 } ], "next_cursor": 157, @@ -714,11 +714,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": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "status": "open", - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "tx_index": 57, - "block_time": 1726774186, + "block_time": 1726815367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -742,9 +742,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": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "block_time": 1726774186 + "block_time": 1726815367 } ], "next_cursor": 502, @@ -767,20 +767,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": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", "tx0_index": 49, - "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "tx1_address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "tx1_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "tx1_index": 52, - "block_time": 1726774164, + "block_time": 1726815346, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -799,9 +799,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": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "tx_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "block_index": 186, - "block_time": 1726774164 + "block_time": 1726815346 } ], "next_cursor": 461, @@ -819,11 +819,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e" + "tx_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b" }, - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "block_index": 190, - "block_time": 1726774182 + "block_time": 1726815363 } ], "next_cursor": 476, @@ -841,11 +841,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f" + "tx_hash": "8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392" }, - "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", + "tx_hash": "85ed946aefb8bc2f75e5c983d94c8480b4ff7f62d1ac364f1ddd964a83529eb8", "block_index": 185, - "block_time": 1726774160 + "block_time": 1726815342 } ], "next_cursor": null, @@ -862,13 +862,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", - "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", + "order_match_id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "status": "completed" }, - "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", + "tx_hash": "85ed946aefb8bc2f75e5c983d94c8480b4ff7f62d1ac364f1ddd964a83529eb8", "block_index": 185, - "block_time": 1726774160 + "block_time": 1726815342 } ], "next_cursor": 440, @@ -887,18 +887,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "destination": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "order_match_id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "status": "valid", - "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", + "tx_hash": "85ed946aefb8bc2f75e5c983d94c8480b4ff7f62d1ac364f1ddd964a83529eb8", "tx_index": 51, - "block_time": 1726774160, + "block_time": 1726815342, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", + "tx_hash": "85ed946aefb8bc2f75e5c983d94c8480b4ff7f62d1ac364f1ddd964a83529eb8", "block_index": 185, - "block_time": 1726774160 + "block_time": 1726815342 } ], "next_cursor": null, @@ -916,16 +916,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "offer_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "status": "valid", - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "tx_index": 56, - "block_time": 1726774182 + "block_time": 1726815363 }, - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "block_index": 190, - "block_time": 1726774182 + "block_time": 1726815363 } ], "next_cursor": null, @@ -943,13 +943,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "block_time": 1726774079 + "order_hash": "18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "block_time": 1726815264 }, "tx_hash": null, "block_index": 182, - "block_time": 1726774079 + "block_time": 1726815264 } ], "next_cursor": 446, @@ -967,14 +967,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "block_time": 1726774079 + "order_match_id": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7_18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "tx1_address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "block_time": 1726815264 }, "tx_hash": null, "block_index": 182, - "block_time": 1726774079 + "block_time": 1726815264 } ], "next_cursor": null, @@ -999,14 +999,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": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", - "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "oracle_address": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", + "origin": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "satoshirate": 1, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "status": 0, - "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", "tx_index": 32, - "block_time": 1726773995, + "block_time": 1726815178, "asset_info": { "divisible": true, "asset_longname": null, @@ -1019,9 +1019,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": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", "block_index": 145, - "block_time": 1726773995 + "block_time": 1726815178 } ], "next_cursor": 254, @@ -1041,9 +1041,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "status": 0, - "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", "asset_info": { "divisible": true, "asset_longname": null, @@ -1053,9 +1053,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "tx_hash": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", "block_index": 146, - "block_time": 1726773999 + "block_time": 1726815183 } ], "next_cursor": 260, @@ -1074,13 +1074,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mnMNuY8rdFkTAqCBgrNvdm4pYk5Emb6kRP", + "destination": "mxTLR1ydnf6nAJYW3zCbbSZeyBGcXHkpRw", "dispense_quantity": 10, - "dispenser_tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "tx_hash": "03a5ab84754e8fde5c6f7f3e14c6a0f69339979e800a1e7fa16f82baa3cf62d7", + "dispenser_tx_hash": "02762a4f55190e571b19a19348ee8f6412b45913745ee7cb62c747172108246c", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "tx_hash": "0acc5f3d95d0e78f09173f0037021916649ab252b2c55455e8c0fcc6f15143ff", "tx_index": 31, - "block_time": 1726773991, + "block_time": 1726815174, "asset_info": { "divisible": true, "asset_longname": null, @@ -1090,9 +1090,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "03a5ab84754e8fde5c6f7f3e14c6a0f69339979e800a1e7fa16f82baa3cf62d7", + "tx_hash": "0acc5f3d95d0e78f09173f0037021916649ab252b2c55455e8c0fcc6f15143ff", "block_index": 144, - "block_time": 1726773991 + "block_time": 1726815174 } ], "next_cursor": null, @@ -1112,14 +1112,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", + "destination": "bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", - "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "dispenser_tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", + "tx_hash": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", "tx_index": 33, - "block_time": 1726773999, + "block_time": 1726815183, "asset_info": { "divisible": true, "asset_longname": null, @@ -1130,9 +1130,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "tx_hash": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", "block_index": 146, - "block_time": 1726773999 + "block_time": 1726815183 } ], "next_cursor": 240, @@ -1154,19 +1154,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": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c", + "tx_hash": "8b28dd31f49228d2203cd7fcfa8b9062b26a1691283c8ed214f508aebe94a44e", "tx_index": 25, "value": 66600.0, - "block_time": 1726773966, + "block_time": 1726815138, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c", + "tx_hash": "8b28dd31f49228d2203cd7fcfa8b9062b26a1691283c8ed214f508aebe94a44e", "block_index": 138, - "block_time": 1726773966 + "block_time": 1726815138 } ], "next_cursor": 213, @@ -1204,16 +1204,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "start_block": 0, "status": "open", - "tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", + "tx_hash": "f2ee7f4036c7cc051cf8e2a20e32425a200f9b9166a04d94e90279ccdd5d024b", "tx_index": 22, - "block_time": 1726773953 + "block_time": 1726815126 }, - "tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", + "tx_hash": "f2ee7f4036c7cc051cf8e2a20e32425a200f9b9166a04d94e90279ccdd5d024b", "block_index": 135, - "block_time": 1726773953 + "block_time": 1726815126 } ], "next_cursor": 161, @@ -1231,11 +1231,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "8bf6a822f10cccc625da7811b776e108fadf45d1b9255b1ab005583ec7c9df68" + "tx_hash": "35a7ddf4a16bb7075ce86310a406d213e899b51a36556396066c9db61b876ace" }, "tx_hash": null, "block_index": 130, - "block_time": 1726773912 + "block_time": 1726815104 } ], "next_cursor": 110, @@ -1256,24 +1256,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", + "fairminter_tx_hash": "f2ee7f4036c7cc051cf8e2a20e32425a200f9b9166a04d94e90279ccdd5d024b", "paid_quantity": 34, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "status": "valid", - "tx_hash": "ed4ea8c5e199862917e614d38a53e76af1da07f9c981ba9c4c961244f169fea7", + "tx_hash": "adf60b006a2dcd134e0e5faadf2d887a7f868f9bc6480ce7ad700283036454ef", "tx_index": 23, - "block_time": 1726773957, + "block_time": 1726815130, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } }, - "tx_hash": "ed4ea8c5e199862917e614d38a53e76af1da07f9c981ba9c4c961244f169fea7", + "tx_hash": "adf60b006a2dcd134e0e5faadf2d887a7f868f9bc6480ce7ad700283036454ef", "block_index": 136, - "block_time": 1726773957 + "block_time": 1726815130 } ], "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": 151, - "destination": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e:1", + "destination": "73f33445bb6ef1ba7081a2f649acc7c7d63d07e8ae0bda9324481991a50c3dc9:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "status": "valid", - "tx_hash": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", + "tx_hash": "73f33445bb6ef1ba7081a2f649acc7c7d63d07e8ae0bda9324481991a50c3dc9", "tx_index": 38, - "block_time": 1726774019, + "block_time": 1726815204, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", + "tx_hash": "73f33445bb6ef1ba7081a2f649acc7c7d63d07e8ae0bda9324481991a50c3dc9", "block_index": 151, - "block_time": 1726774019 + "block_time": 1726815204 } ], "next_cursor": 291, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9", + "destination": "bcrt1qdp2athf6h3fqgwf5wkz79lg2a7m8gj06zptffm", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "67db055172fd889ca6fa9cc47fa2ab086efcdc03871cefc9a0e6833aa2cffadc:0", + "source": "a765061f6252188ff4cc3b6558223a79dcdb9ce3924998af5a62e47f793ce837:0", "status": "valid", - "tx_hash": "1cfb953bd23a5d5edaeccfd49b0528b6597e10acdd7f9956bc3ea49468400cfd", + "tx_hash": "107375514b4bf3351449b9cbbd7ddf635e1f9a7e87c1cb923ada7d25c334534f", "tx_index": 37, - "block_time": 1726774015, + "block_time": 1726815200, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1cfb953bd23a5d5edaeccfd49b0528b6597e10acdd7f9956bc3ea49468400cfd", + "tx_hash": "107375514b4bf3351449b9cbbd7ddf635e1f9a7e87c1cb923ada7d25c334534f", "block_index": 150, - "block_time": 1726774015 + "block_time": 1726815200 } ], "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": 155, - "destination": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4:1", + "destination": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751:1", "msg_index": 1, "quantity": 1500000000, - "source": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f:0", + "source": "4fe40db20831d35ad52100fa53258383faa657107021697a63a3be4cb3382ac9:0", "status": "valid", - "tx_hash": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", + "tx_hash": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751", "tx_index": 42, - "block_time": 1726774036, + "block_time": 1726815221, "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": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", + "tx_hash": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751", "block_index": 155, - "block_time": 1726774036 + "block_time": 1726815221 } ], "next_cursor": 346, @@ -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": "bcrt1qx026kexytkv73h2sucljqxmu6dz8q5qsfvp3mw", + "source": "bcrt1qs6kaxznfkfgmxhalmv840fldjqr2d7hnltn6xh", "status": "valid", - "tx_hash": "b7f0dde4bbad6994cc0193c8774206f9809c5f83989c87a66b294ca6afb2a852", + "tx_hash": "6734c2c20a328e6e65f4464f0e38b929b8cf906f0e0c4016af2baebe977fac4c", "tx_index": 9, - "block_time": 1726773875, + "block_time": 1726815066, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "b7f0dde4bbad6994cc0193c8774206f9809c5f83989c87a66b294ca6afb2a852", + "tx_hash": "6734c2c20a328e6e65f4464f0e38b929b8cf906f0e0c4016af2baebe977fac4c", "block_index": 121, - "block_time": 1726773875 + "block_time": 1726815066 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 193, - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", - "block_time": 1726774194, - "previous_block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", + "block_time": 1726815376, + "previous_block_hash": "62147c1d9cc39595807a029e240ab3a68a952e88ce5b71fff7844b86e0cb8c7f", "difficulty": 545259519, - "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", - "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", - "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", + "ledger_hash": "c35cac3a55dd455eda44fec6808f4b04601d54416913965cf9981a7187e4ca9b", + "txlist_hash": "ffc04a3314302eecc9ed3c67fe1acc91b47b4510370eb27342c9779b5f7490e9", + "messages_hash": "64af7906004d705fe89433fbcec64aab6a352ca56eda19f6490882cfff161834", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", - "block_time": 1726774190, - "previous_block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", + "block_hash": "62147c1d9cc39595807a029e240ab3a68a952e88ce5b71fff7844b86e0cb8c7f", + "block_time": 1726815372, + "previous_block_hash": "45a751b71cef3a2ed4eeef78f7d3a06c48b05e9819a016f433d396d15b756609", "difficulty": 545259519, - "ledger_hash": "65803d38379c30b6ac2d05ad148ef1ce11251447ffe401556c7bf9c06eebd906", - "txlist_hash": "a10e0fed77cc0ef6274cddbef2c672fb7ebe1ed630d31ee561671205aac9ecd0", - "messages_hash": "034324fb557a2ab6042fd66134a2f5c9a4a5183ee5ddde1a03677c06c17172eb", + "ledger_hash": "2a02edf6dfa0fe34ec607651a25dc50c13dac9a41c1fbfd52a053f1dab281ba7", + "txlist_hash": "707f4edd41824c8716d6099fff29f4b60bdb9f141f9f033b38f2cd14bea206a0", + "messages_hash": "844c5288536dd9e848722eccc59300b721384dbfc6129a99d046d702e4583f54", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", - "block_time": 1726774186, - "previous_block_hash": "651e3b0cf4808037e35d34560665bfc4d692e40ccd883d2bbc7f46c761f7ee32", + "block_hash": "45a751b71cef3a2ed4eeef78f7d3a06c48b05e9819a016f433d396d15b756609", + "block_time": 1726815367, + "previous_block_hash": "03c9daadfc62a0379b3555a56a0c850b85b892d210480b1f6aee311b9514e48e", "difficulty": 545259519, - "ledger_hash": "d0d4cc486e16045bdeffd6704f0f275cb2c4f6073bc259daaf2ec310bfdc3062", - "txlist_hash": "2d66b5f605dc1728fbeb9e5b41f8e04a57ae32c137af8d438199d7309d8bd408", - "messages_hash": "83f1641453993b2ab8575ad53e07994f91c1d0cf5c67544bf00e47422bc9f8a9", + "ledger_hash": "2b978fd4ac2cc814bae485afdd290650940d9eeb9751fab31b797f9e3b4e52f5", + "txlist_hash": "5d200caee57178c87dc179c9594792a81eb29bfeda467bf8b145e99a5de435c7", + "messages_hash": "82d68494b63f5147da5f501878a4a9ddb1418bcbf8ea422d49b8b14a887a7724", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "651e3b0cf4808037e35d34560665bfc4d692e40ccd883d2bbc7f46c761f7ee32", - "block_time": 1726774182, - "previous_block_hash": "0892483cda3b2359321d54521d71b9cdb5179631f9afd3a6815afbf31654f10a", + "block_hash": "03c9daadfc62a0379b3555a56a0c850b85b892d210480b1f6aee311b9514e48e", + "block_time": 1726815363, + "previous_block_hash": "43757dfbcbe54d34557ebc3d81564ab86aaae2cc310f3788b63fc7550ee05b56", "difficulty": 545259519, - "ledger_hash": "1898591abedb9c6efebfb7c361c3867e5598e6c92c71620cda963dfbbe4edd8e", - "txlist_hash": "89cf7a5f82297c2a7e8572eb0a362c74f3dc2ec3b01f0fdac01a8445b32c2d62", - "messages_hash": "7d0c9df38a19bbf929f126f7fd0fc7d514c2ae87adea140b9285e754ab4c6fdb", + "ledger_hash": "b8e8c0a20b5245bf0f31edf1c53b60f116f0c9a2980afad5e72505211be7f4e0", + "txlist_hash": "27a3166c79f5f9b71d82217b5c45cbb607eca5fe89dfc6c2a28e92b7b2658c88", + "messages_hash": "a7f9d97a8439f581242c6d3d9d9ec2a569702450c0cd488c31fbecc3daffc065", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "0892483cda3b2359321d54521d71b9cdb5179631f9afd3a6815afbf31654f10a", - "block_time": 1726774177, - "previous_block_hash": "21c746c1d8a7a666598b18913fd73535305caee24703a5b741f5dfc04e1ad59d", + "block_hash": "43757dfbcbe54d34557ebc3d81564ab86aaae2cc310f3788b63fc7550ee05b56", + "block_time": 1726815359, + "previous_block_hash": "5ec7ddd08ae9307a292f17db43da8e8586ed140a86b3fac7df8639ab2bfb5df1", "difficulty": 545259519, - "ledger_hash": "de085f2fd32217117cc9f9b6cb78b3136bf9153af0b2127518bcb3fe9c100452", - "txlist_hash": "0cfa2c2e5403d9416acafcf271cd9ddfd121009f1c9d60ac249e22acda1e2aa1", - "messages_hash": "6ee20d350c2f943b261ad04265acdf29297c93220360a20d862f110e2d7af316", + "ledger_hash": "48e8e4a7ee33c7ba93781c7ce661d57afac099a607bcaa14c91365a571aaa60c", + "txlist_hash": "487d7f0a887f961c184b78de3b96075160f4b0f931fcb52cc761e205fdbea9f4", + "messages_hash": "f1a551bfec8113baf559ccb5c8bc159f656d15d3dd2335f70fbc86a3be2495d1", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 193, - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", - "block_time": 1726774194, - "previous_block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", + "block_time": 1726815376, + "previous_block_hash": "62147c1d9cc39595807a029e240ab3a68a952e88ce5b71fff7844b86e0cb8c7f", "difficulty": 545259519, - "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", - "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", - "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", + "ledger_hash": "c35cac3a55dd455eda44fec6808f4b04601d54416913965cf9981a7187e4ca9b", + "txlist_hash": "ffc04a3314302eecc9ed3c67fe1acc91b47b4510370eb27342c9779b5f7490e9", + "messages_hash": "64af7906004d705fe89433fbcec64aab6a352ca56eda19f6490882cfff161834", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd` (str, required) - The index of the block to return + + block_hash: `57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c` (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": 193, - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", - "block_time": 1726774194, - "previous_block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", + "block_time": 1726815376, + "previous_block_hash": "62147c1d9cc39595807a029e240ab3a68a952e88ce5b71fff7844b86e0cb8c7f", "difficulty": 545259519, - "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", - "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", - "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", + "ledger_hash": "c35cac3a55dd455eda44fec6808f4b04601d54416913965cf9981a7187e4ca9b", + "txlist_hash": "ffc04a3314302eecc9ed3c67fe1acc91b47b4510370eb27342c9779b5f7490e9", + "messages_hash": "64af7906004d705fe89433fbcec64aab6a352ca56eda19f6490882cfff161834", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 59, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", - "block_time": 1726774194, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", + "block_time": 1726815376, + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", + "utxos_info": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1706,11 +1706,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "65803d38379c30b6ac2d05ad148ef1ce11251447ffe401556c7bf9c06eebd906", - "messages_hash": "034324fb557a2ab6042fd66134a2f5c9a4a5183ee5ddde1a03677c06c17172eb", + "ledger_hash": "2a02edf6dfa0fe34ec607651a25dc50c13dac9a41c1fbfd52a053f1dab281ba7", + "messages_hash": "844c5288536dd9e848722eccc59300b721384dbfc6129a99d046d702e4583f54", "transaction_count": 1, - "txlist_hash": "a10e0fed77cc0ef6274cddbef2c672fb7ebe1ed630d31ee561671205aac9ecd0", - "block_time": 1726774190 + "txlist_hash": "707f4edd41824c8716d6099fff29f4b60bdb9f141f9f033b38f2cd14bea206a0", + "block_time": 1726815372 }, "tx_hash": null }, @@ -1719,43 +1719,43 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58 }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "status": "valid", - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, - "block_time": 1726774190, + "block_time": 1726815372, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -1765,22 +1765,22 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "XCP", "block_index": 192, - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -1790,7 +1790,7 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c" } ], "next_cursor": 524, @@ -1873,16 +1873,16 @@ Returns the events of a block filtered by event "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -1892,57 +1892,57 @@ Returns the events of a block filtered by event }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c" } ], "next_cursor": null, @@ -2005,16 +2005,16 @@ Returns the credits of a block "result": [ { "block_index": 192, - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,20 +2026,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2047,20 +2047,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2116,16 +2116,16 @@ Returns the debits of a block "result": [ { "block_index": 193, - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "event": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -2165,24 +2165,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "object_id": "18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", "block_index": 182, "confirmed": true, - "block_time": 1726774079 + "block_time": 1726815264 }, { "type": "order", - "object_id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", + "object_id": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7", "block_index": 182, "confirmed": true, - "block_time": 1726774079 + "block_time": 1726815264 }, { "type": "order_match", - "object_id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "object_id": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7_18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", "block_index": 182, "confirmed": true, - "block_time": 1726774079 + "block_time": 1726815264 } ], "next_cursor": null, @@ -2214,13 +2214,13 @@ Returns the cancels of a block "result": [ { "tx_index": 56, - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "block_index": 190, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "offer_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "status": "valid", "confirmed": true, - "block_time": 1726774182 + "block_time": 1726815363 } ], "next_cursor": null, @@ -2252,15 +2252,15 @@ Returns the destructions of a block "result": [ { "tx_index": 59, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -2300,14 +2300,14 @@ Returns the issuances of a block "result": [ { "tx_index": 46, - "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", + "tx_hash": "9a110287c955eba18bfaed58bbce05b2312cb4f078cbb0c0a7cf71d5a12486ed", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -2322,7 +2322,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774063, + "block_time": 1726815249, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2356,10 +2356,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2367,7 +2367,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "divisible": true, "asset_longname": null, @@ -2380,10 +2380,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2391,11 +2391,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2404,10 +2404,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2415,11 +2415,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2457,27 +2457,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "tx_hash": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", - "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", + "destination": "bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "dispenser_tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "oracle_address": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "last_status_tx_hash": null, - "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "origin": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2492,7 +2492,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726773999, + "block_time": 1726815183, "asset_info": { "divisible": true, "asset_longname": null, @@ -2533,16 +2533,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 58, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "fee_paid_normalized": "0.00600000" } ], @@ -2576,17 +2576,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c", + "tx_hash": "8b28dd31f49228d2203cd7fcfa8b9062b26a1691283c8ed214f508aebe94a44e", "block_index": 138, - "block_hash": "363da8bf54ec6bd2e21c312451d2572a6a55f610a9200b984aebf79e24b7f4ba", - "block_time": 1726773966, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "block_hash": "386e5394234079299bd30d5bf56fbbcd0fb45c95d855caa8e91a886d60853081", + "block_time": 1726815138, + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c:1", + "utxos_info": "8b28dd31f49228d2203cd7fcfa8b9062b26a1691283c8ed214f508aebe94a44e:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2611,25 +2611,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 51, - "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", + "tx_hash": "85ed946aefb8bc2f75e5c983d94c8480b4ff7f62d1ac364f1ddd964a83529eb8", "block_index": 185, - "block_hash": "4079d9964616962b4485c46f0b95a71d419ff12d2ce66578ed3e1ce2381779a6", - "block_time": 1726774160, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "6859748d6c0acc7ced001814e3f23267264ee6d1cd289792025fe34c0cc8c627", + "block_time": 1726815342, + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "destination": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "btc_amount": 2000, "fee": 10000, - "data": "0b32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "data": "0b8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a3468eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "supported": true, - "utxos_info": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72:0", + "utxos_info": "85ed946aefb8bc2f75e5c983d94c8480b4ff7f62d1ac364f1ddd964a83529eb8:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", - "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", - "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", + "tx1_hash": "8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", + "order_match_id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "status": "valid" } }, @@ -2644,23 +2644,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "block_index": 190, - "block_hash": "651e3b0cf4808037e35d34560665bfc4d692e40ccd883d2bbc7f46c761f7ee32", - "block_time": 1726774182, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "03c9daadfc62a0379b3555a56a0c850b85b892d210480b1f6aee311b9514e48e", + "block_time": 1726815363, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "data": "4613dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "supported": true, - "utxos_info": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031:1", + "utxos_info": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "offer_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "status": "valid" } }, @@ -2675,17 +2675,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", - "block_time": 1726774194, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", + "block_time": 1726815376, + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", + "utxos_info": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2715,17 +2715,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 32, - "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", "block_index": 145, - "block_hash": "148b96e6f2494b1f3955a8e2a4ee98633bcb37c92d38c7b0c00aafb200083d2c", - "block_time": 1726773995, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "block_hash": "01add2a8c14c6bb5355876e4cbdc4695a8c3f04451bc6eaa06ce1453c68f260e", + "block_time": 1726815178, + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c00000000000000010000000000000001000000000000271000000000000000010080da5d062545564f695405ef9ede0dbb3b5ce31f51", + "data": "0c0000000000000001000000000000000100000000000027100000000000000001008068e21bd6dc7f30b4166003fcc046574add94ec15", "supported": true, - "utxos_info": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e:1", + "utxos_info": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2737,7 +2737,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "oracle_address": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "status": "valid", "asset_info": { "divisible": true, @@ -2761,17 +2761,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "tx_hash": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", "block_index": 146, - "block_hash": "36abd62a234e24d1f4132324ccd2ac7e58ea0ff5583091d815626c4ef168fe09", - "block_time": 1726773999, - "source": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", - "destination": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "block_hash": "4608a70673492315b02a19a28a083d4325dea0146621f97094e48ebff95160f7", + "block_time": 1726815183, + "source": "bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we", + "destination": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "btc_amount": 10000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942:0", + "utxos_info": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 40, - "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", + "tx_hash": "dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d", "block_index": 153, - "block_hash": "152433c838e5b41e76817a93f3bf02b2b848bd3ce00d14e4a6e62c29a37e85b6", - "block_time": 1726774028, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "37dbc5fb0b3f2e56c5912878a15bedc05fa3061645cf904228fada61745ec380", + "block_time": 1726815213, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6:1", + "utxos_info": "dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2814,7 +2814,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2839,17 +2839,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 46, - "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", + "tx_hash": "9a110287c955eba18bfaed58bbce05b2312cb4f078cbb0c0a7cf71d5a12486ed", "block_index": 159, - "block_hash": "1c63dda30838fa40033a0c7d76bb8e9b01633bea7274ef10e33e1f726774089b", - "block_time": 1726774063, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "31130491aaac34b9762b251606cff0860c862691bd653088b11fb9f05f0db443", + "block_time": 1726815249, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04:1", + "utxos_info": "9a110287c955eba18bfaed58bbce05b2312cb4f078cbb0c0a7cf71d5a12486ed:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2881,17 +2881,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", - "block_time": 1726774186, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "45a751b71cef3a2ed4eeef78f7d3a06c48b05e9819a016f433d396d15b756609", + "block_time": 1726815367, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e:1", + "utxos_info": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2934,17 +2934,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5", + "tx_hash": "2af0fdfddaf6d357f3e80c38f3319a244b08c584a2b714b8214d8123abc752fb", "block_index": 187, - "block_hash": "253c0076a5f644b5eb5b390b9880cf75d2445e43621af89c52831df93d65cf27", - "block_time": 1726774169, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "block_hash": "7ddfb117844299f8374b1dbe189e3d7e3c46cb624fb0b75af0fbde17e3a30be7", + "block_time": 1726815350, + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710803bbe3a6dd2351dc452f0f53e2e5847e3877d10ef", + "data": "020000000000000001000000000000271080c530a2ade98f195e25d20f8832e18c32bc016a7d", "supported": true, - "utxos_info": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5:1", + "utxos_info": "2af0fdfddaf6d357f3e80c38f3319a244b08c584a2b714b8214d8123abc752fb:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2952,7 +2952,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "memo": null, "asset_info": { "divisible": true, @@ -2975,17 +2975,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "block_hash": "21c746c1d8a7a666598b18913fd73535305caee24703a5b741f5dfc04e1ad59d", - "block_time": 1726774173, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "5ec7ddd08ae9307a292f17db43da8e8586ed140a86b3fac7df8639ab2bfb5df1", + "block_time": 1726815355, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a51d35219ae418a29d635b82e9190881258cb46480f09d239511eee425be033d403d5cc35cc271f906803bbe3a6dd2351dc452f0f53e2e5847e3877d10ef400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808feff97d1d44cae600d822812f4ffbca02351d4480ae3cd94beec4a764b99683da51e8bd791780897b80c530a2ade98f195e25d20f8832e18c32bc016a7d400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714:0", + "utxos_info": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2993,14 +2993,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -3008,7 +3008,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3034,23 +3034,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", - "block_time": 1726774190, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "block_hash": "62147c1d9cc39595807a029e240ab3a68a952e88ce5b71fff7844b86e0cb8c7f", + "block_time": 1726815372, + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04803bbe3a6dd2351dc452f0f53e2e5847e3877d10ef017377656570206d7920617373657473", + "data": "0480c530a2ade98f195e25d20f8832e18c32bc016a7d017377656570206d7920617373657473", "supported": true, - "utxos_info": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b:1", + "utxos_info": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "flags": 1, "memo": "sweep my assets" } @@ -3083,17 +3083,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 59, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", - "block_time": 1726774194, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", + "block_time": 1726815376, + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", + "utxos_info": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3116,23 +3116,23 @@ Returns the list of the last ten transactions }, { "tx_index": 58, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", - "block_time": 1726774190, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "block_hash": "62147c1d9cc39595807a029e240ab3a68a952e88ce5b71fff7844b86e0cb8c7f", + "block_time": 1726815372, + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04803bbe3a6dd2351dc452f0f53e2e5847e3877d10ef017377656570206d7920617373657473", + "data": "0480c530a2ade98f195e25d20f8832e18c32bc016a7d017377656570206d7920617373657473", "supported": true, - "utxos_info": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b:1", + "utxos_info": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "flags": 1, "memo": "sweep my assets" } @@ -3150,7 +3150,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000101f89d7f0229fc92436f8da698cf6e84a93b47befecf1461b747dad2e8cf0ce2940000000000ffffffff020000000000000000356a33f86a88cbd459ab1e8a7811747f2ab644821023c577bf622caa30ea790a3fbd2c5ec91fa1510cc56212ab482d7a0dd81d359991f0ca052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4024730440220182f5ce19f9c4927b2fe424a6705ee0212ebcc0d6d12ae76003c2962ff89bd4802201012a5d031f0964a88d27e2fd17b1c81970e8b61cb3d2ad1dad58b11a704e178012102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0600000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000101df3ab8f04784187b91720854227ddeb5a0d611b80b5614b72921b294608894810000000000ffffffff0200000000000000002b6a29c659f0a93917f94830a7d43137626f7ff8ec819d06d6821bad1920e86dc64a6022ef5895a0c648ff1ff0ca052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d024730440220186549b6f7a06e817c86000dc3d3ee580dd587bdd05ba07e53eb62212b665df602207b87cb28fb323d9a50f42f437704942fccb56a41e02d6f187059fc982c7091eb012102b90e3855aa1de7a7b0fd831d5f15a1c0797dfd99047785d3823854a123df023000000000` (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. @@ -3163,18 +3163,18 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "4613dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "f89d7f0229fc92436f8da698cf6e84a93b47befecf1461b747dad2e8cf0ce294", + "hash": "df3ab8f04784187b91720854227ddeb5a0d611b80b5614b72921b29460889481", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3184,49 +3184,27 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a33f86a88cbd459ab1e8a7811747f2ab644821023c577bf622caa30ea790a3fbd2c5ec91fa1510cc56212ab482d7a0dd81d359991" + "script_pub_key": "6a29c659f0a93917f94830a7d43137626f7ff8ec819d06d6821bad1920e86dc64a6022ef5895a0c648ff1f" }, { "value": 4999990000, - "script_pub_key": "0014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4" + "script_pub_key": "001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d" } ], "vtxinwit": [ - "30440220182f5ce19f9c4927b2fe424a6705ee0212ebcc0d6d12ae76003c2962ff89bd4802201012a5d031f0964a88d27e2fd17b1c81970e8b61cb3d2ad1dad58b11a704e17801", - "02c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f06" + "30440220186549b6f7a06e817c86000dc3d3ee580dd587bdd05ba07e53eb62212b665df602207b87cb28fb323d9a50f42f437704942fccb56a41e02d6f187059fc982c7091eb01", + "02b90e3855aa1de7a7b0fd831d5f15a1c0797dfd99047785d3823854a123df0230" ], "lock_time": 0, - "tx_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", - "tx_id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3" + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", + "tx_id": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2" }, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, + "message_type": "cancel", + "message_type_id": 70, "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" + "offer_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", + "status": "valid" } }, "btc_amount_normalized": "0.00000000" @@ -3278,17 +3256,17 @@ Returns a transaction by its index. { "result": { "tx_index": 59, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", - "block_time": 1726774194, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", + "block_time": 1726815376, + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", + "utxos_info": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3317,7 +3295,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c` (str, required) - The hash of the transaction + + tx_hash: `70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b` (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. @@ -3329,17 +3307,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 59, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", - "block_time": 1726774194, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", + "block_time": 1726815376, + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", + "utxos_info": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3392,47 +3370,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58 }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "status": "valid", - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, - "block_time": 1726774190, + "block_time": 1726815372, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -3442,24 +3420,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "XCP", "block_index": 192, - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -3469,36 +3447,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 } ], "next_cursor": 523, @@ -3511,7 +3489,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b` (str, required) - The hash of the transaction to return + + tx_hash: `4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -3535,47 +3513,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58 }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "status": "valid", - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, - "block_time": 1726774190, + "block_time": 1726815372, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -3585,24 +3563,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "XCP", "block_index": 192, - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -3612,36 +3590,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 } ], "next_cursor": 523, @@ -3654,7 +3632,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714` (str, required) - The hash of the transaction to return + + tx_hash: `7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3` (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 @@ -3673,10 +3651,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "quantity": 10, "status": "valid", @@ -3684,7 +3662,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "divisible": true, "asset_longname": null, @@ -3697,10 +3675,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3708,11 +3686,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -3721,10 +3699,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3732,11 +3710,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -3754,7 +3732,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942` (str, required) - The hash of the transaction to return + + tx_hash: `b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05` (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 @@ -3774,27 +3752,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "tx_hash": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", - "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", + "destination": "bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "dispenser_tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "oracle_address": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "last_status_tx_hash": null, - "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "origin": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3809,7 +3787,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726773999, + "block_time": 1726815183, "asset_info": { "divisible": true, "asset_longname": null, @@ -3853,16 +3831,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -3872,63 +3850,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 } ], "next_cursor": null, @@ -3941,7 +3919,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b` (str, required) - The hash of the transaction to return + + tx_hash: `4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `535` (str, optional) - The last event index to return + Default: `None` @@ -3963,16 +3941,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -3982,63 +3960,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 } ], "next_cursor": null, @@ -4053,7 +4031,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u,bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3,bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf` (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 @@ -4077,7 +4055,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4087,7 +4065,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -4098,7 +4076,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4108,7 +4086,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -4119,7 +4097,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4129,7 +4107,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -4140,7 +4118,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4150,7 +4128,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -4161,7 +4139,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4171,7 +4149,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -4188,7 +4166,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u,bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3,bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf` (str, required) - Comma separated list of addresses to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4207,17 +4185,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 57, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", - "block_time": 1726774186, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "45a751b71cef3a2ed4eeef78f7d3a06c48b05e9819a016f433d396d15b756609", + "block_time": 1726815367, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e:1", + "utxos_info": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4253,23 +4231,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "block_index": 190, - "block_hash": "651e3b0cf4808037e35d34560665bfc4d692e40ccd883d2bbc7f46c761f7ee32", - "block_time": 1726774182, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "03c9daadfc62a0379b3555a56a0c850b85b892d210480b1f6aee311b9514e48e", + "block_time": 1726815363, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "data": "4613dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "supported": true, - "utxos_info": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031:1", + "utxos_info": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "offer_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "status": "valid" } }, @@ -4277,17 +4255,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 55, - "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "tx_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "block_index": 189, - "block_hash": "0892483cda3b2359321d54521d71b9cdb5179631f9afd3a6815afbf31654f10a", - "block_time": 1726774177, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "43757dfbcbe54d34557ebc3d81564ab86aaae2cc310f3788b63fc7550ee05b56", + "block_time": 1726815359, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e:1", + "utxos_info": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4323,17 +4301,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "block_hash": "21c746c1d8a7a666598b18913fd73535305caee24703a5b741f5dfc04e1ad59d", - "block_time": 1726774173, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "5ec7ddd08ae9307a292f17db43da8e8586ed140a86b3fac7df8639ab2bfb5df1", + "block_time": 1726815355, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a51d35219ae418a29d635b82e9190881258cb46480f09d239511eee425be033d403d5cc35cc271f906803bbe3a6dd2351dc452f0f53e2e5847e3877d10ef400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808feff97d1d44cae600d822812f4ffbca02351d4480ae3cd94beec4a764b99683da51e8bd791780897b80c530a2ade98f195e25d20f8832e18c32bc016a7d400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714:0", + "utxos_info": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4341,14 +4319,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -4356,7 +4334,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4375,25 +4353,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 51, - "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", + "tx_hash": "85ed946aefb8bc2f75e5c983d94c8480b4ff7f62d1ac364f1ddd964a83529eb8", "block_index": 185, - "block_hash": "4079d9964616962b4485c46f0b95a71d419ff12d2ce66578ed3e1ce2381779a6", - "block_time": 1726774160, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "6859748d6c0acc7ced001814e3f23267264ee6d1cd289792025fe34c0cc8c627", + "block_time": 1726815342, + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "destination": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "btc_amount": 2000, "fee": 10000, - "data": "0b32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "data": "0b8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a3468eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "supported": true, - "utxos_info": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72:0", + "utxos_info": "85ed946aefb8bc2f75e5c983d94c8480b4ff7f62d1ac364f1ddd964a83529eb8:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", - "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", - "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", + "tx1_hash": "8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", + "order_match_id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "status": "valid" } }, @@ -4410,7 +4388,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u,bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3,bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -4446,11 +4424,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "status": "open", - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "tx_index": 57, - "block_time": 1726774186, + "block_time": 1726815367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4474,24 +4452,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "block_time": 1726774186 + "block_time": 1726815367 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "block_index": 191, - "event": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "event": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1726774186, + "block_time": 1726815367, "asset_info": { "divisible": true, "asset_longname": null, @@ -4501,25 +4479,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "block_time": 1726774186 + "block_time": 1726815367 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", + "block_hash": "45a751b71cef3a2ed4eeef78f7d3a06c48b05e9819a016f433d396d15b756609", "block_index": 191, - "block_time": 1726774186, + "block_time": 1726815367, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "tx_index": 57, - "utxos_info": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e:1", + "utxos_info": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4551,40 +4529,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "block_time": 1726774186 + "block_time": 1726815367 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "offer_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "status": "valid", - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "tx_index": 56, - "block_time": 1726774182 + "block_time": 1726815363 }, - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "block_index": 190, - "block_time": 1726774182 + "block_time": 1726815363 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "event": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726774182, + "block_time": 1726815363, "asset_info": { "divisible": true, "asset_longname": null, @@ -4594,9 +4572,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "block_index": 190, - "block_time": 1726774182 + "block_time": 1726815363 } ], "next_cursor": 506, @@ -4609,7 +4587,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr,bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl,bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e` (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 @@ -4625,17 +4603,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "memo": null, "quantity": 10000, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "status": "valid", - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "tx_index": 60, "asset_info": { "divisible": true, @@ -4648,19 +4626,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "CREDIT", "params": { - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "event": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -4672,19 +4650,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 193, - "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "event": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -4696,27 +4674,27 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726774198.968543, + "block_time": 1726815390.847795, "btc_amount": 0, - "data": "020000000000000001000000000000271080f09d239511eee425be033d403d5cc35cc271f906", + "data": "020000000000000001000000000000271080ae3cd94beec4a764b99683da51e8bd791780897b", "destination": "", "fee": 10000, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "tx_index": 60, - "utxos_info": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63:1", + "utxos_info": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "memo": null, "asset_info": { "divisible": true, @@ -4742,7 +4720,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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 @@ -4762,7 +4740,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4770,14 +4748,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4785,14 +4763,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4807,7 +4785,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4815,7 +4793,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -4832,7 +4810,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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` @@ -4844,7 +4822,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4866,7 +4844,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4916,16 +4894,16 @@ Returns the credits of an address "result": [ { "block_index": 190, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "event": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774182, + "block_time": 1726815363, "asset_info": { "divisible": true, "asset_longname": null, @@ -4937,16 +4915,16 @@ Returns the credits of an address }, { "block_index": 182, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", + "event": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774079, + "block_time": 1726815264, "asset_info": { "divisible": true, "asset_longname": null, @@ -4958,20 +4936,20 @@ Returns the credits of an address }, { "block_index": 159, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", + "event": "9a110287c955eba18bfaed58bbce05b2312cb4f078cbb0c0a7cf71d5a12486ed", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774063, + "block_time": 1726815249, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -4979,20 +4957,20 @@ Returns the credits of an address }, { "block_index": 156, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "7d4a2bd04f1f814197a4eb9b38403dcfcf0dc8b1a4ccac05b631aa1d00d2b8b0", + "event": "d6c329f8a24f64e7916f1dfef93eae0ecb94935337d23431cdeccbca17ab7da3", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774040, + "block_time": 1726815226, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5004,16 +4982,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", + "event": "73f33445bb6ef1ba7081a2f649acc7c7d63d07e8ae0bda9324481991a50c3dc9", "tx_index": 38, - "utxo": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e:1", - "utxo_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "utxo": "73f33445bb6ef1ba7081a2f649acc7c7d63d07e8ae0bda9324481991a50c3dc9:1", + "utxo_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "confirmed": true, - "block_time": 1726774019, + "block_time": 1726815204, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5030,7 +5008,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5069,16 +5047,16 @@ Returns the debits of an address "result": [ { "block_index": 191, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "event": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774186, + "block_time": 1726815367, "asset_info": { "divisible": true, "asset_longname": null, @@ -5090,16 +5068,16 @@ Returns the debits of an address }, { "block_index": 189, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "event": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774177, + "block_time": 1726815359, "asset_info": { "divisible": true, "asset_longname": null, @@ -5111,16 +5089,16 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "event": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "divisible": true, "asset_longname": null, @@ -5132,20 +5110,20 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "event": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5153,16 +5131,16 @@ Returns the debits of an address }, { "block_index": 183, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "event": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774153, + "block_time": 1726815333, "asset_info": { "divisible": true, "asset_longname": null, @@ -5183,7 +5161,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address of the feed + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5218,7 +5196,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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 @@ -5237,9 +5215,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "04c2e5dab15ab4e26d63a5648f0d6629630b4542ae192461bdcf2113b0f3cea8", + "tx_hash": "d9e29ea3864ede77bc7a3ea8aa40c44d34c3de20d56adbb39d31a18dbde1074c", "block_index": 137, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5247,7 +5225,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726773962, + "block_time": 1726815134, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5261,7 +5239,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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 @@ -5280,14 +5258,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "23f9db86085e7bb684b573ea2431e4df71742706ec74943c876c80cc1321789f", + "tx_hash": "f7ad5bf33d4ffab8d2b710e385b913472c9b2581a942bdd5c1008b6fd27134ce", "block_index": 112, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1726773838, + "block_time": 1726815028, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5302,7 +5280,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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 @@ -5321,10 +5299,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5332,7 +5310,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "divisible": true, "asset_longname": null, @@ -5345,10 +5323,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5356,11 +5334,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5369,10 +5347,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5380,11 +5358,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5393,10 +5371,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 38, - "tx_hash": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", + "tx_hash": "73f33445bb6ef1ba7081a2f649acc7c7d63d07e8ae0bda9324481991a50c3dc9", "block_index": 151, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e:1", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "73f33445bb6ef1ba7081a2f649acc7c7d63d07e8ae0bda9324481991a50c3dc9:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5404,11 +5382,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774019, + "block_time": 1726815204, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5417,10 +5395,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 35, - "tx_hash": "41fac461930dace665e9bb44dc633220d82b7510e61470fcdf4539273a33300a", + "tx_hash": "71f50334f5f35ae1010659a0460e4a01de2cc58d367d6138d39092ac22811275", "block_index": 148, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "0b55d2fd4d396734b796b0ad4164d7d531839c050c4f31df53d1d4a86750b9bd:1", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "36121215cb7f08d658a54f68e7939dc2c1565e90781f97a44a9116d04138bb81:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5428,11 +5406,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774007, + "block_time": 1726815191, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5450,7 +5428,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9` (str, required) - The address to return + + address: `bcrt1qdp2athf6h3fqgwf5wkz79lg2a7m8gj06zptffm` (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 @@ -5469,10 +5447,10 @@ Returns the receives of an address "result": [ { "tx_index": 37, - "tx_hash": "1cfb953bd23a5d5edaeccfd49b0528b6597e10acdd7f9956bc3ea49468400cfd", + "tx_hash": "107375514b4bf3351449b9cbbd7ddf635e1f9a7e87c1cb923ada7d25c334534f", "block_index": 150, - "source": "67db055172fd889ca6fa9cc47fa2ab086efcdc03871cefc9a0e6833aa2cffadc:0", - "destination": "bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9", + "source": "a765061f6252188ff4cc3b6558223a79dcdb9ce3924998af5a62e47f793ce837:0", + "destination": "bcrt1qdp2athf6h3fqgwf5wkz79lg2a7m8gj06zptffm", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5480,11 +5458,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774015, + "block_time": 1726815200, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5502,7 +5480,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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` @@ -5522,10 +5500,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5533,11 +5511,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5546,10 +5524,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5557,11 +5535,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5570,10 +5548,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 38, - "tx_hash": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", + "tx_hash": "73f33445bb6ef1ba7081a2f649acc7c7d63d07e8ae0bda9324481991a50c3dc9", "block_index": 151, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e:1", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "73f33445bb6ef1ba7081a2f649acc7c7d63d07e8ae0bda9324481991a50c3dc9:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5581,11 +5559,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774019, + "block_time": 1726815204, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5594,10 +5572,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 35, - "tx_hash": "41fac461930dace665e9bb44dc633220d82b7510e61470fcdf4539273a33300a", + "tx_hash": "71f50334f5f35ae1010659a0460e4a01de2cc58d367d6138d39092ac22811275", "block_index": 148, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "0b55d2fd4d396734b796b0ad4164d7d531839c050c4f31df53d1d4a86750b9bd:1", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "36121215cb7f08d658a54f68e7939dc2c1565e90781f97a44a9116d04138bb81:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5605,11 +5583,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774007, + "block_time": 1726815191, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5627,7 +5605,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9` (str, required) - The address to return + + address: `bcrt1qdp2athf6h3fqgwf5wkz79lg2a7m8gj06zptffm` (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` @@ -5647,10 +5625,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 37, - "tx_hash": "1cfb953bd23a5d5edaeccfd49b0528b6597e10acdd7f9956bc3ea49468400cfd", + "tx_hash": "107375514b4bf3351449b9cbbd7ddf635e1f9a7e87c1cb923ada7d25c334534f", "block_index": 150, - "source": "67db055172fd889ca6fa9cc47fa2ab086efcdc03871cefc9a0e6833aa2cffadc:0", - "destination": "bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9", + "source": "a765061f6252188ff4cc3b6558223a79dcdb9ce3924998af5a62e47f793ce837:0", + "destination": "bcrt1qdp2athf6h3fqgwf5wkz79lg2a7m8gj06zptffm", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5658,11 +5636,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774015, + "block_time": 1726815200, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5680,7 +5658,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5707,9 +5685,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 30, - "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", + "tx_hash": "02762a4f55190e571b19a19348ee8f6412b45913745ee7cb62c747172108246c", "block_index": 144, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5718,7 +5696,7 @@ Returns the dispensers of an address "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5728,7 +5706,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773991, + "block_time": 1726815174, "asset_info": { "divisible": true, "asset_longname": null, @@ -5744,9 +5722,9 @@ Returns the dispensers of an address }, { "tx_index": 26, - "tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5755,7 +5733,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5765,7 +5743,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -5790,7 +5768,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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` @@ -5803,9 +5781,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", + "tx_hash": "02762a4f55190e571b19a19348ee8f6412b45913745ee7cb62c747172108246c", "block_index": 144, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5814,7 +5792,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5824,7 +5802,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773991, + "block_time": 1726815174, "asset_info": { "divisible": true, "asset_longname": null, @@ -5846,7 +5824,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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 @@ -5866,19 +5844,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", + "tx_hash": "843a01c97d2c75cfafa7a09843605ee3037fbd60b22037c299e8f67344e2a84d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5886,7 +5864,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5901,7 +5879,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -5915,19 +5893,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", + "tx_hash": "bfa7ee683cb51865b4d68ab9b643e7c0c9c1baa4298c01f3bf2eae8953b029d6", "block_index": 140, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5935,7 +5913,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5950,7 +5928,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773973, + "block_time": 1726815147, "asset_info": { "divisible": true, "asset_longname": null, @@ -5972,7 +5950,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (str, required) - The address to return + + address: `bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf` (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 @@ -5992,19 +5970,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", + "tx_hash": "843a01c97d2c75cfafa7a09843605ee3037fbd60b22037c299e8f67344e2a84d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6012,7 +5990,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6027,7 +6005,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -6041,19 +6019,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", + "tx_hash": "bfa7ee683cb51865b4d68ab9b643e7c0c9c1baa4298c01f3bf2eae8953b029d6", "block_index": 140, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6061,7 +6039,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6076,7 +6054,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773973, + "block_time": 1726815147, "asset_info": { "divisible": true, "asset_longname": null, @@ -6098,7 +6076,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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` @@ -6119,19 +6097,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", + "tx_hash": "843a01c97d2c75cfafa7a09843605ee3037fbd60b22037c299e8f67344e2a84d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6139,7 +6117,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6154,7 +6132,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -6168,19 +6146,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", + "tx_hash": "bfa7ee683cb51865b4d68ab9b643e7c0c9c1baa4298c01f3bf2eae8953b029d6", "block_index": 140, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6188,7 +6166,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6203,7 +6181,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773973, + "block_time": 1726815147, "asset_info": { "divisible": true, "asset_longname": null, @@ -6225,7 +6203,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (str, required) - The address to return + + address: `bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf` (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` @@ -6246,19 +6224,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", + "tx_hash": "843a01c97d2c75cfafa7a09843605ee3037fbd60b22037c299e8f67344e2a84d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6266,7 +6244,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6281,7 +6259,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -6295,19 +6273,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", + "tx_hash": "bfa7ee683cb51865b4d68ab9b643e7c0c9c1baa4298c01f3bf2eae8953b029d6", "block_index": 140, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6315,7 +6293,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6330,7 +6308,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773973, + "block_time": 1726815147, "asset_info": { "divisible": true, "asset_longname": null, @@ -6352,7 +6330,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr` (str, required) - The address to return + + address: `bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl` (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 @@ -6371,16 +6349,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 58, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "fee_paid_normalized": "0.00600000" } ], @@ -6394,7 +6372,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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 @@ -6413,14 +6391,14 @@ Returns the issuances of an address "result": [ { "tx_index": 46, - "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", + "tx_hash": "9a110287c955eba18bfaed58bbce05b2312cb4f078cbb0c0a7cf71d5a12486ed", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -6435,20 +6413,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774063, + "block_time": 1726815249, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "a9bf93086ed282edc2b5194935329671a7e12a0af1a2408220460fd3bac8663b", + "tx_hash": "3e5964c2c5b951962901d82df38e276b858ace15c6ba532ce89f48e715a29254", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -6463,20 +6441,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726774059, + "block_time": 1726815244, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "4204b9166ff55290c1a9696502a714ae666873dd698433434047f5a70049c6b5", + "tx_hash": "0f9175800f3765d29d82f9eaa6eddbdff41092a23157d81106b7bea3bbe9da43", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -6491,20 +6469,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774054, + "block_time": 1726815230, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "7d4a2bd04f1f814197a4eb9b38403dcfcf0dc8b1a4ccac05b631aa1d00d2b8b0", + "tx_hash": "d6c329f8a24f64e7916f1dfef93eae0ecb94935337d23431cdeccbca17ab7da3", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -6519,20 +6497,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774040, + "block_time": 1726815226, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "acfa48a6367ebe208fe02f5a249e5d3ff83f156b26ae8ee055b9d8335bdb41c8", + "tx_hash": "be727172afce4c5b1911abb1a63a148fc01765509f96b605656d5a301f139007", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -6547,7 +6525,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774002, + "block_time": 1726815187, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -6562,7 +6540,7 @@ Returns the issuances of an address Returns the valid assets of an issuer + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The issuer to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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 @@ -6585,8 +6563,8 @@ Returns the valid assets of an issuer "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 10000000000, @@ -6594,16 +6572,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726774040, - "last_issuance_block_time": 1726774059, + "first_issuance_block_time": 1726815226, + "last_issuance_block_time": 1726815244, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 100000000000, @@ -6611,16 +6589,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726774002, - "last_issuance_block_time": 1726774002, + "first_issuance_block_time": 1726815187, + "last_issuance_block_time": 1726815187, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 40, @@ -6628,16 +6606,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726773953, - "last_issuance_block_time": 1726773957, + "first_issuance_block_time": 1726815126, + "last_issuance_block_time": 1726815130, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 19, @@ -6645,16 +6623,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726773916, - "last_issuance_block_time": 1726773949, + "first_issuance_block_time": 1726815109, + "last_issuance_block_time": 1726815121, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 0, @@ -6662,8 +6640,8 @@ Returns the valid assets of an issuer "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1726773896, - "last_issuance_block_time": 1726773912, + "first_issuance_block_time": 1726815087, + "last_issuance_block_time": 1726815104, "supply_normalized": "0.00000000" } ], @@ -6677,7 +6655,7 @@ Returns the valid assets of an issuer Returns the transactions of an address + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (str, required) - The address to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -6696,17 +6674,17 @@ Returns the transactions of an address "result": [ { "tx_index": 57, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", - "block_time": 1726774186, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "45a751b71cef3a2ed4eeef78f7d3a06c48b05e9819a016f433d396d15b756609", + "block_time": 1726815367, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e:1", + "utxos_info": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6742,23 +6720,23 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "block_index": 190, - "block_hash": "651e3b0cf4808037e35d34560665bfc4d692e40ccd883d2bbc7f46c761f7ee32", - "block_time": 1726774182, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "03c9daadfc62a0379b3555a56a0c850b85b892d210480b1f6aee311b9514e48e", + "block_time": 1726815363, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "data": "4613dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "supported": true, - "utxos_info": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031:1", + "utxos_info": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "offer_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "status": "valid" } }, @@ -6766,17 +6744,17 @@ Returns the transactions of an address }, { "tx_index": 55, - "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "tx_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "block_index": 189, - "block_hash": "0892483cda3b2359321d54521d71b9cdb5179631f9afd3a6815afbf31654f10a", - "block_time": 1726774177, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "43757dfbcbe54d34557ebc3d81564ab86aaae2cc310f3788b63fc7550ee05b56", + "block_time": 1726815359, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e:1", + "utxos_info": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6812,17 +6790,17 @@ Returns the transactions of an address }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "block_hash": "21c746c1d8a7a666598b18913fd73535305caee24703a5b741f5dfc04e1ad59d", - "block_time": 1726774173, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "5ec7ddd08ae9307a292f17db43da8e8586ed140a86b3fac7df8639ab2bfb5df1", + "block_time": 1726815355, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a51d35219ae418a29d635b82e9190881258cb46480f09d239511eee425be033d403d5cc35cc271f906803bbe3a6dd2351dc452f0f53e2e5847e3877d10ef400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808feff97d1d44cae600d822812f4ffbca02351d4480ae3cd94beec4a764b99683da51e8bd791780897b80c530a2ade98f195e25d20f8832e18c32bc016a7d400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714:0", + "utxos_info": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -6830,14 +6808,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -6845,7 +6823,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -6864,17 +6842,17 @@ Returns the transactions of an address }, { "tx_index": 49, - "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", "block_index": 183, - "block_hash": "5f31e68a975e69728a9ad8b70ceb94736ca5b9db87c23fa9186954117e830736", - "block_time": 1726774153, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "511185935f9f972e0f179dc7faab5f239d37846695f61a7c9960f48148aa40e4", + "block_time": 1726815333, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032:1", + "utxos_info": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6919,7 +6897,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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 @@ -6938,20 +6916,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 40, - "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", + "tx_hash": "dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d", "block_index": 153, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726774028, + "block_time": 1726815213, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -6976,7 +6954,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7003,9 +6981,9 @@ Returns the orders of an address "result": [ { "tx_index": 57, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7020,7 +6998,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726774186, + "block_time": 1726815367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7046,9 +7024,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "tx_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "block_index": 190, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7063,7 +7041,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726774182, + "block_time": 1726815363, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7089,9 +7067,9 @@ Returns the orders of an address }, { "tx_index": 49, - "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", "block_index": 186, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7106,7 +7084,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726774164, + "block_time": 1726815346, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7132,9 +7110,9 @@ Returns the orders of an address }, { "tx_index": 47, - "tx_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", + "tx_hash": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7", "block_index": 182, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7149,7 +7127,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1726774079, + "block_time": 1726815264, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7184,7 +7162,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The source of the fairminter to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7202,10 +7180,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", + "tx_hash": "f2ee7f4036c7cc051cf8e2a20e32425a200f9b9166a04d94e90279ccdd5d024b", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7230,13 +7208,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726773953 + "block_time": 1726815126 }, { - "tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", + "tx_hash": "58435d06e2ff2416426cdf5dc51282c4665cc4b7b746f60d55d8918e58923e74", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7261,13 +7239,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726773916 + "block_time": 1726815109 }, { - "tx_hash": "8bf6a822f10cccc625da7811b776e108fadf45d1b9255b1ab005583ec7c9df68", + "tx_hash": "35a7ddf4a16bb7075ce86310a406d213e899b51a36556396066c9db61b876ace", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7292,13 +7270,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726773912 + "block_time": 1726815104 }, { - "tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7323,7 +7301,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726773891 + "block_time": 1726815083 } ], "next_cursor": null, @@ -7336,7 +7314,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (str, required) - The address of the mints to return + + address: `bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7354,127 +7332,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "ed4ea8c5e199862917e614d38a53e76af1da07f9c981ba9c4c961244f169fea7", + "tx_hash": "adf60b006a2dcd134e0e5faadf2d887a7f868f9bc6480ce7ad700283036454ef", "tx_index": 23, "block_index": 136, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "fairminter_tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "fairminter_tx_hash": "f2ee7f4036c7cc051cf8e2a20e32425a200f9b9166a04d94e90279ccdd5d024b", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773957, + "block_time": 1726815130, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } }, { - "tx_hash": "8e423ad9a4cd9d5486d14e4674f383f71cb3c0ab9341faab56ff72641a10e21f", + "tx_hash": "94e8f2fa3927dec6e081b18fbaff80ded75ee0b0f1daa546493dadd4daa7797b", "tx_index": 21, "block_index": 134, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "fairminter_tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "fairminter_tx_hash": "58435d06e2ff2416426cdf5dc51282c4665cc4b7b746f60d55d8918e58923e74", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773949, + "block_time": 1726815121, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } }, { - "tx_hash": "bf0d60c7451736b319e492c83939e125c79e0887b6da99b3b6513f61d91673f0", + "tx_hash": "df5dffba129be8b4ca06b6167ae0a3ec8c8b2b942c22a7256e40391f742377e8", "tx_index": 20, "block_index": 133, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "fairminter_tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "fairminter_tx_hash": "58435d06e2ff2416426cdf5dc51282c4665cc4b7b746f60d55d8918e58923e74", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773934, + "block_time": 1726815117, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } }, { - "tx_hash": "dbe3fab19d11222801d9998def264a54cc8303c3c6a653cb72ad34356bb7771a", + "tx_hash": "8ed6947087033aa3c6ec997081792eb06bd8fc9e69e477b54c3b9a5766053bd8", "tx_index": 19, "block_index": 132, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "fairminter_tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "fairminter_tx_hash": "58435d06e2ff2416426cdf5dc51282c4665cc4b7b746f60d55d8918e58923e74", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773920, + "block_time": 1726815113, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } }, { - "tx_hash": "1576a56c7da9b4e5301b3f13da28ce1549890be7193816f00386f60aec6d9c0d", + "tx_hash": "f4cdae7b74ee4cb30b355cee970510d8c6ac778f0bc88d2b42f95f681531be2d", "tx_index": 15, "block_index": 127, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "fairminter_tx_hash": "8bf6a822f10cccc625da7811b776e108fadf45d1b9255b1ab005583ec7c9df68", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "fairminter_tx_hash": "35a7ddf4a16bb7075ce86310a406d213e899b51a36556396066c9db61b876ace", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773900, + "block_time": 1726815092, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } }, { - "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", + "tx_hash": "0df3dc539e5c6561a238df83215c4f5332a98c23cb978a3851f13274f0e5678f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "fairminter_tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773883, + "block_time": 1726815075, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } @@ -7490,7 +7468,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (str, required) - The address of the mints to return + + address: `bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf` (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` @@ -7509,22 +7487,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", + "tx_hash": "0df3dc539e5c6561a238df83215c4f5332a98c23cb978a3851f13274f0e5678f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "fairminter_tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773883, + "block_time": 1726815075, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } @@ -7558,13 +7536,13 @@ By default the default value of the `encoding` parameter detailed above is `auto - Sign the transaction following the `Bitcoinjs-lib on javascript, signing a P2SH redeeming transaction` section - **NOTE**: Don't leave pretxs hanging without transmitting the second transaction as this pollutes the UTXO set and risks making bitcoin harder to run on low spec nodes. -### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] +### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a bet against a feed. + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address that will make the bet - + feed_address: `bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (str, required) - The address that will make the bet + + feed_address: `bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf` (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) @@ -7590,7 +7568,7 @@ Composes a transaction to issue a bet against a feed. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -7610,7 +7588,7 @@ Composes a transaction to issue a bet against a feed. + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` - + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7625,12 +7603,12 @@ Composes a transaction to issue a bet against a feed. } ``` -### Compose Broadcast [GET /v2/addresses/{address}/compose/broadcast{?timestamp}{&value}{&fee_fraction}{&text}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] +### Compose Broadcast [GET /v2/addresses/{address}/compose/broadcast{?timestamp}{&value}{&fee_fraction}{&text}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] Composes a transaction to broadcast textual and numerical information to the network. + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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) @@ -7651,7 +7629,7 @@ Composes a transaction to broadcast textual and numerical information to the net + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -7671,7 +7649,7 @@ Composes a transaction to broadcast textual and numerical information to the net + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` - + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7683,9 +7661,9 @@ Composes a transaction to broadcast textual and numerical information to the net ``` { "result": { - "rawtransaction": "020000000001015b95f1d0edb9af21857674c34ee2eecf7c437d120ad8b11ff3c1ab30ad34941700000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff0200000000000000002b6a29d799ae735c5d8d24b2851b7d16af02fac07861af3d7cf1e0fb9831300183c7de88388d7637f673afa13bb1052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "020000000001012ad6098aff453f8876f81871fde06ebaf1311a5a887be35d4574145a35f7c67b0000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff0200000000000000002b6a296bcb94ae10f743389cfca4bcab49eb392af9bf35be7b31d757ac64f34c3e0d1d213f6853a7ca45ef4b3bb1052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7696,13 +7674,13 @@ Composes a transaction to broadcast textual and numerical information to the net } ``` -### Compose BTCPay [GET /v2/addresses/{address}/compose/btcpay{?order_match_id}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] +### Compose BTCPay [GET /v2/addresses/{address}/compose/btcpay{?order_match_id}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] Composes a transaction to pay for a BTC order match. + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address that will be sending the payment - + order_match_id: `32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646` (str, required) - The ID of the order match to pay for + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (str, required) - The address that will be sending the payment + + order_match_id: `8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872` (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) @@ -7719,7 +7697,7 @@ Composes a transaction to pay for a BTC order match. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -7739,7 +7717,7 @@ Composes a transaction to pay for a BTC order match. + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` - + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7751,22 +7729,22 @@ Composes a transaction to pay for a BTC order match. ``` { "result": { - "rawtransaction": "020000000001016ba6ddb41ff1c71ef01d5f7d99d3ff19619764fd7139395f4855ff8bbadb86fd00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff03b80b000000000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb400000000000000004b6a49ff6c16b78d62574dfbdee3b1718760b06956c4b8331be40596089000b04f43ec8266489ee5cb534d609eda9adcef6c15a3c1cddc6bea1a70a05b91a5a15756e79d38c45ebdaa3053d6d993052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "0200000000010125c50348c6295fcdc5fc8a3659277a721967d111c73162786e33340c69ae2d380000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff03b80b00000000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d00000000000000004b6a494b2b4044a585ff8bfd31684657fcf43b9b6a6723946891224c53b32cefba15bad1cec21a2ae61ae3e57a228ef3d6f31b3a9bf38e4d15529e5a202c27eb3501385d9a926c5dcd93ae27d993052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646" + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "order_match_id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872" }, "name": "btcpay" } } ``` -### Compose Burn [GET /v2/addresses/{address}/compose/burn{?quantity}{&overburn}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] +### Compose Burn [GET /v2/addresses/{address}/compose/burn{?quantity}{&overburn}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, possible between blocks 278310 and 283810; on testnet it is still available). + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address with the BTC to burn + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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` @@ -7786,7 +7764,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -7806,7 +7784,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` - + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7818,9 +7796,9 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss ``` { "result": { - "rawtransaction": "02000000000101f660e9eb9a1f2d2309bdf697c2b5b3f23334d8f808a8a1eff88ef6d7b2cda3d000000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "02000000000101739af5b482dd9fa8da440a81a33cac0070d104f1300146a27a6ef3a69e26730d0000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "quantity": 1000, "overburn": false }, @@ -7829,13 +7807,13 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss } ``` -### Compose Cancel [GET /v2/addresses/{address}/compose/cancel{?offer_hash}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] +### Compose Cancel [GET /v2/addresses/{address}/compose/cancel{?offer_hash}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] Composes a transaction to cancel an open order or bet. + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba` (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) @@ -7852,7 +7830,7 @@ Composes a transaction to cancel an open order or bet. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -7872,7 +7850,7 @@ Composes a transaction to cancel an open order or bet. + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` - + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7884,22 +7862,22 @@ Composes a transaction to cancel an open order or bet. ``` { "result": { - "rawtransaction": "02000000000101e0553250341793b1938805256697bc7a3589315a1b5d91b27d1df1977014c56a00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff0200000000000000002b6a295668a78e3c109c1a5cecf29d7dbc71e61654af5de8131cf438b473dbece7448090e33f297d97f622b83bb1052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "020000000001014aa3e41ae5796f5ec37a031157bd6f5bf717ec07fb54f5a025f610b8c9f83c100000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff0200000000000000002b6a296b06b5e24d012cb577383689f2781f6520ede9af0f7cf01c7620f3476c7888c604eb94dd04b0dae72f3bb1052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "offer_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e" + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "offer_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba" }, "name": "cancel" } } ``` -### Compose Destroy [GET /v2/addresses/{address}/compose/destroy{?asset}{&quantity}{&tag}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] +### Compose Destroy [GET /v2/addresses/{address}/compose/destroy{?asset}{&quantity}{&tag}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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 @@ -7919,7 +7897,7 @@ Composes a transaction to destroy a quantity of an asset. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -7939,7 +7917,7 @@ Composes a transaction to destroy a quantity of an asset. + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` - + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7951,9 +7929,9 @@ Composes a transaction to destroy a quantity of an asset. ``` { "result": { - "rawtransaction": "02000000000101f4eaf156a5147856fbcf821afab570471b0e3ea3958803b006209f381ccda17600000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000226a205f50fe398595de935ba8b471bc07546d825273bad0b3a17773b38d0fa3e6410ca4b3052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "020000000001011b44c4268c614e6dba8378009b29c7d8a6a51011b5615aeaed386c21d136d1f20000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff020000000000000000226a20b041946a1c93fde8aa1220983e878dfed13c37babdd59e6fde5bc478ce1f4389a4b3052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -7971,12 +7949,12 @@ Composes a transaction to destroy a quantity of an asset. } ``` -### Compose Dispenser [GET /v2/addresses/{address}/compose/dispenser{?asset}{&give_quantity}{&escrow_quantity}{&mainchainrate}{&status}{&open_address}{&oracle_address}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] +### Compose Dispenser [GET /v2/addresses/{address}/compose/dispenser{?asset}{&give_quantity}{&escrow_quantity}{&mainchainrate}{&status}{&open_address}{&oracle_address}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] Composes a transaction to opens or closes a dispenser for a given asset at a given rate of main chain asset (BTC). Escrowed quantity on open must be equal or greater than give_quantity. It is suggested that you escrow multiples of give_quantity to ease dispenser operation. + Parameters - + address: `bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we` (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) @@ -8002,7 +7980,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8022,7 +8000,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` - + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8034,9 +8012,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv ``` { "result": { - "rawtransaction": "0200000000010142d963f6ecaa0237cbbc4deb242e98c0a7f2470c1ae1716af7a0c0a77cb9b3cf0200000016001499c67192e83f303947f06852e7e6e2b52c391d6effffffff0200000000000000002c6a2a484527d3b1e8bbc25f877f55a61d739b46d237d5ecdbb9499b2c8899f6cbfd05038c6795ef418236d59f474b0a270100000016001499c67192e83f303947f06852e7e6e2b52c391d6e02000000000000", + "rawtransaction": "02000000000101051dd473dab8721d88218e932ada57be98b4aefe0b2e3bf8a108271dbe9925b702000000160014b8ca10ba11f449fac2d3c03e1a668f89a4f8fed1ffffffff0200000000000000002c6a2aa79e26aef73f0ea2792832787f871a431c4a7aeaede8c3defc352d225027ae8498db4173e32fba8f3160474b0a2701000000160014b8ca10ba11f449fac2d3c03e1a668f89a4f8fed102000000000000", "params": { - "source": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", + "source": "bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8059,12 +8037,12 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv } ``` -### Compose Dividend [GET /v2/addresses/{address}/compose/dividend{?quantity_per_unit}{&asset}{÷nd_asset}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] +### Compose Dividend [GET /v2/addresses/{address}/compose/dividend{?quantity_per_unit}{&asset}{÷nd_asset}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a dividend to holders of a given asset. + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (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: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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 @@ -8084,7 +8062,7 @@ Composes a transaction to issue a dividend to holders of a given asset. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8104,7 +8082,7 @@ Composes a transaction to issue a dividend to holders of a given asset. + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` - + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8116,16 +8094,16 @@ Composes a transaction to issue a dividend to holders of a given asset. ``` { "result": { - "rawtransaction": "02000000000101484f6d3e8e8c85dbd81cf8aec5dbb048b15c0fec1d692274c7bf9745e32576b200000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000236a21f7c73dc70de462b3a2ca786bb59b835f0dcc4b5b5beaeadac7c47e19757e6d02df60b3052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "02000000000101a67f48dbc8a790373ee3e8b81a76e9b8455f46ceca7b4a89d5f1c85fdee1111c0000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff020000000000000000236a21489e80c70394524d57e518a5d39c6571acf5fe25944177d32163697178da20347f60b3052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -8143,15 +8121,15 @@ Composes a transaction to issue a dividend to holders of a given asset. } ``` -### Compose Issuance [GET /v2/addresses/{address}/compose/issuance{?asset}{&quantity}{&transfer_destination}{&divisible}{&lock}{&reset}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] +### Compose Issuance [GET /v2/addresses/{address}/compose/issuance{?asset}{&quantity}{&transfer_destination}{&divisible}{&lock}{&reset}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] Composes a transaction to Issue a new asset, issue more of an existing asset, lock an asset, reset existing supply, or transfer the ownership of an asset. + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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` @@ -8177,7 +8155,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8197,7 +8175,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` - + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8209,12 +8187,12 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo ``` { "result": { - "rawtransaction": "0200000000010186ad0fee458832c0de1dd9966a33069926f2f243f98469ba3fa3944273cde45b00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff032202000000000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb40000000000000000236a21a1683304b04b1d1475f3c0a20d20038a08cf6ca8acbda83a12086e9dc357fd346624a8052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "02000000000101910bb68592556a2fd45bfe1a4be266335325d1940b93f5b58f6837c27ea62ab00000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff03220200000000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d0000000000000000236a211878c156b605c4cc7c3e06f42df461f93820b4658ace287764b29b1b672038df8f24a8052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "transfer_destination": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "lock": false, "reset": false, @@ -8226,14 +8204,14 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo } ``` -### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] +### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] Composes a transaction to send multiple payments to multiple addresses. + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u,bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3,bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf` (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` @@ -8255,7 +8233,7 @@ Composes a transaction to send multiple payments to multiple addresses. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8275,7 +8253,7 @@ Composes a transaction to send multiple payments to multiple addresses. + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` - + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8287,18 +8265,18 @@ Composes a transaction to send multiple payments to multiple addresses. ``` { "result": { - "rawtransaction": "0200000000010467ae41ef8da79d935e681670825e40f24befbbdca22a7320333b43e192f8d41200000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff924ca6bfd82a132dcad89aed447aeb980aa54f8a81f4d2b640129ecb0ac6de8d00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4fffffffffb2109d82cfecc8bfdbf973756cb8915055f4107817f6f07fd8e6977915f64e100000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff075ddf0c5b084c3b6e081e3d4f33bf054378daaf6d266310ebf247e22992bee700000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff03e8030000000000006951210201a8a17f6a01b50fa2d98020050cecd2659660a886b103c25f5d88a97f6edf372103bbb7bf19e4b7bd6d38343fb525381f752c5f8de88805717e1bb3f49fd1265eed2102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653aee803000000000000695121020ea8a17f6a01b50fa2faf74df736d31e13f06c4eb8f050ee14312a92cffbf2782103840377bcf9829cf7dc2c952846639d9c35570ecd04b115f139fb91f3bd4972e82102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653ae61d016a804000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000002000002000002000000000000", + "rawtransaction": "02000000000104cea783225fd0d45a80187ff53d6f6d6aefc22f6d745fddecdc28818a2a9b65540000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff3f59f13b578a9ea98dd00d9949d64e35ba26d71dd0ac43321f1c48ed3043d4f60000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff557630ac0beaa8fba32c6e100424fcd264bd8543489915b691af01a385a38df30000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffffa7251a340664444f91a3f43e5c6c722f750f7a5776b29b260e4ad667793644ba0000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff03e8030000000000006951210207b576cfe1338c2a5b644e75011154fc791491638284366db5ce3c23b7c026ac2103f5e60f73b4138523c8068443ab253cff6297304a082eb49d88b405f5b493e5b02102b90e3855aa1de7a7b0fd831d5f15a1c0797dfd99047785d3823854a123df023053aee8030000000000006951210208b576cfe1338c2a5b473918f32fc45d4eb7596cc4d8032e9337a7e1687ff77c21033b7bc7fc5beaf83e8ccc6a437307bdd02d6cf8483d33f012aafc6099d8fcc97a2102b90e3855aa1de7a7b0fd831d5f15a1c0797dfd99047785d3823854a123df023053ae61d016a80400000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000002000002000002000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", 1 ], [ "MYASSETA", - "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", 2 ] ], @@ -8310,12 +8288,12 @@ Composes a transaction to send multiple payments to multiple addresses. } ``` -### Compose Order [GET /v2/addresses/{address}/compose/order{?give_asset}{&give_quantity}{&get_asset}{&get_quantity}{&expiration}{&fee_required}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] +### Compose Order [GET /v2/addresses/{address}/compose/order{?give_asset}{&give_quantity}{&get_asset}{&get_quantity}{&expiration}{&fee_required}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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 @@ -8338,7 +8316,7 @@ Composes a transaction to place an order on the distributed exchange. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8358,7 +8336,7 @@ Composes a transaction to place an order on the distributed exchange. + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` - + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8370,9 +8348,9 @@ Composes a transaction to place an order on the distributed exchange. ``` { "result": { - "rawtransaction": "02000000000101b3933707ee814a13c6a0ac0728c741f4afa0c687b84c9c56007b288199eb8ab800000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000356a33c7189069e502f204f0e78cd884d8f440021fcfb552cb58038caf028c61aa0742f018ebb64fa057a574a68a4fc0eb16fbafd38d8eae052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "02000000000101aad6c3d4ecb4b92203fed29984d592048d94e5eae5c7138e6d657224a3a9b8710000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff020000000000000000356a33f4507d5c042a14f10c21106cd200f28f443ee64b998b2e2d43062160e2764080fdf05f5735edd27a238919cb7f7f942dd1080f8eae052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8389,7 +8367,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -8402,13 +8380,13 @@ Composes a transaction to place an order on the distributed exchange. } ``` -### Compose Send [GET /v2/addresses/{address}/compose/send{?destination}{&asset}{&quantity}{&memo}{&memo_is_hex}{&use_enhanced_send}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] +### Compose Send [GET /v2/addresses/{address}/compose/send{?destination}{&asset}{&quantity}{&memo}{&memo_is_hex}{&use_enhanced_send}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] Composes a transaction to send a quantity of an asset to another address. + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (str, required) - The address that will be receiving the asset + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf` (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 @@ -8433,7 +8411,7 @@ Composes a transaction to send a quantity of an asset to another address. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8453,7 +8431,7 @@ Composes a transaction to send a quantity of an asset to another address. + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` - + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8465,10 +8443,10 @@ Composes a transaction to send a quantity of an asset to another address. ``` { "result": { - "rawtransaction": "02000000000101ab9c7e9d9540332260f5b115b09a402931f0659ca4f30014431a259823d177e500000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000306a2eb624a1bd5d8e105c14b7f5caeb09878243f79cd1b77be2cd639b1c7e5f557e86a06a3392aba6af329056f991c7c7e5af052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "02000000000101c5ffb8fdf2292ab54e7ae5e2888f5e1c7e114c7564dca6bc12cba7393a26a71e0000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff020000000000000000306a2e1635292a95dd3f3a76b1af3b284198043488cf8ba051aead47793fabba34fe62ef7514269755f4b3cea04d941b22e5af052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8488,13 +8466,13 @@ Composes a transaction to send a quantity of an asset to another address. } ``` -### Compose Sweep [GET /v2/addresses/{address}/compose/sweep{?destination}{&flags}{&memo}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] +### Compose Sweep [GET /v2/addresses/{address}/compose/sweep{?destination}{&flags}{&memo}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] Composes a transaction to Sends all assets and/or transfer ownerships to a destination address. + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address that will be sending - + destination: `bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (str, required) - The address that will be sending + + destination: `bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf` (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 @@ -8513,7 +8491,7 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8533,7 +8511,7 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` - + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8545,10 +8523,10 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti ``` { "result": { - "rawtransaction": "020000000001017d84d6968d3246a363b35b66859e8eab7b7f3de8fad05879d98e769c4afc76b400000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000236a21fae7d81d569a6880e110a810de905c32449ef189ee95fe540e9a1359d7530aa7cc60b3052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "02000000000101376a0795e54ea3c64c34c35e6140e3aabe211776e2c637be351b638d05978ae60000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff020000000000000000236a2107538cdd405080bfb12ab8fdd2e96506ea50741f44720babdf26d6b395611f16b060b3052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "flags": 7, "memo": "FFFF" }, @@ -8557,13 +8535,13 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti } ``` -### Compose Dispense [GET /v2/addresses/{address}/compose/dispense{?dispenser}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] +### Compose Dispense [GET /v2/addresses/{address}/compose/dispense{?dispenser}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] Composes a transaction to send BTC to a dispenser. + Parameters - + address: `bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e` (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` @@ -8581,7 +8559,7 @@ Composes a transaction to send BTC to a dispenser. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8601,7 +8579,7 @@ Composes a transaction to send BTC to a dispenser. + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` - + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8613,10 +8591,10 @@ Composes a transaction to send BTC to a dispenser. ``` { "result": { - "rawtransaction": "02000000000101724e212baf5ce78b5ea009a78a673da26f320390b49a7a423fc431372422c4c702000000160014a51d35219ae418a29d635b82e9190881258cb464ffffffff03e8030000000000001600143bbe3a6dd2351dc452f0f53e2e5847e3877d10ef00000000000000000c6a0ad1a4b51a70e96388926566b8082701000000160014a51d35219ae418a29d635b82e9190881258cb46402000000000000", + "rawtransaction": "02000000000101b89e52834a96dd1d4f36acd1627fffb480844cd983c9e5752fbcb8ef6a94ed85020000001600148feff97d1d44cae600d822812f4ffbca02351d44ffffffff03e803000000000000160014c530a2ade98f195e25d20f8832e18c32bc016a7d00000000000000000c6a0ab90ddc58cf7c59f2296766b80827010000001600148feff97d1d44cae600d822812f4ffbca02351d4402000000000000", "params": { - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "quantity": 1000 }, "name": "dispense" @@ -8624,12 +8602,12 @@ Composes a transaction to send BTC to a dispenser. } ``` -### Compose Fairminter [GET /v2/addresses/{address}/compose/fairminter{?asset}{&asset_parent}{&price}{&quantity_by_price}{&max_mint_per_tx}{&hard_cap}{&premint_quantity}{&start_block}{&end_block}{&soft_cap}{&soft_cap_deadline_block}{&minted_asset_commission}{&burn_payment}{&lock_description}{&lock_quantity}{&divisible}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] +### Compose Fairminter [GET /v2/addresses/{address}/compose/fairminter{?asset}{&asset_parent}{&price}{&quantity_by_price}{&max_mint_per_tx}{&hard_cap}{&premint_quantity}{&start_block}{&end_block}{&soft_cap}{&soft_cap_deadline_block}{&minted_asset_commission}{&burn_payment}{&lock_description}{&lock_quantity}{&divisible}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address that will be issuing the asset + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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: `` @@ -8679,7 +8657,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8699,7 +8677,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` - + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8711,9 +8689,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. ``` { "result": { - "rawtransaction": "02000000000101b1a257779e1011c862cc83a92837b64c5503e6a2341747715b84cf7f59b400b500000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000316a2f6998328c1a4afe531b9a50ee73413abfb8fa4246826cbd353758090e6c701aa62b345035aaab3901c4e6c6cf77c1eaa0af052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "02000000000101786fe3b0902a7610ae69657529919e0598b09aa11026c7561530dffb2d7af4b00000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff020000000000000000316a2f2192de83f894968276a4960d0bf729fdae299597269586a6cc2661f08632d4155c6ccab1f18208e17b6764d5ec92c8a0af052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -8737,12 +8715,12 @@ Composes a transaction to issue a new asset using the FairMinter protocol. } ``` -### Compose Fairmint [GET /v2/addresses/{address}/compose/fairmint{?asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] +### Compose Fairmint [GET /v2/addresses/{address}/compose/fairmint{?asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] Composes a transaction to mint a quantity of an asset using the FairMinter protocol. + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address that will be minting the asset + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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` @@ -8762,7 +8740,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8782,7 +8760,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` - + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8794,15 +8772,15 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto ``` { "result": { - "rawtransaction": "020000000001016da04db66ff7c4ab6a49d406054fdc4ffd54566336864d73ed446c88f0fd41b300000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000166a141f75571447517c4608c7bc28e1748eb3b7fda914dab6052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "02000000000101ce5fb3bf5cb0c42e4a7aea958885984448e43866d2f2b30dc8e83420aa5504080000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff020000000000000000166a147933de4be550ded978ea3aa461cc06601016ffabdab6052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -8813,15 +8791,15 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto } ``` -### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] +### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address from which the assets are attached + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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: `2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3:1` (str, optional) - The utxo to attach the assets to + + destination: `802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -8839,7 +8817,7 @@ Composes a transaction to attach assets from an address to UTXO. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8859,7 +8837,7 @@ Composes a transaction to attach assets from an address to UTXO. + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` - + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8871,10 +8849,10 @@ Composes a transaction to attach assets from an address to UTXO. ``` { "result": { - "rawtransaction": "02000000000106d255f3c870c454bf71276d1156cfe03e6e538c5650c521e12c9dcce204be897b00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff76305db0be83ba44b1ee94419d6df4123ecd9597b09874355f03cc3e53eb39ac00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff274ed97374790a48938f2d353cc074bcddcc7265ede4ee7cf3a0255b7f5a59b100000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff80a5b02da95acde46fa36874a7a971af6507046ff721c815375d03b47f5d19e200000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffffd102988a692a6725c3c639bd73704baddbaa03df453c00fe666c59d6805df06600000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffffe54fb4732703f004cd0e9610e4985fb5332d4287f5f1434f156b53889ef8c47f00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff04e803000000000000695121021393651064af76fbd387ddb787f537f823efceab25722d54e0ccac8184c27ac22103687ce2a6f2b2fd05bf0884720c4c70cd8cb42b1cfb3215ae31012b857e203e982102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653aee803000000000000695121031393651064af76fbd38087b094e230eb70ebcefe7123201ef4c6f7c799c767c02103362abca8eaeea852b055cc77054973ce88b7224da73704ea62507f872b76394e2102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653aee803000000000000695121033993651064af76fbd38187b1c6bb37f549c9fae02276251c90a2c2f3fdf6024721020f498e918bd79a36d263fe40667a40acb98313289e0460d203601de31a150b2e2102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653aee83922fc06000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106c066cb9f1ca9acc8d8f567829197e438da99c46950419d46947a3ac2ce9be6c90000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff8ab322e14340f69724d34043fcb1bbd35669b96aa1015f45f42f69fdb279c33e0000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff9f33894f15b48f9c975f0dae65f3499ff91834bca2ea7116ea91d5c72e69c1490000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff2072cb01b9b2ed6a40716941bdca13e91567d83e97306d066c23710508725ced0000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dfffffffffae9ae8b3766cc3c2cb8c1be1b702c02c03f03bee0fb883e61105be1a5920e850000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffffa76151a77d81c565343dc56508d687522ffef0227c287125729d0e5cbb95d3f20000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff04e80300000000000069512103e4751ef6056ebab4a3ab2b083aa362438a078c743844e551dbc4fa6f2aed9df92103a4d1aaf9493775d3233e6081d286ded386fbd81b29ad3b50de6e7297315f0e692102b90e3855aa1de7a7b0fd831d5f15a1c0797dfd99047785d3823854a123df023053aee80300000000000069512102e4751ef6056ebab4a3fa7a0e2be16b03dc45d827281fe212dd80a06e28e19a932102e1d6e6ab1f6c6fd23d606edf80c787d586b28e5f3bf33c15856e2696345d5f012102b90e3855aa1de7a7b0fd831d5f15a1c0797dfd99047785d3823854a123df023053aee80300000000000069512103ce751ef6056ebab4a3f77a0f7aed624ee030ea6f784db313beb5c25a1f87f96f2102d3b4d09e28590de4595357edb3f4b0e6e781ef6a5ec5082ce65e40a1016e6fb42102b90e3855aa1de7a7b0fd831d5f15a1c0797dfd99047785d3823854a123df023053aee83922fc0600000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3:1", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -8891,13 +8869,13 @@ Composes a transaction to attach assets from an address to UTXO. } ``` -### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?destination}{&asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&input_set}{&verbose}{&show_unconfirmed}] +### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?destination}{&asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4:1` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to detach the assets to + + utxo: `5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751:1` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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 @@ -8916,7 +8894,7 @@ Composes a transaction to detach assets from UTXO to an address. + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` - + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set + + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set + Default: `None` + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception + Default: `None` @@ -8936,7 +8914,7 @@ Composes a transaction to detach assets from UTXO to an address. + Default: `None` + return_only_data (bool, optional) - Return only the data part of the transaction + Default: `False` - + input_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8948,10 +8926,10 @@ Composes a transaction to detach assets from UTXO to an address. ``` { "result": { - "rawtransaction": "02000000000101b42aad8aceca153d775a93dcccfd0320d169211dc5b2070ed562a2c44774d57a0100000016001475244ad93a0050562c2ba180c01a2250048932eaffffffff04e803000000000000695121025612563ba9b1cb9e6b2ce2fd898cbdc5302bee2761c7d1eb8f84ba34173675fe2102e153374cb9c68878b17b24d1614979a18921e95d55f0811cb5b68d348432cba02102d1900eb0db4eb39f4331657717a4dd2ea4d20cbdad6002640edfed85a3e7598c53aee803000000000000695121025612563ba9b1cb9e6b2bb4ff8881eb90602eec7134cfd6a589d2f825167025932103b654354be9ccc13ee671679a65012df28175f35c51fadf42aeb3d031d062cbf92102d1900eb0db4eb39f4331657717a4dd2ea4d20cbdad6002640edfed85a3e7598c53aee803000000000000695121037c12563ba9b1cb9e6b7feda8888fff8d5c5fdd6f31c5d7e9ebb18a51270117be2103d330027dddf4b94e881f15e351794ac7ed428a3936c9b229d481ba07e003fe122102d1900eb0db4eb39f4331657717a4dd2ea4d20cbdad6002640edfed85a3e7598c53aef49808270100000016001475244ad93a0050562c2ba180c01a2250048932ea02000000000000", + "rawtransaction": "020000000001015137d4507abfc83007b1e2f5df0c9ba3966a24b2a8c335e23c59887f26783a5a010000001600149d9a1721930931af765d77b0f836e7842e13e42affffffff04e80300000000000069512103df0e02e9ca4c5dbaf709e9f4fbc6cfce1fb88aca5f7211774f1b2d74fd528f4621028ae966d03437b61e5a88d8cd9a0d577d5c879ce6725b3a8e9acc1179364c1cbd210299996c19c0db7ca69f631ea30a7e4b7bdcbc889b6fa745b3f243c7a27ee946f253aee80300000000000069512102df0e02e9ca4c5dbaf70fbaa2a992c89219bd8a99567015321e1b3a32ff16de602102cdbe39c33f63f04d4a89db99c350422845849bee3f0972819c904738681a4570210299996c19c0db7ca69f631ea30a7e4b7bdcbc889b6fa745b3f243c7a27ee946f253aee80300000000000069512103f50e02e9ca4c5dbaf717ebe4bfcfcb8a75cdedd0567a147e7c784846ce67ec302102b9885eb2060582283bb1eeaca934354d3fe3fa80473e08ecabfc264a062f24b4210299996c19c0db7ca69f631ea30a7e4b7bdcbc889b6fa745b3f243c7a27ee946f253aef4980827010000001600149d9a1721930931af765d77b0f836e7842e13e42a02000000000000", "params": { - "source": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4:1", - "destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751:1", + "destination": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9011,8 +8989,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 10000000000, @@ -9020,16 +8998,16 @@ Returns the valid assets "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726774040, - "last_issuance_block_time": 1726774059, + "first_issuance_block_time": 1726815226, + "last_issuance_block_time": 1726815244, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", - "owner": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", + "issuer": "bcrt1qnkdpwgvnpyc67ajaw7c0sdh8sshp8ep2lyl7xy", + "owner": "bcrt1qnkdpwgvnpyc67ajaw7c0sdh8sshp8ep2lyl7xy", "divisible": true, "locked": false, "supply": 100000000000, @@ -9037,16 +9015,16 @@ Returns the valid assets "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1726774036, - "last_issuance_block_time": 1726774036, + "first_issuance_block_time": 1726815221, + "last_issuance_block_time": 1726815221, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 100000000000, @@ -9054,16 +9032,16 @@ Returns the valid assets "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726774002, - "last_issuance_block_time": 1726774002, + "first_issuance_block_time": 1726815187, + "last_issuance_block_time": 1726815187, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 40, @@ -9071,16 +9049,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726773953, - "last_issuance_block_time": 1726773957, + "first_issuance_block_time": 1726815126, + "last_issuance_block_time": 1726815130, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 19, @@ -9088,8 +9066,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726773916, - "last_issuance_block_time": 1726773949, + "first_issuance_block_time": 1726815109, + "last_issuance_block_time": 1726815121, "supply_normalized": "0.00000019" } ], @@ -9117,8 +9095,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 10000000000, @@ -9126,8 +9104,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1726773879, - "last_issuance_block_time": 1726773891, + "first_issuance_block_time": 1726815070, + "last_issuance_block_time": 1726815083, "supply_normalized": "100.00000000" } } @@ -9158,7 +9136,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9166,14 +9144,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9181,7 +9159,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -9198,7 +9176,7 @@ Returns the asset balances Returns the balance of an address and asset + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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` @@ -9210,7 +9188,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -9259,9 +9237,9 @@ Returns the orders of an asset "result": [ { "tx_index": 57, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9276,7 +9254,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726774186, + "block_time": 1726815367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9302,9 +9280,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "tx_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "block_index": 190, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9319,7 +9297,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726774182, + "block_time": 1726815363, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9345,9 +9323,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "tx_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "block_index": 186, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -9362,7 +9340,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726774164, + "block_time": 1726815346, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9388,9 +9366,9 @@ Returns the orders of an asset }, { "tx_index": 50, - "tx_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "tx_hash": "8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "block_index": 185, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -9405,7 +9383,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726774160, + "block_time": 1726815342, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9431,9 +9409,9 @@ Returns the orders of an asset }, { "tx_index": 49, - "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", "block_index": 186, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9448,7 +9426,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726774164, + "block_time": 1726815346, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9508,13 +9486,13 @@ Returns the orders of an asset { "result": [ { - "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "tx0_index": 49, - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 52, - "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", - "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "tx1_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", + "tx1_address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -9528,7 +9506,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726774164, + "block_time": 1726815346, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9548,13 +9526,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "tx0_index": 49, - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 50, - "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", - "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "tx1_hash": "8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", + "tx1_address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -9568,7 +9546,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726774160, + "block_time": 1726815342, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9588,13 +9566,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "id": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7_18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", "tx0_index": 47, - "tx0_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 48, - "tx1_hash": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", - "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "tx1_hash": "18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", + "tx1_address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -9608,7 +9586,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726774079, + "block_time": 1726815264, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9688,20 +9666,20 @@ Returns the credits of an asset "result": [ { "block_index": 192, - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -9709,20 +9687,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "8aa19bcf4123dea239e553a76debd1ca8cc3bea950bb5752f247b2e686598b3d", + "event": "55bc6ff606869de1ea89877415f878ebfe14cd23acbc6f18b43322e92a8b8bd7", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726773891, + "block_time": 1726815083, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -9730,20 +9708,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8", + "event": "791231043d66d2094cb75a964ab6bc8cc8fd97d4f3111aa265b9c9e02e9f838f", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726773887, + "block_time": 1726815079, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -9751,20 +9729,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", + "event": "0df3dc539e5c6561a238df83215c4f5332a98c23cb978a3851f13274f0e5678f", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726773887, + "block_time": 1726815079, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -9776,16 +9754,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8", + "event": "791231043d66d2094cb75a964ab6bc8cc8fd97d4f3111aa265b9c9e02e9f838f", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726773887, + "block_time": 1726815079, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -9841,16 +9819,16 @@ Returns the debits of an asset "result": [ { "block_index": 193, - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "event": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -9862,16 +9840,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -9883,16 +9861,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -9904,16 +9882,16 @@ Returns the debits of an asset }, { "block_index": 191, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "event": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774186, + "block_time": 1726815367, "asset_info": { "divisible": true, "asset_longname": null, @@ -9925,16 +9903,16 @@ Returns the debits of an asset }, { "block_index": 189, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "event": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774177, + "block_time": 1726815359, "asset_info": { "divisible": true, "asset_longname": null, @@ -9974,20 +9952,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 40, - "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", + "tx_hash": "dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d", "block_index": 153, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726774028, + "block_time": 1726815213, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -10031,14 +10009,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "8aa19bcf4123dea239e553a76debd1ca8cc3bea950bb5752f247b2e686598b3d", + "tx_hash": "55bc6ff606869de1ea89877415f878ebfe14cd23acbc6f18b43322e92a8b8bd7", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -10053,20 +10031,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726773891, + "block_time": 1726815083, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8", + "tx_hash": "791231043d66d2094cb75a964ab6bc8cc8fd97d4f3111aa265b9c9e02e9f838f", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -10081,20 +10059,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726773887, + "block_time": 1726815079, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", + "tx_hash": "0df3dc539e5c6561a238df83215c4f5332a98c23cb978a3851f13274f0e5678f", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -10109,20 +10087,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726773883, + "block_time": 1726815075, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -10137,7 +10115,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1726773879, + "block_time": 1726815070, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10171,10 +10149,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10182,7 +10160,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "divisible": true, "asset_longname": null, @@ -10195,10 +10173,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 53, - "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5", + "tx_hash": "2af0fdfddaf6d357f3e80c38f3319a244b08c584a2b714b8214d8123abc752fb", "block_index": 187, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10206,7 +10184,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774169, + "block_time": 1726815350, "asset_info": { "divisible": true, "asset_longname": null, @@ -10219,10 +10197,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 42, - "tx_hash": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", + "tx_hash": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751", "block_index": 155, - "source": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f:0", - "destination": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4:1", + "source": "4fe40db20831d35ad52100fa53258383faa657107021697a63a3be4cb3382ac9:0", + "destination": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10230,7 +10208,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774036, + "block_time": 1726815221, "asset_info": { "divisible": true, "asset_longname": null, @@ -10243,10 +10221,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 41, - "tx_hash": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f", + "tx_hash": "4fe40db20831d35ad52100fa53258383faa657107021697a63a3be4cb3382ac9", "block_index": 154, - "source": "dd421431b6d8790a2f8d1697dc81c363a4c6900ad606f98530945c963304144c:0", - "destination": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f:0", + "source": "fb65ea2f062ec29d1eea608e2fc49f82f5fa95dccbde16dc56aad802aea5e797:0", + "destination": "4fe40db20831d35ad52100fa53258383faa657107021697a63a3be4cb3382ac9:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10254,7 +10232,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774032, + "block_time": 1726815217, "asset_info": { "divisible": true, "asset_longname": null, @@ -10303,18 +10281,18 @@ Returns the dispensers of an asset "result": [ { "tx_index": 32, - "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "oracle_address": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "last_status_tx_hash": null, - "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "origin": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10324,7 +10302,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726773999, + "block_time": 1726815183, "asset_info": { "divisible": true, "asset_longname": null, @@ -10340,9 +10318,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", + "tx_hash": "02762a4f55190e571b19a19348ee8f6412b45913745ee7cb62c747172108246c", "block_index": 144, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10351,7 +10329,7 @@ Returns the dispensers of an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10361,7 +10339,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773991, + "block_time": 1726815174, "asset_info": { "divisible": true, "asset_longname": null, @@ -10377,9 +10355,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "4d8d4ccec8ed1d84a032067715c8887702edcf52a81407942e3e2dd19132229d", + "tx_hash": "1cc6d4a7f2ad6cfcaca23bce99d41b21cd25c51119ab17cb89ffff1eccf5d2c5", "block_index": 142, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10388,7 +10366,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "origin": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10398,7 +10376,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773982, + "block_time": 1726815156, "asset_info": { "divisible": true, "asset_longname": null, @@ -10414,9 +10392,9 @@ Returns the dispensers of an asset }, { "tx_index": 26, - "tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10425,7 +10403,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10435,7 +10413,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -10460,7 +10438,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - The address to return + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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` @@ -10473,9 +10451,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", + "tx_hash": "02762a4f55190e571b19a19348ee8f6412b45913745ee7cb62c747172108246c", "block_index": 144, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10484,7 +10462,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10494,7 +10472,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773991, + "block_time": 1726815174, "asset_info": { "divisible": true, "asset_longname": null, @@ -10544,7 +10522,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -10552,7 +10530,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -10561,7 +10539,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -10569,7 +10547,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -10578,7 +10556,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -10586,7 +10564,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -10595,7 +10573,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -10632,27 +10610,27 @@ Returns the dispenses of an asset { "tx_index": 33, "dispense_index": 0, - "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "tx_hash": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", - "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", + "destination": "bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "dispenser_tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "oracle_address": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "last_status_tx_hash": null, - "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "origin": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10667,7 +10645,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726773999, + "block_time": 1726815183, "asset_info": { "divisible": true, "asset_longname": null, @@ -10681,19 +10659,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", + "tx_hash": "843a01c97d2c75cfafa7a09843605ee3037fbd60b22037c299e8f67344e2a84d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10701,7 +10679,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10716,7 +10694,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -10730,19 +10708,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", + "tx_hash": "bfa7ee683cb51865b4d68ab9b643e7c0c9c1baa4298c01f3bf2eae8953b029d6", "block_index": 140, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10750,7 +10728,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10765,7 +10743,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773973, + "block_time": 1726815147, "asset_info": { "divisible": true, "asset_longname": null, @@ -10808,8 +10786,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 0, @@ -10817,8 +10795,8 @@ Returns asset subassets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1726774054, - "last_issuance_block_time": 1726774054, + "first_issuance_block_time": 1726815230, + "last_issuance_block_time": 1726815230, "supply_normalized": "0.00000000" } ], @@ -10850,10 +10828,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -10878,7 +10856,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726773891 + "block_time": 1726815083 } ], "next_cursor": null, @@ -10909,64 +10887,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "8aa19bcf4123dea239e553a76debd1ca8cc3bea950bb5752f247b2e686598b3d", + "tx_hash": "55bc6ff606869de1ea89877415f878ebfe14cd23acbc6f18b43322e92a8b8bd7", "tx_index": 13, "block_index": 125, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", - "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", + "fairminter_tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773891, + "block_time": 1726815083, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } }, { - "tx_hash": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8", + "tx_hash": "791231043d66d2094cb75a964ab6bc8cc8fd97d4f3111aa265b9c9e02e9f838f", "tx_index": 12, "block_index": 124, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", - "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", + "fairminter_tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773887, + "block_time": 1726815079, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } }, { - "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", + "tx_hash": "0df3dc539e5c6561a238df83215c4f5332a98c23cb978a3851f13274f0e5678f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "fairminter_tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773883, + "block_time": 1726815075, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } @@ -10982,7 +10960,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv` (str, required) - The address of the mints to return + + address: `bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf` (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` @@ -11001,22 +10979,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", + "tx_hash": "0df3dc539e5c6561a238df83215c4f5332a98c23cb978a3851f13274f0e5678f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "fairminter_tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773883, + "block_time": 1726815075, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } @@ -11060,9 +11038,9 @@ Returns all the orders "result": [ { "tx_index": 57, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11077,7 +11055,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726774186, + "block_time": 1726815367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11103,9 +11081,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "tx_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "block_index": 190, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11120,7 +11098,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726774182, + "block_time": 1726815363, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11146,9 +11124,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "tx_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "block_index": 186, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11163,7 +11141,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726774164, + "block_time": 1726815346, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11189,9 +11167,9 @@ Returns all the orders }, { "tx_index": 50, - "tx_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "tx_hash": "8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "block_index": 185, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11206,7 +11184,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726774160, + "block_time": 1726815342, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11232,9 +11210,9 @@ Returns all the orders }, { "tx_index": 49, - "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", "block_index": 186, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11249,7 +11227,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726774164, + "block_time": 1726815346, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11284,7 +11262,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e` (str, required) - The hash of the transaction that created the order + + order_hash: `c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba` (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. @@ -11296,9 +11274,9 @@ Returns the information of an order { "result": { "tx_index": 57, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11313,7 +11291,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726774186, + "block_time": 1726815367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11345,7 +11323,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032` (str, required) - The hash of the transaction that created the order + + order_hash: `8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346` (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 @@ -11370,13 +11348,13 @@ Returns the order matches of an order { "result": [ { - "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "tx0_index": 49, - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 52, - "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", - "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "tx1_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", + "tx1_address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11390,7 +11368,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726774164, + "block_time": 1726815346, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11410,13 +11388,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "tx0_index": 49, - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 50, - "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", - "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "tx1_hash": "8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", + "tx1_address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11430,7 +11408,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726774160, + "block_time": 1726815342, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11460,7 +11438,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032` (str, required) - The hash of the transaction that created the order + + order_hash: `8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346` (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 @@ -11479,15 +11457,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 51, - "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", + "tx_hash": "85ed946aefb8bc2f75e5c983d94c8480b4ff7f62d1ac364f1ddd964a83529eb8", "block_index": 185, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "destination": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "btc_amount": 2000, - "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "order_match_id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "status": "valid", "confirmed": true, - "block_time": 1726774160, + "block_time": 1726815342, "btc_amount_normalized": "0.00002000" } ], @@ -11529,9 +11507,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 57, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11549,7 +11527,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726774186, + "block_time": 1726815367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11575,9 +11553,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "tx_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "block_index": 190, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11595,7 +11573,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726774182, + "block_time": 1726815363, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11621,9 +11599,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "tx_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "block_index": 186, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11641,7 +11619,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726774164, + "block_time": 1726815346, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11667,9 +11645,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "tx_hash": "8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "block_index": 185, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11687,7 +11665,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726774160, + "block_time": 1726815342, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11713,9 +11691,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", "block_index": 186, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11733,7 +11711,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726774164, + "block_time": 1726815346, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11794,13 +11772,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "tx0_index": 49, - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 52, - "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", - "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "tx1_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", + "tx1_address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11817,7 +11795,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726774164, + "block_time": 1726815346, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11837,13 +11815,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "tx0_index": 49, - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 50, - "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", - "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "tx1_hash": "8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", + "tx1_address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11860,7 +11838,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726774160, + "block_time": 1726815342, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11880,13 +11858,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "id": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7_18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", "tx0_index": 47, - "tx0_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 48, - "tx1_hash": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", - "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "tx1_hash": "18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", + "tx1_address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -11903,7 +11881,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726774079, + "block_time": 1726815264, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11959,13 +11937,13 @@ Returns all the order matches { "result": [ { - "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "tx0_index": 49, - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 52, - "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", - "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "tx1_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", + "tx1_address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11979,7 +11957,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726774164, + "block_time": 1726815346, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11999,13 +11977,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "tx0_index": 49, - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 50, - "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", - "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "tx1_hash": "8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", + "tx1_address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12019,7 +11997,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726774160, + "block_time": 1726815342, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12039,13 +12017,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "id": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7_18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", "tx0_index": 47, - "tx0_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 48, - "tx1_hash": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", - "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "tx1_hash": "18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", + "tx1_address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12059,7 +12037,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726774079, + "block_time": 1726815264, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12227,66 +12205,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "b7f0dde4bbad6994cc0193c8774206f9809c5f83989c87a66b294ca6afb2a852", + "tx_hash": "6734c2c20a328e6e65f4464f0e38b929b8cf906f0e0c4016af2baebe977fac4c", "block_index": 121, - "source": "bcrt1qx026kexytkv73h2sucljqxmu6dz8q5qsfvp3mw", + "source": "bcrt1qs6kaxznfkfgmxhalmv840fldjqr2d7hnltn6xh", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1726773875, + "block_time": 1726815066, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "67984637a26a30e7ea7c95835fb9c1333583499820c53a25ccc35117621efd1c", + "tx_hash": "79255c0af5328f1d6b02ad8aeda954d1b3f2f348650ec567cffa6bc956ff0c4c", "block_index": 120, - "source": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", + "source": "bcrt1qnkdpwgvnpyc67ajaw7c0sdh8sshp8ep2lyl7xy", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1726773871, + "block_time": 1726815062, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "7217920d2226cacc0e914354a1a47e57453361706004220693b66d2de2829aef", + "tx_hash": "96646807b5fd2a08e69151391559757273355a282a888b40af30c9d020471976", "block_index": 119, - "source": "bcrt1qt42f6kccqmjd3pstrcu3smvumgz8235g6naz5n", + "source": "bcrt1qm333pf4gywv8ya38qk5sd7eh7k2ldmwauk8a3z", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1726773867, + "block_time": 1726815058, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "886af1d613518edf54569689de9d3982e5ac2d7e181e97657a4c47fb374a6a5b", + "tx_hash": "b1b4e4121b2db444daab5ff36d8262e0cbbca844bf7ea43bf37feb99cee7226d", "block_index": 118, - "source": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", + "source": "bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1726773863, + "block_time": 1726815053, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "f6b1cbac3fd4887c14ba61bc6bc199afb8d8598d8eacf61502eadcc1f6cd6723", + "tx_hash": "167c479fa51912e3044f68e8cd092584fb0b16755e61ba3512c02262deff4405", "block_index": 117, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1726773858, + "block_time": 1726815049, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12329,18 +12307,18 @@ Returns all dispensers "result": [ { "tx_index": 32, - "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "oracle_address": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "last_status_tx_hash": null, - "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "origin": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -12350,7 +12328,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726773999, + "block_time": 1726815183, "asset_info": { "divisible": true, "asset_longname": null, @@ -12366,9 +12344,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", + "tx_hash": "02762a4f55190e571b19a19348ee8f6412b45913745ee7cb62c747172108246c", "block_index": 144, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -12377,7 +12355,7 @@ Returns all dispensers "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12387,7 +12365,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773991, + "block_time": 1726815174, "asset_info": { "divisible": true, "asset_longname": null, @@ -12403,9 +12381,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "4d8d4ccec8ed1d84a032067715c8887702edcf52a81407942e3e2dd19132229d", + "tx_hash": "1cc6d4a7f2ad6cfcaca23bce99d41b21cd25c51119ab17cb89ffff1eccf5d2c5", "block_index": 142, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12414,7 +12392,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "origin": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12424,7 +12402,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773982, + "block_time": 1726815156, "asset_info": { "divisible": true, "asset_longname": null, @@ -12440,9 +12418,9 @@ Returns all dispensers }, { "tx_index": 26, - "tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12451,7 +12429,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12461,7 +12439,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -12486,7 +12464,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e` (str, required) - The hash of the dispenser to return + + dispenser_hash: `269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d` (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. @@ -12498,9 +12476,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12509,7 +12487,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12519,7 +12497,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -12541,7 +12519,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e` (str, required) - The hash of the dispenser to return + + dispenser_hash: `269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d` (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 @@ -12561,19 +12539,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", + "tx_hash": "843a01c97d2c75cfafa7a09843605ee3037fbd60b22037c299e8f67344e2a84d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12581,7 +12559,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12596,7 +12574,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -12610,19 +12588,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", + "tx_hash": "bfa7ee683cb51865b4d68ab9b643e7c0c9c1baa4298c01f3bf2eae8953b029d6", "block_index": 140, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12630,7 +12608,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12645,7 +12623,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773973, + "block_time": 1726815147, "asset_info": { "divisible": true, "asset_longname": null, @@ -12687,20 +12665,20 @@ Returns all the dividends "result": [ { "tx_index": 40, - "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", + "tx_hash": "dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d", "block_index": 153, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726774028, + "block_time": 1726815213, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -12725,7 +12703,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6` (str, required) - The hash of the dividend to return + + dividend_hash: `dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d` (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. @@ -12737,20 +12715,20 @@ Returns a dividend by its hash { "result": { "tx_index": 40, - "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", + "tx_hash": "dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d", "block_index": 153, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726774028, + "block_time": 1726815213, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -12772,7 +12750,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d` (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 @@ -12795,12 +12773,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", + "event": "dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d", "tx_index": 40, - "utxo": "dd421431b6d8790a2f8d1697dc81c363a4c6900ad606f98530945c963304144c:0", - "utxo_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "utxo": "fb65ea2f062ec29d1eea608e2fc49f82f5fa95dccbde16dc56aad802aea5e797:0", + "utxo_address": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "confirmed": true, - "block_time": 1726774028, + "block_time": 1726815213, "asset_info": { "divisible": true, "asset_longname": null, @@ -12812,16 +12790,16 @@ Returns a dividend distribution by its hash }, { "block_index": 153, - "address": "bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9", + "address": "bcrt1qdp2athf6h3fqgwf5wkz79lg2a7m8gj06zptffm", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", + "event": "dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774028, + "block_time": 1726815213, "asset_info": { "divisible": true, "asset_longname": null, @@ -12867,27 +12845,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", - "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", + "ledger_hash": "c35cac3a55dd455eda44fec6808f4b04601d54416913965cf9981a7187e4ca9b", + "messages_hash": "64af7906004d705fe89433fbcec64aab6a352ca56eda19f6490882cfff161834", "transaction_count": 1, - "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", - "block_time": 1726774194 + "txlist_hash": "ffc04a3314302eecc9ed3c67fe1acc91b47b4510370eb27342c9779b5f7490e9", + "block_time": 1726815376 }, "tx_hash": null, "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "tx_index": 59 }, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 }, { "event_index": 533, @@ -12896,12 +12874,12 @@ Returns all events "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "status": "valid", "tag": "64657374726f79", - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "tx_index": 59, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -12911,24 +12889,24 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 193, - "event": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "event": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -12938,25 +12916,25 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", "block_index": 193, - "block_time": 1726774194, + "block_time": 1726815376, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "tx_index": 59, - "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", + "utxos_info": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -12976,9 +12954,9 @@ Returns all events }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 } ], "next_cursor": 530, @@ -13006,15 +12984,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", - "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", + "ledger_hash": "c35cac3a55dd455eda44fec6808f4b04601d54416913965cf9981a7187e4ca9b", + "messages_hash": "64af7906004d705fe89433fbcec64aab6a352ca56eda19f6490882cfff161834", "transaction_count": 1, - "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", - "block_time": 1726774194 + "txlist_hash": "ffc04a3314302eecc9ed3c67fe1acc91b47b4510370eb27342c9779b5f7490e9", + "block_time": 1726815376 }, "tx_hash": null, "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 } } ``` @@ -13092,16 +13070,16 @@ Returns the events filtered by event name "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -13111,78 +13089,78 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "event": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726774182, + "block_time": 1726815363, "asset_info": { "divisible": true, "asset_longname": null, @@ -13192,24 +13170,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "block_index": 190, - "block_time": 1726774182 + "block_time": 1726815363 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "event": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "divisible": true, "asset_longname": null, @@ -13219,9 +13197,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "block_time": 1726774173 + "block_time": 1726815355 } ], "next_cursor": 490, @@ -13277,27 +13255,27 @@ Returns all the dispenses { "tx_index": 33, "dispense_index": 0, - "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "tx_hash": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", - "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", + "destination": "bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "dispenser_tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "oracle_address": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "last_status_tx_hash": null, - "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "origin": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13312,7 +13290,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726773999, + "block_time": 1726815183, "asset_info": { "divisible": true, "asset_longname": null, @@ -13326,19 +13304,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", + "tx_hash": "843a01c97d2c75cfafa7a09843605ee3037fbd60b22037c299e8f67344e2a84d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13346,7 +13324,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13361,7 +13339,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -13375,19 +13353,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", + "tx_hash": "bfa7ee683cb51865b4d68ab9b643e7c0c9c1baa4298c01f3bf2eae8953b029d6", "block_index": 140, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13395,7 +13373,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13410,7 +13388,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773973, + "block_time": 1726815147, "asset_info": { "divisible": true, "asset_longname": null, @@ -13452,10 +13430,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "quantity": 10, "status": "valid", @@ -13463,7 +13441,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "divisible": true, "asset_longname": null, @@ -13476,10 +13454,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13487,11 +13465,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -13500,10 +13478,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13511,11 +13489,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -13524,10 +13502,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 53, - "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5", + "tx_hash": "2af0fdfddaf6d357f3e80c38f3319a244b08c584a2b714b8214d8123abc752fb", "block_index": 187, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -13535,7 +13513,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774169, + "block_time": 1726815350, "asset_info": { "divisible": true, "asset_longname": null, @@ -13548,10 +13526,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 42, - "tx_hash": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", + "tx_hash": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751", "block_index": 155, - "source": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f:0", - "destination": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4:1", + "source": "4fe40db20831d35ad52100fa53258383faa657107021697a63a3be4cb3382ac9:0", + "destination": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -13559,7 +13537,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774036, + "block_time": 1726815221, "asset_info": { "divisible": true, "asset_longname": null, @@ -13601,14 +13579,14 @@ Returns all the issuances "result": [ { "tx_index": 46, - "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", + "tx_hash": "9a110287c955eba18bfaed58bbce05b2312cb4f078cbb0c0a7cf71d5a12486ed", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -13623,20 +13601,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774063, + "block_time": 1726815249, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "a9bf93086ed282edc2b5194935329671a7e12a0af1a2408220460fd3bac8663b", + "tx_hash": "3e5964c2c5b951962901d82df38e276b858ace15c6ba532ce89f48e715a29254", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -13651,20 +13629,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726774059, + "block_time": 1726815244, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "4204b9166ff55290c1a9696502a714ae666873dd698433434047f5a70049c6b5", + "tx_hash": "0f9175800f3765d29d82f9eaa6eddbdff41092a23157d81106b7bea3bbe9da43", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -13679,20 +13657,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774054, + "block_time": 1726815230, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "7d4a2bd04f1f814197a4eb9b38403dcfcf0dc8b1a4ccac05b631aa1d00d2b8b0", + "tx_hash": "d6c329f8a24f64e7916f1dfef93eae0ecb94935337d23431cdeccbca17ab7da3", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -13707,20 +13685,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774040, + "block_time": 1726815226, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", + "tx_hash": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", - "issuer": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", + "source": "bcrt1qnkdpwgvnpyc67ajaw7c0sdh8sshp8ep2lyl7xy", + "issuer": "bcrt1qnkdpwgvnpyc67ajaw7c0sdh8sshp8ep2lyl7xy", "transfer": false, "callable": false, "call_date": 0, @@ -13735,7 +13713,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774036, + "block_time": 1726815221, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -13750,7 +13728,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04` (str, required) - The hash of the transaction to return + + tx_hash: `9a110287c955eba18bfaed58bbce05b2312cb4f078cbb0c0a7cf71d5a12486ed` (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. @@ -13762,14 +13740,14 @@ Returns the issuances of a block { "result": { "tx_index": 46, - "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", + "tx_hash": "9a110287c955eba18bfaed58bbce05b2312cb4f078cbb0c0a7cf71d5a12486ed", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -13784,7 +13762,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774063, + "block_time": 1726815249, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -13816,16 +13794,16 @@ Returns all sweeps "result": [ { "tx_index": 58, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "fee_paid_normalized": "0.00600000" } ], @@ -13839,7 +13817,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b` (str, required) - The hash of the transaction to return + + tx_hash: `4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c` (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. @@ -13852,16 +13830,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 58, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "fee_paid_normalized": "0.00600000" } ], @@ -13895,9 +13873,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c", + "tx_hash": "8b28dd31f49228d2203cd7fcfa8b9062b26a1691283c8ed214f508aebe94a44e", "block_index": 138, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -13905,14 +13883,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726773966, + "block_time": 1726815138, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "04c2e5dab15ab4e26d63a5648f0d6629630b4542ae192461bdcf2113b0f3cea8", + "tx_hash": "d9e29ea3864ede77bc7a3ea8aa40c44d34c3de20d56adbb39d31a18dbde1074c", "block_index": 137, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -13920,7 +13898,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726773962, + "block_time": 1726815134, "fee_fraction_int_normalized": "0.00000000" } ], @@ -13934,7 +13912,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c` (str, required) - The hash of the transaction to return + + tx_hash: `8b28dd31f49228d2203cd7fcfa8b9062b26a1691283c8ed214f508aebe94a44e` (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. @@ -13946,9 +13924,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c", + "tx_hash": "8b28dd31f49228d2203cd7fcfa8b9062b26a1691283c8ed214f508aebe94a44e", "block_index": 138, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -13956,7 +13934,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726773966, + "block_time": 1726815138, "fee_fraction_int_normalized": "0.00000000" } } @@ -13986,10 +13964,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", + "tx_hash": "f2ee7f4036c7cc051cf8e2a20e32425a200f9b9166a04d94e90279ccdd5d024b", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14014,13 +13992,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726773953 + "block_time": 1726815126 }, { - "tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", + "tx_hash": "58435d06e2ff2416426cdf5dc51282c4665cc4b7b746f60d55d8918e58923e74", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14045,13 +14023,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726773916 + "block_time": 1726815109 }, { - "tx_hash": "8bf6a822f10cccc625da7811b776e108fadf45d1b9255b1ab005583ec7c9df68", + "tx_hash": "35a7ddf4a16bb7075ce86310a406d213e899b51a36556396066c9db61b876ace", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14076,13 +14054,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726773912 + "block_time": 1726815104 }, { - "tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14107,7 +14085,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726773891 + "block_time": 1726815083 } ], "next_cursor": null, @@ -14150,7 +14128,7 @@ Returns the mints by fairminter Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f,bcrt1qt42f6kccqmjd3pstrcu3smvumgz8235g6naz5n` (str, required) - The addresses to search for + + addresses: `bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we,bcrt1qm333pf4gywv8ya38qk5sd7eh7k2ldmwauk8a3z` (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. @@ -14169,8 +14147,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", - "address": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f" + "txid": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", + "address": "bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we" }, { "vout": 2, @@ -14178,8 +14156,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", - "address": "bcrt1qt42f6kccqmjd3pstrcu3smvumgz8235g6naz5n" + "txid": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751", + "address": "bcrt1qm333pf4gywv8ya38qk5sd7eh7k2ldmwauk8a3z" } ], "next_cursor": null, @@ -14192,7 +14170,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr` (str, required) - The address to search for + + address: `bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl` (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 @@ -14208,28 +14186,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646" + "tx_hash": "a765061f6252188ff4cc3b6558223a79dcdb9ce3924998af5a62e47f793ce837" }, { - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c" }, { - "tx_hash": "4115c489972af768c3e60643b878d4a6ecc092fe74535f163b893ee108b3d1ac" + "tx_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872" }, { - "tx_hash": "c0c8b02d6f939e8b2bbb01a5c627931701e2ec82cf0235bb4a3992cbbbe6afaf" + "tx_hash": "36121215cb7f08d658a54f68e7939dc2c1565e90781f97a44a9116d04138bb81" }, { - "tx_hash": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8" + "tx_hash": "791231043d66d2094cb75a964ab6bc8cc8fd97d4f3111aa265b9c9e02e9f838f" }, { - "tx_hash": "0b55d2fd4d396734b796b0ad4164d7d531839c050c4f31df53d1d4a86750b9bd" + "tx_hash": "c842087cc2e0a9bb224842328b56b14c5b5efd103a9b2c1a7769bd12b1316ed1" }, { - "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5" + "tx_hash": "e51293d52572ef03569b612aadb2668c4f084509d4e264901d29698ba05843d6" }, { - "tx_hash": "67db055172fd889ca6fa9cc47fa2ab086efcdc03871cefc9a0e6833aa2cffadc" + "tx_hash": "2af0fdfddaf6d357f3e80c38f3319a244b08c584a2b714b8214d8123abc752fb" } ], "next_cursor": null, @@ -14242,7 +14220,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v` (str, required) - The address to search for. + + address: `bcrt1qnkdpwgvnpyc67ajaw7c0sdh8sshp8ep2lyl7xy` (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. @@ -14255,8 +14233,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 3, - "tx_hash": "bbd270fe0e9b97f3f448b48b3775e20490cc261947529308c45a7a60ef530783" + "block_index": 10, + "tx_hash": "3a3b224519a19c7b431f5d0536c47d31aba3e033272f36507ff1ef0a198dc600" } } ``` @@ -14266,7 +14244,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f` (str, required) - The address to search for + + address: `bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we` (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 @@ -14287,7 +14265,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942" + "txid": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05" } ], "next_cursor": null, @@ -14300,7 +14278,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u` (str, required) - Address to get pubkey for. + + address: `bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3` (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. @@ -14312,7 +14290,7 @@ Get pubkey for an address. ``` { - "result": "02c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f06" + "result": "02b90e3855aa1de7a7b0fd831d5f15a1c0797dfd99047785d3823854a123df0230" } ``` @@ -14321,7 +14299,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c` (str, required) - The transaction hash + + tx_hash: `70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b` (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. @@ -14333,7 +14311,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101fd0c406894a43ebc56997fddac107e59b628059bd4cfecda5e5d3ad23b95fb1c0300000000ffffffff020000000000000000226a2028ceed4b42cd7a8574dcfaf080310efd1a684767b5d9fa4c75620faed856d7da680b0a27010000001600143bbe3a6dd2351dc452f0f53e2e5847e3877d10ef02473044022014155e9bcb3ee227cfeaac8db5228fec8354c26108f8a0b8af789613ed39a88e02204cc66cf3f406a7c3fb63aef2d648fa9c69c492919b55f94ddde23ee83c35e7cb0121031a1876320c94f09b1a0c6265a68fc71d71e90127a44268a63950acae03f65be000000000" + "result": "020000000001014f5334c3257dda3a92cbc1877e9a1f5e63df7dbdcbb9491435f34b4b517573100300000000ffffffff020000000000000000226a207d16dbdb2d08de1a96e2783094395d95a61fb728ad95cae4d3eca56926bdacb5680b0a2701000000160014c530a2ade98f195e25d20f8832e18c32bc016a7d02473044022041950f0dc17d4606d54a9f24032b55e82c150596fbb34cb0029e9bfafea4e09702205ebd7d7c8c03e4207c57d0ba611440e6247e2081b1ce4e517507dda2c3231e420121034cce95d2f30290b3f598a6007a82788b1f05a7597b19d6a61a91cd87aa3ce82700000000" } ``` @@ -14426,26 +14404,26 @@ Returns all mempool events { "result": [ { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "tx_index": 60 } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "memo": null, "quantity": 10000, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "status": "valid", - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "tx_index": 60, "asset_info": { "divisible": true, @@ -14458,19 +14436,19 @@ Returns all mempool events } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "CREDIT", "params": { - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "event": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -14482,19 +14460,19 @@ Returns all mempool events } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 193, - "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "event": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -14506,27 +14484,27 @@ Returns all mempool events } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726774198.968543, + "block_time": 1726815390.847795, "btc_amount": 0, - "data": "020000000000000001000000000000271080f09d239511eee425be033d403d5cc35cc271f906", + "data": "020000000000000001000000000000271080ae3cd94beec4a764b99683da51e8bd791780897b", "destination": "", "fee": 10000, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "tx_index": 60, - "utxos_info": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63:1", + "utxos_info": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "memo": null, "asset_info": { "divisible": true, @@ -14570,19 +14548,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "CREDIT", "params": { - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "event": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -14604,7 +14582,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63` (str, required) - The hash of the transaction to return + + tx_hash: `3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f` (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 @@ -14624,26 +14602,26 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "tx_index": 60 } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "memo": null, "quantity": 10000, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "status": "valid", - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "tx_index": 60, "asset_info": { "divisible": true, @@ -14656,19 +14634,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "CREDIT", "params": { - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "event": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -14680,19 +14658,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 193, - "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "event": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -14704,27 +14682,27 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726774198.968543, + "block_time": 1726815390.847795, "btc_amount": 0, - "data": "020000000000000001000000000000271080f09d239511eee425be033d403d5cc35cc271f906", + "data": "020000000000000001000000000000271080ae3cd94beec4a764b99683da51e8bd791780897b", "destination": "", "fee": 10000, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "tx_index": 60, - "utxos_info": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63:1", + "utxos_info": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "memo": null, "asset_info": { "divisible": true, diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index c8ccae992e..9ef62f5032 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -57,6 +57,8 @@ TRANSACTION_SERVICE_SINGLETON = None +MAX_INPUTS_SET = 100 + def initialise(force=False): global TRANSACTION_SERVICE_SINGLETON # noqa: PLW0603 @@ -100,7 +102,7 @@ def construct( dust_return_pubkey=None, allow_unconfirmed_inputs=False, unspent_tx_hash=None, - input_set=None, + inputs_set=None, disable_utxo_locks=False, extended_tx_info=False, old_style_api=None, @@ -129,7 +131,7 @@ def construct( dust_return_pubkey, allow_unconfirmed_inputs, unspent_tx_hash, - input_set, + inputs_set, disable_utxo_locks, extended_tx_info, old_style_api, @@ -340,7 +342,7 @@ def construct_coin_selection( source, allow_unconfirmed_inputs, unspent_tx_hash, - input_set, + inputs_set, fee_per_kb, estimate_fee_per_kb, estimate_fee_per_kb_nblocks, @@ -354,8 +356,8 @@ def construct_coin_selection( exclude_utxos, ): # Array of UTXOs, as retrieved by listunspent function from bitcoind - if input_set: - use_inputs = unspent = input_set + if inputs_set: + use_inputs = unspent = inputs_set else: if unspent_tx_hash is not None: unspent = self.backend.addrindexrs.get_unspent_txouts( @@ -565,7 +567,7 @@ def construct( dust_return_pubkey=None, allow_unconfirmed_inputs=False, unspent_tx_hash=None, - input_set=None, + inputs_set=None, disable_utxo_locks=False, extended_tx_info=False, old_style_api=None, @@ -778,7 +780,7 @@ def construct( source, allow_unconfirmed_inputs, unspent_tx_hash, - input_set, + inputs_set, fee_per_kb, estimate_fee_per_kb, estimate_fee_per_kb_nblocks, @@ -1080,7 +1082,7 @@ def get_dust_return_pubkey(source, provided_pubkeys, encoding): "unspent_tx_hash": ( str, None, - "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", + "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set", ), "dust_return_pubkey": ( str, @@ -1123,7 +1125,7 @@ def get_dust_return_pubkey(source, provided_pubkeys, encoding): False, "Return only the data part of the transaction", ), - "input_set": ( + "inputs_set": ( str, None, "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", @@ -1170,7 +1172,7 @@ def compose_transaction( fee=None, fee_provided=0, unspent_tx_hash=None, - input_set=None, + inputs_set=None, dust_return_pubkey=None, disable_utxo_locks=False, extended_tx_info=False, @@ -1196,9 +1198,14 @@ def compose_transaction( else: raise exceptions.TransactionError("Invalid pubkey.") - if isinstance(input_set, str) and input_set: - new_input_set = [] - for str_input in input_set.split(","): + if isinstance(inputs_set, str) and inputs_set: + new_inputs_set = [] + utxos_list = inputs_set.split(",") + if len(utxos_list) > MAX_INPUTS_SET: + raise exceptions.ComposeError( + f"too many UTXOs in inputs_set (max. {MAX_INPUTS_SET}): {len(utxos_list)}" + ) + for str_input in utxos_list: if not util.is_utxo_format(str_input): raise exceptions.ComposeError(f"invalid UTXO: {str_input}") try: @@ -1207,14 +1214,14 @@ def compose_transaction( ) except Exception as e: raise exceptions.ComposeError(f"invalid UTXO: {str_input}") from e - new_input_set.append( + new_inputs_set.append( { "txid": str_input.split(":")[0], "vout": int(str_input.split(":")[1]), "amount": amount, } ) - input_set = new_input_set + inputs_set = new_inputs_set # Get additional pubkeys from `source` and `destination` params. # Convert `source` and `destination` to pubkeyhash form. @@ -1291,7 +1298,7 @@ def compose_transaction( exact_fee=fee, fee_provided=fee_provided, unspent_tx_hash=unspent_tx_hash, - input_set=input_set, + inputs_set=inputs_set, dust_return_pubkey=dust_return_pubkey, disable_utxo_locks=disable_utxo_locks, extended_tx_info=extended_tx_info, diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 71ae6491d5..7b565f6e2a 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -9988,7 +9988,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set", "required": false }, { @@ -10055,7 +10055,7 @@ "required": false }, { - "name": "input_set", + "name": "inputs_set", "type": "str", "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", @@ -10171,7 +10171,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set", "required": false }, { @@ -10238,7 +10238,7 @@ "required": false }, { - "name": "input_set", + "name": "inputs_set", "type": "str", "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", @@ -10336,7 +10336,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set", "required": false }, { @@ -10403,7 +10403,7 @@ "required": false }, { - "name": "input_set", + "name": "inputs_set", "type": "str", "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", @@ -10508,7 +10508,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set", "required": false }, { @@ -10575,7 +10575,7 @@ "required": false }, { - "name": "input_set", + "name": "inputs_set", "type": "str", "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", @@ -10673,7 +10673,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set", "required": false }, { @@ -10740,7 +10740,7 @@ "required": false }, { - "name": "input_set", + "name": "inputs_set", "type": "str", "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", @@ -10850,7 +10850,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set", "required": false }, { @@ -10917,7 +10917,7 @@ "required": false }, { - "name": "input_set", + "name": "inputs_set", "type": "str", "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", @@ -11053,7 +11053,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set", "required": false }, { @@ -11120,7 +11120,7 @@ "required": false }, { - "name": "input_set", + "name": "inputs_set", "type": "str", "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", @@ -11230,7 +11230,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set", "required": false }, { @@ -11297,7 +11297,7 @@ "required": false }, { - "name": "input_set", + "name": "inputs_set", "type": "str", "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", @@ -11436,7 +11436,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set", "required": false }, { @@ -11503,7 +11503,7 @@ "required": false }, { - "name": "input_set", + "name": "inputs_set", "type": "str", "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", @@ -11627,7 +11627,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set", "required": false }, { @@ -11694,7 +11694,7 @@ "required": false }, { - "name": "input_set", + "name": "inputs_set", "type": "str", "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", @@ -11822,7 +11822,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set", "required": false }, { @@ -11889,7 +11889,7 @@ "required": false }, { - "name": "input_set", + "name": "inputs_set", "type": "str", "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", @@ -12020,7 +12020,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set", "required": false }, { @@ -12087,7 +12087,7 @@ "required": false }, { - "name": "input_set", + "name": "inputs_set", "type": "str", "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", @@ -12197,7 +12197,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set", "required": false }, { @@ -12264,7 +12264,7 @@ "required": false }, { - "name": "input_set", + "name": "inputs_set", "type": "str", "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", @@ -12368,7 +12368,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set", "required": false }, { @@ -12435,7 +12435,7 @@ "required": false }, { - "name": "input_set", + "name": "inputs_set", "type": "str", "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", @@ -12645,7 +12645,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set", "required": false }, { @@ -12712,7 +12712,7 @@ "required": false }, { - "name": "input_set", + "name": "inputs_set", "type": "str", "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", @@ -12817,7 +12817,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set", "required": false }, { @@ -12884,7 +12884,7 @@ "required": false }, { - "name": "input_set", + "name": "inputs_set", "type": "str", "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", @@ -12995,7 +12995,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set", "required": false }, { @@ -13062,7 +13062,7 @@ "required": false }, { - "name": "input_set", + "name": "inputs_set", "type": "str", "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", @@ -13172,7 +13172,7 @@ "name": "unspent_tx_hash", "type": "str", "default": null, - "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying input_set", + "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying inputs_set", "required": false }, { @@ -13239,7 +13239,7 @@ "required": false }, { - "name": "input_set", + "name": "inputs_set", "type": "str", "default": null, "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", diff --git a/counterparty-core/counterpartycore/test/fixtures/vectors.py b/counterparty-core/counterpartycore/test/fixtures/vectors.py index 1e6d73d629..dd712f9d78 100644 --- a/counterparty-core/counterpartycore/test/fixtures/vectors.py +++ b/counterparty-core/counterpartycore/test/fixtures/vectors.py @@ -6517,7 +6517,7 @@ { "encoding": "multisig", "regular_dust_size": DP["regular_dust_size"], - "input_set": [ + "inputs_set": [ { "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "txhex": "0100000002eff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b000000006c493046022100ec6fa8316a4f5cfd69816e31011022acce0933bd3b01248caa8b49e60de1b98a022100987ba974b2a4f9976a8d61d94009cb7f7986a827dc5730e999de1fb748d2046c01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffffeff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b010000006a47304402201f8fb2d62df22592cb8d37c68ab26563dbb8e270f7f8409ac0f6d7b24ddb5c940220314e5c767fd12b20116528c028eab2bfbad30eb963bd849993410049cf14a83d01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffff02145fea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac0000000000000000346a32544553540000000a00000000000000010000000005f5e1000000000000000000000000000bebc2000032000000000000271000000000", @@ -6547,7 +6547,7 @@ { "encoding": "multisig", "regular_dust_size": DP["regular_dust_size"], - "input_set": [ + "inputs_set": [ { "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "txhex": "0100000002eff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b000000006c493046022100ec6fa8316a4f5cfd69816e31011022acce0933bd3b01248caa8b49e60de1b98a022100987ba974b2a4f9976a8d61d94009cb7f7986a827dc5730e999de1fb748d2046c01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffffeff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b010000006a47304402201f8fb2d62df22592cb8d37c68ab26563dbb8e270f7f8409ac0f6d7b24ddb5c940220314e5c767fd12b20116528c028eab2bfbad30eb963bd849993410049cf14a83d01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffff02145fea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac0000000000000000346a32544553540000000a00000000000000010000000005f5e1000000000000000000000000000bebc2000032000000000000271000000000", diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 12e556b322..a79f40ec06 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": 193, - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", - "block_time": 1726774194, - "previous_block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", + "block_time": 1726815376, + "previous_block_hash": "62147c1d9cc39595807a029e240ab3a68a952e88ce5b71fff7844b86e0cb8c7f", "difficulty": 545259519, - "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", - "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", - "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", + "ledger_hash": "c35cac3a55dd455eda44fec6808f4b04601d54416913965cf9981a7187e4ca9b", + "txlist_hash": "ffc04a3314302eecc9ed3c67fe1acc91b47b4510370eb27342c9779b5f7490e9", + "messages_hash": "64af7906004d705fe89433fbcec64aab6a352ca56eda19f6490882cfff161834", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", - "block_time": 1726774190, - "previous_block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", + "block_hash": "62147c1d9cc39595807a029e240ab3a68a952e88ce5b71fff7844b86e0cb8c7f", + "block_time": 1726815372, + "previous_block_hash": "45a751b71cef3a2ed4eeef78f7d3a06c48b05e9819a016f433d396d15b756609", "difficulty": 545259519, - "ledger_hash": "65803d38379c30b6ac2d05ad148ef1ce11251447ffe401556c7bf9c06eebd906", - "txlist_hash": "a10e0fed77cc0ef6274cddbef2c672fb7ebe1ed630d31ee561671205aac9ecd0", - "messages_hash": "034324fb557a2ab6042fd66134a2f5c9a4a5183ee5ddde1a03677c06c17172eb", + "ledger_hash": "2a02edf6dfa0fe34ec607651a25dc50c13dac9a41c1fbfd52a053f1dab281ba7", + "txlist_hash": "707f4edd41824c8716d6099fff29f4b60bdb9f141f9f033b38f2cd14bea206a0", + "messages_hash": "844c5288536dd9e848722eccc59300b721384dbfc6129a99d046d702e4583f54", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", - "block_time": 1726774186, - "previous_block_hash": "651e3b0cf4808037e35d34560665bfc4d692e40ccd883d2bbc7f46c761f7ee32", + "block_hash": "45a751b71cef3a2ed4eeef78f7d3a06c48b05e9819a016f433d396d15b756609", + "block_time": 1726815367, + "previous_block_hash": "03c9daadfc62a0379b3555a56a0c850b85b892d210480b1f6aee311b9514e48e", "difficulty": 545259519, - "ledger_hash": "d0d4cc486e16045bdeffd6704f0f275cb2c4f6073bc259daaf2ec310bfdc3062", - "txlist_hash": "2d66b5f605dc1728fbeb9e5b41f8e04a57ae32c137af8d438199d7309d8bd408", - "messages_hash": "83f1641453993b2ab8575ad53e07994f91c1d0cf5c67544bf00e47422bc9f8a9", + "ledger_hash": "2b978fd4ac2cc814bae485afdd290650940d9eeb9751fab31b797f9e3b4e52f5", + "txlist_hash": "5d200caee57178c87dc179c9594792a81eb29bfeda467bf8b145e99a5de435c7", + "messages_hash": "82d68494b63f5147da5f501878a4a9ddb1418bcbf8ea422d49b8b14a887a7724", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "651e3b0cf4808037e35d34560665bfc4d692e40ccd883d2bbc7f46c761f7ee32", - "block_time": 1726774182, - "previous_block_hash": "0892483cda3b2359321d54521d71b9cdb5179631f9afd3a6815afbf31654f10a", + "block_hash": "03c9daadfc62a0379b3555a56a0c850b85b892d210480b1f6aee311b9514e48e", + "block_time": 1726815363, + "previous_block_hash": "43757dfbcbe54d34557ebc3d81564ab86aaae2cc310f3788b63fc7550ee05b56", "difficulty": 545259519, - "ledger_hash": "1898591abedb9c6efebfb7c361c3867e5598e6c92c71620cda963dfbbe4edd8e", - "txlist_hash": "89cf7a5f82297c2a7e8572eb0a362c74f3dc2ec3b01f0fdac01a8445b32c2d62", - "messages_hash": "7d0c9df38a19bbf929f126f7fd0fc7d514c2ae87adea140b9285e754ab4c6fdb", + "ledger_hash": "b8e8c0a20b5245bf0f31edf1c53b60f116f0c9a2980afad5e72505211be7f4e0", + "txlist_hash": "27a3166c79f5f9b71d82217b5c45cbb607eca5fe89dfc6c2a28e92b7b2658c88", + "messages_hash": "a7f9d97a8439f581242c6d3d9d9ec2a569702450c0cd488c31fbecc3daffc065", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "0892483cda3b2359321d54521d71b9cdb5179631f9afd3a6815afbf31654f10a", - "block_time": 1726774177, - "previous_block_hash": "21c746c1d8a7a666598b18913fd73535305caee24703a5b741f5dfc04e1ad59d", + "block_hash": "43757dfbcbe54d34557ebc3d81564ab86aaae2cc310f3788b63fc7550ee05b56", + "block_time": 1726815359, + "previous_block_hash": "5ec7ddd08ae9307a292f17db43da8e8586ed140a86b3fac7df8639ab2bfb5df1", "difficulty": 545259519, - "ledger_hash": "de085f2fd32217117cc9f9b6cb78b3136bf9153af0b2127518bcb3fe9c100452", - "txlist_hash": "0cfa2c2e5403d9416acafcf271cd9ddfd121009f1c9d60ac249e22acda1e2aa1", - "messages_hash": "6ee20d350c2f943b261ad04265acdf29297c93220360a20d862f110e2d7af316", + "ledger_hash": "48e8e4a7ee33c7ba93781c7ce661d57afac099a607bcaa14c91365a571aaa60c", + "txlist_hash": "487d7f0a887f961c184b78de3b96075160f4b0f931fcb52cc761e205fdbea9f4", + "messages_hash": "f1a551bfec8113baf559ccb5c8bc159f656d15d3dd2335f70fbc86a3be2495d1", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", - "block_time": 1726774194, - "previous_block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", + "block_time": 1726815376, + "previous_block_hash": "62147c1d9cc39595807a029e240ab3a68a952e88ce5b71fff7844b86e0cb8c7f", "difficulty": 545259519, - "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", - "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", - "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", + "ledger_hash": "c35cac3a55dd455eda44fec6808f4b04601d54416913965cf9981a7187e4ca9b", + "txlist_hash": "ffc04a3314302eecc9ed3c67fe1acc91b47b4510370eb27342c9779b5f7490e9", + "messages_hash": "64af7906004d705fe89433fbcec64aab6a352ca56eda19f6490882cfff161834", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", - "block_time": 1726774194, - "previous_block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", + "block_time": 1726815376, + "previous_block_hash": "62147c1d9cc39595807a029e240ab3a68a952e88ce5b71fff7844b86e0cb8c7f", "difficulty": 545259519, - "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", - "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", - "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", + "ledger_hash": "c35cac3a55dd455eda44fec6808f4b04601d54416913965cf9981a7187e4ca9b", + "txlist_hash": "ffc04a3314302eecc9ed3c67fe1acc91b47b4510370eb27342c9779b5f7490e9", + "messages_hash": "64af7906004d705fe89433fbcec64aab6a352ca56eda19f6490882cfff161834", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", - "block_time": 1726774194, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", + "block_time": 1726815376, + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", + "utxos_info": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -139,11 +139,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "65803d38379c30b6ac2d05ad148ef1ce11251447ffe401556c7bf9c06eebd906", - "messages_hash": "034324fb557a2ab6042fd66134a2f5c9a4a5183ee5ddde1a03677c06c17172eb", + "ledger_hash": "2a02edf6dfa0fe34ec607651a25dc50c13dac9a41c1fbfd52a053f1dab281ba7", + "messages_hash": "844c5288536dd9e848722eccc59300b721384dbfc6129a99d046d702e4583f54", "transaction_count": 1, - "txlist_hash": "a10e0fed77cc0ef6274cddbef2c672fb7ebe1ed630d31ee561671205aac9ecd0", - "block_time": 1726774190 + "txlist_hash": "707f4edd41824c8716d6099fff29f4b60bdb9f141f9f033b38f2cd14bea206a0", + "block_time": 1726815372 }, "tx_hash": null }, @@ -152,43 +152,43 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58 }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "status": "valid", - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, - "block_time": 1726774190, + "block_time": 1726815372, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -198,22 +198,22 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "XCP", "block_index": 192, - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -223,7 +223,7 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c" } ], "next_cursor": 524, @@ -261,16 +261,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -280,57 +280,57 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c" } ], "next_cursor": null, @@ -340,16 +340,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -361,20 +361,20 @@ }, { "block_index": 192, - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -382,20 +382,20 @@ }, { "block_index": 192, - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -409,16 +409,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "event": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -436,24 +436,24 @@ "result": [ { "type": "order", - "object_id": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "object_id": "18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", "block_index": 182, "confirmed": true, - "block_time": 1726774079 + "block_time": 1726815264 }, { "type": "order", - "object_id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", + "object_id": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7", "block_index": 182, "confirmed": true, - "block_time": 1726774079 + "block_time": 1726815264 }, { "type": "order_match", - "object_id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "object_id": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7_18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", "block_index": 182, "confirmed": true, - "block_time": 1726774079 + "block_time": 1726815264 } ], "next_cursor": null, @@ -463,13 +463,13 @@ "result": [ { "tx_index": 56, - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "block_index": 190, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "offer_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "status": "valid", "confirmed": true, - "block_time": 1726774182 + "block_time": 1726815363 } ], "next_cursor": null, @@ -479,15 +479,15 @@ "result": [ { "tx_index": 59, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -505,14 +505,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", + "tx_hash": "9a110287c955eba18bfaed58bbce05b2312cb4f078cbb0c0a7cf71d5a12486ed", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -527,7 +527,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774063, + "block_time": 1726815249, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -539,10 +539,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "quantity": 10, "status": "valid", @@ -550,7 +550,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "divisible": true, "asset_longname": null, @@ -563,10 +563,10 @@ }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -574,11 +574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -587,10 +587,10 @@ }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -598,11 +598,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -618,27 +618,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "tx_hash": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", - "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", + "destination": "bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "dispenser_tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "oracle_address": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "last_status_tx_hash": null, - "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "origin": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -653,7 +653,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726773999, + "block_time": 1726815183, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,16 +672,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "fee_paid_normalized": "0.00600000" } ], @@ -692,17 +692,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", - "block_time": 1726774194, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", + "block_time": 1726815376, + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", + "utxos_info": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -725,23 +725,23 @@ }, { "tx_index": 58, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d", - "block_time": 1726774190, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "block_hash": "62147c1d9cc39595807a029e240ab3a68a952e88ce5b71fff7844b86e0cb8c7f", + "block_time": 1726815372, + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04803bbe3a6dd2351dc452f0f53e2e5847e3877d10ef017377656570206d7920617373657473", + "data": "0480c530a2ade98f195e25d20f8832e18c32bc016a7d017377656570206d7920617373657473", "supported": true, - "utxos_info": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b:1", + "utxos_info": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "flags": 1, "memo": "sweep my assets" } @@ -754,18 +754,18 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "4613dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "f89d7f0229fc92436f8da698cf6e84a93b47befecf1461b747dad2e8cf0ce294", + "hash": "df3ab8f04784187b91720854227ddeb5a0d611b80b5614b72921b29460889481", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -775,49 +775,27 @@ "vout": [ { "value": 0, - "script_pub_key": "6a33f86a88cbd459ab1e8a7811747f2ab644821023c577bf622caa30ea790a3fbd2c5ec91fa1510cc56212ab482d7a0dd81d359991" + "script_pub_key": "6a29c659f0a93917f94830a7d43137626f7ff8ec819d06d6821bad1920e86dc64a6022ef5895a0c648ff1f" }, { "value": 4999990000, - "script_pub_key": "0014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4" + "script_pub_key": "001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d" } ], "vtxinwit": [ - "30440220182f5ce19f9c4927b2fe424a6705ee0212ebcc0d6d12ae76003c2962ff89bd4802201012a5d031f0964a88d27e2fd17b1c81970e8b61cb3d2ad1dad58b11a704e17801", - "02c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f06" + "30440220186549b6f7a06e817c86000dc3d3ee580dd587bdd05ba07e53eb62212b665df602207b87cb28fb323d9a50f42f437704942fccb56a41e02d6f187059fc982c7091eb01", + "02b90e3855aa1de7a7b0fd831d5f15a1c0797dfd99047785d3823854a123df0230" ], "lock_time": 0, - "tx_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", - "tx_id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3" + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", + "tx_id": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2" }, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, + "message_type": "cancel", + "message_type_id": 70, "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" + "offer_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", + "status": "valid" } }, "btc_amount_normalized": "0.00000000" @@ -835,17 +813,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", - "block_time": 1726774194, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", + "block_time": 1726815376, + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", + "utxos_info": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -870,17 +848,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", - "block_time": 1726774194, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", + "block_time": 1726815376, + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", + "utxos_info": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -909,47 +887,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58 }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "status": "valid", - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, - "block_time": 1726774190, + "block_time": 1726815372, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -959,24 +937,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "XCP", "block_index": 192, - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -986,36 +964,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 } ], "next_cursor": 523, @@ -1028,47 +1006,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58 }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "status": "valid", - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, - "block_time": 1726774190, + "block_time": 1726815372, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -1078,24 +1056,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "XCP", "block_index": 192, - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -1105,36 +1083,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 } ], "next_cursor": 523, @@ -1144,10 +1122,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "quantity": 10, "status": "valid", @@ -1155,7 +1133,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "divisible": true, "asset_longname": null, @@ -1168,10 +1146,10 @@ }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1179,11 +1157,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -1192,10 +1170,10 @@ }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1203,11 +1181,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -1223,27 +1201,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "tx_hash": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", - "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", + "destination": "bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "dispenser_tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "oracle_address": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "last_status_tx_hash": null, - "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "origin": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -1258,7 +1236,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726773999, + "block_time": 1726815183, "asset_info": { "divisible": true, "asset_longname": null, @@ -1279,16 +1257,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -1298,63 +1276,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 } ], "next_cursor": null, @@ -1366,16 +1344,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -1385,63 +1363,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 } ], "next_cursor": null, @@ -1454,7 +1432,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1464,7 +1442,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -1475,7 +1453,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1485,7 +1463,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -1496,7 +1474,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1506,7 +1484,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -1517,7 +1495,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1527,7 +1505,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -1538,7 +1516,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1548,7 +1526,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -1562,17 +1540,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", - "block_time": 1726774186, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "45a751b71cef3a2ed4eeef78f7d3a06c48b05e9819a016f433d396d15b756609", + "block_time": 1726815367, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e:1", + "utxos_info": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1608,23 +1586,23 @@ }, { "tx_index": 56, - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "block_index": 190, - "block_hash": "651e3b0cf4808037e35d34560665bfc4d692e40ccd883d2bbc7f46c761f7ee32", - "block_time": 1726774182, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "03c9daadfc62a0379b3555a56a0c850b85b892d210480b1f6aee311b9514e48e", + "block_time": 1726815363, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "data": "4613dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "supported": true, - "utxos_info": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031:1", + "utxos_info": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "offer_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "status": "valid" } }, @@ -1632,17 +1610,17 @@ }, { "tx_index": 55, - "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "tx_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "block_index": 189, - "block_hash": "0892483cda3b2359321d54521d71b9cdb5179631f9afd3a6815afbf31654f10a", - "block_time": 1726774177, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "43757dfbcbe54d34557ebc3d81564ab86aaae2cc310f3788b63fc7550ee05b56", + "block_time": 1726815359, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e:1", + "utxos_info": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1678,17 +1656,17 @@ }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "block_hash": "21c746c1d8a7a666598b18913fd73535305caee24703a5b741f5dfc04e1ad59d", - "block_time": 1726774173, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "5ec7ddd08ae9307a292f17db43da8e8586ed140a86b3fac7df8639ab2bfb5df1", + "block_time": 1726815355, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a51d35219ae418a29d635b82e9190881258cb46480f09d239511eee425be033d403d5cc35cc271f906803bbe3a6dd2351dc452f0f53e2e5847e3877d10ef400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808feff97d1d44cae600d822812f4ffbca02351d4480ae3cd94beec4a764b99683da51e8bd791780897b80c530a2ade98f195e25d20f8832e18c32bc016a7d400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714:0", + "utxos_info": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1696,14 +1674,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -1711,7 +1689,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1730,25 +1708,25 @@ }, { "tx_index": 51, - "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", + "tx_hash": "85ed946aefb8bc2f75e5c983d94c8480b4ff7f62d1ac364f1ddd964a83529eb8", "block_index": 185, - "block_hash": "4079d9964616962b4485c46f0b95a71d419ff12d2ce66578ed3e1ce2381779a6", - "block_time": 1726774160, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "6859748d6c0acc7ced001814e3f23267264ee6d1cd289792025fe34c0cc8c627", + "block_time": 1726815342, + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "destination": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "btc_amount": 2000, "fee": 10000, - "data": "0b32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "data": "0b8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a3468eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "supported": true, - "utxos_info": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72:0", + "utxos_info": "85ed946aefb8bc2f75e5c983d94c8480b4ff7f62d1ac364f1ddd964a83529eb8:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", - "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", - "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", + "tx1_hash": "8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", + "order_match_id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "status": "valid" } }, @@ -1777,11 +1755,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "status": "open", - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "tx_index": 57, - "block_time": 1726774186, + "block_time": 1726815367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1805,24 +1783,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "block_time": 1726774186 + "block_time": 1726815367 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "block_index": 191, - "event": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "event": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1726774186, + "block_time": 1726815367, "asset_info": { "divisible": true, "asset_longname": null, @@ -1832,25 +1810,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "block_time": 1726774186 + "block_time": 1726815367 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", + "block_hash": "45a751b71cef3a2ed4eeef78f7d3a06c48b05e9819a016f433d396d15b756609", "block_index": 191, - "block_time": 1726774186, + "block_time": 1726815367, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "tx_index": 57, - "utxos_info": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e:1", + "utxos_info": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1882,40 +1860,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "block_time": 1726774186 + "block_time": 1726815367 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "offer_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "status": "valid", - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "tx_index": 56, - "block_time": 1726774182 + "block_time": 1726815363 }, - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "block_index": 190, - "block_time": 1726774182 + "block_time": 1726815363 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "event": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726774182, + "block_time": 1726815363, "asset_info": { "divisible": true, "asset_longname": null, @@ -1925,9 +1903,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "block_index": 190, - "block_time": 1726774182 + "block_time": 1726815363 } ], "next_cursor": 506, @@ -1936,17 +1914,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "memo": null, "quantity": 10000, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "status": "valid", - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "tx_index": 60, "asset_info": { "divisible": true, @@ -1959,19 +1937,19 @@ } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "CREDIT", "params": { - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "event": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -1983,19 +1961,19 @@ } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 193, - "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "event": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -2007,27 +1985,27 @@ } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726774198.968543, + "block_time": 1726815390.847795, "btc_amount": 0, - "data": "020000000000000001000000000000271080f09d239511eee425be033d403d5cc35cc271f906", + "data": "020000000000000001000000000000271080ae3cd94beec4a764b99683da51e8bd791780897b", "destination": "", "fee": 10000, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "tx_index": 60, - "utxos_info": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63:1", + "utxos_info": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "memo": null, "asset_info": { "divisible": true, @@ -2049,7 +2027,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2057,14 +2035,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2072,14 +2050,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2094,7 +2072,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2102,7 +2080,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2114,7 +2092,7 @@ }, "/v2/addresses/
/balances/": { "result": { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2133,16 +2111,16 @@ "result": [ { "block_index": 190, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "event": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774182, + "block_time": 1726815363, "asset_info": { "divisible": true, "asset_longname": null, @@ -2154,16 +2132,16 @@ }, { "block_index": 182, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", + "event": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774079, + "block_time": 1726815264, "asset_info": { "divisible": true, "asset_longname": null, @@ -2175,20 +2153,20 @@ }, { "block_index": 159, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", + "event": "9a110287c955eba18bfaed58bbce05b2312cb4f078cbb0c0a7cf71d5a12486ed", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774063, + "block_time": 1726815249, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2196,20 +2174,20 @@ }, { "block_index": 156, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "7d4a2bd04f1f814197a4eb9b38403dcfcf0dc8b1a4ccac05b631aa1d00d2b8b0", + "event": "d6c329f8a24f64e7916f1dfef93eae0ecb94935337d23431cdeccbca17ab7da3", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774040, + "block_time": 1726815226, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2221,16 +2199,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", + "event": "73f33445bb6ef1ba7081a2f649acc7c7d63d07e8ae0bda9324481991a50c3dc9", "tx_index": 38, - "utxo": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e:1", - "utxo_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "utxo": "73f33445bb6ef1ba7081a2f649acc7c7d63d07e8ae0bda9324481991a50c3dc9:1", + "utxo_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "confirmed": true, - "block_time": 1726774019, + "block_time": 1726815204, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2244,16 +2222,16 @@ "result": [ { "block_index": 191, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "event": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774186, + "block_time": 1726815367, "asset_info": { "divisible": true, "asset_longname": null, @@ -2265,16 +2243,16 @@ }, { "block_index": 189, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "event": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774177, + "block_time": 1726815359, "asset_info": { "divisible": true, "asset_longname": null, @@ -2286,16 +2264,16 @@ }, { "block_index": 188, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "event": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "divisible": true, "asset_longname": null, @@ -2307,20 +2285,20 @@ }, { "block_index": 188, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "event": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2328,16 +2306,16 @@ }, { "block_index": 183, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "event": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774153, + "block_time": 1726815333, "asset_info": { "divisible": true, "asset_longname": null, @@ -2360,9 +2338,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "04c2e5dab15ab4e26d63a5648f0d6629630b4542ae192461bdcf2113b0f3cea8", + "tx_hash": "d9e29ea3864ede77bc7a3ea8aa40c44d34c3de20d56adbb39d31a18dbde1074c", "block_index": 137, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2370,7 +2348,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726773962, + "block_time": 1726815134, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2381,14 +2359,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "23f9db86085e7bb684b573ea2431e4df71742706ec74943c876c80cc1321789f", + "tx_hash": "f7ad5bf33d4ffab8d2b710e385b913472c9b2581a942bdd5c1008b6fd27134ce", "block_index": 112, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1726773838, + "block_time": 1726815028, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2400,10 +2378,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2411,7 +2389,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "divisible": true, "asset_longname": null, @@ -2424,10 +2402,10 @@ }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2435,11 +2413,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2448,10 +2426,10 @@ }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2459,11 +2437,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2472,10 +2450,10 @@ }, { "tx_index": 38, - "tx_hash": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", + "tx_hash": "73f33445bb6ef1ba7081a2f649acc7c7d63d07e8ae0bda9324481991a50c3dc9", "block_index": 151, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e:1", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "73f33445bb6ef1ba7081a2f649acc7c7d63d07e8ae0bda9324481991a50c3dc9:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2483,11 +2461,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774019, + "block_time": 1726815204, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2496,10 +2474,10 @@ }, { "tx_index": 35, - "tx_hash": "41fac461930dace665e9bb44dc633220d82b7510e61470fcdf4539273a33300a", + "tx_hash": "71f50334f5f35ae1010659a0460e4a01de2cc58d367d6138d39092ac22811275", "block_index": 148, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "0b55d2fd4d396734b796b0ad4164d7d531839c050c4f31df53d1d4a86750b9bd:1", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "36121215cb7f08d658a54f68e7939dc2c1565e90781f97a44a9116d04138bb81:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2507,11 +2485,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774007, + "block_time": 1726815191, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2526,10 +2504,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "1cfb953bd23a5d5edaeccfd49b0528b6597e10acdd7f9956bc3ea49468400cfd", + "tx_hash": "107375514b4bf3351449b9cbbd7ddf635e1f9a7e87c1cb923ada7d25c334534f", "block_index": 150, - "source": "67db055172fd889ca6fa9cc47fa2ab086efcdc03871cefc9a0e6833aa2cffadc:0", - "destination": "bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9", + "source": "a765061f6252188ff4cc3b6558223a79dcdb9ce3924998af5a62e47f793ce837:0", + "destination": "bcrt1qdp2athf6h3fqgwf5wkz79lg2a7m8gj06zptffm", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2537,11 +2515,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774015, + "block_time": 1726815200, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2556,10 +2534,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2567,11 +2545,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2580,10 +2558,10 @@ }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2591,11 +2569,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2604,10 +2582,10 @@ }, { "tx_index": 38, - "tx_hash": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", + "tx_hash": "73f33445bb6ef1ba7081a2f649acc7c7d63d07e8ae0bda9324481991a50c3dc9", "block_index": 151, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e:1", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "73f33445bb6ef1ba7081a2f649acc7c7d63d07e8ae0bda9324481991a50c3dc9:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2615,11 +2593,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774019, + "block_time": 1726815204, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2628,10 +2606,10 @@ }, { "tx_index": 35, - "tx_hash": "41fac461930dace665e9bb44dc633220d82b7510e61470fcdf4539273a33300a", + "tx_hash": "71f50334f5f35ae1010659a0460e4a01de2cc58d367d6138d39092ac22811275", "block_index": 148, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "0b55d2fd4d396734b796b0ad4164d7d531839c050c4f31df53d1d4a86750b9bd:1", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "36121215cb7f08d658a54f68e7939dc2c1565e90781f97a44a9116d04138bb81:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2639,11 +2617,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774007, + "block_time": 1726815191, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2658,10 +2636,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "1cfb953bd23a5d5edaeccfd49b0528b6597e10acdd7f9956bc3ea49468400cfd", + "tx_hash": "107375514b4bf3351449b9cbbd7ddf635e1f9a7e87c1cb923ada7d25c334534f", "block_index": 150, - "source": "67db055172fd889ca6fa9cc47fa2ab086efcdc03871cefc9a0e6833aa2cffadc:0", - "destination": "bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9", + "source": "a765061f6252188ff4cc3b6558223a79dcdb9ce3924998af5a62e47f793ce837:0", + "destination": "bcrt1qdp2athf6h3fqgwf5wkz79lg2a7m8gj06zptffm", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2669,11 +2647,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774015, + "block_time": 1726815200, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -2688,9 +2666,9 @@ "result": [ { "tx_index": 30, - "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", + "tx_hash": "02762a4f55190e571b19a19348ee8f6412b45913745ee7cb62c747172108246c", "block_index": 144, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2699,7 +2677,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2709,7 +2687,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773991, + "block_time": 1726815174, "asset_info": { "divisible": true, "asset_longname": null, @@ -2725,9 +2703,9 @@ }, { "tx_index": 26, - "tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2736,7 +2714,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2746,7 +2724,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -2767,9 +2745,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 30, - "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", + "tx_hash": "02762a4f55190e571b19a19348ee8f6412b45913745ee7cb62c747172108246c", "block_index": 144, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2778,7 +2756,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2788,7 +2766,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773991, + "block_time": 1726815174, "asset_info": { "divisible": true, "asset_longname": null, @@ -2808,19 +2786,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", + "tx_hash": "843a01c97d2c75cfafa7a09843605ee3037fbd60b22037c299e8f67344e2a84d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2828,7 +2806,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2843,7 +2821,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -2857,19 +2835,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", + "tx_hash": "bfa7ee683cb51865b4d68ab9b643e7c0c9c1baa4298c01f3bf2eae8953b029d6", "block_index": 140, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2877,7 +2855,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2892,7 +2870,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773973, + "block_time": 1726815147, "asset_info": { "divisible": true, "asset_longname": null, @@ -2912,19 +2890,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", + "tx_hash": "843a01c97d2c75cfafa7a09843605ee3037fbd60b22037c299e8f67344e2a84d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2932,7 +2910,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2947,7 +2925,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -2961,19 +2939,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", + "tx_hash": "bfa7ee683cb51865b4d68ab9b643e7c0c9c1baa4298c01f3bf2eae8953b029d6", "block_index": 140, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2981,7 +2959,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2996,7 +2974,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773973, + "block_time": 1726815147, "asset_info": { "divisible": true, "asset_longname": null, @@ -3016,19 +2994,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", + "tx_hash": "843a01c97d2c75cfafa7a09843605ee3037fbd60b22037c299e8f67344e2a84d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3036,7 +3014,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3051,7 +3029,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -3065,19 +3043,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", + "tx_hash": "bfa7ee683cb51865b4d68ab9b643e7c0c9c1baa4298c01f3bf2eae8953b029d6", "block_index": 140, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3085,7 +3063,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3100,7 +3078,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773973, + "block_time": 1726815147, "asset_info": { "divisible": true, "asset_longname": null, @@ -3120,19 +3098,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", + "tx_hash": "843a01c97d2c75cfafa7a09843605ee3037fbd60b22037c299e8f67344e2a84d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3140,7 +3118,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3155,7 +3133,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -3169,19 +3147,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", + "tx_hash": "bfa7ee683cb51865b4d68ab9b643e7c0c9c1baa4298c01f3bf2eae8953b029d6", "block_index": 140, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3189,7 +3167,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3204,7 +3182,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773973, + "block_time": 1726815147, "asset_info": { "divisible": true, "asset_longname": null, @@ -3223,16 +3201,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "fee_paid_normalized": "0.00600000" } ], @@ -3243,14 +3221,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", + "tx_hash": "9a110287c955eba18bfaed58bbce05b2312cb4f078cbb0c0a7cf71d5a12486ed", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -3265,20 +3243,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774063, + "block_time": 1726815249, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "a9bf93086ed282edc2b5194935329671a7e12a0af1a2408220460fd3bac8663b", + "tx_hash": "3e5964c2c5b951962901d82df38e276b858ace15c6ba532ce89f48e715a29254", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -3293,20 +3271,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726774059, + "block_time": 1726815244, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "4204b9166ff55290c1a9696502a714ae666873dd698433434047f5a70049c6b5", + "tx_hash": "0f9175800f3765d29d82f9eaa6eddbdff41092a23157d81106b7bea3bbe9da43", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -3321,20 +3299,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774054, + "block_time": 1726815230, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "7d4a2bd04f1f814197a4eb9b38403dcfcf0dc8b1a4ccac05b631aa1d00d2b8b0", + "tx_hash": "d6c329f8a24f64e7916f1dfef93eae0ecb94935337d23431cdeccbca17ab7da3", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -3349,20 +3327,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774040, + "block_time": 1726815226, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "acfa48a6367ebe208fe02f5a249e5d3ff83f156b26ae8ee055b9d8335bdb41c8", + "tx_hash": "be727172afce4c5b1911abb1a63a148fc01765509f96b605656d5a301f139007", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -3377,7 +3355,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774002, + "block_time": 1726815187, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -3391,8 +3369,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 10000000000, @@ -3400,16 +3378,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726774040, - "last_issuance_block_time": 1726774059, + "first_issuance_block_time": 1726815226, + "last_issuance_block_time": 1726815244, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 100000000000, @@ -3417,16 +3395,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726774002, - "last_issuance_block_time": 1726774002, + "first_issuance_block_time": 1726815187, + "last_issuance_block_time": 1726815187, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 40, @@ -3434,16 +3412,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726773953, - "last_issuance_block_time": 1726773957, + "first_issuance_block_time": 1726815126, + "last_issuance_block_time": 1726815130, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 19, @@ -3451,16 +3429,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726773916, - "last_issuance_block_time": 1726773949, + "first_issuance_block_time": 1726815109, + "last_issuance_block_time": 1726815121, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 0, @@ -3468,8 +3446,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1726773896, - "last_issuance_block_time": 1726773912, + "first_issuance_block_time": 1726815087, + "last_issuance_block_time": 1726815104, "supply_normalized": "0.00000000" } ], @@ -3480,17 +3458,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "block_hash": "169d7677beac5b7072d1018a6b568b0777dd5156141c1bb464de15fec30c53c8", - "block_time": 1726774186, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "45a751b71cef3a2ed4eeef78f7d3a06c48b05e9819a016f433d396d15b756609", + "block_time": 1726815367, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e:1", + "utxos_info": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3526,23 +3504,23 @@ }, { "tx_index": 56, - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "block_index": 190, - "block_hash": "651e3b0cf4808037e35d34560665bfc4d692e40ccd883d2bbc7f46c761f7ee32", - "block_time": 1726774182, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "03c9daadfc62a0379b3555a56a0c850b85b892d210480b1f6aee311b9514e48e", + "block_time": 1726815363, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "data": "4613dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "supported": true, - "utxos_info": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031:1", + "utxos_info": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "offer_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "status": "valid" } }, @@ -3550,17 +3528,17 @@ }, { "tx_index": 55, - "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "tx_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "block_index": 189, - "block_hash": "0892483cda3b2359321d54521d71b9cdb5179631f9afd3a6815afbf31654f10a", - "block_time": 1726774177, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "43757dfbcbe54d34557ebc3d81564ab86aaae2cc310f3788b63fc7550ee05b56", + "block_time": 1726815359, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e:1", + "utxos_info": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3596,17 +3574,17 @@ }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "block_hash": "21c746c1d8a7a666598b18913fd73535305caee24703a5b741f5dfc04e1ad59d", - "block_time": 1726774173, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "5ec7ddd08ae9307a292f17db43da8e8586ed140a86b3fac7df8639ab2bfb5df1", + "block_time": 1726815355, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a51d35219ae418a29d635b82e9190881258cb46480f09d239511eee425be033d403d5cc35cc271f906803bbe3a6dd2351dc452f0f53e2e5847e3877d10ef400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808feff97d1d44cae600d822812f4ffbca02351d4480ae3cd94beec4a764b99683da51e8bd791780897b80c530a2ade98f195e25d20f8832e18c32bc016a7d400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714:0", + "utxos_info": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3614,14 +3592,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -3629,7 +3607,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3648,17 +3626,17 @@ }, { "tx_index": 49, - "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", "block_index": 183, - "block_hash": "5f31e68a975e69728a9ad8b70ceb94736ca5b9db87c23fa9186954117e830736", - "block_time": 1726774153, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "block_hash": "511185935f9f972e0f179dc7faab5f239d37846695f61a7c9960f48148aa40e4", + "block_time": 1726815333, + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032:1", + "utxos_info": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3700,20 +3678,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", + "tx_hash": "dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d", "block_index": 153, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726774028, + "block_time": 1726815213, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -3735,9 +3713,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3752,7 +3730,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726774186, + "block_time": 1726815367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3778,9 +3756,9 @@ }, { "tx_index": 55, - "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "tx_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "block_index": 190, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3795,7 +3773,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726774182, + "block_time": 1726815363, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3821,9 +3799,9 @@ }, { "tx_index": 49, - "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", "block_index": 186, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3838,7 +3816,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726774164, + "block_time": 1726815346, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3864,9 +3842,9 @@ }, { "tx_index": 47, - "tx_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", + "tx_hash": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7", "block_index": 182, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3881,7 +3859,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1726774079, + "block_time": 1726815264, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3912,10 +3890,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", + "tx_hash": "f2ee7f4036c7cc051cf8e2a20e32425a200f9b9166a04d94e90279ccdd5d024b", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -3940,13 +3918,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726773953 + "block_time": 1726815126 }, { - "tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", + "tx_hash": "58435d06e2ff2416426cdf5dc51282c4665cc4b7b746f60d55d8918e58923e74", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -3971,13 +3949,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726773916 + "block_time": 1726815109 }, { - "tx_hash": "8bf6a822f10cccc625da7811b776e108fadf45d1b9255b1ab005583ec7c9df68", + "tx_hash": "35a7ddf4a16bb7075ce86310a406d213e899b51a36556396066c9db61b876ace", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4002,13 +3980,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726773912 + "block_time": 1726815104 }, { - "tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4033,7 +4011,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726773891 + "block_time": 1726815083 } ], "next_cursor": null, @@ -4042,127 +4020,127 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "ed4ea8c5e199862917e614d38a53e76af1da07f9c981ba9c4c961244f169fea7", + "tx_hash": "adf60b006a2dcd134e0e5faadf2d887a7f868f9bc6480ce7ad700283036454ef", "tx_index": 23, "block_index": 136, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "fairminter_tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "fairminter_tx_hash": "f2ee7f4036c7cc051cf8e2a20e32425a200f9b9166a04d94e90279ccdd5d024b", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773957, + "block_time": 1726815130, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } }, { - "tx_hash": "8e423ad9a4cd9d5486d14e4674f383f71cb3c0ab9341faab56ff72641a10e21f", + "tx_hash": "94e8f2fa3927dec6e081b18fbaff80ded75ee0b0f1daa546493dadd4daa7797b", "tx_index": 21, "block_index": 134, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "fairminter_tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "fairminter_tx_hash": "58435d06e2ff2416426cdf5dc51282c4665cc4b7b746f60d55d8918e58923e74", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773949, + "block_time": 1726815121, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } }, { - "tx_hash": "bf0d60c7451736b319e492c83939e125c79e0887b6da99b3b6513f61d91673f0", + "tx_hash": "df5dffba129be8b4ca06b6167ae0a3ec8c8b2b942c22a7256e40391f742377e8", "tx_index": 20, "block_index": 133, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "fairminter_tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "fairminter_tx_hash": "58435d06e2ff2416426cdf5dc51282c4665cc4b7b746f60d55d8918e58923e74", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773934, + "block_time": 1726815117, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } }, { - "tx_hash": "dbe3fab19d11222801d9998def264a54cc8303c3c6a653cb72ad34356bb7771a", + "tx_hash": "8ed6947087033aa3c6ec997081792eb06bd8fc9e69e477b54c3b9a5766053bd8", "tx_index": 19, "block_index": 132, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "fairminter_tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "fairminter_tx_hash": "58435d06e2ff2416426cdf5dc51282c4665cc4b7b746f60d55d8918e58923e74", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773920, + "block_time": 1726815113, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } }, { - "tx_hash": "1576a56c7da9b4e5301b3f13da28ce1549890be7193816f00386f60aec6d9c0d", + "tx_hash": "f4cdae7b74ee4cb30b355cee970510d8c6ac778f0bc88d2b42f95f681531be2d", "tx_index": 15, "block_index": 127, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "fairminter_tx_hash": "8bf6a822f10cccc625da7811b776e108fadf45d1b9255b1ab005583ec7c9df68", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "fairminter_tx_hash": "35a7ddf4a16bb7075ce86310a406d213e899b51a36556396066c9db61b876ace", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773900, + "block_time": 1726815092, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } }, { - "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", + "tx_hash": "0df3dc539e5c6561a238df83215c4f5332a98c23cb978a3851f13274f0e5678f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "fairminter_tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773883, + "block_time": 1726815075, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } @@ -4174,22 +4152,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", + "tx_hash": "0df3dc539e5c6561a238df83215c4f5332a98c23cb978a3851f13274f0e5678f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "fairminter_tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773883, + "block_time": 1726815075, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } @@ -4203,9 +4181,9 @@ }, "/v2/addresses/
/compose/broadcast": { "result": { - "rawtransaction": "020000000001015b95f1d0edb9af21857674c34ee2eecf7c437d120ad8b11ff3c1ab30ad34941700000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff0200000000000000002b6a29d799ae735c5d8d24b2851b7d16af02fac07861af3d7cf1e0fb9831300183c7de88388d7637f673afa13bb1052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "020000000001012ad6098aff453f8876f81871fde06ebaf1311a5a887be35d4574145a35f7c67b0000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff0200000000000000002b6a296bcb94ae10f743389cfca4bcab49eb392af9bf35be7b31d757ac64f34c3e0d1d213f6853a7ca45ef4b3bb1052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4216,19 +4194,19 @@ }, "/v2/addresses/
/compose/btcpay": { "result": { - "rawtransaction": "020000000001016ba6ddb41ff1c71ef01d5f7d99d3ff19619764fd7139395f4855ff8bbadb86fd00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff03b80b000000000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb400000000000000004b6a49ff6c16b78d62574dfbdee3b1718760b06956c4b8331be40596089000b04f43ec8266489ee5cb534d609eda9adcef6c15a3c1cddc6bea1a70a05b91a5a15756e79d38c45ebdaa3053d6d993052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "0200000000010125c50348c6295fcdc5fc8a3659277a721967d111c73162786e33340c69ae2d380000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff03b80b00000000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d00000000000000004b6a494b2b4044a585ff8bfd31684657fcf43b9b6a6723946891224c53b32cefba15bad1cec21a2ae61ae3e57a228ef3d6f31b3a9bf38e4d15529e5a202c27eb3501385d9a926c5dcd93ae27d993052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646" + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "order_match_id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872" }, "name": "btcpay" } }, "/v2/addresses/
/compose/burn": { "result": { - "rawtransaction": "02000000000101f660e9eb9a1f2d2309bdf697c2b5b3f23334d8f808a8a1eff88ef6d7b2cda3d000000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "02000000000101739af5b482dd9fa8da440a81a33cac0070d104f1300146a27a6ef3a69e26730d0000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "quantity": 1000, "overburn": false }, @@ -4237,19 +4215,19 @@ }, "/v2/addresses/
/compose/cancel": { "result": { - "rawtransaction": "02000000000101e0553250341793b1938805256697bc7a3589315a1b5d91b27d1df1977014c56a00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff0200000000000000002b6a295668a78e3c109c1a5cecf29d7dbc71e61654af5de8131cf438b473dbece7448090e33f297d97f622b83bb1052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "020000000001014aa3e41ae5796f5ec37a031157bd6f5bf717ec07fb54f5a025f610b8c9f83c100000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff0200000000000000002b6a296b06b5e24d012cb577383689f2781f6520ede9af0f7cf01c7620f3476c7888c604eb94dd04b0dae72f3bb1052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "offer_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e" + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "offer_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba" }, "name": "cancel" } }, "/v2/addresses/
/compose/destroy": { "result": { - "rawtransaction": "02000000000101f4eaf156a5147856fbcf821afab570471b0e3ea3958803b006209f381ccda17600000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000226a205f50fe398595de935ba8b471bc07546d825273bad0b3a17773b38d0fa3e6410ca4b3052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "020000000001011b44c4268c614e6dba8378009b29c7d8a6a51011b5615aeaed386c21d136d1f20000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff020000000000000000226a20b041946a1c93fde8aa1220983e878dfed13c37babdd59e6fde5bc478ce1f4389a4b3052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4267,9 +4245,9 @@ }, "/v2/addresses/
/compose/dispenser": { "result": { - "rawtransaction": "0200000000010142d963f6ecaa0237cbbc4deb242e98c0a7f2470c1ae1716af7a0c0a77cb9b3cf0200000016001499c67192e83f303947f06852e7e6e2b52c391d6effffffff0200000000000000002c6a2a484527d3b1e8bbc25f877f55a61d739b46d237d5ecdbb9499b2c8899f6cbfd05038c6795ef418236d59f474b0a270100000016001499c67192e83f303947f06852e7e6e2b52c391d6e02000000000000", + "rawtransaction": "02000000000101051dd473dab8721d88218e932ada57be98b4aefe0b2e3bf8a108271dbe9925b702000000160014b8ca10ba11f449fac2d3c03e1a668f89a4f8fed1ffffffff0200000000000000002c6a2aa79e26aef73f0ea2792832787f871a431c4a7aeaede8c3defc352d225027ae8498db4173e32fba8f3160474b0a2701000000160014b8ca10ba11f449fac2d3c03e1a668f89a4f8fed102000000000000", "params": { - "source": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", + "source": "bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4292,16 +4270,16 @@ }, "/v2/addresses/
/compose/dividend": { "result": { - "rawtransaction": "02000000000101484f6d3e8e8c85dbd81cf8aec5dbb048b15c0fec1d692274c7bf9745e32576b200000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000236a21f7c73dc70de462b3a2ca786bb59b835f0dcc4b5b5beaeadac7c47e19757e6d02df60b3052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "02000000000101a67f48dbc8a790373ee3e8b81a76e9b8455f46ceca7b4a89d5f1c85fdee1111c0000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff020000000000000000236a21489e80c70394524d57e518a5d39c6571acf5fe25944177d32163697178da20347f60b3052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -4319,12 +4297,12 @@ }, "/v2/addresses/
/compose/issuance": { "result": { - "rawtransaction": "0200000000010186ad0fee458832c0de1dd9966a33069926f2f243f98469ba3fa3944273cde45b00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff032202000000000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb40000000000000000236a21a1683304b04b1d1475f3c0a20d20038a08cf6ca8acbda83a12086e9dc357fd346624a8052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "02000000000101910bb68592556a2fd45bfe1a4be266335325d1940b93f5b58f6837c27ea62ab00000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff03220200000000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d0000000000000000236a211878c156b605c4cc7c3e06f42df461f93820b4658ace287764b29b1b672038df8f24a8052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "transfer_destination": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "lock": false, "reset": false, @@ -4336,18 +4314,18 @@ }, "/v2/addresses/
/compose/mpma": { "result": { - "rawtransaction": "0200000000010467ae41ef8da79d935e681670825e40f24befbbdca22a7320333b43e192f8d41200000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff924ca6bfd82a132dcad89aed447aeb980aa54f8a81f4d2b640129ecb0ac6de8d00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4fffffffffb2109d82cfecc8bfdbf973756cb8915055f4107817f6f07fd8e6977915f64e100000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff075ddf0c5b084c3b6e081e3d4f33bf054378daaf6d266310ebf247e22992bee700000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff03e8030000000000006951210201a8a17f6a01b50fa2d98020050cecd2659660a886b103c25f5d88a97f6edf372103bbb7bf19e4b7bd6d38343fb525381f752c5f8de88805717e1bb3f49fd1265eed2102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653aee803000000000000695121020ea8a17f6a01b50fa2faf74df736d31e13f06c4eb8f050ee14312a92cffbf2782103840377bcf9829cf7dc2c952846639d9c35570ecd04b115f139fb91f3bd4972e82102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653ae61d016a804000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000002000002000002000000000000", + "rawtransaction": "02000000000104cea783225fd0d45a80187ff53d6f6d6aefc22f6d745fddecdc28818a2a9b65540000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff3f59f13b578a9ea98dd00d9949d64e35ba26d71dd0ac43321f1c48ed3043d4f60000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff557630ac0beaa8fba32c6e100424fcd264bd8543489915b691af01a385a38df30000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffffa7251a340664444f91a3f43e5c6c722f750f7a5776b29b260e4ad667793644ba0000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff03e8030000000000006951210207b576cfe1338c2a5b644e75011154fc791491638284366db5ce3c23b7c026ac2103f5e60f73b4138523c8068443ab253cff6297304a082eb49d88b405f5b493e5b02102b90e3855aa1de7a7b0fd831d5f15a1c0797dfd99047785d3823854a123df023053aee8030000000000006951210208b576cfe1338c2a5b473918f32fc45d4eb7596cc4d8032e9337a7e1687ff77c21033b7bc7fc5beaf83e8ccc6a437307bdd02d6cf8483d33f012aafc6099d8fcc97a2102b90e3855aa1de7a7b0fd831d5f15a1c0797dfd99047785d3823854a123df023053ae61d016a80400000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000002000002000002000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", 1 ], [ "MYASSETA", - "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", 2 ] ], @@ -4359,9 +4337,9 @@ }, "/v2/addresses/
/compose/order": { "result": { - "rawtransaction": "02000000000101b3933707ee814a13c6a0ac0728c741f4afa0c687b84c9c56007b288199eb8ab800000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000356a33c7189069e502f204f0e78cd884d8f440021fcfb552cb58038caf028c61aa0742f018ebb64fa057a574a68a4fc0eb16fbafd38d8eae052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "02000000000101aad6c3d4ecb4b92203fed29984d592048d94e5eae5c7138e6d657224a3a9b8710000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff020000000000000000356a33f4507d5c042a14f10c21106cd200f28f443ee64b998b2e2d43062160e2764080fdf05f5735edd27a238919cb7f7f942dd1080f8eae052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4378,7 +4356,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -4391,10 +4369,10 @@ }, "/v2/addresses/
/compose/send": { "result": { - "rawtransaction": "02000000000101ab9c7e9d9540332260f5b115b09a402931f0659ca4f30014431a259823d177e500000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000306a2eb624a1bd5d8e105c14b7f5caeb09878243f79cd1b77be2cd639b1c7e5f557e86a06a3392aba6af329056f991c7c7e5af052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "02000000000101c5ffb8fdf2292ab54e7ae5e2888f5e1c7e114c7564dca6bc12cba7393a26a71e0000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff020000000000000000306a2e1635292a95dd3f3a76b1af3b284198043488cf8ba051aead47793fabba34fe62ef7514269755f4b3cea04d941b22e5af052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4414,10 +4392,10 @@ }, "/v2/addresses/
/compose/sweep": { "result": { - "rawtransaction": "020000000001017d84d6968d3246a363b35b66859e8eab7b7f3de8fad05879d98e769c4afc76b400000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000236a21fae7d81d569a6880e110a810de905c32449ef189ee95fe540e9a1359d7530aa7cc60b3052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "02000000000101376a0795e54ea3c64c34c35e6140e3aabe211776e2c637be351b638d05978ae60000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff020000000000000000236a2107538cdd405080bfb12ab8fdd2e96506ea50741f44720babdf26d6b395611f16b060b3052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "flags": 7, "memo": "FFFF" }, @@ -4426,10 +4404,10 @@ }, "/v2/addresses/
/compose/dispense": { "result": { - "rawtransaction": "02000000000101724e212baf5ce78b5ea009a78a673da26f320390b49a7a423fc431372422c4c702000000160014a51d35219ae418a29d635b82e9190881258cb464ffffffff03e8030000000000001600143bbe3a6dd2351dc452f0f53e2e5847e3877d10ef00000000000000000c6a0ad1a4b51a70e96388926566b8082701000000160014a51d35219ae418a29d635b82e9190881258cb46402000000000000", + "rawtransaction": "02000000000101b89e52834a96dd1d4f36acd1627fffb480844cd983c9e5752fbcb8ef6a94ed85020000001600148feff97d1d44cae600d822812f4ffbca02351d44ffffffff03e803000000000000160014c530a2ade98f195e25d20f8832e18c32bc016a7d00000000000000000c6a0ab90ddc58cf7c59f2296766b80827010000001600148feff97d1d44cae600d822812f4ffbca02351d4402000000000000", "params": { - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "quantity": 1000 }, "name": "dispense" @@ -4437,9 +4415,9 @@ }, "/v2/addresses/
/compose/fairminter": { "result": { - "rawtransaction": "02000000000101b1a257779e1011c862cc83a92837b64c5503e6a2341747715b84cf7f59b400b500000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000316a2f6998328c1a4afe531b9a50ee73413abfb8fa4246826cbd353758090e6c701aa62b345035aaab3901c4e6c6cf77c1eaa0af052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "02000000000101786fe3b0902a7610ae69657529919e0598b09aa11026c7561530dffb2d7af4b00000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff020000000000000000316a2f2192de83f894968276a4960d0bf729fdae299597269586a6cc2661f08632d4155c6ccab1f18208e17b6764d5ec92c8a0af052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4463,15 +4441,15 @@ }, "/v2/addresses/
/compose/fairmint": { "result": { - "rawtransaction": "020000000001016da04db66ff7c4ab6a49d406054fdc4ffd54566336864d73ed446c88f0fd41b300000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff020000000000000000166a141f75571447517c4608c7bc28e1748eb3b7fda914dab6052a01000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000000000000", + "rawtransaction": "02000000000101ce5fb3bf5cb0c42e4a7aea958885984448e43866d2f2b30dc8e83420aa5504080000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff020000000000000000166a147933de4be550ded978ea3aa461cc06601016ffabdab6052a0100000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -4482,10 +4460,10 @@ }, "/v2/addresses/
/compose/attach": { "result": { - "rawtransaction": "02000000000106d255f3c870c454bf71276d1156cfe03e6e538c5650c521e12c9dcce204be897b00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff76305db0be83ba44b1ee94419d6df4123ecd9597b09874355f03cc3e53eb39ac00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff274ed97374790a48938f2d353cc074bcddcc7265ede4ee7cf3a0255b7f5a59b100000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff80a5b02da95acde46fa36874a7a971af6507046ff721c815375d03b47f5d19e200000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffffd102988a692a6725c3c639bd73704baddbaa03df453c00fe666c59d6805df06600000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffffe54fb4732703f004cd0e9610e4985fb5332d4287f5f1434f156b53889ef8c47f00000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb4ffffffff04e803000000000000695121021393651064af76fbd387ddb787f537f823efceab25722d54e0ccac8184c27ac22103687ce2a6f2b2fd05bf0884720c4c70cd8cb42b1cfb3215ae31012b857e203e982102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653aee803000000000000695121031393651064af76fbd38087b094e230eb70ebcefe7123201ef4c6f7c799c767c02103362abca8eaeea852b055cc77054973ce88b7224da73704ea62507f872b76394e2102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653aee803000000000000695121033993651064af76fbd38187b1c6bb37f549c9fae02276251c90a2c2f3fdf6024721020f498e918bd79a36d263fe40667a40acb98313289e0460d203601de31a150b2e2102c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f0653aee83922fc06000000160014565bed54e60ce63254c8a7fc4ca23bb0952d3fb402000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106c066cb9f1ca9acc8d8f567829197e438da99c46950419d46947a3ac2ce9be6c90000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff8ab322e14340f69724d34043fcb1bbd35669b96aa1015f45f42f69fdb279c33e0000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff9f33894f15b48f9c975f0dae65f3499ff91834bca2ea7116ea91d5c72e69c1490000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff2072cb01b9b2ed6a40716941bdca13e91567d83e97306d066c23710508725ced0000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dfffffffffae9ae8b3766cc3c2cb8c1be1b702c02c03f03bee0fb883e61105be1a5920e850000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffffa76151a77d81c565343dc56508d687522ffef0227c287125729d0e5cbb95d3f20000000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9dffffffff04e80300000000000069512103e4751ef6056ebab4a3ab2b083aa362438a078c743844e551dbc4fa6f2aed9df92103a4d1aaf9493775d3233e6081d286ded386fbd81b29ad3b50de6e7297315f0e692102b90e3855aa1de7a7b0fd831d5f15a1c0797dfd99047785d3823854a123df023053aee80300000000000069512102e4751ef6056ebab4a3fa7a0e2be16b03dc45d827281fe212dd80a06e28e19a932102e1d6e6ab1f6c6fd23d606edf80c787d586b28e5f3bf33c15856e2696345d5f012102b90e3855aa1de7a7b0fd831d5f15a1c0797dfd99047785d3823854a123df023053aee80300000000000069512103ce751ef6056ebab4a3f77a0f7aed624ee030ea6f784db313beb5c25a1f87f96f2102d3b4d09e28590de4595357edb3f4b0e6e781ef6a5ec5082ce65e40a1016e6fb42102b90e3855aa1de7a7b0fd831d5f15a1c0797dfd99047785d3823854a123df023053aee83922fc0600000016001452f4801523c80f4a49aec891d99bc2dfbfd1ce9d02000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3:1", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4502,10 +4480,10 @@ }, "/v2/utxos//compose/detach": { "result": { - "rawtransaction": "02000000000101b42aad8aceca153d775a93dcccfd0320d169211dc5b2070ed562a2c44774d57a0100000016001475244ad93a0050562c2ba180c01a2250048932eaffffffff04e803000000000000695121025612563ba9b1cb9e6b2ce2fd898cbdc5302bee2761c7d1eb8f84ba34173675fe2102e153374cb9c68878b17b24d1614979a18921e95d55f0811cb5b68d348432cba02102d1900eb0db4eb39f4331657717a4dd2ea4d20cbdad6002640edfed85a3e7598c53aee803000000000000695121025612563ba9b1cb9e6b2bb4ff8881eb90602eec7134cfd6a589d2f825167025932103b654354be9ccc13ee671679a65012df28175f35c51fadf42aeb3d031d062cbf92102d1900eb0db4eb39f4331657717a4dd2ea4d20cbdad6002640edfed85a3e7598c53aee803000000000000695121037c12563ba9b1cb9e6b7feda8888fff8d5c5fdd6f31c5d7e9ebb18a51270117be2103d330027dddf4b94e881f15e351794ac7ed428a3936c9b229d481ba07e003fe122102d1900eb0db4eb39f4331657717a4dd2ea4d20cbdad6002640edfed85a3e7598c53aef49808270100000016001475244ad93a0050562c2ba180c01a2250048932ea02000000000000", + "rawtransaction": "020000000001015137d4507abfc83007b1e2f5df0c9ba3966a24b2a8c335e23c59887f26783a5a010000001600149d9a1721930931af765d77b0f836e7842e13e42affffffff04e80300000000000069512103df0e02e9ca4c5dbaf709e9f4fbc6cfce1fb88aca5f7211774f1b2d74fd528f4621028ae966d03437b61e5a88d8cd9a0d577d5c879ce6725b3a8e9acc1179364c1cbd210299996c19c0db7ca69f631ea30a7e4b7bdcbc889b6fa745b3f243c7a27ee946f253aee80300000000000069512102df0e02e9ca4c5dbaf70fbaa2a992c89219bd8a99567015321e1b3a32ff16de602102cdbe39c33f63f04d4a89db99c350422845849bee3f0972819c904738681a4570210299996c19c0db7ca69f631ea30a7e4b7bdcbc889b6fa745b3f243c7a27ee946f253aee80300000000000069512103f50e02e9ca4c5dbaf717ebe4bfcfcb8a75cdedd0567a147e7c784846ce67ec302102b9885eb2060582283bb1eeaca934354d3fe3fa80473e08ecabfc264a062f24b4210299996c19c0db7ca69f631ea30a7e4b7bdcbc889b6fa745b3f243c7a27ee946f253aef4980827010000001600149d9a1721930931af765d77b0f836e7842e13e42a02000000000000", "params": { - "source": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4:1", - "destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751:1", + "destination": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4526,8 +4504,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 10000000000, @@ -4535,16 +4513,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726774040, - "last_issuance_block_time": 1726774059, + "first_issuance_block_time": 1726815226, + "last_issuance_block_time": 1726815244, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", - "owner": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", + "issuer": "bcrt1qnkdpwgvnpyc67ajaw7c0sdh8sshp8ep2lyl7xy", + "owner": "bcrt1qnkdpwgvnpyc67ajaw7c0sdh8sshp8ep2lyl7xy", "divisible": true, "locked": false, "supply": 100000000000, @@ -4552,16 +4530,16 @@ "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1726774036, - "last_issuance_block_time": 1726774036, + "first_issuance_block_time": 1726815221, + "last_issuance_block_time": 1726815221, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 100000000000, @@ -4569,16 +4547,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726774002, - "last_issuance_block_time": 1726774002, + "first_issuance_block_time": 1726815187, + "last_issuance_block_time": 1726815187, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 40, @@ -4586,16 +4564,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726773953, - "last_issuance_block_time": 1726773957, + "first_issuance_block_time": 1726815126, + "last_issuance_block_time": 1726815130, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 19, @@ -4603,8 +4581,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726773916, - "last_issuance_block_time": 1726773949, + "first_issuance_block_time": 1726815109, + "last_issuance_block_time": 1726815121, "supply_normalized": "0.00000019" } ], @@ -4616,8 +4594,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 10000000000, @@ -4625,15 +4603,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1726773879, - "last_issuance_block_time": 1726773891, + "first_issuance_block_time": 1726815070, + "last_issuance_block_time": 1726815083, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4641,14 +4619,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4656,7 +4634,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -4668,7 +4646,7 @@ }, "/v2/assets//balances/
": { "result": { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4687,9 +4665,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4704,7 +4682,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726774186, + "block_time": 1726815367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4730,9 +4708,9 @@ }, { "tx_index": 55, - "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "tx_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "block_index": 190, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4747,7 +4725,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726774182, + "block_time": 1726815363, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4773,9 +4751,9 @@ }, { "tx_index": 52, - "tx_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "tx_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "block_index": 186, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -4790,7 +4768,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726774164, + "block_time": 1726815346, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4816,9 +4794,9 @@ }, { "tx_index": 50, - "tx_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "tx_hash": "8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "block_index": 185, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -4833,7 +4811,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726774160, + "block_time": 1726815342, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4859,9 +4837,9 @@ }, { "tx_index": 49, - "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", "block_index": 186, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4876,7 +4854,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726774164, + "block_time": 1726815346, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4907,13 +4885,13 @@ "/v2/assets//matches": { "result": [ { - "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "tx0_index": 49, - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 52, - "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", - "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "tx1_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", + "tx1_address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -4927,7 +4905,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726774164, + "block_time": 1726815346, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4947,13 +4925,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "tx0_index": 49, - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 50, - "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", - "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "tx1_hash": "8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", + "tx1_address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -4967,7 +4945,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726774160, + "block_time": 1726815342, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4987,13 +4965,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "id": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7_18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", "tx0_index": 47, - "tx0_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 48, - "tx1_hash": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", - "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "tx1_hash": "18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", + "tx1_address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5007,7 +4985,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726774079, + "block_time": 1726815264, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5034,20 +5012,20 @@ "result": [ { "block_index": 192, - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5055,20 +5033,20 @@ }, { "block_index": 125, - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "8aa19bcf4123dea239e553a76debd1ca8cc3bea950bb5752f247b2e686598b3d", + "event": "55bc6ff606869de1ea89877415f878ebfe14cd23acbc6f18b43322e92a8b8bd7", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726773891, + "block_time": 1726815083, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5076,20 +5054,20 @@ }, { "block_index": 124, - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8", + "event": "791231043d66d2094cb75a964ab6bc8cc8fd97d4f3111aa265b9c9e02e9f838f", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726773887, + "block_time": 1726815079, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5097,20 +5075,20 @@ }, { "block_index": 124, - "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", + "event": "0df3dc539e5c6561a238df83215c4f5332a98c23cb978a3851f13274f0e5678f", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726773887, + "block_time": 1726815079, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5122,16 +5100,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8", + "event": "791231043d66d2094cb75a964ab6bc8cc8fd97d4f3111aa265b9c9e02e9f838f", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726773887, + "block_time": 1726815079, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5145,16 +5123,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "event": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -5166,16 +5144,16 @@ }, { "block_index": 192, - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -5187,16 +5165,16 @@ }, { "block_index": 192, - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -5208,16 +5186,16 @@ }, { "block_index": 191, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "event": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774186, + "block_time": 1726815367, "asset_info": { "divisible": true, "asset_longname": null, @@ -5229,16 +5207,16 @@ }, { "block_index": 189, - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "event": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774177, + "block_time": 1726815359, "asset_info": { "divisible": true, "asset_longname": null, @@ -5256,20 +5234,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", + "tx_hash": "dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d", "block_index": 153, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726774028, + "block_time": 1726815213, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5291,14 +5269,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "8aa19bcf4123dea239e553a76debd1ca8cc3bea950bb5752f247b2e686598b3d", + "tx_hash": "55bc6ff606869de1ea89877415f878ebfe14cd23acbc6f18b43322e92a8b8bd7", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -5313,20 +5291,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726773891, + "block_time": 1726815083, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8", + "tx_hash": "791231043d66d2094cb75a964ab6bc8cc8fd97d4f3111aa265b9c9e02e9f838f", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -5341,20 +5319,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726773887, + "block_time": 1726815079, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", + "tx_hash": "0df3dc539e5c6561a238df83215c4f5332a98c23cb978a3851f13274f0e5678f", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -5369,20 +5347,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726773883, + "block_time": 1726815075, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -5397,7 +5375,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1726773879, + "block_time": 1726815070, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5409,10 +5387,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5420,7 +5398,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "divisible": true, "asset_longname": null, @@ -5433,10 +5411,10 @@ }, { "tx_index": 53, - "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5", + "tx_hash": "2af0fdfddaf6d357f3e80c38f3319a244b08c584a2b714b8214d8123abc752fb", "block_index": 187, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5444,7 +5422,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774169, + "block_time": 1726815350, "asset_info": { "divisible": true, "asset_longname": null, @@ -5457,10 +5435,10 @@ }, { "tx_index": 42, - "tx_hash": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", + "tx_hash": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751", "block_index": 155, - "source": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f:0", - "destination": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4:1", + "source": "4fe40db20831d35ad52100fa53258383faa657107021697a63a3be4cb3382ac9:0", + "destination": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5468,7 +5446,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774036, + "block_time": 1726815221, "asset_info": { "divisible": true, "asset_longname": null, @@ -5481,10 +5459,10 @@ }, { "tx_index": 41, - "tx_hash": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f", + "tx_hash": "4fe40db20831d35ad52100fa53258383faa657107021697a63a3be4cb3382ac9", "block_index": 154, - "source": "dd421431b6d8790a2f8d1697dc81c363a4c6900ad606f98530945c963304144c:0", - "destination": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f:0", + "source": "fb65ea2f062ec29d1eea608e2fc49f82f5fa95dccbde16dc56aad802aea5e797:0", + "destination": "4fe40db20831d35ad52100fa53258383faa657107021697a63a3be4cb3382ac9:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5492,7 +5470,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774032, + "block_time": 1726815217, "asset_info": { "divisible": true, "asset_longname": null, @@ -5511,18 +5489,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "oracle_address": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "last_status_tx_hash": null, - "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "origin": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5532,7 +5510,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726773999, + "block_time": 1726815183, "asset_info": { "divisible": true, "asset_longname": null, @@ -5548,9 +5526,9 @@ }, { "tx_index": 30, - "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", + "tx_hash": "02762a4f55190e571b19a19348ee8f6412b45913745ee7cb62c747172108246c", "block_index": 144, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5559,7 +5537,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5569,7 +5547,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773991, + "block_time": 1726815174, "asset_info": { "divisible": true, "asset_longname": null, @@ -5585,9 +5563,9 @@ }, { "tx_index": 29, - "tx_hash": "4d8d4ccec8ed1d84a032067715c8887702edcf52a81407942e3e2dd19132229d", + "tx_hash": "1cc6d4a7f2ad6cfcaca23bce99d41b21cd25c51119ab17cb89ffff1eccf5d2c5", "block_index": 142, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5596,7 +5574,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "origin": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5606,7 +5584,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773982, + "block_time": 1726815156, "asset_info": { "divisible": true, "asset_longname": null, @@ -5622,9 +5600,9 @@ }, { "tx_index": 26, - "tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5633,7 +5611,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5643,7 +5621,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -5664,9 +5642,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 30, - "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", + "tx_hash": "02762a4f55190e571b19a19348ee8f6412b45913745ee7cb62c747172108246c", "block_index": 144, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5675,7 +5653,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5685,7 +5663,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773991, + "block_time": 1726815174, "asset_info": { "divisible": true, "asset_longname": null, @@ -5713,7 +5691,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5721,7 +5699,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -5730,7 +5708,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5738,7 +5716,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -5747,7 +5725,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5755,7 +5733,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -5764,7 +5742,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -5779,27 +5757,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "tx_hash": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", - "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", + "destination": "bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "dispenser_tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "oracle_address": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "last_status_tx_hash": null, - "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "origin": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5814,7 +5792,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726773999, + "block_time": 1726815183, "asset_info": { "divisible": true, "asset_longname": null, @@ -5828,19 +5806,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", + "tx_hash": "843a01c97d2c75cfafa7a09843605ee3037fbd60b22037c299e8f67344e2a84d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5848,7 +5826,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5863,7 +5841,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -5877,19 +5855,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", + "tx_hash": "bfa7ee683cb51865b4d68ab9b643e7c0c9c1baa4298c01f3bf2eae8953b029d6", "block_index": 140, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5897,7 +5875,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5912,7 +5890,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773973, + "block_time": 1726815147, "asset_info": { "divisible": true, "asset_longname": null, @@ -5933,8 +5911,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "owner": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "owner": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false, "supply": 0, @@ -5942,8 +5920,8 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1726774054, - "last_issuance_block_time": 1726774054, + "first_issuance_block_time": 1726815230, + "last_issuance_block_time": 1726815230, "supply_normalized": "0.00000000" } ], @@ -5953,10 +5931,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -5981,7 +5959,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726773891 + "block_time": 1726815083 } ], "next_cursor": null, @@ -5990,64 +5968,64 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "8aa19bcf4123dea239e553a76debd1ca8cc3bea950bb5752f247b2e686598b3d", + "tx_hash": "55bc6ff606869de1ea89877415f878ebfe14cd23acbc6f18b43322e92a8b8bd7", "tx_index": 13, "block_index": 125, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", - "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", + "fairminter_tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773891, + "block_time": 1726815083, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } }, { - "tx_hash": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8", + "tx_hash": "791231043d66d2094cb75a964ab6bc8cc8fd97d4f3111aa265b9c9e02e9f838f", "tx_index": 12, "block_index": 124, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", - "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", + "fairminter_tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773887, + "block_time": 1726815079, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } }, { - "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", + "tx_hash": "0df3dc539e5c6561a238df83215c4f5332a98c23cb978a3851f13274f0e5678f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "fairminter_tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773883, + "block_time": 1726815075, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } @@ -6059,22 +6037,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "3582e2f6127cb9cc09023fd40e34f885a9de158fd498a5893fc2b081d777e706", + "tx_hash": "0df3dc539e5c6561a238df83215c4f5332a98c23cb978a3851f13274f0e5678f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "fairminter_tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "fairminter_tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726773883, + "block_time": 1726815075, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } @@ -6087,9 +6065,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6104,7 +6082,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726774186, + "block_time": 1726815367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6130,9 +6108,9 @@ }, { "tx_index": 55, - "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "tx_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "block_index": 190, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6147,7 +6125,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726774182, + "block_time": 1726815363, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6173,9 +6151,9 @@ }, { "tx_index": 52, - "tx_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "tx_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "block_index": 186, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6190,7 +6168,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726774164, + "block_time": 1726815346, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6216,9 +6194,9 @@ }, { "tx_index": 50, - "tx_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "tx_hash": "8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "block_index": 185, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6233,7 +6211,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726774160, + "block_time": 1726815342, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6259,9 +6237,9 @@ }, { "tx_index": 49, - "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", "block_index": 186, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6276,7 +6254,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726774164, + "block_time": 1726815346, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6307,9 +6285,9 @@ "/v2/orders/": { "result": { "tx_index": 57, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6324,7 +6302,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726774186, + "block_time": 1726815367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6352,13 +6330,13 @@ "/v2/orders//matches": { "result": [ { - "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "tx0_index": 49, - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 52, - "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", - "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "tx1_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", + "tx1_address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6372,7 +6350,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726774164, + "block_time": 1726815346, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6392,13 +6370,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "tx0_index": 49, - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 50, - "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", - "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "tx1_hash": "8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", + "tx1_address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6412,7 +6390,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726774160, + "block_time": 1726815342, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6439,15 +6417,15 @@ "result": [ { "tx_index": 51, - "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", + "tx_hash": "85ed946aefb8bc2f75e5c983d94c8480b4ff7f62d1ac364f1ddd964a83529eb8", "block_index": 185, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "destination": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "btc_amount": 2000, - "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "order_match_id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "status": "valid", "confirmed": true, - "block_time": 1726774160, + "block_time": 1726815342, "btc_amount_normalized": "0.00002000" } ], @@ -6458,9 +6436,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6478,7 +6456,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726774186, + "block_time": 1726815367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6504,9 +6482,9 @@ }, { "tx_index": 55, - "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "tx_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "block_index": 190, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6524,7 +6502,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726774182, + "block_time": 1726815363, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6550,9 +6528,9 @@ }, { "tx_index": 52, - "tx_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "tx_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "block_index": 186, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6570,7 +6548,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726774164, + "block_time": 1726815346, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6596,9 +6574,9 @@ }, { "tx_index": 50, - "tx_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "tx_hash": "8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "block_index": 185, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6616,7 +6594,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726774160, + "block_time": 1726815342, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6642,9 +6620,9 @@ }, { "tx_index": 49, - "tx_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", "block_index": 186, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6662,7 +6640,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726774164, + "block_time": 1726815346, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6693,13 +6671,13 @@ "/v2/orders///matches": { "result": [ { - "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "tx0_index": 49, - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 52, - "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", - "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "tx1_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", + "tx1_address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6716,7 +6694,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726774164, + "block_time": 1726815346, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6736,13 +6714,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "tx0_index": 49, - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 50, - "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", - "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "tx1_hash": "8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", + "tx1_address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6759,7 +6737,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726774160, + "block_time": 1726815342, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6779,13 +6757,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "id": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7_18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", "tx0_index": 47, - "tx0_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 48, - "tx1_hash": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", - "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "tx1_hash": "18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", + "tx1_address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6802,7 +6780,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726774079, + "block_time": 1726815264, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6828,13 +6806,13 @@ "/v2/order_matches": { "result": [ { - "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "tx0_index": 49, - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 52, - "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", - "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "tx1_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", + "tx1_address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6848,7 +6826,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726774164, + "block_time": 1726815346, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6868,13 +6846,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "tx0_index": 49, - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 50, - "tx1_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", - "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "tx1_hash": "8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", + "tx1_address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6888,7 +6866,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726774160, + "block_time": 1726815342, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6908,13 +6886,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", + "id": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7_18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", "tx0_index": 47, - "tx0_hash": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_hash": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx1_index": 48, - "tx1_hash": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", - "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "tx1_hash": "18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", + "tx1_address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6928,7 +6906,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726774079, + "block_time": 1726815264, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6973,66 +6951,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "b7f0dde4bbad6994cc0193c8774206f9809c5f83989c87a66b294ca6afb2a852", + "tx_hash": "6734c2c20a328e6e65f4464f0e38b929b8cf906f0e0c4016af2baebe977fac4c", "block_index": 121, - "source": "bcrt1qx026kexytkv73h2sucljqxmu6dz8q5qsfvp3mw", + "source": "bcrt1qs6kaxznfkfgmxhalmv840fldjqr2d7hnltn6xh", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1726773875, + "block_time": 1726815066, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "67984637a26a30e7ea7c95835fb9c1333583499820c53a25ccc35117621efd1c", + "tx_hash": "79255c0af5328f1d6b02ad8aeda954d1b3f2f348650ec567cffa6bc956ff0c4c", "block_index": 120, - "source": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", + "source": "bcrt1qnkdpwgvnpyc67ajaw7c0sdh8sshp8ep2lyl7xy", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1726773871, + "block_time": 1726815062, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "7217920d2226cacc0e914354a1a47e57453361706004220693b66d2de2829aef", + "tx_hash": "96646807b5fd2a08e69151391559757273355a282a888b40af30c9d020471976", "block_index": 119, - "source": "bcrt1qt42f6kccqmjd3pstrcu3smvumgz8235g6naz5n", + "source": "bcrt1qm333pf4gywv8ya38qk5sd7eh7k2ldmwauk8a3z", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1726773867, + "block_time": 1726815058, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "886af1d613518edf54569689de9d3982e5ac2d7e181e97657a4c47fb374a6a5b", + "tx_hash": "b1b4e4121b2db444daab5ff36d8262e0cbbca844bf7ea43bf37feb99cee7226d", "block_index": 118, - "source": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", + "source": "bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1726773863, + "block_time": 1726815053, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "f6b1cbac3fd4887c14ba61bc6bc199afb8d8598d8eacf61502eadcc1f6cd6723", + "tx_hash": "167c479fa51912e3044f68e8cd092584fb0b16755e61ba3512c02262deff4405", "block_index": 117, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1726773858, + "block_time": 1726815049, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7044,18 +7022,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "oracle_address": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "last_status_tx_hash": null, - "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "origin": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7065,7 +7043,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726773999, + "block_time": 1726815183, "asset_info": { "divisible": true, "asset_longname": null, @@ -7081,9 +7059,9 @@ }, { "tx_index": 30, - "tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", + "tx_hash": "02762a4f55190e571b19a19348ee8f6412b45913745ee7cb62c747172108246c", "block_index": 144, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7092,7 +7070,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7102,7 +7080,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773991, + "block_time": 1726815174, "asset_info": { "divisible": true, "asset_longname": null, @@ -7118,9 +7096,9 @@ }, { "tx_index": 29, - "tx_hash": "4d8d4ccec8ed1d84a032067715c8887702edcf52a81407942e3e2dd19132229d", + "tx_hash": "1cc6d4a7f2ad6cfcaca23bce99d41b21cd25c51119ab17cb89ffff1eccf5d2c5", "block_index": 142, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7129,7 +7107,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "origin": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7139,7 +7117,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773982, + "block_time": 1726815156, "asset_info": { "divisible": true, "asset_longname": null, @@ -7155,9 +7133,9 @@ }, { "tx_index": 26, - "tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7166,7 +7144,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7176,7 +7154,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -7197,9 +7175,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7208,7 +7186,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7218,7 +7196,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -7238,19 +7216,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", + "tx_hash": "843a01c97d2c75cfafa7a09843605ee3037fbd60b22037c299e8f67344e2a84d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7258,7 +7236,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7273,7 +7251,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -7287,19 +7265,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", + "tx_hash": "bfa7ee683cb51865b4d68ab9b643e7c0c9c1baa4298c01f3bf2eae8953b029d6", "block_index": 140, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7307,7 +7285,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7322,7 +7300,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773973, + "block_time": 1726815147, "asset_info": { "divisible": true, "asset_longname": null, @@ -7341,20 +7319,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", + "tx_hash": "dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d", "block_index": 153, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726774028, + "block_time": 1726815213, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -7375,20 +7353,20 @@ "/v2/dividends/": { "result": { "tx_index": 40, - "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", + "tx_hash": "dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d", "block_index": 153, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726774028, + "block_time": 1726815213, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -7411,12 +7389,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", + "event": "dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d", "tx_index": 40, - "utxo": "dd421431b6d8790a2f8d1697dc81c363a4c6900ad606f98530945c963304144c:0", - "utxo_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "utxo": "fb65ea2f062ec29d1eea608e2fc49f82f5fa95dccbde16dc56aad802aea5e797:0", + "utxo_address": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "confirmed": true, - "block_time": 1726774028, + "block_time": 1726815213, "asset_info": { "divisible": true, "asset_longname": null, @@ -7428,16 +7406,16 @@ }, { "block_index": 153, - "address": "bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9", + "address": "bcrt1qdp2athf6h3fqgwf5wkz79lg2a7m8gj06zptffm", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", + "event": "dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726774028, + "block_time": 1726815213, "asset_info": { "divisible": true, "asset_longname": null, @@ -7458,27 +7436,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", - "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", + "ledger_hash": "c35cac3a55dd455eda44fec6808f4b04601d54416913965cf9981a7187e4ca9b", + "messages_hash": "64af7906004d705fe89433fbcec64aab6a352ca56eda19f6490882cfff161834", "transaction_count": 1, - "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", - "block_time": 1726774194 + "txlist_hash": "ffc04a3314302eecc9ed3c67fe1acc91b47b4510370eb27342c9779b5f7490e9", + "block_time": 1726815376 }, "tx_hash": null, "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "tx_index": 59 }, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 }, { "event_index": 533, @@ -7487,12 +7465,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "status": "valid", "tag": "64657374726f79", - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "tx_index": 59, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -7502,24 +7480,24 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 193, - "event": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "event": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -7529,25 +7507,25 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", "block_index": 193, - "block_time": 1726774194, + "block_time": 1726815376, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "tx_index": 59, - "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", + "utxos_info": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -7567,9 +7545,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 } ], "next_cursor": 530, @@ -7581,15 +7559,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", - "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", + "ledger_hash": "c35cac3a55dd455eda44fec6808f4b04601d54416913965cf9981a7187e4ca9b", + "messages_hash": "64af7906004d705fe89433fbcec64aab6a352ca56eda19f6490882cfff161834", "transaction_count": 1, - "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", - "block_time": 1726774194 + "txlist_hash": "ffc04a3314302eecc9ed3c67fe1acc91b47b4510370eb27342c9779b5f7490e9", + "block_time": 1726815376 }, "tx_hash": null, "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 } }, "/v2/events/counts": { @@ -7624,16 +7602,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -7643,78 +7621,78 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", + "event": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726774182, + "block_time": 1726815363, "asset_info": { "divisible": true, "asset_longname": null, @@ -7724,24 +7702,24 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "block_index": 190, - "block_time": 1726774182 + "block_time": 1726815363 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "event": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "divisible": true, "asset_longname": null, @@ -7751,9 +7729,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "block_time": 1726774173 + "block_time": 1726815355 } ], "next_cursor": 490, @@ -7770,27 +7748,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "tx_hash": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", - "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", + "destination": "bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "dispenser_tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "oracle_address": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "last_status_tx_hash": null, - "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "origin": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7805,7 +7783,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726773999, + "block_time": 1726815183, "asset_info": { "divisible": true, "asset_longname": null, @@ -7819,19 +7797,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "687d8309e798c083f3beabbd868232af505090044ec04373d9d4e4a8e4176cb9", + "tx_hash": "843a01c97d2c75cfafa7a09843605ee3037fbd60b22037c299e8f67344e2a84d", "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7839,7 +7817,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7854,7 +7832,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773978, + "block_time": 1726815151, "asset_info": { "divisible": true, "asset_longname": null, @@ -7868,19 +7846,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eb70b71df996f23172481bf63589090d31a7d8a430e9dfbccdb7663ba2439d22", + "tx_hash": "bfa7ee683cb51865b4d68ab9b643e7c0c9c1baa4298c01f3bf2eae8953b029d6", "block_index": 140, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f5eed04f26f6b1bf2362e4bf5e579b616f019b6cc586de045647e06c9060669e", + "dispenser_tx_hash": "269862e86bd2f176b5ed563d61b79949c0a6e755c70fc42e0af79cc1e7e14d1d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7888,7 +7866,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "origin": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7903,7 +7881,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726773973, + "block_time": 1726815147, "asset_info": { "divisible": true, "asset_longname": null, @@ -7922,10 +7900,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "asset": "XCP", "quantity": 10, "status": "valid", @@ -7933,7 +7911,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "divisible": true, "asset_longname": null, @@ -7946,10 +7924,10 @@ }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -7957,11 +7935,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -7970,10 +7948,10 @@ }, { "tx_index": 54, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -7981,11 +7959,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -7994,10 +7972,10 @@ }, { "tx_index": 53, - "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5", + "tx_hash": "2af0fdfddaf6d357f3e80c38f3319a244b08c584a2b714b8214d8123abc752fb", "block_index": 187, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -8005,7 +7983,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774169, + "block_time": 1726815350, "asset_info": { "divisible": true, "asset_longname": null, @@ -8018,10 +7996,10 @@ }, { "tx_index": 42, - "tx_hash": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", + "tx_hash": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751", "block_index": 155, - "source": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f:0", - "destination": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4:1", + "source": "4fe40db20831d35ad52100fa53258383faa657107021697a63a3be4cb3382ac9:0", + "destination": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8029,7 +8007,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726774036, + "block_time": 1726815221, "asset_info": { "divisible": true, "asset_longname": null, @@ -8048,14 +8026,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", + "tx_hash": "9a110287c955eba18bfaed58bbce05b2312cb4f078cbb0c0a7cf71d5a12486ed", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -8070,20 +8048,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774063, + "block_time": 1726815249, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "a9bf93086ed282edc2b5194935329671a7e12a0af1a2408220460fd3bac8663b", + "tx_hash": "3e5964c2c5b951962901d82df38e276b858ace15c6ba532ce89f48e715a29254", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -8098,20 +8076,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726774059, + "block_time": 1726815244, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "4204b9166ff55290c1a9696502a714ae666873dd698433434047f5a70049c6b5", + "tx_hash": "0f9175800f3765d29d82f9eaa6eddbdff41092a23157d81106b7bea3bbe9da43", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -8126,20 +8104,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774054, + "block_time": 1726815230, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "7d4a2bd04f1f814197a4eb9b38403dcfcf0dc8b1a4ccac05b631aa1d00d2b8b0", + "tx_hash": "d6c329f8a24f64e7916f1dfef93eae0ecb94935337d23431cdeccbca17ab7da3", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -8154,20 +8132,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774040, + "block_time": 1726815226, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", + "tx_hash": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", - "issuer": "bcrt1qw5jy4kf6qpg9vtpt5xqvqx3z2qzgjvh2uzsh9v", + "source": "bcrt1qnkdpwgvnpyc67ajaw7c0sdh8sshp8ep2lyl7xy", + "issuer": "bcrt1qnkdpwgvnpyc67ajaw7c0sdh8sshp8ep2lyl7xy", "transfer": false, "callable": false, "call_date": 0, @@ -8182,7 +8160,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774036, + "block_time": 1726815221, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8193,14 +8171,14 @@ "/v2/issuances/": { "result": { "tx_index": 46, - "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", + "tx_hash": "9a110287c955eba18bfaed58bbce05b2312cb4f078cbb0c0a7cf71d5a12486ed", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "transfer": false, "callable": false, "call_date": 0, @@ -8215,7 +8193,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726774063, + "block_time": 1726815249, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8224,16 +8202,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "fee_paid_normalized": "0.00600000" } ], @@ -8244,16 +8222,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726774190, + "block_time": 1726815372, "fee_paid_normalized": "0.00600000" } ], @@ -8264,9 +8242,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c", + "tx_hash": "8b28dd31f49228d2203cd7fcfa8b9062b26a1691283c8ed214f508aebe94a44e", "block_index": 138, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8274,14 +8252,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726773966, + "block_time": 1726815138, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "04c2e5dab15ab4e26d63a5648f0d6629630b4542ae192461bdcf2113b0f3cea8", + "tx_hash": "d9e29ea3864ede77bc7a3ea8aa40c44d34c3de20d56adbb39d31a18dbde1074c", "block_index": 137, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8289,7 +8267,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726773962, + "block_time": 1726815134, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8299,9 +8277,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c", + "tx_hash": "8b28dd31f49228d2203cd7fcfa8b9062b26a1691283c8ed214f508aebe94a44e", "block_index": 138, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8309,17 +8287,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726773966, + "block_time": 1726815138, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", + "tx_hash": "f2ee7f4036c7cc051cf8e2a20e32425a200f9b9166a04d94e90279ccdd5d024b", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8344,13 +8322,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726773953 + "block_time": 1726815126 }, { - "tx_hash": "26dde2383d4ce55bf9ff68317251af36a096bcd41e0d1dc8487dd7a1feeb2e80", + "tx_hash": "58435d06e2ff2416426cdf5dc51282c4665cc4b7b746f60d55d8918e58923e74", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8375,13 +8353,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726773916 + "block_time": 1726815109 }, { - "tx_hash": "8bf6a822f10cccc625da7811b776e108fadf45d1b9255b1ab005583ec7c9df68", + "tx_hash": "35a7ddf4a16bb7075ce86310a406d213e899b51a36556396066c9db61b876ace", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8406,13 +8384,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726773912 + "block_time": 1726815104 }, { - "tx_hash": "8c5e0dfc32b124b65e2a79361fab295ddefdf72817afad35261ea343ab78c55d", + "tx_hash": "3608640969c07a6bdd779e550eac98b20e4f1a1ec16c80bac89f4ce13843ffb7", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8437,7 +8415,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726773891 + "block_time": 1726815083 } ], "next_cursor": null, @@ -8451,8 +8429,8 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", - "address": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f" + "txid": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", + "address": "bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we" }, { "vout": 2, @@ -8460,8 +8438,8 @@ "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", - "address": "bcrt1qt42f6kccqmjd3pstrcu3smvumgz8235g6naz5n" + "txid": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751", + "address": "bcrt1qm333pf4gywv8ya38qk5sd7eh7k2ldmwauk8a3z" } ], "next_cursor": null, @@ -8470,28 +8448,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646" + "tx_hash": "a765061f6252188ff4cc3b6558223a79dcdb9ce3924998af5a62e47f793ce837" }, { - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b" + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c" }, { - "tx_hash": "4115c489972af768c3e60643b878d4a6ecc092fe74535f163b893ee108b3d1ac" + "tx_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872" }, { - "tx_hash": "c0c8b02d6f939e8b2bbb01a5c627931701e2ec82cf0235bb4a3992cbbbe6afaf" + "tx_hash": "36121215cb7f08d658a54f68e7939dc2c1565e90781f97a44a9116d04138bb81" }, { - "tx_hash": "542801134145f0a1cf0d2358d84e571d36c9b8798b25fd6982f50f22f93bb4b8" + "tx_hash": "791231043d66d2094cb75a964ab6bc8cc8fd97d4f3111aa265b9c9e02e9f838f" }, { - "tx_hash": "0b55d2fd4d396734b796b0ad4164d7d531839c050c4f31df53d1d4a86750b9bd" + "tx_hash": "c842087cc2e0a9bb224842328b56b14c5b5efd103a9b2c1a7769bd12b1316ed1" }, { - "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5" + "tx_hash": "e51293d52572ef03569b612aadb2668c4f084509d4e264901d29698ba05843d6" }, { - "tx_hash": "67db055172fd889ca6fa9cc47fa2ab086efcdc03871cefc9a0e6833aa2cffadc" + "tx_hash": "2af0fdfddaf6d357f3e80c38f3319a244b08c584a2b714b8214d8123abc752fb" } ], "next_cursor": null, @@ -8499,8 +8477,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 3, - "tx_hash": "bbd270fe0e9b97f3f448b48b3775e20490cc261947529308c45a7a60ef530783" + "block_index": 10, + "tx_hash": "3a3b224519a19c7b431f5d0536c47d31aba3e033272f36507ff1ef0a198dc600" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -8511,17 +8489,17 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942" + "txid": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "02c7a423e077fd9b463a21053b6cc0ea0cc03e0a043a2bb52e3309505e9c225f06" + "result": "02b90e3855aa1de7a7b0fd831d5f15a1c0797dfd99047785d3823854a123df0230" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101fd0c406894a43ebc56997fddac107e59b628059bd4cfecda5e5d3ad23b95fb1c0300000000ffffffff020000000000000000226a2028ceed4b42cd7a8574dcfaf080310efd1a684767b5d9fa4c75620faed856d7da680b0a27010000001600143bbe3a6dd2351dc452f0f53e2e5847e3877d10ef02473044022014155e9bcb3ee227cfeaac8db5228fec8354c26108f8a0b8af789613ed39a88e02204cc66cf3f406a7c3fb63aef2d648fa9c69c492919b55f94ddde23ee83c35e7cb0121031a1876320c94f09b1a0c6265a68fc71d71e90127a44268a63950acae03f65be000000000" + "result": "020000000001014f5334c3257dda3a92cbc1877e9a1f5e63df7dbdcbb9491435f34b4b517573100300000000ffffffff020000000000000000226a207d16dbdb2d08de1a96e2783094395d95a61fb728ad95cae4d3eca56926bdacb5680b0a2701000000160014c530a2ade98f195e25d20f8832e18c32bc016a7d02473044022041950f0dc17d4606d54a9f24032b55e82c150596fbb34cb0029e9bfafea4e09702205ebd7d7c8c03e4207c57d0ba611440e6247e2081b1ce4e517507dda2c3231e420121034cce95d2f30290b3f598a6007a82788b1f05a7597b19d6a61a91cd87aa3ce82700000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 68517 @@ -8544,26 +8522,26 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "tx_index": 60 } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "memo": null, "quantity": 10000, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "status": "valid", - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "tx_index": 60, "asset_info": { "divisible": true, @@ -8576,19 +8554,19 @@ } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "CREDIT", "params": { - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "event": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -8600,19 +8578,19 @@ } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 193, - "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "event": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -8624,27 +8602,27 @@ } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726774198.968543, + "block_time": 1726815390.847795, "btc_amount": 0, - "data": "020000000000000001000000000000271080f09d239511eee425be033d403d5cc35cc271f906", + "data": "020000000000000001000000000000271080ae3cd94beec4a764b99683da51e8bd791780897b", "destination": "", "fee": 10000, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "tx_index": 60, - "utxos_info": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63:1", + "utxos_info": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "memo": null, "asset_info": { "divisible": true, @@ -8666,19 +8644,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "CREDIT", "params": { - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "event": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -8696,26 +8674,26 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "tx_index": 60 } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "destination": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "memo": null, "quantity": 10000, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "status": "valid", - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "tx_index": 60, "asset_info": { "divisible": true, @@ -8728,19 +8706,19 @@ } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "CREDIT", "params": { - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "event": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -8752,19 +8730,19 @@ } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 193, - "event": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "event": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -8776,27 +8754,27 @@ } }, { - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726774198.968543, + "block_time": 1726815390.847795, "btc_amount": 0, - "data": "020000000000000001000000000000271080f09d239511eee425be033d403d5cc35cc271f906", + "data": "020000000000000001000000000000271080ae3cd94beec4a764b99683da51e8bd791780897b", "destination": "", "fee": 10000, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", - "tx_hash": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", + "tx_hash": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f", "tx_index": 60, - "utxos_info": "fa55e15e5a933e827f97cefeaec9008341346fb62f89ee78c9b9468392f56c63:1", + "utxos_info": "3aa7f7b722713f3679f1639f9d42d557b198ae89fab466dabdb8a9efd697448f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "memo": null, "asset_info": { "divisible": true, @@ -8831,15 +8809,15 @@ "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", "block_index": 193, - "block_time": 1726774194, + "block_time": 1726815376, "difficulty": 545259519, - "previous_block_hash": "1f9ddccf0b6074a98b6114241c60bf5b0b86a347726d0a390c33333aad11d09d" + "previous_block_hash": "62147c1d9cc39595807a029e240ab3a68a952e88ce5b71fff7844b86e0cb8c7f" }, "tx_hash": null, "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 } ], "next_cursor": 518, @@ -8851,17 +8829,17 @@ "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "66859845dc0b4c70aa3f316f8323a7e72f4a77a1db2e7feb4a641893a198f6fd", + "block_hash": "57afe5cea5c9d23e39261789a1d0ba65de1ea9230e925b50209b143efe4df02c", "block_index": 193, - "block_time": 1726774194, + "block_time": 1726815376, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "tx_index": 59, - "utxos_info": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c:1", + "utxos_info": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8881,9 +8859,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 } ], "next_cursor": 519, @@ -8897,16 +8875,16 @@ "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "destination": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "out_index": 0, - "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "tx_hash": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", "tx_index": 33, - "block_time": 1726773999, + "block_time": 1726815183, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "tx_hash": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", "block_index": 146, - "block_time": 1726773999 + "block_time": 1726815183 } ], "next_cursor": 237, @@ -8919,15 +8897,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "f6d24ca8803c303ea689de2f2b6b151c6898d0f17c23ed2f8818ec427c218ba7", - "messages_hash": "ffaa92281c34cd326d8f5827df097b93a78ef336e9ef91222fef85a5ed6a1d1a", + "ledger_hash": "c35cac3a55dd455eda44fec6808f4b04601d54416913965cf9981a7187e4ca9b", + "messages_hash": "64af7906004d705fe89433fbcec64aab6a352ca56eda19f6490882cfff161834", "transaction_count": 1, - "txlist_hash": "8a852d2d71ba98d2164c3421ab7805a817d816e7f8d9e2df75026288be185e2a", - "block_time": 1726774194 + "txlist_hash": "ffc04a3314302eecc9ed3c67fe1acc91b47b4510370eb27342c9779b5f7490e9", + "block_time": 1726815376 }, "tx_hash": null, "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 } ], "next_cursor": 529, @@ -8940,12 +8918,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "tx_index": 59 }, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 } ], "next_cursor": 528, @@ -8958,15 +8936,15 @@ "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 193, - "event": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "event": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -8976,9 +8954,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 } ], "next_cursor": 525, @@ -8990,16 +8968,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "address": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "event": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726774190, + "block_time": 1726815372, "asset_info": { "divisible": true, "asset_longname": null, @@ -9009,9 +8987,9 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 } ], "next_cursor": 524, @@ -9025,14 +9003,14 @@ "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "memo": null, "quantity": 10000, - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "status": "valid", - "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5", + "tx_hash": "2af0fdfddaf6d357f3e80c38f3319a244b08c584a2b714b8214d8123abc752fb", "tx_index": 53, - "block_time": 1726774169, + "block_time": 1726815350, "asset_info": { "divisible": true, "asset_longname": null, @@ -9042,9 +9020,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "47761b13598c396c4e0a034e7cee0ea4c37ea2100e8c046c87ceeac533f1f1d5", + "tx_hash": "2af0fdfddaf6d357f3e80c38f3319a244b08c584a2b714b8214d8123abc752fb", "block_index": 187, - "block_time": 1726774169 + "block_time": 1726815350 } ], "next_cursor": null, @@ -9058,15 +9036,15 @@ "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "destination": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "status": "valid", - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "tx_index": 54, - "block_time": 1726774173, + "block_time": 1726815355, "asset_info": { "divisible": true, "asset_longname": null, @@ -9076,9 +9054,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "adfb731e5590e5708f8d3c7c42b65f4360df401b3b467dc84a5f2929df87f714", + "tx_hash": "7762d51f9fd9223de97519585aeb1165bcbf482d9ac3ec7b2c67f62217f1c5e3", "block_index": 188, - "block_time": 1726774173 + "block_time": 1726815355 } ], "next_cursor": 495, @@ -9101,20 +9079,20 @@ "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "destination": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "source": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "status": "valid", - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "tx_index": 58, - "block_time": 1726774190, + "block_time": 1726815372, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "a12f632d1381bc168fa9785d918c941d335789271dd5d7bee78fc70b7ecf636b", + "tx_hash": "4546a69988dd5a4d96db8f6f611739347af4ad4d7f29b9cf4c4b43b5d045656c", "block_index": 192, - "block_time": 1726774190 + "block_time": 1726815372 } ], "next_cursor": null, @@ -9131,15 +9109,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "status": "valid", - "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", + "tx_hash": "dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d", "tx_index": 40, - "block_time": 1726774028, + "block_time": 1726815213, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, @@ -9153,9 +9131,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "2367d1a35384d513f7abcfbe8822c982a935ecc7a1e507b0c0d6f073a168e9a6", + "tx_hash": "dcbb0ed93017ca7c7094614dd81d4f371e646cd0eb13285cdfa302d15ecd0a4d", "block_index": 153, - "block_time": 1726774028 + "block_time": 1726815213 } ], "next_cursor": null, @@ -9176,11 +9154,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 159, - "block_time": 1726774063 + "block_time": 1726815249 }, - "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", + "tx_hash": "9a110287c955eba18bfaed58bbce05b2312cb4f078cbb0c0a7cf71d5a12486ed", "block_index": 159, - "block_time": 1726774063 + "block_time": 1726815249 } ], "next_cursor": 367, @@ -9203,22 +9181,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "status": "valid", "transfer": false, - "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", + "tx_hash": "9a110287c955eba18bfaed58bbce05b2312cb4f078cbb0c0a7cf71d5a12486ed", "tx_index": 46, - "block_time": 1726774063, + "block_time": 1726815249, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "73d59c8f1eb810ee22d7a55b461a1cf03067bb5cf684b18e2e961afd182f3a04", + "tx_hash": "9a110287c955eba18bfaed58bbce05b2312cb4f078cbb0c0a7cf71d5a12486ed", "block_index": 159, - "block_time": 1726774063 + "block_time": 1726815249 } ], "next_cursor": 374, @@ -9233,12 +9211,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1q8wlr5mwjx5wug5hs75lzukz8uwrh6y80vpuynd", + "source": "bcrt1qc5c29t0f3uv4ufwjp7yr9cvvx27qz6nauzw45e", "status": "valid", "tag": "64657374726f79", - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "tx_index": 59, - "block_time": 1726774194, + "block_time": 1726815376, "asset_info": { "divisible": true, "asset_longname": null, @@ -9248,9 +9226,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "6ba3d583a4a63150db7c7c3c44ccb2eac47cdafde496ee59c2a4e1e9588fab0c", + "tx_hash": "70431fe65593fcf7cdd94f62ae9a00dbe3d2df44f961791222ffd2063449836b", "block_index": 193, - "block_time": 1726774194 + "block_time": 1726815376 } ], "next_cursor": 157, @@ -9275,11 +9253,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "status": "open", - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "tx_index": 57, - "block_time": 1726774186, + "block_time": 1726815367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9303,9 +9281,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "fea8fabe8387cd2ba8ad235b01b846556bb361f4a81912ca7f62c026a6af2f4e", + "tx_hash": "c1c080b6d03a01d82b8c01d674f514968b6c1d7914ac286108e242bbd7be8aba", "block_index": 191, - "block_time": 1726774186 + "block_time": 1726815367 } ], "next_cursor": 502, @@ -9323,20 +9301,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032", + "tx0_hash": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346", "tx0_index": 49, - "tx1_address": "bcrt1q7zwj89g3amjzt0sr84qr6hxrtnp8r7gx9qmegr", + "tx1_address": "bcrt1q4c7djjlwcjnkfwvks0d9r69a0ytcpztm9fkswl", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "tx1_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "tx1_index": 52, - "block_time": 1726774164, + "block_time": 1726815346, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9355,9 +9333,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "69c13c98819367272ee2ff61dd5a5c37d8ced52b7aa652fe2342039132334646", + "tx_hash": "598b82ec9d99f0541528715712f70c0cf7e779dcc2f8ec220153d346eaf26872", "block_index": 186, - "block_time": 1726774164 + "block_time": 1726815346 } ], "next_cursor": 461, @@ -9370,11 +9348,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e" + "tx_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b" }, - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "block_index": 190, - "block_time": 1726774182 + "block_time": 1726815363 } ], "next_cursor": 476, @@ -9387,11 +9365,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f" + "tx_hash": "8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392" }, - "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", + "tx_hash": "85ed946aefb8bc2f75e5c983d94c8480b4ff7f62d1ac364f1ddd964a83529eb8", "block_index": 185, - "block_time": 1726774160 + "block_time": 1726815342 } ], "next_cursor": null, @@ -9403,13 +9381,13 @@ "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", - "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", + "id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", + "order_match_id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", "status": "completed" }, - "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", + "tx_hash": "85ed946aefb8bc2f75e5c983d94c8480b4ff7f62d1ac364f1ddd964a83529eb8", "block_index": 185, - "block_time": 1726774160 + "block_time": 1726815342 } ], "next_cursor": 440, @@ -9423,18 +9401,18 @@ "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "order_match_id": "32f496e84b31c754c1fc2fa15fa6fdf17efad323e4e8f6991127f6a2b4010032_e96157e56011374afe3fac448daad8ca6de093877d33d4c9830de9f2557b586f", - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "destination": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "order_match_id": "8b7b278ba8e7e71a3d52e644927627803a9a79c77d7e8071ce109cda4fa1a346_8eaae9a6414adde96dfa8c5077722bcd8346f99bad61f40f972a152fe7001392", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "status": "valid", - "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", + "tx_hash": "85ed946aefb8bc2f75e5c983d94c8480b4ff7f62d1ac364f1ddd964a83529eb8", "tx_index": 51, - "block_time": 1726774160, + "block_time": 1726815342, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "c7c422243731c43f427a9ab49003326fa23d678aa709a05e8be75caf2b214e72", + "tx_hash": "85ed946aefb8bc2f75e5c983d94c8480b4ff7f62d1ac364f1ddd964a83529eb8", "block_index": 185, - "block_time": 1726774160 + "block_time": 1726815342 } ], "next_cursor": null, @@ -9447,16 +9425,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "ea4b57755b31820d7baf02c49c33fa0aac716e21cc2ecdaaad137b3143da837e", - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "offer_hash": "13dba7a88acddbe687401f1ba4374f6cf1df378550f77726e9f4d3b9e56aef9b", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "status": "valid", - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "tx_index": 56, - "block_time": 1726774182 + "block_time": 1726815363 }, - "tx_hash": "0a44fe12cf05fd81919217a2f3b7fe5c16bd716b808db669d617d46c3e83c031", + "tx_hash": "802601a53ec681d6b4aba1c5b47fc2b6575b6d3923373a3a5e649c0f753083d2", "block_index": 190, - "block_time": 1726774182 + "block_time": 1726815363 } ], "next_cursor": null, @@ -9469,13 +9447,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "block_time": 1726774079 + "order_hash": "18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "block_time": 1726815264 }, "tx_hash": null, "block_index": 182, - "block_time": 1726774079 + "block_time": 1726815264 } ], "next_cursor": 446, @@ -9488,14 +9466,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "2a6fd55c8dac6baadbbe52dd54d1e9c29a92db627c33b141e93d8a0bd1c2b8e3_1cb6b06e663bba8b4783833d661fa60e93783a12750cda6613ec5c187688fc46", - "tx0_address": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "tx1_address": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", - "block_time": 1726774079 + "order_match_id": "d03041070c15fba3d77e65d5aeb9c3f88c777ab03a5639e0ed845cbdfde234e7_18bd2377dfd4b83a1010dcad2ca53d0b4b14dc303693f948e75f4c405f77f569", + "tx0_address": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "tx1_address": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", + "block_time": 1726815264 }, "tx_hash": null, "block_index": 182, - "block_time": 1726774079 + "block_time": 1726815264 } ], "next_cursor": null, @@ -9513,14 +9491,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", - "origin": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "oracle_address": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", + "origin": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "satoshirate": 1, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "status": 0, - "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", "tx_index": 32, - "block_time": 1726773995, + "block_time": 1726815178, "asset_info": { "divisible": true, "asset_longname": null, @@ -9533,9 +9511,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", "block_index": 145, - "block_time": 1726773995 + "block_time": 1726815178 } ], "next_cursor": 254, @@ -9550,9 +9528,9 @@ "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "status": 0, - "tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", + "tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", "asset_info": { "divisible": true, "asset_longname": null, @@ -9562,9 +9540,9 @@ }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "tx_hash": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", "block_index": 146, - "block_time": 1726773999 + "block_time": 1726815183 } ], "next_cursor": 260, @@ -9578,13 +9556,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mnMNuY8rdFkTAqCBgrNvdm4pYk5Emb6kRP", + "destination": "mxTLR1ydnf6nAJYW3zCbbSZeyBGcXHkpRw", "dispense_quantity": 10, - "dispenser_tx_hash": "51735aedef989952f6214819fcb36efd3a63aebc59b9e0cd5daf137cf895e871", - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", - "tx_hash": "03a5ab84754e8fde5c6f7f3e14c6a0f69339979e800a1e7fa16f82baa3cf62d7", + "dispenser_tx_hash": "02762a4f55190e571b19a19348ee8f6412b45913745ee7cb62c747172108246c", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", + "tx_hash": "0acc5f3d95d0e78f09173f0037021916649ab252b2c55455e8c0fcc6f15143ff", "tx_index": 31, - "block_time": 1726773991, + "block_time": 1726815174, "asset_info": { "divisible": true, "asset_longname": null, @@ -9594,9 +9572,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "03a5ab84754e8fde5c6f7f3e14c6a0f69339979e800a1e7fa16f82baa3cf62d7", + "tx_hash": "0acc5f3d95d0e78f09173f0037021916649ab252b2c55455e8c0fcc6f15143ff", "block_index": 144, - "block_time": 1726773991 + "block_time": 1726815174 } ], "next_cursor": null, @@ -9611,14 +9589,14 @@ "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qn8r8ryhg8ucrj3lsdpfw0ehzk5krj8twdlhc3f", + "destination": "bcrt1qhr9ppws373yl4skncqlp5e503xj03lk3whp7we", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "db4c1efb5a8a102c3c13e13a251d09f19de8b9c419c2c838d9c65f9516690c3e", - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", - "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "dispenser_tx_hash": "3e0169a0fbcacfb257ca5a182116254f61692f1496884288fa9f475a45eee818", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", + "tx_hash": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", "tx_index": 33, - "block_time": 1726773999, + "block_time": 1726815183, "asset_info": { "divisible": true, "asset_longname": null, @@ -9629,9 +9607,9 @@ "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "cfb3b97ca7c0a0f76a71e11a0c47f2a7c0982e24eb4dbccb3702aaecf663d942", + "tx_hash": "b72599be1d2708a1f83b2e0bfeaeb498be57da2a938e21881d72b8da73d41d05", "block_index": 146, - "block_time": 1726773999 + "block_time": 1726815183 } ], "next_cursor": 240, @@ -9646,19 +9624,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qmfwsvf292e8kj4q9a70durdm8dwwx8638z0guu", + "source": "bcrt1qdr3ph4ku0uctg9nqq07vq3jhftwefmq4f55n9n", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c", + "tx_hash": "8b28dd31f49228d2203cd7fcfa8b9062b26a1691283c8ed214f508aebe94a44e", "tx_index": 25, "value": 66600.0, - "block_time": 1726773966, + "block_time": 1726815138, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "16ae436eb65fa2cda9ae144b1cafcf9d324690702f4c5fd61624ab0516acbc9c", + "tx_hash": "8b28dd31f49228d2203cd7fcfa8b9062b26a1691283c8ed214f508aebe94a44e", "block_index": 138, - "block_time": 1726773966 + "block_time": 1726815138 } ], "next_cursor": 213, @@ -9689,16 +9667,16 @@ "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "start_block": 0, "status": "open", - "tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", + "tx_hash": "f2ee7f4036c7cc051cf8e2a20e32425a200f9b9166a04d94e90279ccdd5d024b", "tx_index": 22, - "block_time": 1726773953 + "block_time": 1726815126 }, - "tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", + "tx_hash": "f2ee7f4036c7cc051cf8e2a20e32425a200f9b9166a04d94e90279ccdd5d024b", "block_index": 135, - "block_time": 1726773953 + "block_time": 1726815126 } ], "next_cursor": 161, @@ -9711,11 +9689,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "8bf6a822f10cccc625da7811b776e108fadf45d1b9255b1ab005583ec7c9df68" + "tx_hash": "35a7ddf4a16bb7075ce86310a406d213e899b51a36556396066c9db61b876ace" }, "tx_hash": null, "block_index": 130, - "block_time": 1726773912 + "block_time": 1726815104 } ], "next_cursor": 110, @@ -9731,24 +9709,24 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "c606e2cab0fab65445d615b3135af274925148b1156babae30e3ea60dd841d40", + "fairminter_tx_hash": "f2ee7f4036c7cc051cf8e2a20e32425a200f9b9166a04d94e90279ccdd5d024b", "paid_quantity": 34, - "source": "bcrt1q55wn2gv6usv298trtwpwjxggsyjcedry433kqv", + "source": "bcrt1q3lhljlgagn9wvqxcy2qj7nlmegpr282yhpjsaf", "status": "valid", - "tx_hash": "ed4ea8c5e199862917e614d38a53e76af1da07f9c981ba9c4c961244f169fea7", + "tx_hash": "adf60b006a2dcd134e0e5faadf2d887a7f868f9bc6480ce7ad700283036454ef", "tx_index": 23, - "block_time": 1726773957, + "block_time": 1726815130, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false } }, - "tx_hash": "ed4ea8c5e199862917e614d38a53e76af1da07f9c981ba9c4c961244f169fea7", + "tx_hash": "adf60b006a2dcd134e0e5faadf2d887a7f868f9bc6480ce7ad700283036454ef", "block_index": 136, - "block_time": 1726773957 + "block_time": 1726815130 } ], "next_cursor": 190, @@ -9762,28 +9740,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e:1", + "destination": "73f33445bb6ef1ba7081a2f649acc7c7d63d07e8ae0bda9324481991a50c3dc9:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "source": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "status": "valid", - "tx_hash": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", + "tx_hash": "73f33445bb6ef1ba7081a2f649acc7c7d63d07e8ae0bda9324481991a50c3dc9", "tx_index": 38, - "block_time": 1726774019, + "block_time": 1726815204, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "53ded9ffacbc10873033f614018f591e782af129765476d8e416f496a6be161e", + "tx_hash": "73f33445bb6ef1ba7081a2f649acc7c7d63d07e8ae0bda9324481991a50c3dc9", "block_index": 151, - "block_time": 1726774019 + "block_time": 1726815204 } ], "next_cursor": 291, @@ -9797,28 +9775,28 @@ "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qdpq99w3vep4q6ugzufu2d8v7k3v5eg4fxanfg9", + "destination": "bcrt1qdp2athf6h3fqgwf5wkz79lg2a7m8gj06zptffm", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "67db055172fd889ca6fa9cc47fa2ab086efcdc03871cefc9a0e6833aa2cffadc:0", + "source": "a765061f6252188ff4cc3b6558223a79dcdb9ce3924998af5a62e47f793ce837:0", "status": "valid", - "tx_hash": "1cfb953bd23a5d5edaeccfd49b0528b6597e10acdd7f9956bc3ea49468400cfd", + "tx_hash": "107375514b4bf3351449b9cbbd7ddf635e1f9a7e87c1cb923ada7d25c334534f", "tx_index": 37, - "block_time": 1726774015, + "block_time": 1726815200, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ed7648xpnnry4xg5l7yeg3mkz2j60a5784e6u", + "issuer": "bcrt1q2t6gq9freq855jdwezganx7zm7larn5az7qwh3", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1cfb953bd23a5d5edaeccfd49b0528b6597e10acdd7f9956bc3ea49468400cfd", + "tx_hash": "107375514b4bf3351449b9cbbd7ddf635e1f9a7e87c1cb923ada7d25c334534f", "block_index": 150, - "block_time": 1726774015 + "block_time": 1726815200 } ], "next_cursor": null, @@ -9832,14 +9810,14 @@ "params": { "asset": "XCP", "block_index": 155, - "destination": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4:1", + "destination": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751:1", "msg_index": 1, "quantity": 1500000000, - "source": "b50b9489e11a3841734f9bfa4ef3777ff4dc55be0688de2719b9a9c003970d4f:0", + "source": "4fe40db20831d35ad52100fa53258383faa657107021697a63a3be4cb3382ac9:0", "status": "valid", - "tx_hash": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", + "tx_hash": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751", "tx_index": 42, - "block_time": 1726774036, + "block_time": 1726815221, "asset_info": { "divisible": true, "asset_longname": null, @@ -9849,9 +9827,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "7ad57447c4a262d50e07b2c51d2169d12003fdccdc935a773d15cace8aad2ab4", + "tx_hash": "5a3a78267f88593ce235c3a8b2246a96a39b0cdff5e2b10730c8bf7a50d43751", "block_index": 155, - "block_time": 1726774036 + "block_time": 1726815221 } ], "next_cursor": 346, @@ -9866,17 +9844,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qx026kexytkv73h2sucljqxmu6dz8q5qsfvp3mw", + "source": "bcrt1qs6kaxznfkfgmxhalmv840fldjqr2d7hnltn6xh", "status": "valid", - "tx_hash": "b7f0dde4bbad6994cc0193c8774206f9809c5f83989c87a66b294ca6afb2a852", + "tx_hash": "6734c2c20a328e6e65f4464f0e38b929b8cf906f0e0c4016af2baebe977fac4c", "tx_index": 9, - "block_time": 1726773875, + "block_time": 1726815066, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "b7f0dde4bbad6994cc0193c8774206f9809c5f83989c87a66b294ca6afb2a852", + "tx_hash": "6734c2c20a328e6e65f4464f0e38b929b8cf906f0e0c4016af2baebe977fac4c", "block_index": 121, - "block_time": 1726773875 + "block_time": 1726815066 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/utxolocks_test.py b/counterparty-core/counterpartycore/test/utxolocks_test.py index 9a15b55581..db4e36fc65 100644 --- a/counterparty-core/counterpartycore/test/utxolocks_test.py +++ b/counterparty-core/counterpartycore/test/utxolocks_test.py @@ -19,10 +19,10 @@ FIXTURE_OPTIONS = {"utxo_locks_max_addresses": 2000} -def construct_tx(db, source, destination, disable_utxo_locks=False, input_set=None): +def construct_tx(db, source, destination, disable_utxo_locks=False, inputs_set=None): tx_info = send.compose(db, source, destination, "XCP", 1) return transaction.construct( - db, tx_info, disable_utxo_locks=disable_utxo_locks, input_set=input_set + db, tx_info, disable_utxo_locks=disable_utxo_locks, inputs_set=inputs_set ) @@ -53,7 +53,7 @@ def test_utxolocks_custom_input(server_db): transaction.initialise(force=True) # reset UTXO_LOCKS """it should use the same UTXO""" - input_set = [ + inputs_set = [ { "txid": "b9fc3aa355b77ecb63282fc96e63912a253e98bf9cf441fbfbecc3fb277c4985", "txhex": "0100000003114bbc2ce4f18490cd33fa17ad747f2cbb932fe4bd628e7729f18e73caa9c824000000006b4830450220170594244dacb99013340f07ca7da05c91d2f235094481213abf3b3648ff12ab022100ea612f4326e074daeb3f3b92bce7862c7377d16e66930415cb33930e773d8600012103bdd82e7398e604438316511b7be56925256b5b1f64b508432f4b4e3e728db637ffffffff22fcc4468552b950781e3facbf75a27b8d633cb7299f02b4bcc3615d9923bcfb000000006b483045022051ed13a5bf5e9ea753f0b2e4e76d1bea73de912e214314ed96e043ad21f53dee022100f6556d547c5012fcbd3348f71da8fe03eb101f73b7b1b366e3937119cc87a90c01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffffe5237334401359af1cc80b3b4af969fab42e92e636ef0523df6b68122f23d952000000006b483045022100cd74fe9ca13e44607521f410468979ed9e0b3addef2a9d48e08bf608d72c446c022058753f930f2d394410c3e6e950788e6b0371d4403ef5a9dc194980218de5ac76012102ab7a70956655c4d4cc44b73587ae70a21ab0db9ba8d704b97d911ea3bf1e5d67ffffffff02ffb3a900000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac0065cd1d000000001976a914d1ba3ba3d6f5ad06b148bcc04151ecab84fc397988ac00000000", @@ -69,13 +69,13 @@ def test_utxolocks_custom_input(server_db): server_db, "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - input_set=input_set, + inputs_set=inputs_set, ) tx2hex = construct_tx( server_db, "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - input_set=input_set, + inputs_set=inputs_set, ) tx1f = BytesIO(binascii.unhexlify(tx1hex)) diff --git a/release-notes/release-notes-v10.4.1.md b/release-notes/release-notes-v10.4.1.md index 027c2b8489..6699093db3 100644 --- a/release-notes/release-notes-v10.4.1.md +++ b/release-notes/release-notes-v10.4.1.md @@ -15,7 +15,7 @@ ## API -* Add support for `input_set` parameter +* Add support for `inputs_set` parameter ## CLI From 50a89c0c500de1223a29a864ec202bb7020fa6bd Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 20 Sep 2024 09:59:01 +0000 Subject: [PATCH 22/46] update release notes --- release-notes/release-notes-v10.4.1.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/release-notes/release-notes-v10.4.1.md b/release-notes/release-notes-v10.4.1.md index 6699093db3..857a8b85ed 100644 --- a/release-notes/release-notes-v10.4.1.md +++ b/release-notes/release-notes-v10.4.1.md @@ -10,12 +10,23 @@ ## Bugfixes * Fix order cache: update cache when an order is filled +* Fix typo in `protocol_changes.json` +* Fix division by zero in `api.util.divide()` +* Catch invalid raw transaction in `/v2/transactions/info` endpoint ## Codebase +* Don't report expected errors to Sentry in API v1 +* Use `trace` instead of `warning` for "Prefetch queue is empty." message +* Use debug for expected and handled `yoyo` migration error +* Support Python 3.10 and 3.11 only +* Move Compose API to `api/compose.py` module + ## API * Add support for `inputs_set` parameter +* Add the following route: + - `/v2/transactions//info` (This route works if the tx is in the mempool of the queried node) ## CLI From 564a175993d104aefa4b7c641c5d194afc1849ef Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 21 Sep 2024 18:38:51 +0000 Subject: [PATCH 23/46] Refactor transaction.py phase 1 --- apiary.apib | 3386 +++++++++-------- .../counterpartycore/lib/transaction.py | 647 ++-- .../counterpartycore/test/fixtures/vectors.py | 4 +- .../test/regtest/apidoc/apicache.json | 3054 +++++++-------- .../test/regtest/testscenarios.py | 2 +- 5 files changed, 3609 insertions(+), 3484 deletions(-) diff --git a/apiary.apib b/apiary.apib index 56e94195bc..e53734e890 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-09-20 09:44:39.686481. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-09-21 18:37:05.556760. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -179,15 +179,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", "block_index": 193, - "block_time": 1726825461, + "block_time": 1726943809, "difficulty": 545259519, - "previous_block_hash": "666ed1a2f7c2924a82e4d8e9d3b3d6c367f1850f8cdb1303858ab48bbf78d7b6" + "previous_block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f" }, "tx_hash": null, "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 } ], "next_cursor": 518, @@ -204,17 +204,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", "block_index": 193, - "block_time": 1726825461, + "block_time": 1726943809, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "tx_index": 59, - "utxos_info": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982:1", + "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -234,9 +234,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 } ], "next_cursor": 519, @@ -255,16 +255,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "destination": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "out_index": 0, - "tx_hash": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", + "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", "tx_index": 33, - "block_time": 1726825274, + "block_time": 1726943634, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", + "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", "block_index": 146, - "block_time": 1726825274 + "block_time": 1726943634 } ], "next_cursor": 237, @@ -282,15 +282,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "16a2a4d25db0bdbc4b8b59436e96066cfb1fae75bf3485f694e86481b001a4d8", - "messages_hash": "f4dc020ee1b28cf6418bf348d583d9fd9eb4670253b0537a52e0820b98904bd7", + "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", + "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", "transaction_count": 1, - "txlist_hash": "15f051ecea1b0e7dc7afa64a941fb638b8014c03d0f629c8426274d9bd419803", - "block_time": 1726825461 + "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", + "block_time": 1726943809 }, "tx_hash": null, "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 } ], "next_cursor": 529, @@ -308,12 +308,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "tx_index": 59 }, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 } ], "next_cursor": 528, @@ -333,15 +333,15 @@ Here is a list of events classified by theme and for each an example response: "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 193, - "event": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "event": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -351,9 +351,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 } ], "next_cursor": 525, @@ -370,16 +370,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -389,9 +389,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 } ], "next_cursor": 524, @@ -410,14 +410,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "memo": null, "quantity": 10000, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "status": "valid", - "tx_hash": "59e81ffd913405acb74f32dfc79bccf2605e8b41c6117f26b184127c9adaf747", + "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f", "tx_index": 53, - "block_time": 1726825436, + "block_time": 1726943785, "asset_info": { "divisible": true, "asset_longname": null, @@ -427,9 +427,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "59e81ffd913405acb74f32dfc79bccf2605e8b41c6117f26b184127c9adaf747", + "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f", "block_index": 187, - "block_time": 1726825436 + "block_time": 1726943785 } ], "next_cursor": null, @@ -448,15 +448,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "status": "valid", - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "tx_index": 54, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "divisible": true, "asset_longname": null, @@ -466,9 +466,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "block_time": 1726825440 + "block_time": 1726943789 } ], "next_cursor": 495, @@ -506,20 +506,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "status": "valid", - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, - "block_time": 1726825457, + "block_time": 1726943805, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 } ], "next_cursor": null, @@ -541,15 +541,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": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "status": "valid", - "tx_hash": "d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8", + "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", "tx_index": 40, - "block_time": 1726825303, + "block_time": 1726943663, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -563,9 +563,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": "d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8", + "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", "block_index": 153, - "block_time": 1726825303 + "block_time": 1726943663 } ], "next_cursor": null, @@ -598,11 +598,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": 159, - "block_time": 1726825340 + "block_time": 1726943687 }, - "tx_hash": "10cfae46493da7d2e6bf22d408237bbce06107cad0667073471cd7a2b03ac7e6", + "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", "block_index": 159, - "block_time": 1726825340 + "block_time": 1726943687 } ], "next_cursor": 367, @@ -630,22 +630,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": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "status": "valid", "transfer": false, - "tx_hash": "10cfae46493da7d2e6bf22d408237bbce06107cad0667073471cd7a2b03ac7e6", + "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", "tx_index": 46, - "block_time": 1726825340, + "block_time": 1726943687, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "10cfae46493da7d2e6bf22d408237bbce06107cad0667073471cd7a2b03ac7e6", + "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", "block_index": 159, - "block_time": 1726825340 + "block_time": 1726943687 } ], "next_cursor": 374, @@ -665,12 +665,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "status": "valid", "tag": "64657374726f79", - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "tx_index": 59, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -680,9 +680,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 } ], "next_cursor": 157, @@ -714,11 +714,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": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "status": "open", - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "tx_index": 57, - "block_time": 1726825453, + "block_time": 1726943802, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -742,9 +742,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": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "block_time": 1726825453 + "block_time": 1726943802 } ], "next_cursor": 502, @@ -767,20 +767,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": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", "tx0_index": 49, - "tx1_address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "tx1_index": 52, - "block_time": 1726825432, + "block_time": 1726943781, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -799,9 +799,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": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "tx_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "block_index": 186, - "block_time": 1726825432 + "block_time": 1726943781 } ], "next_cursor": 461, @@ -819,11 +819,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a" + "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8" }, - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "block_index": 190, - "block_time": 1726825449 + "block_time": 1726943798 } ], "next_cursor": 476, @@ -841,11 +841,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff" + "tx_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294" }, - "tx_hash": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d", + "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", "block_index": 185, - "block_time": 1726825427 + "block_time": 1726943776 } ], "next_cursor": null, @@ -862,13 +862,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", - "order_match_id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "status": "completed" }, - "tx_hash": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d", + "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", "block_index": 185, - "block_time": 1726825427 + "block_time": 1726943776 } ], "next_cursor": 440, @@ -887,18 +887,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "order_match_id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "status": "valid", - "tx_hash": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d", + "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", "tx_index": 51, - "block_time": 1726825427, + "block_time": 1726943776, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d", + "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", "block_index": 185, - "block_time": 1726825427 + "block_time": 1726943776 } ], "next_cursor": null, @@ -916,16 +916,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "status": "valid", - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "tx_index": 56, - "block_time": 1726825449 + "block_time": 1726943798 }, - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "block_index": 190, - "block_time": 1726825449 + "block_time": 1726943798 } ], "next_cursor": null, @@ -943,13 +943,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "block_time": 1726825356 + "order_hash": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "block_time": 1726943703 }, "tx_hash": null, "block_index": 182, - "block_time": 1726825356 + "block_time": 1726943703 } ], "next_cursor": 446, @@ -967,14 +967,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b_7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "tx1_address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "block_time": 1726825356 + "order_match_id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "block_time": 1726943703 }, "tx_hash": null, "block_index": 182, - "block_time": 1726825356 + "block_time": 1726943703 } ], "next_cursor": null, @@ -999,14 +999,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": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", - "origin": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "satoshirate": 1, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "status": 0, - "tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", + "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", "tx_index": 32, - "block_time": 1726825270, + "block_time": 1726943630, "asset_info": { "divisible": true, "asset_longname": null, @@ -1019,9 +1019,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": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", + "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", "block_index": 145, - "block_time": 1726825270 + "block_time": 1726943630 } ], "next_cursor": 254, @@ -1041,9 +1041,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "status": 0, - "tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", + "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", "asset_info": { "divisible": true, "asset_longname": null, @@ -1053,9 +1053,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", + "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", "block_index": 146, - "block_time": 1726825274 + "block_time": 1726943634 } ], "next_cursor": 260, @@ -1074,13 +1074,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "ms48hnZTjeTsNXyBuLcWPRMrqz7Ko9awMB", + "destination": "mnFNV6wfK94ay8hxrDH4jGrSPTwRBmePWL", "dispense_quantity": 10, - "dispenser_tx_hash": "a5fce55057a25a0e4f1a17eca63c2121a48e1802c130a7b0b5d172928cfa9141", - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "tx_hash": "a99e0620b36a633808a6dc3d6e4ec0e63145e9cc43b20653ac99776d26d23da5", + "dispenser_tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx_hash": "8ee82991c0b27326c3967002388a490584097696bdce50c624fb03d2516758db", "tx_index": 31, - "block_time": 1726825266, + "block_time": 1726943625, "asset_info": { "divisible": true, "asset_longname": null, @@ -1090,9 +1090,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "a99e0620b36a633808a6dc3d6e4ec0e63145e9cc43b20653ac99776d26d23da5", + "tx_hash": "8ee82991c0b27326c3967002388a490584097696bdce50c624fb03d2516758db", "block_index": 144, - "block_time": 1726825266 + "block_time": 1726943625 } ], "next_cursor": null, @@ -1112,14 +1112,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt", + "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", - "tx_hash": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", + "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", "tx_index": 33, - "block_time": 1726825274, + "block_time": 1726943634, "asset_info": { "divisible": true, "asset_longname": null, @@ -1130,9 +1130,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", + "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", "block_index": 146, - "block_time": 1726825274 + "block_time": 1726943634 } ], "next_cursor": 240, @@ -1154,19 +1154,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": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "7afd835b6e2698c872818ef165eacb80569bf7feb379434a7a8500f2ca203a5e", + "tx_hash": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea", "tx_index": 25, "value": 66600.0, - "block_time": 1726825230, + "block_time": 1726943590, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "7afd835b6e2698c872818ef165eacb80569bf7feb379434a7a8500f2ca203a5e", + "tx_hash": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea", "block_index": 138, - "block_time": 1726825230 + "block_time": 1726943590 } ], "next_cursor": 213, @@ -1204,16 +1204,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "start_block": 0, "status": "open", - "tx_hash": "70a08a09be7e7db658afd9643104aa69036256014c37028c4cf48c03228597bd", + "tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", "tx_index": 22, - "block_time": 1726825217 + "block_time": 1726943577 }, - "tx_hash": "70a08a09be7e7db658afd9643104aa69036256014c37028c4cf48c03228597bd", + "tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", "block_index": 135, - "block_time": 1726825217 + "block_time": 1726943577 } ], "next_cursor": 161, @@ -1231,11 +1231,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "019c1a0e87d4fc9a572746bc4785e4a308e1827daaa4e9a77bc61c0d0ce7fc75" + "tx_hash": "f8863d06dd1c63af927665e2741a68593285bb4a52bbadf58685b17809c50470" }, "tx_hash": null, "block_index": 130, - "block_time": 1726825197 + "block_time": 1726943556 } ], "next_cursor": 110, @@ -1256,24 +1256,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "70a08a09be7e7db658afd9643104aa69036256014c37028c4cf48c03228597bd", + "fairminter_tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", "paid_quantity": 34, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "status": "valid", - "tx_hash": "df594a32bdedb9f8407dde28c2412506a53badab07b2cbce3e4919633c06b316", + "tx_hash": "296a4a2f8facf4a5ccf44ab044c61ea9b9216a3071599a39f70b231bc11801f0", "tx_index": 23, - "block_time": 1726825221, + "block_time": 1726943581, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } }, - "tx_hash": "df594a32bdedb9f8407dde28c2412506a53badab07b2cbce3e4919633c06b316", + "tx_hash": "296a4a2f8facf4a5ccf44ab044c61ea9b9216a3071599a39f70b231bc11801f0", "block_index": 136, - "block_time": 1726825221 + "block_time": 1726943581 } ], "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": 151, - "destination": "b144bf44a59f20f97233b6b2f8df8815e33ae7cd0fd284bfe3f95e1da2f77164:1", + "destination": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "status": "valid", - "tx_hash": "b144bf44a59f20f97233b6b2f8df8815e33ae7cd0fd284bfe3f95e1da2f77164", + "tx_hash": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", "tx_index": 38, - "block_time": 1726825295, + "block_time": 1726943654, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "b144bf44a59f20f97233b6b2f8df8815e33ae7cd0fd284bfe3f95e1da2f77164", + "tx_hash": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", "block_index": 151, - "block_time": 1726825295 + "block_time": 1726943654 } ], "next_cursor": 291, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qer50mmddxamklxlnhp2ts8wg0ajzqns2mleqhf", + "destination": "bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "330e4c148d12cfcceb7de4268c14d00bf280ab8a2d4d34fd7681c805ce7932aa:0", + "source": "cc7990d855f354e057a6e08b954da3db23de867816732e8fc48f06b3fcadb83b:0", "status": "valid", - "tx_hash": "0d50c7d10fe1a5942c143ae0b53b6fa4e48148c36d47ab3de093dc895c38146b", + "tx_hash": "97881a57024ad6e05e14ae9d17fff8be24276335e8f9afefcce9b70168d36808", "tx_index": 37, - "block_time": 1726825290, + "block_time": 1726943651, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "0d50c7d10fe1a5942c143ae0b53b6fa4e48148c36d47ab3de093dc895c38146b", + "tx_hash": "97881a57024ad6e05e14ae9d17fff8be24276335e8f9afefcce9b70168d36808", "block_index": 150, - "block_time": 1726825290 + "block_time": 1726943651 } ], "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": 155, - "destination": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f:1", + "destination": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c:1", "msg_index": 1, "quantity": 1500000000, - "source": "3fef13f6bcdd2af88bb1ea176f0e66bd711f27abee3a15cd5d9f024a2ca9712b:0", + "source": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1:0", "status": "valid", - "tx_hash": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f", + "tx_hash": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", "tx_index": 42, - "block_time": 1726825313, + "block_time": 1726943670, "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": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f", + "tx_hash": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", "block_index": 155, - "block_time": 1726825313 + "block_time": 1726943670 } ], "next_cursor": 346, @@ -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": "bcrt1qy6cw9lzzwxl4z390c2kml2pgpxu6stzez3l2xz", + "source": "bcrt1qxmw2n03dl0jlw8ap4tg5n9htdske39r04u5amh", "status": "valid", - "tx_hash": "c724be97644ba07ec1c9f927fbec7f0af277326c1db1abbd8979c6cc79c326e9", + "tx_hash": "338720d47c7ab728d1364edded99b5ecf28424429f2e3506bb6c2812aa8f8513", "tx_index": 9, - "block_time": 1726825158, + "block_time": 1726943518, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "c724be97644ba07ec1c9f927fbec7f0af277326c1db1abbd8979c6cc79c326e9", + "tx_hash": "338720d47c7ab728d1364edded99b5ecf28424429f2e3506bb6c2812aa8f8513", "block_index": 121, - "block_time": 1726825158 + "block_time": 1726943518 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 193, - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", - "block_time": 1726825461, - "previous_block_hash": "666ed1a2f7c2924a82e4d8e9d3b3d6c367f1850f8cdb1303858ab48bbf78d7b6", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_time": 1726943809, + "previous_block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", "difficulty": 545259519, - "ledger_hash": "16a2a4d25db0bdbc4b8b59436e96066cfb1fae75bf3485f694e86481b001a4d8", - "txlist_hash": "15f051ecea1b0e7dc7afa64a941fb638b8014c03d0f629c8426274d9bd419803", - "messages_hash": "f4dc020ee1b28cf6418bf348d583d9fd9eb4670253b0537a52e0820b98904bd7", + "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", + "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", + "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "666ed1a2f7c2924a82e4d8e9d3b3d6c367f1850f8cdb1303858ab48bbf78d7b6", - "block_time": 1726825457, - "previous_block_hash": "55cbd37166a9a25349e5eaecdc54a6013ce7f007f24bbf56a470c2578737fc07", + "block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", + "block_time": 1726943805, + "previous_block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", "difficulty": 545259519, - "ledger_hash": "f898081f65b9981e398a8502a2e441e7abd1321ab93252d4353c96a4acf0a685", - "txlist_hash": "3bebbb53ce9aff00b0ae5909d2243058aa5d933feffe201661700ee25d4310fa", - "messages_hash": "f09546e6c48a207ce7fc47a675010669410a22ff1d3de883fbd80e9bd1e07ffa", + "ledger_hash": "412150712c6869e6ac5019ac1af4fca3e25b87cfd959dfdcf50a375eb0a3fb6c", + "txlist_hash": "d7164fc59cb695753afe073c5bb4774cd53dae324c7128b4984197951e0ece2c", + "messages_hash": "600e929c4505c894ea01a40564eff783657a75a7b33c2369546ae0237130f279", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "55cbd37166a9a25349e5eaecdc54a6013ce7f007f24bbf56a470c2578737fc07", - "block_time": 1726825453, - "previous_block_hash": "29da6fc91ec18423fdab22602a03b65cabcc1f6f52b45b347cab54af4b046c6e", + "block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", + "block_time": 1726943802, + "previous_block_hash": "23b27ef62e72432568ac3d2827afc0d1be45e5a1eb3461f8b58d24ab532f4f66", "difficulty": 545259519, - "ledger_hash": "806e045cfdcfc22f111825aaabd7170dc263f334df2cf07fc8f72b12dc6cc8b0", - "txlist_hash": "4af9fb0462cf23828287fdde6ff78dc9fd5d3ee90d8f91fc3521fd96a7730c3e", - "messages_hash": "b7d7069be27f784a3c7f26eeba8f5a5560711cf7eb1d5841dd4af572166380a0", + "ledger_hash": "347da26f295ca004a4058551b21f0918e3ccfd4d75b47fae6357f9b7d7577707", + "txlist_hash": "ed92b50006ebed219c3b0ee78411f957772394a2d5c189957c6c18bb5bc1d53d", + "messages_hash": "c855a1f4f99540f7cb14aaa43f1f4f8d72b4bcf16b50466e82291b6e7ed76ff4", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "29da6fc91ec18423fdab22602a03b65cabcc1f6f52b45b347cab54af4b046c6e", - "block_time": 1726825449, - "previous_block_hash": "7b9ff65175ed743c0a5542fb04c596ca46b7752c4a3ec2f771df6fc22bcad206", + "block_hash": "23b27ef62e72432568ac3d2827afc0d1be45e5a1eb3461f8b58d24ab532f4f66", + "block_time": 1726943798, + "previous_block_hash": "26cc98a125105d26459d4cdde73737ee6a87200dd1e260833a753985df7a6e96", "difficulty": 545259519, - "ledger_hash": "944f18d3c0f37a64d83d3f872e3cc9a60416b0110253531f01e4616a3c427879", - "txlist_hash": "e7d539bfda76c14bd4571ea2d7c69da172693ffe2c4ba7f4003ab4da2b3caf47", - "messages_hash": "461c9c152e9322aa08eb5271568e0793b2cf973623a51c5643521464178f9446", + "ledger_hash": "75841fb8c87cb673361762b82649a7a4382f8d2b00c0ccd7dbdd26a6784664f0", + "txlist_hash": "9fa98a107f0760d3ea30ab290ddab051bd95e90474fb50fa8dafaaf2705ec337", + "messages_hash": "fcf933ab3251044fb12043cdff6b0895bfc112ad664cbf5ad6787c765180f3d1", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "7b9ff65175ed743c0a5542fb04c596ca46b7752c4a3ec2f771df6fc22bcad206", - "block_time": 1726825444, - "previous_block_hash": "43ca72a55a007c72d131f08f74c4674102ecd3bdf4d74f223797109d9f4add01", + "block_hash": "26cc98a125105d26459d4cdde73737ee6a87200dd1e260833a753985df7a6e96", + "block_time": 1726943793, + "previous_block_hash": "423947d2489b48a6e1d3a68c229e08b6abe64ea53afa8512a39037e9e3d57ed0", "difficulty": 545259519, - "ledger_hash": "bf23941d3159971a54eade390d8700bd726f7d245134562b27d8f04cb82e96bc", - "txlist_hash": "34ebae5c201471e5d1f2bd73e518d23ad23c8bd099cdc094e0eff97e7d59f271", - "messages_hash": "760514fe06d25689b4803ead6b0d6f580fcc7517c124ac2c16fef19a2c2d3b97", + "ledger_hash": "dcbbc021e8d75b82eb4a2d623285bed6a64543f2f7f1db436d3f9fb8294c11c1", + "txlist_hash": "787f716d594b44792069aa2cfc004ed2396f4f5b82b196181800f97d6d5c23a7", + "messages_hash": "63932d87e6b9a88194fdd69f6e03d8e97766771070fb269827c7afbc070cc03a", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 193, - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", - "block_time": 1726825461, - "previous_block_hash": "666ed1a2f7c2924a82e4d8e9d3b3d6c367f1850f8cdb1303858ab48bbf78d7b6", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_time": 1726943809, + "previous_block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", "difficulty": 545259519, - "ledger_hash": "16a2a4d25db0bdbc4b8b59436e96066cfb1fae75bf3485f694e86481b001a4d8", - "txlist_hash": "15f051ecea1b0e7dc7afa64a941fb638b8014c03d0f629c8426274d9bd419803", - "messages_hash": "f4dc020ee1b28cf6418bf348d583d9fd9eb4670253b0537a52e0820b98904bd7", + "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", + "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", + "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9` (str, required) - The index of the block to return + + block_hash: `005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae` (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": 193, - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", - "block_time": 1726825461, - "previous_block_hash": "666ed1a2f7c2924a82e4d8e9d3b3d6c367f1850f8cdb1303858ab48bbf78d7b6", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_time": 1726943809, + "previous_block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", "difficulty": 545259519, - "ledger_hash": "16a2a4d25db0bdbc4b8b59436e96066cfb1fae75bf3485f694e86481b001a4d8", - "txlist_hash": "15f051ecea1b0e7dc7afa64a941fb638b8014c03d0f629c8426274d9bd419803", - "messages_hash": "f4dc020ee1b28cf6418bf348d583d9fd9eb4670253b0537a52e0820b98904bd7", + "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", + "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", + "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 59, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", - "block_time": 1726825461, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_time": 1726943809, + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982:1", + "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1706,11 +1706,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "f898081f65b9981e398a8502a2e441e7abd1321ab93252d4353c96a4acf0a685", - "messages_hash": "f09546e6c48a207ce7fc47a675010669410a22ff1d3de883fbd80e9bd1e07ffa", + "ledger_hash": "412150712c6869e6ac5019ac1af4fca3e25b87cfd959dfdcf50a375eb0a3fb6c", + "messages_hash": "600e929c4505c894ea01a40564eff783657a75a7b33c2369546ae0237130f279", "transaction_count": 1, - "txlist_hash": "3bebbb53ce9aff00b0ae5909d2243058aa5d933feffe201661700ee25d4310fa", - "block_time": 1726825457 + "txlist_hash": "d7164fc59cb695753afe073c5bb4774cd53dae324c7128b4984197951e0ece2c", + "block_time": 1726943805 }, "tx_hash": null }, @@ -1719,43 +1719,43 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58 }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8" + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "status": "valid", - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, - "block_time": 1726825457, + "block_time": 1726943805, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8" + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -1765,22 +1765,22 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8" + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "XCP", "block_index": 192, - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -1790,7 +1790,7 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8" + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" } ], "next_cursor": 524, @@ -1873,16 +1873,16 @@ Returns the events of a block filtered by event "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -1892,57 +1892,57 @@ Returns the events of a block filtered by event }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8" + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8" + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8" + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" } ], "next_cursor": null, @@ -2005,16 +2005,16 @@ Returns the credits of a block "result": [ { "block_index": 192, - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,20 +2026,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2047,20 +2047,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2116,16 +2116,16 @@ Returns the debits of a block "result": [ { "block_index": 193, - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "event": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -2165,24 +2165,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", + "object_id": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", "block_index": 182, "confirmed": true, - "block_time": 1726825356 + "block_time": 1726943703 }, { "type": "order", - "object_id": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b", + "object_id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", "block_index": 182, "confirmed": true, - "block_time": 1726825356 + "block_time": 1726943703 }, { "type": "order_match", - "object_id": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b_7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", + "object_id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", "block_index": 182, "confirmed": true, - "block_time": 1726825356 + "block_time": 1726943703 } ], "next_cursor": null, @@ -2214,13 +2214,13 @@ Returns the cancels of a block "result": [ { "tx_index": 56, - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "block_index": 190, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "offer_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "status": "valid", "confirmed": true, - "block_time": 1726825449 + "block_time": 1726943798 } ], "next_cursor": null, @@ -2252,15 +2252,15 @@ Returns the destructions of a block "result": [ { "tx_index": 59, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -2300,14 +2300,14 @@ Returns the issuances of a block "result": [ { "tx_index": 46, - "tx_hash": "10cfae46493da7d2e6bf22d408237bbce06107cad0667073471cd7a2b03ac7e6", + "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -2322,7 +2322,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825340, + "block_time": 1726943687, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2356,10 +2356,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2367,7 +2367,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "divisible": true, "asset_longname": null, @@ -2380,10 +2380,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2391,11 +2391,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2404,10 +2404,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2415,11 +2415,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2457,27 +2457,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", + "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", - "destination": "bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", + "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "last_status_tx_hash": null, - "origin": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2492,7 +2492,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726825274, + "block_time": 1726943634, "asset_info": { "divisible": true, "asset_longname": null, @@ -2533,16 +2533,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 58, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "fee_paid_normalized": "0.00600000" } ], @@ -2576,17 +2576,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "7afd835b6e2698c872818ef165eacb80569bf7feb379434a7a8500f2ca203a5e", + "tx_hash": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea", "block_index": 138, - "block_hash": "6032c132605fad646fda185c792150f4679730ad5dbaa82d41ad980f7e6007a8", - "block_time": 1726825230, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "block_hash": "783e3e2d5e4ce450234c83deb77f7bd10f45c8a1b28f8742583d1fcdfd397f6a", + "block_time": 1726943590, + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "7afd835b6e2698c872818ef165eacb80569bf7feb379434a7a8500f2ca203a5e:1", + "utxos_info": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2611,25 +2611,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 51, - "tx_hash": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d", + "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", "block_index": 185, - "block_hash": "052570879ea11bd318935d12ea062dab4311e14f3694e245eaae0e58b7012c93", - "block_time": 1726825427, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "destination": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "096ad85b8b9dd2b5eaeb1be8fe0ddc244c436aacac8adbd2a9fa76e6ab9e712e", + "block_time": 1726943776, + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "btc_amount": 2000, "fee": 10000, - "data": "0b78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf252ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "data": "0bde81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914fc869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "supported": true, - "utxos_info": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d:0", + "utxos_info": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx1_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", - "order_match_id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "status": "valid" } }, @@ -2644,23 +2644,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "block_index": 190, - "block_hash": "29da6fc91ec18423fdab22602a03b65cabcc1f6f52b45b347cab54af4b046c6e", - "block_time": 1726825449, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "23b27ef62e72432568ac3d2827afc0d1be45e5a1eb3461f8b58d24ab532f4f66", + "block_time": 1726943798, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "data": "46de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "supported": true, - "utxos_info": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752:1", + "utxos_info": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "status": "valid" } }, @@ -2675,17 +2675,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", - "block_time": 1726825461, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_time": 1726943809, + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982:1", + "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2715,17 +2715,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 32, - "tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", + "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", "block_index": 145, - "block_hash": "6f7a06d0c9d3a0fa390d894ed91c6c0d3f31a1ac9cefb6ac0953ddebf85dd504", - "block_time": 1726825270, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "block_hash": "278af4d2c39e5c92ead142aa68a464c75878f7f8cc608f9edf41760044dff7a6", + "block_time": 1726943630, + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c00000000000000010000000000000001000000000000271000000000000000010080b1a1898f6b831c7349e6dc47e354b91e4797bd88", + "data": "0c00000000000000010000000000000001000000000000271000000000000000010080459d1fbf1cdf35891e4eb21203b753b1242efc5a", "supported": true, - "utxos_info": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97:1", + "utxos_info": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2737,7 +2737,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "status": "valid", "asset_info": { "divisible": true, @@ -2761,17 +2761,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", + "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", "block_index": 146, - "block_hash": "297f5e7c699513584f7004d78d3ea652fe6e9edbd8c37b3d69182a73695f65b4", - "block_time": 1726825274, - "source": "bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt", - "destination": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "block_hash": "2b906b1f5ade530171b223a5a497350aaf2fc2722586ab90dc18ddc8fc7d8fb0", + "block_time": 1726943634, + "source": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", + "destination": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "btc_amount": 10000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566:0", + "utxos_info": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 40, - "tx_hash": "d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8", + "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", "block_index": 153, - "block_hash": "2490875440fa912ba86f80bb7fbfcd30e77984fbf403f928bb2b7ecccb2d404d", - "block_time": 1726825303, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "7a8169d989011e0754ba1483d975e82388545bc4a8ea1044d62d80332d7e9102", + "block_time": 1726943663, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8:1", + "utxos_info": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2814,7 +2814,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2839,17 +2839,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 46, - "tx_hash": "10cfae46493da7d2e6bf22d408237bbce06107cad0667073471cd7a2b03ac7e6", + "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", "block_index": 159, - "block_hash": "2eee4ffa40377ecfd1f616ac334c33d7037cf09d2a25c0b2d9d643ea96f6cdae", - "block_time": 1726825340, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "576e0381390109f1bba5318fecdc7442fb2cfdf97b317fffeb241c4637651e19", + "block_time": 1726943687, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "10cfae46493da7d2e6bf22d408237bbce06107cad0667073471cd7a2b03ac7e6:1", + "utxos_info": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2881,17 +2881,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "block_hash": "55cbd37166a9a25349e5eaecdc54a6013ce7f007f24bbf56a470c2578737fc07", - "block_time": 1726825453, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", + "block_time": 1726943802, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608:1", + "utxos_info": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2934,17 +2934,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "59e81ffd913405acb74f32dfc79bccf2605e8b41c6117f26b184127c9adaf747", + "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f", "block_index": 187, - "block_hash": "2f8507d4aa4fff0469b50f8bb95aec1424606ff8ff1d4320e4ae44631c4904f8", - "block_time": 1726825436, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "block_hash": "58450cb009c474fc9da39531acb546b0c0586f99552953eff8612fcbf407efac", + "block_time": 1726943785, + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710803f58a79291a265f610e74bf153dca296bc399fb2", + "data": "0200000000000000010000000000002710804d58139ca58d4e5278dcc90c123825e920a4c782", "supported": true, - "utxos_info": "59e81ffd913405acb74f32dfc79bccf2605e8b41c6117f26b184127c9adaf747:1", + "utxos_info": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2952,7 +2952,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "memo": null, "asset_info": { "divisible": true, @@ -2975,17 +2975,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "block_hash": "43ca72a55a007c72d131f08f74c4674102ecd3bdf4d74f223797109d9f4add01", - "block_time": 1726825440, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "423947d2489b48a6e1d3a68c229e08b6abe64ea53afa8512a39037e9e3d57ed0", + "block_time": 1726943789, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d34b7d969a887b9498d483ecf3b55ee82f8e299a803a92bf67fd998b844b7ea1a455ec67c46c4bc757803f58a79291a265f610e74bf153dca296bc399fb2400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003802b08c45289028349cc594a15406b2e9391f71c7c80c6ffd5588e4548e249935cfdedfb570089a7e433804d58139ca58d4e5278dcc90c123825e920a4c782400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d:0", + "utxos_info": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2993,14 +2993,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -3008,7 +3008,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3034,23 +3034,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_hash": "666ed1a2f7c2924a82e4d8e9d3b3d6c367f1850f8cdb1303858ab48bbf78d7b6", - "block_time": 1726825457, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", + "block_time": 1726943805, + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04803f58a79291a265f610e74bf153dca296bc399fb2017377656570206d7920617373657473", + "data": "04804d58139ca58d4e5278dcc90c123825e920a4c782017377656570206d7920617373657473", "supported": true, - "utxos_info": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8:1", + "utxos_info": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "flags": 1, "memo": "sweep my assets" } @@ -3083,17 +3083,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 59, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", - "block_time": 1726825461, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_time": 1726943809, + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982:1", + "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3116,23 +3116,23 @@ Returns the list of the last ten transactions }, { "tx_index": 58, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_hash": "666ed1a2f7c2924a82e4d8e9d3b3d6c367f1850f8cdb1303858ab48bbf78d7b6", - "block_time": 1726825457, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", + "block_time": 1726943805, + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04803f58a79291a265f610e74bf153dca296bc399fb2017377656570206d7920617373657473", + "data": "04804d58139ca58d4e5278dcc90c123825e920a4c782017377656570206d7920617373657473", "supported": true, - "utxos_info": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8:1", + "utxos_info": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "flags": 1, "memo": "sweep my assets" } @@ -3150,7 +3150,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000101ff084afd964a2c6f073d71f9a820c08b68a483925b0dd53d24b570a161a5cc2e0100000000ffffffff03d007000000000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc00000000000000004b6a49ed97e16d78406b8c6f1fb1b6777d7199a840b3e6de1d2a05353fd1177b098efacc9a6edfd71b079573df6e1d6e43e2e9255e06db1211026b582d100e26f53bcbbb75f00ae2c11a0fa6e0fd082701000000160014d34b7d969a887b9498d483ecf3b55ee82f8e299a024730440220760eb5b9ad2b31c85dcc2947d7cbbe3415a89b8e6a8234e1fb8ce4eb61ec6626022042ce8555ad2f7d7663e8e9e8aedc331133678b0c3a1b27d3be50811e70c29309012103212abfccc909c537ec0a4b32ac78f66786e1bfc0439a235047a27f7a2f90100600000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000101216e0862c8508a40aec05dd49145343698c24e4e3713dcbbe21810e55cbe50440000000000ffffffff020000000000000000356a33dabdbb44e49f85d2a327402cf1ae7d4da7a8c921c1b7230f50ff3f43347c6fb5a949fdb8a077b2dc50d9ff6d8bba56af4f3786f0ca052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02473044022021efb15847a51b8d3d831481506e7531f2f8c421e65599d42b0bff699df9f3510220344618f602e6a3b53004dd16d88a3597f8fbcbaf1ce050cecf1775924a8f99aa012102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76100000000` (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. @@ -3163,57 +3163,73 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "destination": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "btc_amount": 2000, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": null, + "btc_amount": 0, "fee": 10000, - "data": "0b78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf252ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "ff084afd964a2c6f073d71f9a820c08b68a483925b0dd53d24b570a161a5cc2e", - "n": 1, + "hash": "216e0862c8508a40aec05dd49145343698c24e4e3713dcbbe21810e55cbe5044", + "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false } ], "vout": [ - { - "value": 2000, - "script_pub_key": "0014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc" - }, { "value": 0, - "script_pub_key": "6a49ed97e16d78406b8c6f1fb1b6777d7199a840b3e6de1d2a05353fd1177b098efacc9a6edfd71b079573df6e1d6e43e2e9255e06db1211026b582d100e26f53bcbbb75f00ae2c11a0fa6" + "script_pub_key": "6a33dabdbb44e49f85d2a327402cf1ae7d4da7a8c921c1b7230f50ff3f43347c6fb5a949fdb8a077b2dc50d9ff6d8bba56af4f3786" }, { - "value": 4949868000, - "script_pub_key": "0014d34b7d969a887b9498d483ecf3b55ee82f8e299a" + "value": 4999990000, + "script_pub_key": "00143abbb33ac7a43d5ccf1f395ce2627403ce6740cf" } ], "vtxinwit": [ - "30440220760eb5b9ad2b31c85dcc2947d7cbbe3415a89b8e6a8234e1fb8ce4eb61ec6626022042ce8555ad2f7d7663e8e9e8aedc331133678b0c3a1b27d3be50811e70c2930901", - "03212abfccc909c537ec0a4b32ac78f66786e1bfc0439a235047a27f7a2f901006" + "3044022021efb15847a51b8d3d831481506e7531f2f8c421e65599d42b0bff699df9f3510220344618f602e6a3b53004dd16d88a3597f8fbcbaf1ce050cecf1775924a8f99aa01", + "02a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a761" ], "lock_time": 0, - "tx_hash": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d", - "tx_id": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d" + "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "tx_id": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8" }, "unpacked_data": { - "message_type": "btcpay", - "message_type_id": 11, + "message_type": "order", + "message_type_id": 10, "message_data": { - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx1_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", - "order_match_id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", - "status": "valid" + "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.00002000" + "btc_amount_normalized": "0.00000000" } } ``` @@ -3223,7 +3239,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b` (str, required) - Transaction hash + + tx_hash: `96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a` (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. @@ -3234,18 +3250,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710803a92bf67fd998b844b7ea1a455ec67c46c4bc757", + "data": "020000000000000001000000000000271080c6ffd5588e4548e249935cfdedfb570089a7e433", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "6455a0e26b7312fa6dac09e3dc77d2e359d635d06396ad095fa9fad33e7ba41c", + "hash": "a3ccacbfebf1ba4eba1bbfe367d9ae1d97fc3dad9ee58182f3262334ca16d374", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3255,20 +3271,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e7e1fcd27a7ee0a94f5f650e0bd152ea44e3b4f5f959c784d423026118044918434744f6541e69aef3b368209e95c" + "script_pub_key": "6a2e87ff790c314d7b574207d38ca7d88463a79f5c5e8152fef110516011cda54bf5b84adf90a81857b385614bd1277f" }, { "value": 4999955000, - "script_pub_key": "00143f58a79291a265f610e74bf153dca296bc399fb2" + "script_pub_key": "00144d58139ca58d4e5278dcc90c123825e920a4c782" } ], "vtxinwit": [ - "30440220558a48e1bde6d57f56bd516a29be8dd2b9bedded8787b3cf92fbaaaca433b13c02206b041ff81d6776180c9f9db952a79635543a6cef51ecf0204be43d0c044ca29701", - "03627149b11072d173c18af5d57b2e956a6e9486c355941852729eb2c95ff676c1" + "3044022046f9bfbb030b7551d95765541ea931dc3a76e2fc6ab1a95a94147cf1765c2a9c0220619122b438446d1d2fb04790d3457b848378e8fe81e8f86bd7948c56a687e56401", + "0352e612ef317c96dc910d7efc93996e313947873e472d8309212310d61a946122" ], "lock_time": 0, - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", - "tx_id": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b" + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_id": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3276,7 +3292,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "memo": null, "asset_info": { "divisible": true, @@ -3337,17 +3353,17 @@ Returns a transaction by its index. { "result": { "tx_index": 59, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", - "block_time": 1726825461, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_time": 1726943809, + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982:1", + "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3376,7 +3392,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982` (str, required) - The hash of the transaction + + tx_hash: `ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf` (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. @@ -3388,17 +3404,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 59, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", - "block_time": 1726825461, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_time": 1726943809, + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982:1", + "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3451,47 +3467,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58 }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "status": "valid", - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, - "block_time": 1726825457, + "block_time": 1726943805, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -3501,24 +3517,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "XCP", "block_index": 192, - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -3528,36 +3544,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 } ], "next_cursor": 523, @@ -3570,7 +3586,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8` (str, required) - The hash of the transaction to return + + tx_hash: `aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -3594,47 +3610,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58 }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "status": "valid", - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, - "block_time": 1726825457, + "block_time": 1726943805, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -3644,24 +3660,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "XCP", "block_index": 192, - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -3671,36 +3687,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 } ], "next_cursor": 523, @@ -3713,7 +3729,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d` (str, required) - The hash of the transaction to return + + tx_hash: `24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3` (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 @@ -3732,10 +3748,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "quantity": 10, "status": "valid", @@ -3743,7 +3759,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "divisible": true, "asset_longname": null, @@ -3756,10 +3772,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3767,11 +3783,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -3780,10 +3796,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3791,11 +3807,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -3813,7 +3829,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566` (str, required) - The hash of the transaction to return + + tx_hash: `3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81` (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 @@ -3833,27 +3849,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", + "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", - "destination": "bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", + "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "last_status_tx_hash": null, - "origin": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3868,7 +3884,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726825274, + "block_time": 1726943634, "asset_info": { "divisible": true, "asset_longname": null, @@ -3912,16 +3928,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -3931,63 +3947,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 } ], "next_cursor": null, @@ -4000,7 +4016,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8` (str, required) - The hash of the transaction to return + + tx_hash: `aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `535` (str, optional) - The last event index to return + Default: `None` @@ -4022,16 +4038,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -4041,63 +4057,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 } ], "next_cursor": null, @@ -4112,7 +4128,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh,bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9,bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (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 @@ -4136,7 +4152,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4146,7 +4162,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -4157,7 +4173,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4167,7 +4183,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -4178,7 +4194,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4188,7 +4204,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -4199,7 +4215,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4209,7 +4225,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -4220,7 +4236,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4230,7 +4246,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -4247,7 +4263,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh,bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9,bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (str, required) - Comma separated list of addresses to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4266,17 +4282,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 57, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "block_hash": "55cbd37166a9a25349e5eaecdc54a6013ce7f007f24bbf56a470c2578737fc07", - "block_time": 1726825453, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", + "block_time": 1726943802, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608:1", + "utxos_info": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4312,23 +4328,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "block_index": 190, - "block_hash": "29da6fc91ec18423fdab22602a03b65cabcc1f6f52b45b347cab54af4b046c6e", - "block_time": 1726825449, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "23b27ef62e72432568ac3d2827afc0d1be45e5a1eb3461f8b58d24ab532f4f66", + "block_time": 1726943798, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "data": "46de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "supported": true, - "utxos_info": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752:1", + "utxos_info": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "status": "valid" } }, @@ -4336,17 +4352,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 55, - "tx_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "block_index": 189, - "block_hash": "7b9ff65175ed743c0a5542fb04c596ca46b7752c4a3ec2f771df6fc22bcad206", - "block_time": 1726825444, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "26cc98a125105d26459d4cdde73737ee6a87200dd1e260833a753985df7a6e96", + "block_time": 1726943793, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a:1", + "utxos_info": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4382,17 +4398,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "block_hash": "43ca72a55a007c72d131f08f74c4674102ecd3bdf4d74f223797109d9f4add01", - "block_time": 1726825440, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "423947d2489b48a6e1d3a68c229e08b6abe64ea53afa8512a39037e9e3d57ed0", + "block_time": 1726943789, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d34b7d969a887b9498d483ecf3b55ee82f8e299a803a92bf67fd998b844b7ea1a455ec67c46c4bc757803f58a79291a265f610e74bf153dca296bc399fb2400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003802b08c45289028349cc594a15406b2e9391f71c7c80c6ffd5588e4548e249935cfdedfb570089a7e433804d58139ca58d4e5278dcc90c123825e920a4c782400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d:0", + "utxos_info": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4400,14 +4416,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -4415,7 +4431,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4434,25 +4450,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 51, - "tx_hash": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d", + "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", "block_index": 185, - "block_hash": "052570879ea11bd318935d12ea062dab4311e14f3694e245eaae0e58b7012c93", - "block_time": 1726825427, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "destination": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "096ad85b8b9dd2b5eaeb1be8fe0ddc244c436aacac8adbd2a9fa76e6ab9e712e", + "block_time": 1726943776, + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "btc_amount": 2000, "fee": 10000, - "data": "0b78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf252ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "data": "0bde81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914fc869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "supported": true, - "utxos_info": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d:0", + "utxos_info": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx1_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", - "order_match_id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "status": "valid" } }, @@ -4469,7 +4485,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh,bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9,bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -4505,11 +4521,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "status": "open", - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "tx_index": 57, - "block_time": 1726825453, + "block_time": 1726943802, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4533,24 +4549,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "block_time": 1726825453 + "block_time": 1726943802 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "block_index": 191, - "event": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "event": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1726825453, + "block_time": 1726943802, "asset_info": { "divisible": true, "asset_longname": null, @@ -4560,25 +4576,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "block_time": 1726825453 + "block_time": 1726943802 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "55cbd37166a9a25349e5eaecdc54a6013ce7f007f24bbf56a470c2578737fc07", + "block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", "block_index": 191, - "block_time": 1726825453, + "block_time": 1726943802, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "tx_index": 57, - "utxos_info": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608:1", + "utxos_info": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4610,40 +4626,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "block_time": 1726825453 + "block_time": 1726943802 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "status": "valid", - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "tx_index": 56, - "block_time": 1726825449 + "block_time": 1726943798 }, - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "block_index": 190, - "block_time": 1726825449 + "block_time": 1726943798 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726825449, + "block_time": 1726943798, "asset_info": { "divisible": true, "asset_longname": null, @@ -4653,9 +4669,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "block_index": 190, - "block_time": 1726825449 + "block_time": 1726943798 } ], "next_cursor": 506, @@ -4668,7 +4684,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk,bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk,bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3` (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 @@ -4684,17 +4700,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "memo": null, "quantity": 10000, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "status": "valid", - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "tx_index": 60, "asset_info": { "divisible": true, @@ -4707,19 +4723,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "CREDIT", "params": { - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -4731,19 +4747,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 193, - "event": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -4755,27 +4771,27 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726825466.1412678, + "block_time": 1726943814.1647968, "btc_amount": 0, - "data": "0200000000000000010000000000002710803a92bf67fd998b844b7ea1a455ec67c46c4bc757", + "data": "020000000000000001000000000000271080c6ffd5588e4548e249935cfdedfb570089a7e433", "destination": "", "fee": 10000, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "tx_index": 60, - "utxos_info": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b:1", + "utxos_info": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "memo": null, "asset_info": { "divisible": true, @@ -4801,7 +4817,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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 @@ -4821,7 +4837,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4829,14 +4845,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4844,14 +4860,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4866,7 +4882,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4874,7 +4890,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -4891,7 +4907,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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` @@ -4903,7 +4919,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4925,7 +4941,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4975,16 +4991,16 @@ Returns the credits of an address "result": [ { "block_index": 190, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825449, + "block_time": 1726943798, "asset_info": { "divisible": true, "asset_longname": null, @@ -4996,16 +5012,16 @@ Returns the credits of an address }, { "block_index": 182, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b", + "event": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825356, + "block_time": 1726943703, "asset_info": { "divisible": true, "asset_longname": null, @@ -5017,20 +5033,20 @@ Returns the credits of an address }, { "block_index": 159, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "10cfae46493da7d2e6bf22d408237bbce06107cad0667073471cd7a2b03ac7e6", + "event": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825340, + "block_time": 1726943687, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5038,20 +5054,20 @@ Returns the credits of an address }, { "block_index": 156, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "b852601dc9b19f603942ca34706fa6e463efae4faaf8831fbfdef4a2143e93f0", + "event": "730d154e7c40e6f269a3c0f15937c64309d932202616ef4c54ec0c6e07ddc29c", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825317, + "block_time": 1726943675, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5063,16 +5079,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "b144bf44a59f20f97233b6b2f8df8815e33ae7cd0fd284bfe3f95e1da2f77164", + "event": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", "tx_index": 38, - "utxo": "b144bf44a59f20f97233b6b2f8df8815e33ae7cd0fd284bfe3f95e1da2f77164:1", - "utxo_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "utxo": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98:1", + "utxo_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "confirmed": true, - "block_time": 1726825295, + "block_time": 1726943654, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5089,7 +5105,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5128,16 +5144,16 @@ Returns the debits of an address "result": [ { "block_index": 191, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "event": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825453, + "block_time": 1726943802, "asset_info": { "divisible": true, "asset_longname": null, @@ -5149,16 +5165,16 @@ Returns the debits of an address }, { "block_index": 189, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825444, + "block_time": 1726943793, "asset_info": { "divisible": true, "asset_longname": null, @@ -5170,16 +5186,16 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "event": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "divisible": true, "asset_longname": null, @@ -5191,20 +5207,20 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "event": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5212,16 +5228,16 @@ Returns the debits of an address }, { "block_index": 183, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", + "event": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825420, + "block_time": 1726943768, "asset_info": { "divisible": true, "asset_longname": null, @@ -5242,7 +5258,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address of the feed + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5277,7 +5293,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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 @@ -5296,9 +5312,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "26c8f08ba6eb1653583ea631a32a4360bf8efa472e2549da69e17e976c2ad5b9", + "tx_hash": "3adb5f6a83dbf36fc41ff713ae0883905bee565d0450041334cb0b35e8d7dc74", "block_index": 137, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5306,7 +5322,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726825226, + "block_time": 1726943585, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5320,7 +5336,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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 @@ -5339,14 +5355,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "e4935fcf9d26c3c9972ac4163e643d45b615be1b629cc7445e2e9607eb2694ac", + "tx_hash": "70bd09bcb435a334ba6a729d10e1151605bda96aff86cb463ddcf0536caef07c", "block_index": 112, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1726825120, + "block_time": 1726943484, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5361,7 +5377,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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 @@ -5380,10 +5396,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5391,7 +5407,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "divisible": true, "asset_longname": null, @@ -5404,10 +5420,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5415,11 +5431,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5428,10 +5444,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5439,11 +5455,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5452,10 +5468,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 38, - "tx_hash": "b144bf44a59f20f97233b6b2f8df8815e33ae7cd0fd284bfe3f95e1da2f77164", + "tx_hash": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", "block_index": 151, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "b144bf44a59f20f97233b6b2f8df8815e33ae7cd0fd284bfe3f95e1da2f77164:1", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5463,11 +5479,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825295, + "block_time": 1726943654, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5476,10 +5492,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 35, - "tx_hash": "5b56af4dc86e2f021c6b8a05c1730c3ac5396aa8f7a4c203363b274831f39346", + "tx_hash": "bb7e237846f4ba8f55a20cc8e2bfaf6731be5297749cf62cadc18474047a3030", "block_index": 148, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "dc4490de7d9dcfbbd88d7d329e61ffdb70aba9b47120da1597dc11c2690f89c0:1", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "9dc5d37ade58fe3fcc4001a7c5a086fc13efa89bbb556610bb78c7d6c2b059a1:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5487,11 +5503,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825283, + "block_time": 1726943642, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5509,7 +5525,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qer50mmddxamklxlnhp2ts8wg0ajzqns2mleqhf` (str, required) - The address to return + + address: `bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9` (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 @@ -5528,10 +5544,10 @@ Returns the receives of an address "result": [ { "tx_index": 37, - "tx_hash": "0d50c7d10fe1a5942c143ae0b53b6fa4e48148c36d47ab3de093dc895c38146b", + "tx_hash": "97881a57024ad6e05e14ae9d17fff8be24276335e8f9afefcce9b70168d36808", "block_index": 150, - "source": "330e4c148d12cfcceb7de4268c14d00bf280ab8a2d4d34fd7681c805ce7932aa:0", - "destination": "bcrt1qer50mmddxamklxlnhp2ts8wg0ajzqns2mleqhf", + "source": "cc7990d855f354e057a6e08b954da3db23de867816732e8fc48f06b3fcadb83b:0", + "destination": "bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5539,11 +5555,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825290, + "block_time": 1726943651, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5561,7 +5577,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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` @@ -5581,10 +5597,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5592,11 +5608,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5605,10 +5621,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5616,11 +5632,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5629,10 +5645,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 38, - "tx_hash": "b144bf44a59f20f97233b6b2f8df8815e33ae7cd0fd284bfe3f95e1da2f77164", + "tx_hash": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", "block_index": 151, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "b144bf44a59f20f97233b6b2f8df8815e33ae7cd0fd284bfe3f95e1da2f77164:1", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5640,11 +5656,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825295, + "block_time": 1726943654, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5653,10 +5669,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 35, - "tx_hash": "5b56af4dc86e2f021c6b8a05c1730c3ac5396aa8f7a4c203363b274831f39346", + "tx_hash": "bb7e237846f4ba8f55a20cc8e2bfaf6731be5297749cf62cadc18474047a3030", "block_index": 148, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "dc4490de7d9dcfbbd88d7d329e61ffdb70aba9b47120da1597dc11c2690f89c0:1", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "9dc5d37ade58fe3fcc4001a7c5a086fc13efa89bbb556610bb78c7d6c2b059a1:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5664,11 +5680,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825283, + "block_time": 1726943642, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5686,7 +5702,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qer50mmddxamklxlnhp2ts8wg0ajzqns2mleqhf` (str, required) - The address to return + + address: `bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9` (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` @@ -5706,10 +5722,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 37, - "tx_hash": "0d50c7d10fe1a5942c143ae0b53b6fa4e48148c36d47ab3de093dc895c38146b", + "tx_hash": "97881a57024ad6e05e14ae9d17fff8be24276335e8f9afefcce9b70168d36808", "block_index": 150, - "source": "330e4c148d12cfcceb7de4268c14d00bf280ab8a2d4d34fd7681c805ce7932aa:0", - "destination": "bcrt1qer50mmddxamklxlnhp2ts8wg0ajzqns2mleqhf", + "source": "cc7990d855f354e057a6e08b954da3db23de867816732e8fc48f06b3fcadb83b:0", + "destination": "bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5717,11 +5733,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825290, + "block_time": 1726943651, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5739,7 +5755,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5766,9 +5782,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 30, - "tx_hash": "a5fce55057a25a0e4f1a17eca63c2121a48e1802c130a7b0b5d172928cfa9141", + "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", "block_index": 144, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5777,7 +5793,7 @@ Returns the dispensers of an address "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5787,7 +5803,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825266, + "block_time": 1726943625, "asset_info": { "divisible": true, "asset_longname": null, @@ -5803,9 +5819,9 @@ Returns the dispensers of an address }, { "tx_index": 26, - "tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5814,7 +5830,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5824,7 +5840,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -5849,7 +5865,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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` @@ -5862,9 +5878,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "a5fce55057a25a0e4f1a17eca63c2121a48e1802c130a7b0b5d172928cfa9141", + "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", "block_index": 144, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5873,7 +5889,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5883,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": 1726825266, + "block_time": 1726943625, "asset_info": { "divisible": true, "asset_longname": null, @@ -5905,7 +5921,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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 @@ -5925,19 +5941,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "15c76615f19c7ab60a28be17ee51ee7eeb9274a29410baad82bd76217b4c1059", + "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5945,7 +5961,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5960,7 +5976,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -5974,19 +5990,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2bc8003e54c5015f26156d3a0108e500f87bbb12f215ab1bbd96f193c0af43bf", + "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", "block_index": 140, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5994,7 +6010,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6009,7 +6025,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825238, + "block_time": 1726943598, "asset_info": { "divisible": true, "asset_longname": null, @@ -6031,7 +6047,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79` (str, required) - The address to return + + address: `bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (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 @@ -6051,19 +6067,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "15c76615f19c7ab60a28be17ee51ee7eeb9274a29410baad82bd76217b4c1059", + "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6071,7 +6087,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6086,7 +6102,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -6100,19 +6116,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2bc8003e54c5015f26156d3a0108e500f87bbb12f215ab1bbd96f193c0af43bf", + "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", "block_index": 140, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6120,7 +6136,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6135,7 +6151,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825238, + "block_time": 1726943598, "asset_info": { "divisible": true, "asset_longname": null, @@ -6157,7 +6173,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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` @@ -6178,19 +6194,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "15c76615f19c7ab60a28be17ee51ee7eeb9274a29410baad82bd76217b4c1059", + "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6198,7 +6214,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6213,7 +6229,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -6227,19 +6243,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2bc8003e54c5015f26156d3a0108e500f87bbb12f215ab1bbd96f193c0af43bf", + "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", "block_index": 140, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6247,7 +6263,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6262,7 +6278,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825238, + "block_time": 1726943598, "asset_info": { "divisible": true, "asset_longname": null, @@ -6284,7 +6300,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79` (str, required) - The address to return + + address: `bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (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` @@ -6305,19 +6321,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "15c76615f19c7ab60a28be17ee51ee7eeb9274a29410baad82bd76217b4c1059", + "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6325,7 +6341,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6340,7 +6356,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -6354,19 +6370,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2bc8003e54c5015f26156d3a0108e500f87bbb12f215ab1bbd96f193c0af43bf", + "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", "block_index": 140, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6374,7 +6390,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6389,7 +6405,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825238, + "block_time": 1726943598, "asset_info": { "divisible": true, "asset_longname": null, @@ -6411,7 +6427,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk` (str, required) - The address to return + + address: `bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk` (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 @@ -6430,16 +6446,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 58, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "fee_paid_normalized": "0.00600000" } ], @@ -6453,7 +6469,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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 @@ -6472,14 +6488,14 @@ Returns the issuances of an address "result": [ { "tx_index": 46, - "tx_hash": "10cfae46493da7d2e6bf22d408237bbce06107cad0667073471cd7a2b03ac7e6", + "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -6494,20 +6510,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825340, + "block_time": 1726943687, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "c9993ca12278a2515f3d2392bc3815d92314e56cca6eb8a0f0f4a763384172b7", + "tx_hash": "ad5638a61876314ea341c91f638042e00c58a6a150651c1198858bbfa50bcdd3", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -6522,20 +6538,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726825336, + "block_time": 1726943683, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "6eab9bdda455830ed79ad0385271d751f42068b84397671cf28b7fde4368eb98", + "tx_hash": "920160abffc2681cf411a03e5ddc3c3f7f1156c1ceffaa2304a7f6f82032e82f", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -6550,20 +6566,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825331, + "block_time": 1726943679, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "b852601dc9b19f603942ca34706fa6e463efae4faaf8831fbfdef4a2143e93f0", + "tx_hash": "730d154e7c40e6f269a3c0f15937c64309d932202616ef4c54ec0c6e07ddc29c", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -6578,20 +6594,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825317, + "block_time": 1726943675, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "7ff19e841762b03ac9474c56b93d5277be99de115207c28dc8ae8dcc20427f97", + "tx_hash": "3b78cdcb0b5a931b4804337596e836bbd23872bb1dafeed65aad95db32933c61", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -6606,7 +6622,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825279, + "block_time": 1726943638, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -6621,7 +6637,7 @@ Returns the issuances of an address Returns the valid assets of an issuer + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The issuer to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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 @@ -6644,8 +6660,8 @@ Returns the valid assets of an issuer "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 10000000000, @@ -6653,16 +6669,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726825317, - "last_issuance_block_time": 1726825336, + "first_issuance_block_time": 1726943675, + "last_issuance_block_time": 1726943683, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 100000000000, @@ -6670,16 +6686,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726825279, - "last_issuance_block_time": 1726825279, + "first_issuance_block_time": 1726943638, + "last_issuance_block_time": 1726943638, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 40, @@ -6687,16 +6703,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726825217, - "last_issuance_block_time": 1726825221, + "first_issuance_block_time": 1726943577, + "last_issuance_block_time": 1726943581, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 19, @@ -6704,16 +6720,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726825201, - "last_issuance_block_time": 1726825213, + "first_issuance_block_time": 1726943560, + "last_issuance_block_time": 1726943573, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 0, @@ -6721,8 +6737,8 @@ Returns the valid assets of an issuer "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1726825180, - "last_issuance_block_time": 1726825197, + "first_issuance_block_time": 1726943539, + "last_issuance_block_time": 1726943556, "supply_normalized": "0.00000000" } ], @@ -6736,7 +6752,7 @@ Returns the valid assets of an issuer Returns the transactions of an address + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -6755,17 +6771,17 @@ Returns the transactions of an address "result": [ { "tx_index": 57, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "block_hash": "55cbd37166a9a25349e5eaecdc54a6013ce7f007f24bbf56a470c2578737fc07", - "block_time": 1726825453, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", + "block_time": 1726943802, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608:1", + "utxos_info": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6801,23 +6817,23 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "block_index": 190, - "block_hash": "29da6fc91ec18423fdab22602a03b65cabcc1f6f52b45b347cab54af4b046c6e", - "block_time": 1726825449, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "23b27ef62e72432568ac3d2827afc0d1be45e5a1eb3461f8b58d24ab532f4f66", + "block_time": 1726943798, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "data": "46de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "supported": true, - "utxos_info": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752:1", + "utxos_info": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "status": "valid" } }, @@ -6825,17 +6841,17 @@ Returns the transactions of an address }, { "tx_index": 55, - "tx_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "block_index": 189, - "block_hash": "7b9ff65175ed743c0a5542fb04c596ca46b7752c4a3ec2f771df6fc22bcad206", - "block_time": 1726825444, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "26cc98a125105d26459d4cdde73737ee6a87200dd1e260833a753985df7a6e96", + "block_time": 1726943793, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a:1", + "utxos_info": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6871,17 +6887,17 @@ Returns the transactions of an address }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "block_hash": "43ca72a55a007c72d131f08f74c4674102ecd3bdf4d74f223797109d9f4add01", - "block_time": 1726825440, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "423947d2489b48a6e1d3a68c229e08b6abe64ea53afa8512a39037e9e3d57ed0", + "block_time": 1726943789, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d34b7d969a887b9498d483ecf3b55ee82f8e299a803a92bf67fd998b844b7ea1a455ec67c46c4bc757803f58a79291a265f610e74bf153dca296bc399fb2400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003802b08c45289028349cc594a15406b2e9391f71c7c80c6ffd5588e4548e249935cfdedfb570089a7e433804d58139ca58d4e5278dcc90c123825e920a4c782400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d:0", + "utxos_info": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -6889,14 +6905,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -6904,7 +6920,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -6923,17 +6939,17 @@ Returns the transactions of an address }, { "tx_index": 49, - "tx_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", + "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", "block_index": 183, - "block_hash": "6e1ea1135992296310a0583ed2db72dd2f5089a24056590c390cc71b3c38a500", - "block_time": 1726825420, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "76b787bee668425bd1b438a2a899ce68b2c993774bd6797755aca7cecf2e2b88", + "block_time": 1726943768, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25:1", + "utxos_info": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6978,7 +6994,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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 @@ -6997,20 +7013,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 40, - "tx_hash": "d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8", + "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", "block_index": 153, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726825303, + "block_time": 1726943663, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -7035,7 +7051,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7062,9 +7078,9 @@ Returns the orders of an address "result": [ { "tx_index": 57, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7079,7 +7095,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726825453, + "block_time": 1726943802, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7105,9 +7121,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "block_index": 190, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7122,7 +7138,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726825449, + "block_time": 1726943798, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7148,9 +7164,9 @@ Returns the orders of an address }, { "tx_index": 49, - "tx_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", + "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", "block_index": 186, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7165,7 +7181,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726825432, + "block_time": 1726943781, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7191,9 +7207,9 @@ Returns the orders of an address }, { "tx_index": 47, - "tx_hash": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b", + "tx_hash": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", "block_index": 182, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7208,7 +7224,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1726825356, + "block_time": 1726943703, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7243,7 +7259,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The source of the fairminter to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7261,10 +7277,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "70a08a09be7e7db658afd9643104aa69036256014c37028c4cf48c03228597bd", + "tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7289,13 +7305,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726825217 + "block_time": 1726943577 }, { - "tx_hash": "e7323ddacfbba1ea3be9123e0aa839426a9b1c70cbc7e2d589144cbb7c737cfb", + "tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7320,13 +7336,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726825201 + "block_time": 1726943560 }, { - "tx_hash": "019c1a0e87d4fc9a572746bc4785e4a308e1827daaa4e9a77bc61c0d0ce7fc75", + "tx_hash": "f8863d06dd1c63af927665e2741a68593285bb4a52bbadf58685b17809c50470", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7351,13 +7367,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726825197 + "block_time": 1726943556 }, { - "tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7382,7 +7398,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726825176 + "block_time": 1726943534 } ], "next_cursor": null, @@ -7395,7 +7411,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79` (str, required) - The address of the mints to return + + address: `bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7413,127 +7429,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "df594a32bdedb9f8407dde28c2412506a53badab07b2cbce3e4919633c06b316", + "tx_hash": "296a4a2f8facf4a5ccf44ab044c61ea9b9216a3071599a39f70b231bc11801f0", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "fairminter_tx_hash": "70a08a09be7e7db658afd9643104aa69036256014c37028c4cf48c03228597bd", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "fairminter_tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825221, + "block_time": 1726943581, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } }, { - "tx_hash": "aec366da0f357fb164abc4f48fbd7c5d044e8cab5b73567e190bcee307a2a566", + "tx_hash": "5ed673dd8d97553e61d83fbccf8e095279db7b2b17182af9e56c3ad7c3a4fa03", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "fairminter_tx_hash": "e7323ddacfbba1ea3be9123e0aa839426a9b1c70cbc7e2d589144cbb7c737cfb", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "fairminter_tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825213, + "block_time": 1726943573, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } }, { - "tx_hash": "96cc1822dacc53a422a4748a569384866998aa220d9c33e35a5a7dfd33d93565", + "tx_hash": "51faa319e2cca4033cc7107e24db91cffd7aa0de24e6dbb3416f14414fbb1513", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "fairminter_tx_hash": "e7323ddacfbba1ea3be9123e0aa839426a9b1c70cbc7e2d589144cbb7c737cfb", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "fairminter_tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825209, + "block_time": 1726943568, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } }, { - "tx_hash": "f2b4824a98311a4bad85273847804b24c7e343ace4e033c4543d2258ced3287a", + "tx_hash": "43aca2b646d3f1276f04a8c106efccaa0693ff0cd78d964dcca325aa3d8fb96b", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "fairminter_tx_hash": "e7323ddacfbba1ea3be9123e0aa839426a9b1c70cbc7e2d589144cbb7c737cfb", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "fairminter_tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825205, + "block_time": 1726943564, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } }, { - "tx_hash": "feff8b132aee97b98a939928233656dcc903e3e2e7b6b0bb1997e2936cbd070d", + "tx_hash": "2988c15ef26d780e374920eb96e0569d184800843ea6a308102bc549436780e5", "tx_index": 15, "block_index": 127, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "fairminter_tx_hash": "019c1a0e87d4fc9a572746bc4785e4a308e1827daaa4e9a77bc61c0d0ce7fc75", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "fairminter_tx_hash": "f8863d06dd1c63af927665e2741a68593285bb4a52bbadf58685b17809c50470", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825184, + "block_time": 1726943543, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } }, { - "tx_hash": "5ff1033ca6de7b9f191e14e803b0106fe025ee35bd22ddb56a77427d0975c947", + "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "fairminter_tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825167, + "block_time": 1726943527, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } @@ -7549,7 +7565,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79` (str, required) - The address of the mints to return + + address: `bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (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` @@ -7568,22 +7584,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "5ff1033ca6de7b9f191e14e803b0106fe025ee35bd22ddb56a77427d0975c947", + "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "fairminter_tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825167, + "block_time": 1726943527, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } @@ -7622,8 +7638,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: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address that will make the bet - + feed_address: `bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address that will make the bet + + feed_address: `bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (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) @@ -7689,7 +7705,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: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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) @@ -7742,9 +7758,9 @@ Composes a transaction to broadcast textual and numerical information to the net ``` { "result": { - "rawtransaction": "0200000000010158423eb8e249c27bba2b290ac7f0bb1c21c0bacaa7c32c089b1dc7edb3a7da7900000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff0200000000000000002b6a291fa1b0eb2e3f5afae0e5c65b0b2642e920b44c674393fcfeb02155b9a8a16e8f5b1487ac61ec36f8ed3bb1052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101c7a751b79fc1bba15db96e76fddc03eaf28c83033bbac943b3ec9b4fb733b1ca000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff0200000000000000002b6a2921d0690c1e43531d52511b2b8d83499e0ad38c216c1cea450000060de19642e0efe783a088dd85b7fb34b1052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7768,8 +7784,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: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address that will be sending the payment - + order_match_id: `78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be` (str, required) - The ID of the order match to pay for + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address that will be sending the payment + + order_match_id: `de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c` (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) @@ -7818,13 +7834,13 @@ Composes a transaction to pay for a BTC order match. ``` { "result": { - "rawtransaction": "02000000000101189b8c34034c9b4d76e49ee815fc3ea9e7b47c56a7107b858a0ccf6cbfa6808300000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff03b80b000000000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc00000000000000004b6a49f9c07b0e8252ed42feb71de2ad6fd1f9d6b276d45ea10d671233e671f221686660a6ac1594304076f875425803562aaaacb946c1818d0872f6229073ccf78cefef2db082ab8b7c1fedd993052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "020000000001014908917f0d6e695aa7e8041867a48a6a093206725417ad922e840a75ddf26706000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff03b80b0000000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf00000000000000004b6a49ffb002f713ca7b9fd27b391c2093a26eb078e7696684324b0b5450b219e025235fba61c51b4453692cbf1469cba72688768d7e70bb53caa4aef186df9696b9ef4fee30fca81bd2da78d093052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "order_match_id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be" + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c" }, "name": "btcpay", - "data": "434e5452505254590b78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "data": "434e5452505254590bde81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7841,7 +7857,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: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address with the BTC to burn + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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` @@ -7893,9 +7909,9 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss ``` { "result": { - "rawtransaction": "02000000000101c96c1d4aeb1ff4c91195a270b0da9d687d8933c7b9aee701e920aed77dfe27eb00000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101ce27407bf8f204ef537df027953eb6114b8487e9d150d6a84d085a95863f6414000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88acdab1052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "quantity": 1000, "overburn": false }, @@ -7910,8 +7926,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: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e` (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) @@ -7960,13 +7976,13 @@ Composes a transaction to cancel an open order or bet. ``` { "result": { - "rawtransaction": "02000000000101b57a8c4bf5aa959a4f5f3edebed5371fe4db67402857c2bb37172b86d16c4c1300000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff0200000000000000002b6a29a9a48f2f485e6f281a87fe7159096ecbf50d2f290ef9b04a6851ec3de70f6acf8848b077defae1d3f63bb1052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101e9d22b8ed7ff43a163cfb388952132f6f63b8f256b2072abb965ee5a4f930b7c000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff0200000000000000002b6a29ecbf2575a7e33509a02495729973f16fcbe3de84291c13e5e5338d397cbb96e87149c0a9a8686d8ff634b1052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "offer_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608" + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "offer_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e" }, "name": "cancel", - "data": "434e54525052545946e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "data": "434e545250525459468503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7983,7 +7999,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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 @@ -8035,9 +8051,9 @@ Composes a transaction to destroy a quantity of an asset. ``` { "result": { - "rawtransaction": "0200000000010121629dee3eb7540192d731a60bd071d1f4d8712a07950153bd72d7fb5400d6f100000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff020000000000000000226a208c607f56d53dea214111f840c391bae423bb0c44e96396f4f7d121328d1179d2a4b3052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101cadc6dcd9e21ecdbadbd599e901d28c76bfe7d992d637b8ee189a0a69d5a148f000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000226a20ae4ee5980fee7c78bbd35e3c3c2c1d87ed4ffb8ea4425940791bb8498f8f53329db3052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8068,7 +8084,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: `bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc` (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) @@ -8126,9 +8142,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv ``` { "result": { - "rawtransaction": "02000000000101666537a765cc6186bff728369ff2ec79473d3c5a9cd28d0fcb5c945123c3030402000000160014dccd35ab9aa1a198710ac3c6be2a77bba71dec02ffffffff0200000000000000002c6a2aa91e5e967d7dcd77b369c341aa9a803a5b6538fa879b575d9996200e669f62a2c34e77e1d170b1df0d46474b0a2701000000160014dccd35ab9aa1a198710ac3c6be2a77bba71dec0202000000000000", + "rawtransaction": "02000000000101812f049104ecd8c5421d3aeb84f1e0d503d0673524bc38770bd25a75c0b4143302000000160014b75117bea813ac18e875e6955c46b90b822d1473ffffffff0200000000000000002c6a2a35e29811a9d0b3bce85ee69bebf2239fd0ea376e9c930087a670a0b4e22320795162476e62698b07e3de404b0a2701000000160014b75117bea813ac18e875e6955c46b90b822d147302000000000000", "params": { - "source": "bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt", + "source": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8164,7 +8180,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: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (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: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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 @@ -8216,16 +8232,16 @@ Composes a transaction to issue a dividend to holders of a given asset. ``` { "result": { - "rawtransaction": "020000000001014351f691dd53000b0f0b63089d2fd37f6a3d061556e130152502f3016cda404c00000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff020000000000000000236a2136eca670840baeb51fbd2373a87830bdf427f0e75f09168babd2fe9e4b618ca04a60b3052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "020000000001013fcf0426cb9d37dbe9f35ee44b5ec8880dc75b0a71e91e40fb26511d4347f86f000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000236a218df562c9f208ed50ccae382ca92b02c27702e79477aea3af2695ddaac8ebce991559b3052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -8256,10 +8272,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: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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` @@ -8317,12 +8333,12 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo ``` { "result": { - "rawtransaction": "0200000000010151ff7e2fd3da4fa026fa89c655b5d3223eb0324ad68f13e53a07bce48b4219c600000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff032202000000000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc0000000000000000236a21c993fe96aa8d8934d1b45d85e5b99980f2107878f78479690b1210dd0095d1984c24a8052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101eed4b56dff0f6735bfcb64fd71bc79a2bac83188e844f08cc0808fba7d2e238c000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff0322020000000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf0000000000000000236a217d872c33d7f4702e6aecf40eb79042d40d6865869cc902d0daf2e7ea32bd9aa3471ca8052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "transfer_destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "lock": false, "reset": false, @@ -8347,9 +8363,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: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh,bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9,bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (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` @@ -8403,18 +8419,18 @@ Composes a transaction to send multiple payments to multiple addresses. ``` { "result": { - "rawtransaction": "02000000000104f3518302ac13fd58907c8536c38052588ed35514190f3c67b491c52023236b0c00000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccfffffffff2b04e864007a32020ac4d42a034437794e4325e04cb171430a8c060990c5bf700000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff13a057c91586e83f43c86be76aff149a12ea9aff92f86452dd29d982c38ef14500000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffffabfb599c1c24563d6ee43d77fe0a48de3107ccf4d749c3927c2ba61befc5150500000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff03e8030000000000006951210327526b07641e065a41b92215dab67aa19c3cf5e48d87d3a71ff2803af186874a21025a32d6f2a3e31b1f8b5db1331fa773f082adfb81926d416e8395d491f38d5d1a2102826647162b0c6923b8cb80931a26d52766d59f1eaa8341f34b9b31592e138ebe53aee8030000000000006951210228526b07641e065a419a5578287b16570d5948d059ccf2ff5b7a66df8c70dd0e210328fe1e21e89e8d8503262dabcb249f0337f311ae1c44dbe1a1ddb1fd9fe271fd2102826647162b0c6923b8cb80931a26d52766d59f1eaa8341f34b9b31592e138ebe53ae61d016a804000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000002000002000002000000000000", + "rawtransaction": "02000000000104de819b9fc81ec47056ded5b3ba6b85bb1877b45eb40270c05a55b6bb413c4880000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffffc09b668a70c9a3f5219e4e535139c3f6eaab26c72fc9aa91e8eb6963b05328c0000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffffcba0f51565c80be9eceab047b664ccf9215bcfd49988f6e18039c9020a5bb071000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff33ad01ffd981010a7b7f85cec69713780d546e2c4d639e0fb2cee3371c24e1a5000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff03e80300000000000069512103869b25513395fa664ab1249e6177b8160304c9ab1e788b7db690f7bfbd62cbe521023075a3d35d96ec97dd45b01c69ae34053749b76967e71c61f4206d9ac7a7c9742102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153aee80300000000000069512102899b25513395fa664a9253f3932167841b436d964ea20fcf5d5295cbbeacac96210270ba6bf85552be1edfc6f1d030e421455c6726f890fb60eed66808f6abc8e52b2102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153ae47d016a8040000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000002000002000002000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", 1 ], [ "MYASSETA", - "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", 2 ] ], @@ -8422,7 +8438,7 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc80d34b7d969a887b9498d483ecf3b55ee82f8e299a8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e545250525459030002803abbb33ac7a43d5ccf1f395ce2627403ce6740cf802b08c45289028349cc594a15406b2e9391f71c7c8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8439,7 +8455,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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 @@ -8494,9 +8510,9 @@ Composes a transaction to place an order on the distributed exchange. ``` { "result": { - "rawtransaction": "020000000001011d7639b5fa0873b5a2af704d7a6aacb62675b57849326fedbccd9be06f32fb7d00000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff020000000000000000356a333be723773d1eaf24fef1236fdf27528082ad1e2262ce84c161e7c3a10ebcce8337d464689dc72ee9f0765c0905f0550041d8668eae052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101c731eb09c72abf0af77a6164e7b3278f8fcd8d150d5fb92225e7a5c9dfd629e9000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000356a336e78117dafe38e89e931b18ea1638fcce6fa2276a898a1c5cbdbbb229bd47da4d46b74cf8d9aff60985bfc6bffb84aecf62e8d87ae052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8513,7 +8529,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -8539,8 +8555,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: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79` (str, required) - The address that will be receiving the asset + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (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 @@ -8597,10 +8613,10 @@ Composes a transaction to send a quantity of an asset to another address. ``` { "result": { - "rawtransaction": "02000000000101f7bedeaf49b0f8976b195a92bb7a45b21744867de7f1a6271d109d827902d51200000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff020000000000000000306a2ed99eeed48e4ee8840d27f2ef533f8dc08e1a939cec991a58e834999a302517aae8f91479a24e09872e9d91a08230e5af052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101bdb7938d4a99e508a552731ee1aa29935ca0c5848f5fa8ce220efb76421c11cd000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000306a2e910edd304c294569d596a33a1eb438784df08ebdaea9ffdec0398f5866a80da0dbf41b1284fd8adf063779711d60deaf052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8616,7 +8632,7 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d34b7d969a887b9498d483ecf3b55ee82f8e299a", + "data": "434e54525052545902000000000000000100000000000003e8802b08c45289028349cc594a15406b2e9391f71c7c", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8633,8 +8649,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: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address that will be sending - + destination: `bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address that will be sending + + destination: `bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (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 @@ -8685,15 +8701,15 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti ``` { "result": { - "rawtransaction": "02000000000101eae71bd80b833bc9207e59e1379ca495ef0c83de276503409f4f3d7f16255b5400000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff020000000000000000236a213403f36611cf4668ffebf84440c47559b0057622c0d9eca7b3769ae6a6aba0c1db60b3052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101b45c1cc6db765897669ae0918a7dd0167dd26d2cc925304bc3fbde5c6d0af6a3000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000236a212da04bebf6d4a4b5629d338c8f4c28d5672494a10929d05f171bb0d113586c514b59b3052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480d34b7d969a887b9498d483ecf3b55ee82f8e299a07ffff", + "data": "434e54525052545904802b08c45289028349cc594a15406b2e9391f71c7c07ffff", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8710,8 +8726,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: `bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3` (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` @@ -8761,10 +8777,10 @@ Composes a transaction to send BTC to a dispenser. ``` { "result": { - "rawtransaction": "020000000001011dae1ed72378f16b759eb60b7c3594af30cc390d0df9e43a22eaca430fe6a38702000000160014d34b7d969a887b9498d483ecf3b55ee82f8e299affffffff03e8030000000000001600143f58a79291a265f610e74bf153dca296bc399fb200000000000000000c6a0a3466a926374814a30a0f66b8082701000000160014d34b7d969a887b9498d483ecf3b55ee82f8e299a02000000000000", + "rawtransaction": "02000000000101119dbe2ceeda25c2be45d2aba37559fcce4c913e993aa325d0ab72e23f06ab39020000001600142b08c45289028349cc594a15406b2e9391f71c7cffffffff03e8030000000000001600144d58139ca58d4e5278dcc90c123825e920a4c78200000000000000000c6a0a3b15b6e696812f9609ef5fb80827010000001600142b08c45289028349cc594a15406b2e9391f71c7c02000000000000", "params": { - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "quantity": 1000 }, "name": "dispense", @@ -8785,7 +8801,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address that will be issuing the asset + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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: `` @@ -8867,9 +8883,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. ``` { "result": { - "rawtransaction": "02000000000101175a2b32bfe16a1b497ea0715e0e749fdf37f92ee232725876237e50f748886800000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff020000000000000000316a2f45fcf2ce030b61b00e46acf4f6f1dcb916707118a5f1c535e60857ede0ab8f2af8f6de436a0c45752720de1e8ef22fa0af052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101c90d43ea7a244f57e0ec9f519f7c76b2f0a7763744ab6f7a75c8abb61ba15ac0000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000316a2f35e908ad61113bb575e8c54a8a9318b9acc9ca6f44db52c9d54a494d53f2d145dc45e5c0136dbb05bba1f6f739c36e99af052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -8906,7 +8922,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: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address that will be minting the asset + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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` @@ -8958,15 +8974,15 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto ``` { "result": { - "rawtransaction": "02000000000101d9f2c1fc5cdac6246611f5021f64f973612e0d045c82ad2c2ff945687e6de82600000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff020000000000000000166a14457c7e9863505b7607b08b7f034565964e5eba47dab6052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101f3e542c39e892018df6490f555f3094c88c4a380510d3affd25ec845aee5f020000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000166a14f35fd73585af2365f86aba91b9701aed9186e133d4b6052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -8990,10 +9006,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: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address from which the assets are attached + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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: `87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d:0` (str, optional) - The utxo to attach the assets to + + destination: `de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9043,10 +9059,10 @@ Composes a transaction to attach assets from an address to UTXO. ``` { "result": { - "rawtransaction": "020000000001068064a4c872709fda6a2e6d1bee8591ee24a97e4be5b99fd456dd36ce76f554cf00000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff066c67ee95761c8ecd99f44dce618f0495ad7761073f9df4fbc61c8dec2ec83b00000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff1e09fecb1c6b655b77fb28a63e16f148ee315a46a9caa69f568b4e67e3336f4500000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccfffffffffb831099612050d5fdcb6ddb8e7fa4fa84a9d215b5e23c2b0e2a33aa460c36d000000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff8545b133f0164a422154633cc7b4ec08eb3c8327b07beafda4be404178b5a28200000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffffadbe2b803f9fc171304e4b4f8733ba2c005165f611e2dfaec13b1a8ca3ca57cd00000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff04e80300000000000069512102147d74dbc36c50dfee6c9a96da427c9325e6009847178f007c955d66c5598ed2210343db7409d2ce94f9766d071fd2a47a3aad1b8c0dff70580263eac47a511afdd42102826647162b0c6923b8cb80931a26d52766d59f1eaa8341f34b9b31592e138ebe53aee80300000000000069512103147d74dbc36c50dfee6eccc6cb57288322ad4a9d1255850024c45b668508d93d210316de740d82c4c5a27a6a0c4289f33968be1ec10bee7e014963ef962d031da8302102826647162b0c6923b8cb80931a26d52766d59f1eaa8341f34b9b31592e138ebe53aee803000000000000695121033e7d74dbc36c50dfee699dc4cc0c7d9e48dc29804651d30914a06b02b631bab1210375ed446ce4fdf1914f5d6f72eb910f51db29f43d8c18307e5bdda549342ccd262102826647162b0c6923b8cb80931a26d52766d59f1eaa8341f34b9b31592e138ebe53aee83922fc06000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000002000002000002000002000002000000000000", + "rawtransaction": "020000000001068b45c8be8ff92bbba5b5c2dda07b503f5545f3da2e069379f635d648c3462fc3000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff8793d45f8f4010d8e8e328dab5768f855e73dd99f690ce397db9992322843bc0000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff86ec152a47bd8f17389c79fc5818af06033bc05313a82f0bfb1ec2ba098e39bd000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff964aaeef52ff6553088b3c4224e983f3955681388ea9a0818036f5138fc7b51d000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff199b9ad5d5a5b91a9af4b2fbe97a5395db52c6ae6eea83c77f8103f55a929b0d000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffffd4775192c52937dbc731da8b8f1ff6f93862668bbdadbe2a8ea2c5bb2b980836000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff04e80300000000000069512103e936ed976e664450737aca36fe1e353dc89dccbe7c5ce14d951f54c0b9a7256e210375e4409ff7d7eb87de775c0d49b342cd89b61060d8ff59fbd67fbb2d9cefdbbb2102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153aee80300000000000069512102e936ed976e66445073289f64e80b347cc79ecce76613ec46c50a00c0efad779d21027def4ddce496bbdfdc370a0202f203818bf95c698af105b7d62fe82f9fb8db882102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153aee80300000000000069512103c336ed976e664450732ecd31b4503530a8ecfdaf351bba45a06c63f4dcc946b9210319dc79e880ae88e9eb066c3531c431b5b9c0650cbf936087b21a8e1ef9dbbda32102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153aec13922fc060000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d:0", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9059,7 +9075,7 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713579796430766c396835366473683436363065363365683930686d3935756b763278307368687c383761336536306634336361656132323361653466393064306433396363333061663934333537633062623639653735366266313738323364373165616531643a307c5843507c31303030", + "data": "434e545250525459646263727431713832616d78776b3835733734656e636c3839777779636e35713038787773783076756c676c397c646535336534663637316461303037316134623866336566633433643164333434643833363731663733363234323939653562653064356631666366306564383a317c5843507c31303030", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9076,8 +9092,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: `207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f:1` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address to detach the assets to + + utxo: `2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c:1` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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 @@ -9128,10 +9144,10 @@ Composes a transaction to detach assets from UTXO to an address. ``` { "result": { - "rawtransaction": "020000000001012f4d7a4c52f6ba9ce74d24e2176fc79e6c2b4d43808c4748afb55876f3c87c200100000016001466ee2243f13b5d0902d7942f8c5b3ff8a5dfa3c1ffffffff04e803000000000000695121025bee27b169956b9719d089daaddb3625d44df7e47a248f8e3f68bb63a303e72e21036e09095c8ac09cada6367e5b629d784bfdcae198192b2bbb4b64b831beb78487210302df2348d2e2794f53cbefb920784e3e7bb164f17b77fe51c95942f11216a1f753aee803000000000000695121025bee27b169956b9719d28ddfa88c362ad34aa4e02926dcc73c6dfd2fa645ea3a210274485d58cf98c1f7f13679116fca794bab9ee0ce4e7126bf476cb63da8be931b210302df2348d2e2794f53cbefb920784e3e7bb164f17b77fe51c95942f11216a1f753aee8030000000000006951210371ee27b169956b971986c3dae9d03d61ea3d90ae7e2cdd8b5e0e8f5b9734dffb21030d313968b9f4f89fc4001d6207fe4f7d9bfbd6fd2b191f8f2f018f08ddd5e5c6210302df2348d2e2794f53cbefb920784e3e7bb164f17b77fe51c95942f11216a1f753aef49808270100000016001466ee2243f13b5d0902d7942f8c5b3ff8a5dfa3c102000000000000", + "rawtransaction": "020000000001011cad9a9319fca4afa7b2d4cbacd0741ecfcc6edfe1346b2d6d4b66a237e0902c010000001600145f0a669381ca92fe5c67bb77083133c750fc8521ffffffff04e80300000000000069512103aa92ec82797fe0a4b39d4f8a9c278bd7e2897dc1fb7c69ea3a3644a3c9f09edf2102b655dba7fd942cb87e45605ec681a76a6cf1bb9639255fbc1b72f20182a7f99221025334ed116f50f7942d8cde029e80dda0180e31a39aa128d50c9729185d0615ea53aee80300000000000069512102aa92ec82797fe0a4b39f1ed89c2edddeb0df78c2ae706cf46e3104b3cee3958f2103b05187bbecc971ee6e11320acdd5ff3665e7af8c382f5eaf192bbd1797befd0a21025334ed116f50f7942d8cde029e80dda0180e31a39aa128d50c9729185d0615ea53aee803000000000000695121028092ec82797fe0a4b38f0885c27bd79b89fd4c8ffc7a6db80c5276c7ff92ad6d21028230eac39ba249db1d26066fa3b6930e5c90d8f55b416bde2913c560e4c6cdf321025334ed116f50f7942d8cde029e80dda0180e31a39aa128d50c9729185d0615ea53aee8980827010000001600145f0a669381ca92fe5c67bb77083133c750fc852102000000000000", "params": { - "source": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f:1", - "destination": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c:1", + "destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9144,7 +9160,7 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964323037636338663337363538623561663438343738633830343334643262366339656337366631376532323434646537396362616636353234633761346432663a317c6263727431713579796430766c396835366473683436363065363365683930686d3935756b763278307368687c5843507c31303030", + "data": "434e54525052545964326339306530333761323636346236643264366233346531646636656363636631653734643061636362643462326137616661346663313939333961616431633a317c6263727431713832616d78776b3835733734656e636c3839777779636e35713038787773783076756c676c397c5843507c31303030", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9199,8 +9215,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 10000000000, @@ -9208,16 +9224,16 @@ Returns the valid assets "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726825317, - "last_issuance_block_time": 1726825336, + "first_issuance_block_time": 1726943675, + "last_issuance_block_time": 1726943683, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qvmhzysl38dwsjqkhjshcckellzjalg7pmtpee2", - "owner": "bcrt1qvmhzysl38dwsjqkhjshcckellzjalg7pmtpee2", + "issuer": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", + "owner": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", "divisible": true, "locked": false, "supply": 100000000000, @@ -9225,16 +9241,16 @@ Returns the valid assets "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1726825313, - "last_issuance_block_time": 1726825313, + "first_issuance_block_time": 1726943670, + "last_issuance_block_time": 1726943670, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 100000000000, @@ -9242,16 +9258,16 @@ Returns the valid assets "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726825279, - "last_issuance_block_time": 1726825279, + "first_issuance_block_time": 1726943638, + "last_issuance_block_time": 1726943638, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 40, @@ -9259,16 +9275,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726825217, - "last_issuance_block_time": 1726825221, + "first_issuance_block_time": 1726943577, + "last_issuance_block_time": 1726943581, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 19, @@ -9276,8 +9292,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726825201, - "last_issuance_block_time": 1726825213, + "first_issuance_block_time": 1726943560, + "last_issuance_block_time": 1726943573, "supply_normalized": "0.00000019" } ], @@ -9305,8 +9321,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 10000000000, @@ -9314,8 +9330,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1726825163, - "last_issuance_block_time": 1726825176, + "first_issuance_block_time": 1726943523, + "last_issuance_block_time": 1726943534, "supply_normalized": "100.00000000" } } @@ -9346,7 +9362,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9354,14 +9370,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9369,7 +9385,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -9386,7 +9402,7 @@ Returns the asset balances Returns the balance of an address and asset + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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` @@ -9398,7 +9414,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -9447,9 +9463,9 @@ Returns the orders of an asset "result": [ { "tx_index": 57, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9464,7 +9480,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726825453, + "block_time": 1726943802, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9490,9 +9506,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "block_index": 190, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9507,7 +9523,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726825449, + "block_time": 1726943798, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9533,9 +9549,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "tx_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "block_index": 186, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -9550,7 +9566,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726825432, + "block_time": 1726943781, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9576,9 +9592,9 @@ Returns the orders of an asset }, { "tx_index": 50, - "tx_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "tx_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "block_index": 185, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -9593,7 +9609,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726825427, + "block_time": 1726943776, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9619,9 +9635,9 @@ Returns the orders of an asset }, { "tx_index": 49, - "tx_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", + "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", "block_index": 186, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9636,7 +9652,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726825432, + "block_time": 1726943781, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9696,13 +9712,13 @@ Returns the orders of an asset { "result": [ { - "id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "tx0_index": 49, - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 52, - "tx1_hash": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", - "tx1_address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -9716,7 +9732,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726825432, + "block_time": 1726943781, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9736,13 +9752,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "tx0_index": 49, - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 50, - "tx1_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", - "tx1_address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -9756,7 +9772,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726825427, + "block_time": 1726943776, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9776,13 +9792,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b_7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", + "id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", "tx0_index": 47, - "tx0_hash": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 48, - "tx1_hash": "7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", - "tx1_address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "tx1_hash": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -9796,7 +9812,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726825356, + "block_time": 1726943703, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9876,20 +9892,20 @@ Returns the credits of an asset "result": [ { "block_index": 192, - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -9897,20 +9913,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "9e33d1c18f232f70831324c5da3242bd7223b2046634bac4d8ac230c6fa77625", + "event": "ad20ce4b786258ea1c1df1c6f730a0b7989626161405060fe9f692ef84bf66f1", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825176, + "block_time": 1726943534, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -9918,20 +9934,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "3cab6bd1d988b7c58fd2f2500fd32d5b49adbff82781905060b6fb78f9e8e7bf", + "event": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825171, + "block_time": 1726943531, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -9939,20 +9955,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "5ff1033ca6de7b9f191e14e803b0106fe025ee35bd22ddb56a77427d0975c947", + "event": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825171, + "block_time": 1726943531, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -9964,16 +9980,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "3cab6bd1d988b7c58fd2f2500fd32d5b49adbff82781905060b6fb78f9e8e7bf", + "event": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825171, + "block_time": 1726943531, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -10029,16 +10045,16 @@ Returns the debits of an asset "result": [ { "block_index": 193, - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "event": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -10050,16 +10066,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -10071,16 +10087,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -10092,16 +10108,16 @@ Returns the debits of an asset }, { "block_index": 191, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "event": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825453, + "block_time": 1726943802, "asset_info": { "divisible": true, "asset_longname": null, @@ -10113,16 +10129,16 @@ Returns the debits of an asset }, { "block_index": 189, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825444, + "block_time": 1726943793, "asset_info": { "divisible": true, "asset_longname": null, @@ -10162,20 +10178,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 40, - "tx_hash": "d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8", + "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", "block_index": 153, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726825303, + "block_time": 1726943663, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -10219,14 +10235,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "9e33d1c18f232f70831324c5da3242bd7223b2046634bac4d8ac230c6fa77625", + "tx_hash": "ad20ce4b786258ea1c1df1c6f730a0b7989626161405060fe9f692ef84bf66f1", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -10241,20 +10257,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726825176, + "block_time": 1726943534, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "3cab6bd1d988b7c58fd2f2500fd32d5b49adbff82781905060b6fb78f9e8e7bf", + "tx_hash": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -10269,20 +10285,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726825171, + "block_time": 1726943531, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "5ff1033ca6de7b9f191e14e803b0106fe025ee35bd22ddb56a77427d0975c947", + "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -10297,20 +10313,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726825167, + "block_time": 1726943527, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -10325,7 +10341,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1726825163, + "block_time": 1726943523, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10359,10 +10375,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10370,7 +10386,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "divisible": true, "asset_longname": null, @@ -10383,10 +10399,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 53, - "tx_hash": "59e81ffd913405acb74f32dfc79bccf2605e8b41c6117f26b184127c9adaf747", + "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f", "block_index": 187, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10394,7 +10410,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825436, + "block_time": 1726943785, "asset_info": { "divisible": true, "asset_longname": null, @@ -10407,10 +10423,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 42, - "tx_hash": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f", + "tx_hash": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", "block_index": 155, - "source": "3fef13f6bcdd2af88bb1ea176f0e66bd711f27abee3a15cd5d9f024a2ca9712b:0", - "destination": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f:1", + "source": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1:0", + "destination": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10418,7 +10434,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825313, + "block_time": 1726943670, "asset_info": { "divisible": true, "asset_longname": null, @@ -10431,10 +10447,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 41, - "tx_hash": "3fef13f6bcdd2af88bb1ea176f0e66bd711f27abee3a15cd5d9f024a2ca9712b", + "tx_hash": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1", "block_index": 154, - "source": "1ca47b3ed3faa95f09ad9663d035d659e3d277dce309ac6dfa12736be2a05564:0", - "destination": "3fef13f6bcdd2af88bb1ea176f0e66bd711f27abee3a15cd5d9f024a2ca9712b:0", + "source": "74d316ca342326f38281e59ead3dfc971daed967e3bf1bba4ebaf1ebbfaccca3:0", + "destination": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10442,7 +10458,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825308, + "block_time": 1726943667, "asset_info": { "divisible": true, "asset_longname": null, @@ -10491,18 +10507,18 @@ Returns the dispensers of an asset "result": [ { "tx_index": 32, - "tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", + "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "last_status_tx_hash": null, - "origin": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10512,7 +10528,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726825274, + "block_time": 1726943634, "asset_info": { "divisible": true, "asset_longname": null, @@ -10528,9 +10544,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "a5fce55057a25a0e4f1a17eca63c2121a48e1802c130a7b0b5d172928cfa9141", + "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", "block_index": 144, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10539,7 +10555,7 @@ Returns the dispensers of an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10549,7 +10565,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825266, + "block_time": 1726943625, "asset_info": { "divisible": true, "asset_longname": null, @@ -10565,9 +10581,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "b918c1b51b630dab246f03fa8cb9d56e1854db3eba62069590bdaae213c9c46b", + "tx_hash": "fc59b2d70ba6a4019eb86b813223acd00bf3fe1819d6d28e2a2efdbb3fc9b526", "block_index": 142, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10576,7 +10592,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "origin": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10586,7 +10602,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825247, + "block_time": 1726943607, "asset_info": { "divisible": true, "asset_longname": null, @@ -10602,9 +10618,9 @@ Returns the dispensers of an asset }, { "tx_index": 26, - "tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10613,7 +10629,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10623,7 +10639,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -10648,7 +10664,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - The address to return + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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` @@ -10661,9 +10677,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "a5fce55057a25a0e4f1a17eca63c2121a48e1802c130a7b0b5d172928cfa9141", + "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", "block_index": 144, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10672,7 +10688,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10682,7 +10698,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825266, + "block_time": 1726943625, "asset_info": { "divisible": true, "asset_longname": null, @@ -10732,7 +10748,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -10740,7 +10756,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -10749,7 +10765,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -10757,7 +10773,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -10766,7 +10782,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -10774,7 +10790,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -10783,7 +10799,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -10820,27 +10836,27 @@ Returns the dispenses of an asset { "tx_index": 33, "dispense_index": 0, - "tx_hash": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", + "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", - "destination": "bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", + "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "last_status_tx_hash": null, - "origin": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10855,7 +10871,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726825274, + "block_time": 1726943634, "asset_info": { "divisible": true, "asset_longname": null, @@ -10869,19 +10885,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "15c76615f19c7ab60a28be17ee51ee7eeb9274a29410baad82bd76217b4c1059", + "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10889,7 +10905,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10904,7 +10920,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -10918,19 +10934,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2bc8003e54c5015f26156d3a0108e500f87bbb12f215ab1bbd96f193c0af43bf", + "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", "block_index": 140, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10938,7 +10954,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10953,7 +10969,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825238, + "block_time": 1726943598, "asset_info": { "divisible": true, "asset_longname": null, @@ -10996,8 +11012,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 0, @@ -11005,8 +11021,8 @@ Returns asset subassets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1726825331, - "last_issuance_block_time": 1726825331, + "first_issuance_block_time": 1726943679, + "last_issuance_block_time": 1726943679, "supply_normalized": "0.00000000" } ], @@ -11038,10 +11054,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11066,7 +11082,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726825176 + "block_time": 1726943534 } ], "next_cursor": null, @@ -11097,64 +11113,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "9e33d1c18f232f70831324c5da3242bd7223b2046634bac4d8ac230c6fa77625", + "tx_hash": "ad20ce4b786258ea1c1df1c6f730a0b7989626161405060fe9f692ef84bf66f1", "tx_index": 13, "block_index": 125, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", - "fairminter_tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825176, + "block_time": 1726943534, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } }, { - "tx_hash": "3cab6bd1d988b7c58fd2f2500fd32d5b49adbff82781905060b6fb78f9e8e7bf", + "tx_hash": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134", "tx_index": 12, "block_index": 124, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", - "fairminter_tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825171, + "block_time": 1726943531, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } }, { - "tx_hash": "5ff1033ca6de7b9f191e14e803b0106fe025ee35bd22ddb56a77427d0975c947", + "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "fairminter_tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825167, + "block_time": 1726943527, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } @@ -11170,7 +11186,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79` (str, required) - The address of the mints to return + + address: `bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (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` @@ -11189,22 +11205,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "5ff1033ca6de7b9f191e14e803b0106fe025ee35bd22ddb56a77427d0975c947", + "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "fairminter_tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825167, + "block_time": 1726943527, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } @@ -11248,9 +11264,9 @@ Returns all the orders "result": [ { "tx_index": 57, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11265,7 +11281,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726825453, + "block_time": 1726943802, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11291,9 +11307,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "block_index": 190, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11308,7 +11324,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726825449, + "block_time": 1726943798, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11334,9 +11350,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "tx_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "block_index": 186, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11351,7 +11367,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726825432, + "block_time": 1726943781, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11377,9 +11393,9 @@ Returns all the orders }, { "tx_index": 50, - "tx_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "tx_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "block_index": 185, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11394,7 +11410,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726825427, + "block_time": 1726943776, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11420,9 +11436,9 @@ Returns all the orders }, { "tx_index": 49, - "tx_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", + "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", "block_index": 186, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11437,7 +11453,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726825432, + "block_time": 1726943781, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11472,7 +11488,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608` (str, required) - The hash of the transaction that created the order + + order_hash: `8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e` (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. @@ -11484,9 +11500,9 @@ Returns the information of an order { "result": { "tx_index": 57, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11501,7 +11517,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726825453, + "block_time": 1726943802, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11533,7 +11549,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25` (str, required) - The hash of the transaction that created the order + + order_hash: `de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f` (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 @@ -11558,13 +11574,13 @@ Returns the order matches of an order { "result": [ { - "id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "tx0_index": 49, - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 52, - "tx1_hash": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", - "tx1_address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11578,7 +11594,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726825432, + "block_time": 1726943781, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11598,13 +11614,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "tx0_index": 49, - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 50, - "tx1_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", - "tx1_address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11618,7 +11634,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726825427, + "block_time": 1726943776, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11648,7 +11664,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25` (str, required) - The hash of the transaction that created the order + + order_hash: `de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f` (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 @@ -11667,15 +11683,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 51, - "tx_hash": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d", + "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", "block_index": 185, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "destination": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "btc_amount": 2000, - "order_match_id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "status": "valid", "confirmed": true, - "block_time": 1726825427, + "block_time": 1726943776, "btc_amount_normalized": "0.00002000" } ], @@ -11717,9 +11733,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 57, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11737,7 +11753,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726825453, + "block_time": 1726943802, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11763,9 +11779,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "block_index": 190, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11783,7 +11799,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726825449, + "block_time": 1726943798, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11809,9 +11825,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "tx_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "block_index": 186, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11829,7 +11845,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726825432, + "block_time": 1726943781, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11855,9 +11871,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "tx_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "block_index": 185, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11875,7 +11891,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726825427, + "block_time": 1726943776, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11901,9 +11917,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", + "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", "block_index": 186, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11921,7 +11937,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726825432, + "block_time": 1726943781, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11982,13 +11998,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "tx0_index": 49, - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 52, - "tx1_hash": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", - "tx1_address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12005,7 +12021,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726825432, + "block_time": 1726943781, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12025,13 +12041,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "tx0_index": 49, - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 50, - "tx1_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", - "tx1_address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12048,7 +12064,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726825427, + "block_time": 1726943776, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12068,13 +12084,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b_7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", + "id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", "tx0_index": 47, - "tx0_hash": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 48, - "tx1_hash": "7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", - "tx1_address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "tx1_hash": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12091,7 +12107,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726825356, + "block_time": 1726943703, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12147,13 +12163,13 @@ Returns all the order matches { "result": [ { - "id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "tx0_index": 49, - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 52, - "tx1_hash": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", - "tx1_address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12167,7 +12183,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726825432, + "block_time": 1726943781, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12187,13 +12203,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "tx0_index": 49, - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 50, - "tx1_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", - "tx1_address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12207,7 +12223,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726825427, + "block_time": 1726943776, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12227,13 +12243,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b_7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", + "id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", "tx0_index": 47, - "tx0_hash": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 48, - "tx1_hash": "7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", - "tx1_address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "tx1_hash": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12247,7 +12263,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726825356, + "block_time": 1726943703, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12415,66 +12431,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "c724be97644ba07ec1c9f927fbec7f0af277326c1db1abbd8979c6cc79c326e9", + "tx_hash": "338720d47c7ab728d1364edded99b5ecf28424429f2e3506bb6c2812aa8f8513", "block_index": 121, - "source": "bcrt1qy6cw9lzzwxl4z390c2kml2pgpxu6stzez3l2xz", + "source": "bcrt1qxmw2n03dl0jlw8ap4tg5n9htdske39r04u5amh", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1726825158, + "block_time": 1726943518, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "33dd53ae13def52250cb41311432dbc125ba8ef11b61e1bbada76e1ae239e4cd", + "tx_hash": "3760de148308b4b87619486b603d3b4e624dfce380efedd710b1e491b7992988", "block_index": 120, - "source": "bcrt1qvmhzysl38dwsjqkhjshcckellzjalg7pmtpee2", + "source": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1726825154, + "block_time": 1726943514, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "9b88d94d59ea60ddb9250e8c3f0236f64fc0a5e3a8b03b6194b01b12eb623d9c", + "tx_hash": "b5267ba78738e5b02fb213596fe807b28bcf218bab3cb1baf8d82d5594b9dccb", "block_index": 119, - "source": "bcrt1qp348umcgxw3k2ulcwm5f9gsu6lnntqfft3mehw", + "source": "bcrt1qkjfngjnf7pr6038cynrarc5kh9cuje48yv3wtm", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1726825149, + "block_time": 1726943511, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "6c1f708f623ffb89d5daeec88bcb133d051985644f265de2127dc026a360a264", + "tx_hash": "f1021a619687969d2bb8d9aecfd6e31c57d607b63df712475770c829311688e5", "block_index": 118, - "source": "bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt", + "source": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1726825145, + "block_time": 1726943507, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "9c3ed50276fc8685811c1f3beca7b9328382b86d3970791d121ba98b1bb4055f", + "tx_hash": "0659d434af9b56b1f1a97b3c83cb4d4bd3f4f78be6d848f9567e8237cdeca510", "block_index": 117, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1726825141, + "block_time": 1726943502, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12517,18 +12533,18 @@ Returns all dispensers "result": [ { "tx_index": 32, - "tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", + "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "last_status_tx_hash": null, - "origin": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -12538,7 +12554,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726825274, + "block_time": 1726943634, "asset_info": { "divisible": true, "asset_longname": null, @@ -12554,9 +12570,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "a5fce55057a25a0e4f1a17eca63c2121a48e1802c130a7b0b5d172928cfa9141", + "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", "block_index": 144, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -12565,7 +12581,7 @@ Returns all dispensers "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12575,7 +12591,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825266, + "block_time": 1726943625, "asset_info": { "divisible": true, "asset_longname": null, @@ -12591,9 +12607,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "b918c1b51b630dab246f03fa8cb9d56e1854db3eba62069590bdaae213c9c46b", + "tx_hash": "fc59b2d70ba6a4019eb86b813223acd00bf3fe1819d6d28e2a2efdbb3fc9b526", "block_index": 142, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12602,7 +12618,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "origin": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12612,7 +12628,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825247, + "block_time": 1726943607, "asset_info": { "divisible": true, "asset_longname": null, @@ -12628,9 +12644,9 @@ Returns all dispensers }, { "tx_index": 26, - "tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12639,7 +12655,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12649,7 +12665,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -12674,7 +12690,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d` (str, required) - The hash of the dispenser to return + + dispenser_hash: `866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4` (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. @@ -12686,9 +12702,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12697,7 +12713,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12707,7 +12723,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -12729,7 +12745,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d` (str, required) - The hash of the dispenser to return + + dispenser_hash: `866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4` (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 @@ -12749,19 +12765,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "15c76615f19c7ab60a28be17ee51ee7eeb9274a29410baad82bd76217b4c1059", + "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12769,7 +12785,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12784,7 +12800,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -12798,19 +12814,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2bc8003e54c5015f26156d3a0108e500f87bbb12f215ab1bbd96f193c0af43bf", + "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", "block_index": 140, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12818,7 +12834,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12833,7 +12849,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825238, + "block_time": 1726943598, "asset_info": { "divisible": true, "asset_longname": null, @@ -12875,20 +12891,20 @@ Returns all the dividends "result": [ { "tx_index": 40, - "tx_hash": "d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8", + "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", "block_index": 153, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726825303, + "block_time": 1726943663, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -12913,7 +12929,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8` (str, required) - The hash of the dividend to return + + dividend_hash: `5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c` (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. @@ -12925,20 +12941,20 @@ Returns a dividend by its hash { "result": { "tx_index": 40, - "tx_hash": "d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8", + "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", "block_index": 153, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726825303, + "block_time": 1726943663, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -12960,7 +12976,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c` (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 @@ -12983,12 +12999,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8", + "event": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", "tx_index": 40, - "utxo": "1ca47b3ed3faa95f09ad9663d035d659e3d277dce309ac6dfa12736be2a05564:0", - "utxo_address": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "utxo": "74d316ca342326f38281e59ead3dfc971daed967e3bf1bba4ebaf1ebbfaccca3:0", + "utxo_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "confirmed": true, - "block_time": 1726825303, + "block_time": 1726943663, "asset_info": { "divisible": true, "asset_longname": null, @@ -13000,16 +13016,16 @@ Returns a dividend distribution by its hash }, { "block_index": 153, - "address": "bcrt1qer50mmddxamklxlnhp2ts8wg0ajzqns2mleqhf", + "address": "bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8", + "event": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825303, + "block_time": 1726943663, "asset_info": { "divisible": true, "asset_longname": null, @@ -13055,27 +13071,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "16a2a4d25db0bdbc4b8b59436e96066cfb1fae75bf3485f694e86481b001a4d8", - "messages_hash": "f4dc020ee1b28cf6418bf348d583d9fd9eb4670253b0537a52e0820b98904bd7", + "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", + "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", "transaction_count": 1, - "txlist_hash": "15f051ecea1b0e7dc7afa64a941fb638b8014c03d0f629c8426274d9bd419803", - "block_time": 1726825461 + "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", + "block_time": 1726943809 }, "tx_hash": null, "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "tx_index": 59 }, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 }, { "event_index": 533, @@ -13084,12 +13100,12 @@ Returns all events "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "status": "valid", "tag": "64657374726f79", - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "tx_index": 59, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -13099,24 +13115,24 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 193, - "event": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "event": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -13126,25 +13142,25 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", "block_index": 193, - "block_time": 1726825461, + "block_time": 1726943809, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "tx_index": 59, - "utxos_info": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982:1", + "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -13164,9 +13180,9 @@ Returns all events }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 } ], "next_cursor": 530, @@ -13194,15 +13210,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "16a2a4d25db0bdbc4b8b59436e96066cfb1fae75bf3485f694e86481b001a4d8", - "messages_hash": "f4dc020ee1b28cf6418bf348d583d9fd9eb4670253b0537a52e0820b98904bd7", + "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", + "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", "transaction_count": 1, - "txlist_hash": "15f051ecea1b0e7dc7afa64a941fb638b8014c03d0f629c8426274d9bd419803", - "block_time": 1726825461 + "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", + "block_time": 1726943809 }, "tx_hash": null, "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 } } ``` @@ -13280,16 +13296,16 @@ Returns the events filtered by event name "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -13299,78 +13315,78 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726825449, + "block_time": 1726943798, "asset_info": { "divisible": true, "asset_longname": null, @@ -13380,24 +13396,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "block_index": 190, - "block_time": 1726825449 + "block_time": 1726943798 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "event": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "divisible": true, "asset_longname": null, @@ -13407,9 +13423,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "block_time": 1726825440 + "block_time": 1726943789 } ], "next_cursor": 490, @@ -13465,27 +13481,27 @@ Returns all the dispenses { "tx_index": 33, "dispense_index": 0, - "tx_hash": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", + "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", - "destination": "bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", + "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "last_status_tx_hash": null, - "origin": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13500,7 +13516,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726825274, + "block_time": 1726943634, "asset_info": { "divisible": true, "asset_longname": null, @@ -13514,19 +13530,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "15c76615f19c7ab60a28be17ee51ee7eeb9274a29410baad82bd76217b4c1059", + "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13534,7 +13550,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13549,7 +13565,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -13563,19 +13579,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2bc8003e54c5015f26156d3a0108e500f87bbb12f215ab1bbd96f193c0af43bf", + "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", "block_index": 140, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13583,7 +13599,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13598,7 +13614,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825238, + "block_time": 1726943598, "asset_info": { "divisible": true, "asset_longname": null, @@ -13640,10 +13656,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "quantity": 10, "status": "valid", @@ -13651,7 +13667,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "divisible": true, "asset_longname": null, @@ -13664,10 +13680,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13675,11 +13691,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -13688,10 +13704,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13699,11 +13715,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -13712,10 +13728,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 53, - "tx_hash": "59e81ffd913405acb74f32dfc79bccf2605e8b41c6117f26b184127c9adaf747", + "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f", "block_index": 187, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -13723,7 +13739,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825436, + "block_time": 1726943785, "asset_info": { "divisible": true, "asset_longname": null, @@ -13736,10 +13752,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 42, - "tx_hash": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f", + "tx_hash": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", "block_index": 155, - "source": "3fef13f6bcdd2af88bb1ea176f0e66bd711f27abee3a15cd5d9f024a2ca9712b:0", - "destination": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f:1", + "source": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1:0", + "destination": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -13747,7 +13763,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825313, + "block_time": 1726943670, "asset_info": { "divisible": true, "asset_longname": null, @@ -13789,14 +13805,14 @@ Returns all the issuances "result": [ { "tx_index": 46, - "tx_hash": "10cfae46493da7d2e6bf22d408237bbce06107cad0667073471cd7a2b03ac7e6", + "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -13811,20 +13827,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825340, + "block_time": 1726943687, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "c9993ca12278a2515f3d2392bc3815d92314e56cca6eb8a0f0f4a763384172b7", + "tx_hash": "ad5638a61876314ea341c91f638042e00c58a6a150651c1198858bbfa50bcdd3", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -13839,20 +13855,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726825336, + "block_time": 1726943683, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "6eab9bdda455830ed79ad0385271d751f42068b84397671cf28b7fde4368eb98", + "tx_hash": "920160abffc2681cf411a03e5ddc3c3f7f1156c1ceffaa2304a7f6f82032e82f", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -13867,20 +13883,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825331, + "block_time": 1726943679, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "b852601dc9b19f603942ca34706fa6e463efae4faaf8831fbfdef4a2143e93f0", + "tx_hash": "730d154e7c40e6f269a3c0f15937c64309d932202616ef4c54ec0c6e07ddc29c", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -13895,20 +13911,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825317, + "block_time": 1726943675, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f", + "tx_hash": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qvmhzysl38dwsjqkhjshcckellzjalg7pmtpee2", - "issuer": "bcrt1qvmhzysl38dwsjqkhjshcckellzjalg7pmtpee2", + "source": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", + "issuer": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", "transfer": false, "callable": false, "call_date": 0, @@ -13923,7 +13939,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825313, + "block_time": 1726943670, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -13938,7 +13954,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `10cfae46493da7d2e6bf22d408237bbce06107cad0667073471cd7a2b03ac7e6` (str, required) - The hash of the transaction to return + + tx_hash: `193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c` (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. @@ -13950,14 +13966,14 @@ Returns the issuances of a block { "result": { "tx_index": 46, - "tx_hash": "10cfae46493da7d2e6bf22d408237bbce06107cad0667073471cd7a2b03ac7e6", + "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -13972,7 +13988,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825340, + "block_time": 1726943687, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14004,16 +14020,16 @@ Returns all sweeps "result": [ { "tx_index": 58, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "fee_paid_normalized": "0.00600000" } ], @@ -14027,7 +14043,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8` (str, required) - The hash of the transaction to return + + tx_hash: `aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb` (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. @@ -14040,16 +14056,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 58, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "fee_paid_normalized": "0.00600000" } ], @@ -14083,9 +14099,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "7afd835b6e2698c872818ef165eacb80569bf7feb379434a7a8500f2ca203a5e", + "tx_hash": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea", "block_index": 138, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14093,14 +14109,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726825230, + "block_time": 1726943590, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "26c8f08ba6eb1653583ea631a32a4360bf8efa472e2549da69e17e976c2ad5b9", + "tx_hash": "3adb5f6a83dbf36fc41ff713ae0883905bee565d0450041334cb0b35e8d7dc74", "block_index": 137, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14108,7 +14124,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726825226, + "block_time": 1726943585, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14122,7 +14138,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `7afd835b6e2698c872818ef165eacb80569bf7feb379434a7a8500f2ca203a5e` (str, required) - The hash of the transaction to return + + tx_hash: `70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea` (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. @@ -14134,9 +14150,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "7afd835b6e2698c872818ef165eacb80569bf7feb379434a7a8500f2ca203a5e", + "tx_hash": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea", "block_index": 138, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14144,7 +14160,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726825230, + "block_time": 1726943590, "fee_fraction_int_normalized": "0.00000000" } } @@ -14174,10 +14190,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "70a08a09be7e7db658afd9643104aa69036256014c37028c4cf48c03228597bd", + "tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14202,13 +14218,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726825217 + "block_time": 1726943577 }, { - "tx_hash": "e7323ddacfbba1ea3be9123e0aa839426a9b1c70cbc7e2d589144cbb7c737cfb", + "tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14233,13 +14249,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726825201 + "block_time": 1726943560 }, { - "tx_hash": "019c1a0e87d4fc9a572746bc4785e4a308e1827daaa4e9a77bc61c0d0ce7fc75", + "tx_hash": "f8863d06dd1c63af927665e2741a68593285bb4a52bbadf58685b17809c50470", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14264,13 +14280,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726825197 + "block_time": 1726943556 }, { - "tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14295,7 +14311,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726825176 + "block_time": 1726943534 } ], "next_cursor": null, @@ -14338,7 +14354,7 @@ Returns the mints by fairminter Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt,bcrt1qp348umcgxw3k2ulcwm5f9gsu6lnntqfft3mehw` (str, required) - The addresses to search for + + addresses: `bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc,bcrt1qkjfngjnf7pr6038cynrarc5kh9cuje48yv3wtm` (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. @@ -14357,8 +14373,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", - "address": "bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt" + "txid": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "address": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc" }, { "vout": 2, @@ -14366,8 +14382,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f", - "address": "bcrt1qp348umcgxw3k2ulcwm5f9gsu6lnntqfft3mehw" + "txid": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", + "address": "bcrt1qkjfngjnf7pr6038cynrarc5kh9cuje48yv3wtm" } ], "next_cursor": null, @@ -14380,7 +14396,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk` (str, required) - The address to search for + + address: `bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk` (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 @@ -14396,28 +14412,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "b67f5af2e627e0827c544fb71b70ff8b8754740c3ea26d7a302ae0cb78430605" + "tx_hash": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134" }, { - "tx_hash": "59e81ffd913405acb74f32dfc79bccf2605e8b41c6117f26b184127c9adaf747" + "tx_hash": "cc7990d855f354e057a6e08b954da3db23de867816732e8fc48f06b3fcadb83b" }, { - "tx_hash": "330e4c148d12cfcceb7de4268c14d00bf280ab8a2d4d34fd7681c805ce7932aa" + "tx_hash": "19c2df8875b48b0feac5ebd32ecd51687724b5f0cd6696c4530be3fe54275942" }, { - "tx_hash": "9925f2aefd06218212ce3703d212e1482bfbaa21eaf739259b4f6af9790480ac" + "tx_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c" }, { - "tx_hash": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be" + "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f" }, { - "tx_hash": "3cab6bd1d988b7c58fd2f2500fd32d5b49adbff82781905060b6fb78f9e8e7bf" + "tx_hash": "9dc5d37ade58fe3fcc4001a7c5a086fc13efa89bbb556610bb78c7d6c2b059a1" }, { - "tx_hash": "dc4490de7d9dcfbbd88d7d329e61ffdb70aba9b47120da1597dc11c2690f89c0" + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" }, { - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8" + "tx_hash": "29fa7abdb8f36c6ccf566648eecdf35b25c8832dd3e7d04c05cd68cb89a5b9cf" } ], "next_cursor": null, @@ -14430,7 +14446,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qvmhzysl38dwsjqkhjshcckellzjalg7pmtpee2` (str, required) - The address to search for. + + address: `bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y` (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. @@ -14443,8 +14459,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 6, - "tx_hash": "b9f401d610a4d5a8ba21cb87fc26cabbb2f6c5265e0dad2b23612d5f7701e918" + "block_index": 1, + "tx_hash": "5fb7017e22dd99935308749bc42c99dcb2c7f63a000eabcb579f2de68b1a65d5" } } ``` @@ -14454,7 +14470,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt` (str, required) - The address to search for + + address: `bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc` (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 @@ -14475,7 +14491,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566" + "txid": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81" } ], "next_cursor": null, @@ -14488,7 +14504,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh` (str, required) - Address to get pubkey for. + + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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. @@ -14500,7 +14516,7 @@ Get pubkey for an address. ``` { - "result": "02826647162b0c6923b8cb80931a26d52766d59f1eaa8341f34b9b31592e138ebe" + "result": "02a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a761" } ``` @@ -14509,7 +14525,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982` (str, required) - The transaction hash + + tx_hash: `ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf` (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. @@ -14521,7 +14537,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001016b14385c89dc93e03dab476dc34881e4a46f3bb5e03a142c94a5e10fd1c7500d0300000000ffffffff020000000000000000226a20e2a35f57e4de5d3f9318e1f758b5bc9d811e9dd2b332a6625c97932b99ca37df680b0a27010000001600143f58a79291a265f610e74bf153dca296bc399fb202473044022060f012d87c7164aa7c303baafffe24810872e7563e06556f08548ee640f07579022063dea91814fd60c0e0b1430373d8f018448f1f4dcaa7cc6e9be7d424cb9eac93012103627149b11072d173c18af5d57b2e956a6e9486c355941852729eb2c95ff676c100000000" + "result": "020000000001010868d36801b7e9ccefaff9e835632724bef8ff179dae145ee0d64a02571a88970300000000ffffffff020000000000000000226a20efd23af66b243324230f7699e2ab650a7995a09ba6f342c89445eeb929c76651680b0a27010000001600144d58139ca58d4e5278dcc90c123825e920a4c7820247304402207b586af9c20ebe66916002d4457616420fa09a3636aff04d5c858dc611669d6202204c63d1f3a0c0f3f632455c02abd8e28fa98efddf8c513e252280783611cd71eb01210352e612ef317c96dc910d7efc93996e313947873e472d8309212310d61a94612200000000" } ``` @@ -14543,7 +14559,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 68517 + "result": 68546 } ``` @@ -14614,26 +14630,26 @@ Returns all mempool events { "result": [ { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "tx_index": 60 } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "memo": null, "quantity": 10000, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "status": "valid", - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "tx_index": 60, "asset_info": { "divisible": true, @@ -14646,19 +14662,19 @@ Returns all mempool events } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "CREDIT", "params": { - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -14670,19 +14686,19 @@ Returns all mempool events } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 193, - "event": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -14694,27 +14710,27 @@ Returns all mempool events } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726825466.1412678, + "block_time": 1726943814.1647968, "btc_amount": 0, - "data": "0200000000000000010000000000002710803a92bf67fd998b844b7ea1a455ec67c46c4bc757", + "data": "020000000000000001000000000000271080c6ffd5588e4548e249935cfdedfb570089a7e433", "destination": "", "fee": 10000, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "tx_index": 60, - "utxos_info": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b:1", + "utxos_info": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "memo": null, "asset_info": { "divisible": true, @@ -14758,19 +14774,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "CREDIT", "params": { - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -14792,7 +14808,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b` (str, required) - The hash of the transaction to return + + tx_hash: `96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a` (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 @@ -14812,26 +14828,26 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "tx_index": 60 } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "memo": null, "quantity": 10000, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "status": "valid", - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "tx_index": 60, "asset_info": { "divisible": true, @@ -14844,19 +14860,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "CREDIT", "params": { - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -14868,19 +14884,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 193, - "event": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -14892,27 +14908,27 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726825466.1412678, + "block_time": 1726943814.1647968, "btc_amount": 0, - "data": "0200000000000000010000000000002710803a92bf67fd998b844b7ea1a455ec67c46c4bc757", + "data": "020000000000000001000000000000271080c6ffd5588e4548e249935cfdedfb570089a7e433", "destination": "", "fee": 10000, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "tx_index": 60, - "utxos_info": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b:1", + "utxos_info": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "memo": null, "asset_info": { "divisible": true, diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index 4812ba9e59..b8c97320b8 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -254,6 +254,32 @@ def multisig_pubkeyhashes_to_pubkeys(address, provided_pubkeys=None): return script.construct_array(signatures_required, pubkeys, signatures_possible) +def get_dust_return_pubkey(source, provided_pubkeys): + """Return the pubkey to which dust from data outputs will be sent. + + This pubkey is used in multi-sig data outputs (as the only real pubkey) to + make those the outputs spendable. It is derived from the source address, so + that the dust is spendable by the creator of the transaction. + """ + # Get hex dust return pubkey. + # inject `script` + if script.is_multisig(source): + a, self_pubkeys, b = script.extract_array( + multisig_pubkeyhashes_to_pubkeys(source, provided_pubkeys) + ) + dust_return_pubkey_hex = self_pubkeys[0] + else: + dust_return_pubkey_hex = pubkeyhash_to_pubkey(source, provided_pubkeys) + + # Convert hex public key into the (binary) dust return pubkey. + try: + dust_return_pubkey = binascii.unhexlify(dust_return_pubkey_hex) + except binascii.Error: + raise script.InputError("Invalid private key.") # noqa: B904 + + return dust_return_pubkey + + # set higher than the max number of UTXOs we should expect to # manage in an aging cache for any one source address, at any one period # UTXO_P2SH_ENCODING_LOCKS is TTLCache for UTXOs that are used for chaining p2sh encoding @@ -301,31 +327,6 @@ def __init__( self.op_return_max_size = op_return_max_size self.ps2h_dust_return_pubkey = ps2h_dust_return_pubkey - def get_dust_return_pubkey(self, source, provided_pubkeys, encoding): - """Return the pubkey to which dust from data outputs will be sent. - - This pubkey is used in multi-sig data outputs (as the only real pubkey) to - make those the outputs spendable. It is derived from the source address, so - that the dust is spendable by the creator of the transaction. - """ - # Get hex dust return pubkey. - # inject `script` - if script.is_multisig(source): - a, self_pubkeys, b = script.extract_array( - multisig_pubkeyhashes_to_pubkeys(source, provided_pubkeys) - ) - dust_return_pubkey_hex = self_pubkeys[0] - else: - dust_return_pubkey_hex = pubkeyhash_to_pubkey(source, provided_pubkeys) - - # Convert hex public key into the (binary) dust return pubkey. - try: - dust_return_pubkey = binascii.unhexlify(dust_return_pubkey_hex) - except binascii.Error: - raise script.InputError("Invalid private key.") # noqa: B904 - - return dust_return_pubkey - def make_outkey_vin_txid(self, txid, vout): if (txid, vout) not in self.utxo_p2sh_encoding_locks_cache: txhex = self.backend.bitcoind.getrawtransaction(txid, verbose=False) @@ -549,103 +550,32 @@ def select_any_coin_from_source( return input - def construct( - self, - db, - tx_info, - encoding="auto", - fee_per_kb=config.DEFAULT_FEE_PER_KB, - estimate_fee_per_kb=None, - estimate_fee_per_kb_nblocks=config.ESTIMATE_FEE_CONF_TARGET, - regular_dust_size=config.DEFAULT_REGULAR_DUST_SIZE, - multisig_dust_size=config.DEFAULT_MULTISIG_DUST_SIZE, - op_return_value=config.DEFAULT_OP_RETURN_VALUE, - exact_fee=None, - fee_provided=0, - provided_pubkeys=None, - dust_return_pubkey=None, - allow_unconfirmed_inputs=False, - unspent_tx_hash=None, - inputs_set=None, - disable_utxo_locks=False, - extended_tx_info=False, - old_style_api=None, - segwit=False, - p2sh_source_multisig_pubkeys=None, - p2sh_source_multisig_pubkeys_required=None, - p2sh_pretx_txid=None, - exclude_utxos=None, - ): - if estimate_fee_per_kb is None: - estimate_fee_per_kb = config.ESTIMATE_FEE_PER_KB - - # lazy assign from config, because when set as default it's evaluated before it's configured - if old_style_api is None: - old_style_api = config.OLD_STYLE_API - - (source, destination_outputs, data) = tx_info - - if dust_return_pubkey: - dust_return_pubkey = binascii.unhexlify(dust_return_pubkey) - - if p2sh_source_multisig_pubkeys: - p2sh_source_multisig_pubkeys = [ - binascii.unhexlify(p) for p in p2sh_source_multisig_pubkeys - ] - - # Source. - # If public key is necessary for construction of (unsigned) - # transaction, use the public key provided, or find it from the - # blockchain. - if source: - script.validate(source) - - source_is_p2sh = script.is_p2sh(source) + def determine_encoding(self, data, desired_encoding="auto", old_style_api=None): + # Data encoding methods (choose and validate). + if not data: + return None - # Normalize source - if script.is_multisig(source): - source_address = multisig_pubkeyhashes_to_pubkeys(source, provided_pubkeys) + if desired_encoding == "auto": + if len(data) + len(self.prefix) <= self.op_return_max_size: + encoding = "opreturn" + else: + encoding = ( + "p2sh" if not old_style_api and util.enabled("p2sh_encoding") else "multisig" + ) # p2sh is not possible with old_style_api else: - source_address = source + encoding = desired_encoding - # Sanity checks. - if exact_fee and not isinstance(exact_fee, int): - raise exceptions.TransactionError("Exact fees must be in satoshis.") - if not isinstance(fee_provided, int): - raise exceptions.TransactionError("Fee provided must be in satoshis.") + if encoding == "p2sh" and not util.enabled("p2sh_encoding"): + raise exceptions.TransactionError("P2SH encoding not enabled yet") - """Determine encoding method""" - - if data: - desired_encoding = encoding - # Data encoding methods (choose and validate). - if desired_encoding == "auto": - if len(data) + len(self.prefix) <= self.op_return_max_size: - encoding = "opreturn" - else: - encoding = ( - "p2sh" - if not old_style_api and util.enabled("p2sh_encoding") - else "multisig" - ) # p2sh is not possible with old_style_api - - elif desired_encoding == "p2sh" and not util.enabled("p2sh_encoding"): - raise exceptions.TransactionError("P2SH encoding not enabled yet") - - elif encoding not in ("pubkeyhash", "multisig", "opreturn", "p2sh"): - raise exceptions.TransactionError("Unknown encoding‐scheme.") - else: - # no data - encoding = None - if encoding: - self.logger.debug( - f"TX Construct - Constructing `{encoding.upper()}` transaction from {source}." - ) - else: - self.logger.debug(f"TX Construct - Constructing transaction from {source}.") + elif encoding not in ("pubkeyhash", "multisig", "opreturn", "p2sh"): + raise exceptions.TransactionError("Unknown encoding‐scheme.") - """Destinations""" + return encoding + def compute_destinations_and_values( + self, destination_outputs, encoding, multisig_dust_size, regular_dust_size, provided_pubkeys + ): # Destination outputs. # Replace multi‐sig addresses with multi‐sig pubkeys. Check that the # destination output isn’t a dust output. Set null values to dust size. @@ -662,6 +592,10 @@ def construct( elif value < dust_size: raise exceptions.TransactionError("Destination output is dust.") + print("regular_dust_size", regular_dust_size) + print("multisig_dust_size", multisig_dust_size) + print("dust_size", dust_size) + # Address. script.validate(address) if script.is_multisig(address): @@ -673,12 +607,22 @@ def construct( ) else: destination_outputs_new.append((address, value)) + return destination_outputs_new - destination_outputs = destination_outputs_new - destination_btc_out = sum([value for address, value in destination_outputs]) - - """Data""" - + def prepare_data_output( + self, + data, + source, + encoding, + multisig_dust_size, + regular_dust_size, + provided_pubkeys, + source_is_p2sh, + dust_return_pubkey, + op_return_value, + ): + data_value = 0 + data_array = [] if data: # @TODO: p2sh encoding require signable dust key if encoding == "multisig": @@ -695,9 +639,7 @@ def construct( if not dust_return_pubkey: if encoding == "multisig" or encoding == "p2sh" and not source_is_p2sh: - dust_return_pubkey = self.get_dust_return_pubkey( - source, provided_pubkeys, encoding - ) + dust_return_pubkey = get_dust_return_pubkey(source, provided_pubkeys) else: dust_return_pubkey = None @@ -731,23 +673,36 @@ def construct( else: # Pay‐to‐PubKeyHash, e.g. data_value = regular_dust_size - data_output = (data_array, data_value) - else: - data_value = 0 - data_array = [] - data_output = None dust_return_pubkey = None - data_btc_out = data_value * len(data_array) - self.logger.trace( - f"TX Construct - data_btc_out={data_btc_out} (data_value={data_value} len(data_array)={len(data_array)})" - ) + return data_value, data_array, dust_return_pubkey - """Inputs""" + def prepare_inputs( + self, + encoding, + data, + destination_outputs, + data_array, + source, + p2sh_pretx_txid, + allow_unconfirmed_inputs, + unspent_tx_hash, + inputs_set, + fee_per_kb, + estimate_fee_per_kb, + estimate_fee_per_kb_nblocks, + exact_fee, + fee_provided, + destination_btc_out, + data_btc_out, + regular_dust_size, + disable_utxo_locks, + exclude_utxos, + ): btc_in = 0 final_fee = 0 - # Calculate collective size of outputs, for fee calculation. + # Calculate collective size of outputs, for fee calculation p2pkhsize = 25 + 9 if encoding == "multisig": data_output_size = 81 # 71 for the data @@ -767,7 +722,7 @@ def construct( ) ) # replace the data value - data_output = (data_array, data_value) + # data_output = (data_array, data_value) else: sum_data_output_size = len(data_array) * data_output_size size_for_fee = ((25 + 9) * len(destination_outputs)) + sum_data_output_size @@ -798,107 +753,9 @@ def construct( # when encoding is P2SH and the pretx txid is passed we can skip coinselection inputs, change_quantity = None, None - """Finish""" - - if change_quantity: - change_output = (source_address, change_quantity) - else: - change_output = None - - unsigned_pretx_hex = None - unsigned_tx_hex = None - - pretx_txid = None - if encoding == "p2sh": - assert not (segwit and p2sh_pretx_txid) # shouldn't do old style with segwit enabled - - if p2sh_pretx_txid: - pretx_txid = ( - p2sh_pretx_txid - if isinstance(p2sh_pretx_txid, bytes) - else binascii.unhexlify(p2sh_pretx_txid) - ) - unsigned_pretx = None - else: - destination_value_sum = sum([value for (destination, value) in destination_outputs]) - source_value = destination_value_sum - - if change_output: - # add the difference between source and destination to the change - change_value = change_output[1] + (destination_value_sum - source_value) - change_output = (change_output[0], change_value) - - unsigned_pretx = serializer.serialise_p2sh_pretx( - inputs, - source=source_address, - source_value=source_value, - data_output=data_output, - change_output=change_output, - pubkey=dust_return_pubkey, - multisig_pubkeys=p2sh_source_multisig_pubkeys, - multisig_pubkeys_required=p2sh_source_multisig_pubkeys_required, - ) - unsigned_pretx_hex = binascii.hexlify(unsigned_pretx).decode("utf-8") - - # with segwit we already know the txid and can return both - if segwit: - # pretx_txid = hashlib.sha256(unsigned_pretx).digest() # this should be segwit txid - ptx = CTransaction.stream_deserialize( - io.BytesIO(unsigned_pretx) - ) # could be a non-segwit tx anyways - txid_ba = bytearray(ptx.GetTxid()) - txid_ba.reverse() - pretx_txid = bytes(txid_ba) # gonna leave the malleability problem to upstream - self.logger.debug(f"pretx_txid {pretx_txid}") - - if unsigned_pretx: - # we set a long lock on this, don't want other TXs to spend from it - self.utxo_p2sh_encoding_locks.set(make_outkey_vin(unsigned_pretx, 0), True) - - # only generate the data TX if we have the pretx txId - if pretx_txid: - source_input = None - if script.is_p2sh(source): - source_input = self.select_any_coin_from_source(source) - if not source_input: - raise exceptions.TransactionError( - "Unable to select source input for p2sh source address" - ) - - unsigned_datatx = serializer.serialise_p2sh_datatx( - pretx_txid, - source=source_address, - source_input=source_input, - destination_outputs=destination_outputs, - data_output=data_output, - pubkey=dust_return_pubkey, - multisig_pubkeys=p2sh_source_multisig_pubkeys, - multisig_pubkeys_required=p2sh_source_multisig_pubkeys_required, - ) - unsigned_datatx_hex = binascii.hexlify(unsigned_datatx).decode("utf-8") - - # let the rest of the code work it's magic on the data tx - unsigned_tx_hex = unsigned_datatx_hex - else: - # we're just gonna return the pretx, it doesn't require any of the further checks - self.logger.warning(f"old_style_api = {old_style_api}") - return return_result([unsigned_pretx_hex], old_style_api=old_style_api) - - else: - # Serialise inputs and outputs. - unsigned_tx = serializer.serialise( - encoding, - inputs, - destination_outputs, - data_output, - change_output, - dust_return_pubkey=dust_return_pubkey, - ) - unsigned_tx_hex = binascii.hexlify(unsigned_tx).decode("utf-8") - - """Sanity Check""" + return inputs, change_quantity, btc_in, final_fee - # Desired transaction info. + def check_transaction_sanity(self, db, source, tx_info, unsigned_tx_hex, encoding, inputs): (desired_source, desired_destination_outputs, desired_data) = tx_info desired_source = script.make_canonical(desired_source) desired_destination = ( @@ -934,16 +791,8 @@ def construct( desired_source = parsed_source except exceptions.BTCOnlyError: # Skip BTC‐only transactions. - if extended_tx_info: - return { - "btc_in": btc_in, - "btc_out": destination_btc_out + data_btc_out, - "btc_change": change_quantity, - "btc_fee": final_fee, - "tx_hex": unsigned_tx_hex, - } - self.logger.trace("TX Construct - Skip BTC‐only transactions") - return return_result([unsigned_pretx_hex, unsigned_tx_hex], old_style_api=old_style_api) + return + desired_source = script.make_canonical(desired_source) # Check desired info against parsed info. @@ -959,6 +808,276 @@ def construct( f"Constructed transaction does not parse correctly: {desired} ≠ {parsed}" ) + def serialize_p2sh( + self, + inputs, + source, + source_address, + destination_outputs, + data_output, + change_output, + dust_return_pubkey, + p2sh_source_multisig_pubkeys, + p2sh_source_multisig_pubkeys_required, + p2sh_pretx_txid, + segwit, + ): + pretx_txid = None + unsigned_pretx_hex = None + unsigned_tx_hex = None + + assert not (segwit and p2sh_pretx_txid) # shouldn't do old style with segwit enabled + + if p2sh_pretx_txid: + pretx_txid = ( + p2sh_pretx_txid + if isinstance(p2sh_pretx_txid, bytes) + else binascii.unhexlify(p2sh_pretx_txid) + ) + unsigned_pretx = None + else: + destination_value_sum = sum([value for (destination, value) in destination_outputs]) + source_value = destination_value_sum + + if change_output: + # add the difference between source and destination to the change + change_value = change_output[1] + (destination_value_sum - source_value) + change_output = (change_output[0], change_value) + + unsigned_pretx = serializer.serialise_p2sh_pretx( + inputs, + source=source_address, + source_value=source_value, + data_output=data_output, + change_output=change_output, + pubkey=dust_return_pubkey, + multisig_pubkeys=p2sh_source_multisig_pubkeys, + multisig_pubkeys_required=p2sh_source_multisig_pubkeys_required, + ) + unsigned_pretx_hex = binascii.hexlify(unsigned_pretx).decode("utf-8") + + # with segwit we already know the txid and can return both + if segwit: + # pretx_txid = hashlib.sha256(unsigned_pretx).digest() # this should be segwit txid + ptx = CTransaction.stream_deserialize( + io.BytesIO(unsigned_pretx) + ) # could be a non-segwit tx anyways + txid_ba = bytearray(ptx.GetTxid()) + txid_ba.reverse() + pretx_txid = bytes(txid_ba) # gonna leave the malleability problem to upstream + self.logger.debug(f"pretx_txid {pretx_txid}") + + if unsigned_pretx: + # we set a long lock on this, don't want other TXs to spend from it + self.utxo_p2sh_encoding_locks.set(make_outkey_vin(unsigned_pretx, 0), True) + + # only generate the data TX if we have the pretx txId + if pretx_txid: + source_input = None + if script.is_p2sh(source): + source_input = self.select_any_coin_from_source(source) + if not source_input: + raise exceptions.TransactionError( + "Unable to select source input for p2sh source address" + ) + + unsigned_datatx = serializer.serialise_p2sh_datatx( + pretx_txid, + source=source_address, + source_input=source_input, + destination_outputs=destination_outputs, + data_output=data_output, + pubkey=dust_return_pubkey, + multisig_pubkeys=p2sh_source_multisig_pubkeys, + multisig_pubkeys_required=p2sh_source_multisig_pubkeys_required, + ) + unsigned_datatx_hex = binascii.hexlify(unsigned_datatx).decode("utf-8") + + # let the rest of the code work it's magic on the data tx + unsigned_tx_hex = unsigned_datatx_hex + return pretx_txid, unsigned_pretx_hex, unsigned_tx_hex + else: + # we're just gonna return the pretx, it doesn't require any of the further checks + return pretx_txid, unsigned_pretx_hex, None + + def construct( + self, + db, + tx_info, + encoding="auto", + fee_per_kb=config.DEFAULT_FEE_PER_KB, + estimate_fee_per_kb=None, + estimate_fee_per_kb_nblocks=config.ESTIMATE_FEE_CONF_TARGET, + regular_dust_size=config.DEFAULT_REGULAR_DUST_SIZE, + multisig_dust_size=config.DEFAULT_MULTISIG_DUST_SIZE, + op_return_value=config.DEFAULT_OP_RETURN_VALUE, + exact_fee=None, + fee_provided=0, + provided_pubkeys=None, + dust_return_pubkey=None, + allow_unconfirmed_inputs=False, + unspent_tx_hash=None, + inputs_set=None, + disable_utxo_locks=False, + extended_tx_info=False, + old_style_api=None, + segwit=False, + p2sh_source_multisig_pubkeys=None, + p2sh_source_multisig_pubkeys_required=None, + p2sh_pretx_txid=None, + exclude_utxos=None, + ): + if estimate_fee_per_kb is None: + estimate_fee_per_kb = config.ESTIMATE_FEE_PER_KB + + # lazy assign from config, because when set as default it's evaluated before it's configured + if old_style_api is None: + old_style_api = config.OLD_STYLE_API + + (source, destination_outputs, data) = tx_info + + if dust_return_pubkey: + dust_return_pubkey = binascii.unhexlify(dust_return_pubkey) + + if p2sh_source_multisig_pubkeys: + p2sh_source_multisig_pubkeys = [ + binascii.unhexlify(p) for p in p2sh_source_multisig_pubkeys + ] + + # Source. + # If public key is necessary for construction of (unsigned) + # transaction, use the public key provided, or find it from the + # blockchain. + if source: + script.validate(source) + + source_is_p2sh = script.is_p2sh(source) + + # Normalize source + if script.is_multisig(source): + source_address = multisig_pubkeyhashes_to_pubkeys(source, provided_pubkeys) + else: + source_address = source + + # Sanity checks. + if exact_fee and not isinstance(exact_fee, int): + raise exceptions.TransactionError("Exact fees must be in satoshis.") + if not isinstance(fee_provided, int): + raise exceptions.TransactionError("Fee provided must be in satoshis.") + + """Determine encoding method""" + + encoding = self.determine_encoding(data, encoding, old_style_api) + if encoding: + self.logger.debug( + f"TX Construct - Constructing `{encoding.upper()}` transaction from {source}." + ) + else: + self.logger.debug(f"TX Construct - Constructing transaction from {source}.") + + """Destinations""" + + destination_outputs = self.compute_destinations_and_values( + destination_outputs, encoding, multisig_dust_size, regular_dust_size, provided_pubkeys + ) + destination_btc_out = sum([value for address, value in destination_outputs]) + + """Data""" + + data_value, data_array, dust_return_pubkey = self.prepare_data_output( + data, + source, + encoding, + multisig_dust_size, + regular_dust_size, + provided_pubkeys, + source_is_p2sh, + dust_return_pubkey, + op_return_value, + ) + + if encoding == "p2sh": + _size_for_fee, _datatx_necessary_fee, data_value, data_btc_out = ( + p2sh_encoding.calculate_outputs( + destination_outputs, data_array, fee_per_kb, exact_fee + ) + ) + # replace the data value + data_output = (data_array, data_value) + else: + data_output = (data_array, data_value) if len(data_array) > 0 else None + data_btc_out = data_value * len(data_array) + + self.logger.trace( + f"TX Construct - data_btc_out={data_btc_out} (data_value={data_value} len(data_array)={len(data_array)})" + ) + + """Inputs""" + + inputs, change_quantity, btc_in, final_fee = self.prepare_inputs( + encoding, + data, + destination_outputs, + data_array, + source, + p2sh_pretx_txid, + allow_unconfirmed_inputs, + unspent_tx_hash, + inputs_set, + fee_per_kb, + estimate_fee_per_kb, + estimate_fee_per_kb_nblocks, + exact_fee, + fee_provided, + destination_btc_out, + data_btc_out, + regular_dust_size, + disable_utxo_locks, + exclude_utxos, + ) + + """Finish""" + + if change_quantity: + change_output = (source_address, change_quantity) + else: + change_output = None + + unsigned_pretx_hex = None + unsigned_tx_hex = None + + pretx_txid = None + if encoding == "p2sh": + pretx_txid, unsigned_pretx_hex, unsigned_tx_hex = self.serialize_p2sh( + inputs, + source, + source_address, + destination_outputs, + data_output, + change_output, + dust_return_pubkey, + p2sh_source_multisig_pubkeys, + p2sh_source_multisig_pubkeys_required, + p2sh_pretx_txid, + segwit, + ) + else: + # Serialise inputs and outputs. + unsigned_tx = serializer.serialise( + encoding, + inputs, + destination_outputs, + data_output, + change_output, + dust_return_pubkey=dust_return_pubkey, + ) + unsigned_tx_hex = binascii.hexlify(unsigned_tx).decode("utf-8") + + """Sanity Check""" + + if (encoding == "p2sh" and pretx_txid) or encoding != "p2sh": + self.check_transaction_sanity(db, source, tx_info, unsigned_tx_hex, encoding, inputs) + if extended_tx_info: return { "btc_in": btc_in, @@ -969,10 +1088,10 @@ def construct( } self.logger.debug("TX Construct - Transaction constructed.") - return return_result([unsigned_pretx_hex, unsigned_tx_hex], old_style_api=old_style_api) - - -# UTILS + if unsigned_pretx_hex: + return return_result([unsigned_pretx_hex, unsigned_tx_hex], old_style_api=old_style_api) + else: + return return_result([unsigned_tx_hex], old_style_api=old_style_api) def print_coin(coin): @@ -1015,32 +1134,6 @@ def return_result(tx_hexes, old_style_api): return tx_hexes -# TODO: this should be lifted -def get_dust_return_pubkey(source, provided_pubkeys, encoding): - """Return the pubkey to which dust from data outputs will be sent. - - This pubkey is used in multi-sig data outputs (as the only real pubkey) to - make those the outputs spendable. It is derived from the source address, so - that the dust is spendable by the creator of the transaction. - """ - # Get hex dust return pubkey. - if script.is_multisig(source): - a, self_pubkeys, b = script.extract_array( - multisig_pubkeyhashes_to_pubkeys(source, provided_pubkeys) - ) - dust_return_pubkey_hex = self_pubkeys[0] - else: - dust_return_pubkey_hex = pubkeyhash_to_pubkey(source, provided_pubkeys) - - # Convert hex public key into the (binary) dust return pubkey. - try: - dust_return_pubkey = binascii.unhexlify(dust_return_pubkey_hex) - except binascii.Error: - raise script.InputError("Invalid private key.") # noqa: B904 - - return dust_return_pubkey - - def get_default_args(func): signature = inspect.signature(func) return { @@ -1210,5 +1303,5 @@ def compose_transaction( ) if return_psbt: psbt = backend.bitcoind.convert_to_psbt(raw_transaction) - return psbt + return psbt, data return raw_transaction, data diff --git a/counterparty-core/counterpartycore/test/fixtures/vectors.py b/counterparty-core/counterpartycore/test/fixtures/vectors.py index dd712f9d78..d5a550a4bf 100644 --- a/counterparty-core/counterpartycore/test/fixtures/vectors.py +++ b/counterparty-core/counterpartycore/test/fixtures/vectors.py @@ -6349,9 +6349,9 @@ }, "transaction": { "get_dust_return_pubkey": [ - {"in": (ADDR[1], None, "multisig"), "out": None}, + {"in": (ADDR[1], None), "out": None}, { - "in": (ADDR[1], [], "multisig"), + "in": (ADDR[1], []), "out": b"\x03\x19\xf6\xe0{\x0b\x8duaV9K\x9d\xcf;\x01\x1f\xe9\xac\x19\xf2p\x0b\xd6\xb6\x9aj\x17\x83\xdb\xb8\xb9w", }, ], diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index abaa83914e..25589b41cf 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": 193, - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", - "block_time": 1726825461, - "previous_block_hash": "666ed1a2f7c2924a82e4d8e9d3b3d6c367f1850f8cdb1303858ab48bbf78d7b6", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_time": 1726943809, + "previous_block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", "difficulty": 545259519, - "ledger_hash": "16a2a4d25db0bdbc4b8b59436e96066cfb1fae75bf3485f694e86481b001a4d8", - "txlist_hash": "15f051ecea1b0e7dc7afa64a941fb638b8014c03d0f629c8426274d9bd419803", - "messages_hash": "f4dc020ee1b28cf6418bf348d583d9fd9eb4670253b0537a52e0820b98904bd7", + "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", + "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", + "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "666ed1a2f7c2924a82e4d8e9d3b3d6c367f1850f8cdb1303858ab48bbf78d7b6", - "block_time": 1726825457, - "previous_block_hash": "55cbd37166a9a25349e5eaecdc54a6013ce7f007f24bbf56a470c2578737fc07", + "block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", + "block_time": 1726943805, + "previous_block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", "difficulty": 545259519, - "ledger_hash": "f898081f65b9981e398a8502a2e441e7abd1321ab93252d4353c96a4acf0a685", - "txlist_hash": "3bebbb53ce9aff00b0ae5909d2243058aa5d933feffe201661700ee25d4310fa", - "messages_hash": "f09546e6c48a207ce7fc47a675010669410a22ff1d3de883fbd80e9bd1e07ffa", + "ledger_hash": "412150712c6869e6ac5019ac1af4fca3e25b87cfd959dfdcf50a375eb0a3fb6c", + "txlist_hash": "d7164fc59cb695753afe073c5bb4774cd53dae324c7128b4984197951e0ece2c", + "messages_hash": "600e929c4505c894ea01a40564eff783657a75a7b33c2369546ae0237130f279", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "55cbd37166a9a25349e5eaecdc54a6013ce7f007f24bbf56a470c2578737fc07", - "block_time": 1726825453, - "previous_block_hash": "29da6fc91ec18423fdab22602a03b65cabcc1f6f52b45b347cab54af4b046c6e", + "block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", + "block_time": 1726943802, + "previous_block_hash": "23b27ef62e72432568ac3d2827afc0d1be45e5a1eb3461f8b58d24ab532f4f66", "difficulty": 545259519, - "ledger_hash": "806e045cfdcfc22f111825aaabd7170dc263f334df2cf07fc8f72b12dc6cc8b0", - "txlist_hash": "4af9fb0462cf23828287fdde6ff78dc9fd5d3ee90d8f91fc3521fd96a7730c3e", - "messages_hash": "b7d7069be27f784a3c7f26eeba8f5a5560711cf7eb1d5841dd4af572166380a0", + "ledger_hash": "347da26f295ca004a4058551b21f0918e3ccfd4d75b47fae6357f9b7d7577707", + "txlist_hash": "ed92b50006ebed219c3b0ee78411f957772394a2d5c189957c6c18bb5bc1d53d", + "messages_hash": "c855a1f4f99540f7cb14aaa43f1f4f8d72b4bcf16b50466e82291b6e7ed76ff4", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "29da6fc91ec18423fdab22602a03b65cabcc1f6f52b45b347cab54af4b046c6e", - "block_time": 1726825449, - "previous_block_hash": "7b9ff65175ed743c0a5542fb04c596ca46b7752c4a3ec2f771df6fc22bcad206", + "block_hash": "23b27ef62e72432568ac3d2827afc0d1be45e5a1eb3461f8b58d24ab532f4f66", + "block_time": 1726943798, + "previous_block_hash": "26cc98a125105d26459d4cdde73737ee6a87200dd1e260833a753985df7a6e96", "difficulty": 545259519, - "ledger_hash": "944f18d3c0f37a64d83d3f872e3cc9a60416b0110253531f01e4616a3c427879", - "txlist_hash": "e7d539bfda76c14bd4571ea2d7c69da172693ffe2c4ba7f4003ab4da2b3caf47", - "messages_hash": "461c9c152e9322aa08eb5271568e0793b2cf973623a51c5643521464178f9446", + "ledger_hash": "75841fb8c87cb673361762b82649a7a4382f8d2b00c0ccd7dbdd26a6784664f0", + "txlist_hash": "9fa98a107f0760d3ea30ab290ddab051bd95e90474fb50fa8dafaaf2705ec337", + "messages_hash": "fcf933ab3251044fb12043cdff6b0895bfc112ad664cbf5ad6787c765180f3d1", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "7b9ff65175ed743c0a5542fb04c596ca46b7752c4a3ec2f771df6fc22bcad206", - "block_time": 1726825444, - "previous_block_hash": "43ca72a55a007c72d131f08f74c4674102ecd3bdf4d74f223797109d9f4add01", + "block_hash": "26cc98a125105d26459d4cdde73737ee6a87200dd1e260833a753985df7a6e96", + "block_time": 1726943793, + "previous_block_hash": "423947d2489b48a6e1d3a68c229e08b6abe64ea53afa8512a39037e9e3d57ed0", "difficulty": 545259519, - "ledger_hash": "bf23941d3159971a54eade390d8700bd726f7d245134562b27d8f04cb82e96bc", - "txlist_hash": "34ebae5c201471e5d1f2bd73e518d23ad23c8bd099cdc094e0eff97e7d59f271", - "messages_hash": "760514fe06d25689b4803ead6b0d6f580fcc7517c124ac2c16fef19a2c2d3b97", + "ledger_hash": "dcbbc021e8d75b82eb4a2d623285bed6a64543f2f7f1db436d3f9fb8294c11c1", + "txlist_hash": "787f716d594b44792069aa2cfc004ed2396f4f5b82b196181800f97d6d5c23a7", + "messages_hash": "63932d87e6b9a88194fdd69f6e03d8e97766771070fb269827c7afbc070cc03a", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", - "block_time": 1726825461, - "previous_block_hash": "666ed1a2f7c2924a82e4d8e9d3b3d6c367f1850f8cdb1303858ab48bbf78d7b6", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_time": 1726943809, + "previous_block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", "difficulty": 545259519, - "ledger_hash": "16a2a4d25db0bdbc4b8b59436e96066cfb1fae75bf3485f694e86481b001a4d8", - "txlist_hash": "15f051ecea1b0e7dc7afa64a941fb638b8014c03d0f629c8426274d9bd419803", - "messages_hash": "f4dc020ee1b28cf6418bf348d583d9fd9eb4670253b0537a52e0820b98904bd7", + "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", + "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", + "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", - "block_time": 1726825461, - "previous_block_hash": "666ed1a2f7c2924a82e4d8e9d3b3d6c367f1850f8cdb1303858ab48bbf78d7b6", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_time": 1726943809, + "previous_block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", "difficulty": 545259519, - "ledger_hash": "16a2a4d25db0bdbc4b8b59436e96066cfb1fae75bf3485f694e86481b001a4d8", - "txlist_hash": "15f051ecea1b0e7dc7afa64a941fb638b8014c03d0f629c8426274d9bd419803", - "messages_hash": "f4dc020ee1b28cf6418bf348d583d9fd9eb4670253b0537a52e0820b98904bd7", + "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", + "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", + "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", - "block_time": 1726825461, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_time": 1726943809, + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982:1", + "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -139,11 +139,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "f898081f65b9981e398a8502a2e441e7abd1321ab93252d4353c96a4acf0a685", - "messages_hash": "f09546e6c48a207ce7fc47a675010669410a22ff1d3de883fbd80e9bd1e07ffa", + "ledger_hash": "412150712c6869e6ac5019ac1af4fca3e25b87cfd959dfdcf50a375eb0a3fb6c", + "messages_hash": "600e929c4505c894ea01a40564eff783657a75a7b33c2369546ae0237130f279", "transaction_count": 1, - "txlist_hash": "3bebbb53ce9aff00b0ae5909d2243058aa5d933feffe201661700ee25d4310fa", - "block_time": 1726825457 + "txlist_hash": "d7164fc59cb695753afe073c5bb4774cd53dae324c7128b4984197951e0ece2c", + "block_time": 1726943805 }, "tx_hash": null }, @@ -152,43 +152,43 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58 }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8" + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "status": "valid", - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, - "block_time": 1726825457, + "block_time": 1726943805, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8" + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -198,22 +198,22 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8" + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "XCP", "block_index": 192, - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -223,7 +223,7 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8" + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" } ], "next_cursor": 524, @@ -261,16 +261,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -280,57 +280,57 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8" + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8" + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8" + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" } ], "next_cursor": null, @@ -340,16 +340,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -361,20 +361,20 @@ }, { "block_index": 192, - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -382,20 +382,20 @@ }, { "block_index": 192, - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -409,16 +409,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "event": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -436,24 +436,24 @@ "result": [ { "type": "order", - "object_id": "7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", + "object_id": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", "block_index": 182, "confirmed": true, - "block_time": 1726825356 + "block_time": 1726943703 }, { "type": "order", - "object_id": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b", + "object_id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", "block_index": 182, "confirmed": true, - "block_time": 1726825356 + "block_time": 1726943703 }, { "type": "order_match", - "object_id": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b_7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", + "object_id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", "block_index": 182, "confirmed": true, - "block_time": 1726825356 + "block_time": 1726943703 } ], "next_cursor": null, @@ -463,13 +463,13 @@ "result": [ { "tx_index": 56, - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "block_index": 190, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "offer_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "status": "valid", "confirmed": true, - "block_time": 1726825449 + "block_time": 1726943798 } ], "next_cursor": null, @@ -479,15 +479,15 @@ "result": [ { "tx_index": 59, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -505,14 +505,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "10cfae46493da7d2e6bf22d408237bbce06107cad0667073471cd7a2b03ac7e6", + "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -527,7 +527,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825340, + "block_time": 1726943687, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -539,10 +539,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "quantity": 10, "status": "valid", @@ -550,7 +550,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "divisible": true, "asset_longname": null, @@ -563,10 +563,10 @@ }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -574,11 +574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -587,10 +587,10 @@ }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -598,11 +598,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -618,27 +618,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", + "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", - "destination": "bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", + "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "last_status_tx_hash": null, - "origin": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -653,7 +653,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726825274, + "block_time": 1726943634, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,16 +672,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "fee_paid_normalized": "0.00600000" } ], @@ -692,17 +692,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", - "block_time": 1726825461, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_time": 1726943809, + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982:1", + "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -725,23 +725,23 @@ }, { "tx_index": 58, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_hash": "666ed1a2f7c2924a82e4d8e9d3b3d6c367f1850f8cdb1303858ab48bbf78d7b6", - "block_time": 1726825457, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", + "block_time": 1726943805, + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04803f58a79291a265f610e74bf153dca296bc399fb2017377656570206d7920617373657473", + "data": "04804d58139ca58d4e5278dcc90c123825e920a4c782017377656570206d7920617373657473", "supported": true, - "utxos_info": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8:1", + "utxos_info": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "flags": 1, "memo": "sweep my assets" } @@ -754,73 +754,89 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "destination": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "btc_amount": 2000, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": null, + "btc_amount": 0, "fee": 10000, - "data": "0b78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf252ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "ff084afd964a2c6f073d71f9a820c08b68a483925b0dd53d24b570a161a5cc2e", - "n": 1, + "hash": "216e0862c8508a40aec05dd49145343698c24e4e3713dcbbe21810e55cbe5044", + "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false } ], "vout": [ - { - "value": 2000, - "script_pub_key": "0014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc" - }, { "value": 0, - "script_pub_key": "6a49ed97e16d78406b8c6f1fb1b6777d7199a840b3e6de1d2a05353fd1177b098efacc9a6edfd71b079573df6e1d6e43e2e9255e06db1211026b582d100e26f53bcbbb75f00ae2c11a0fa6" + "script_pub_key": "6a33dabdbb44e49f85d2a327402cf1ae7d4da7a8c921c1b7230f50ff3f43347c6fb5a949fdb8a077b2dc50d9ff6d8bba56af4f3786" }, { - "value": 4949868000, - "script_pub_key": "0014d34b7d969a887b9498d483ecf3b55ee82f8e299a" + "value": 4999990000, + "script_pub_key": "00143abbb33ac7a43d5ccf1f395ce2627403ce6740cf" } ], "vtxinwit": [ - "30440220760eb5b9ad2b31c85dcc2947d7cbbe3415a89b8e6a8234e1fb8ce4eb61ec6626022042ce8555ad2f7d7663e8e9e8aedc331133678b0c3a1b27d3be50811e70c2930901", - "03212abfccc909c537ec0a4b32ac78f66786e1bfc0439a235047a27f7a2f901006" + "3044022021efb15847a51b8d3d831481506e7531f2f8c421e65599d42b0bff699df9f3510220344618f602e6a3b53004dd16d88a3597f8fbcbaf1ce050cecf1775924a8f99aa01", + "02a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a761" ], "lock_time": 0, - "tx_hash": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d", - "tx_id": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d" + "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "tx_id": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8" }, "unpacked_data": { - "message_type": "btcpay", - "message_type_id": 11, + "message_type": "order", + "message_type_id": 10, "message_data": { - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx1_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", - "order_match_id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", - "status": "valid" + "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.00002000" + "btc_amount_normalized": "0.00000000" } }, "/v2/transactions//info": { "result": { - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710803a92bf67fd998b844b7ea1a455ec67c46c4bc757", + "data": "020000000000000001000000000000271080c6ffd5588e4548e249935cfdedfb570089a7e433", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "6455a0e26b7312fa6dac09e3dc77d2e359d635d06396ad095fa9fad33e7ba41c", + "hash": "a3ccacbfebf1ba4eba1bbfe367d9ae1d97fc3dad9ee58182f3262334ca16d374", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -830,20 +846,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e7e1fcd27a7ee0a94f5f650e0bd152ea44e3b4f5f959c784d423026118044918434744f6541e69aef3b368209e95c" + "script_pub_key": "6a2e87ff790c314d7b574207d38ca7d88463a79f5c5e8152fef110516011cda54bf5b84adf90a81857b385614bd1277f" }, { "value": 4999955000, - "script_pub_key": "00143f58a79291a265f610e74bf153dca296bc399fb2" + "script_pub_key": "00144d58139ca58d4e5278dcc90c123825e920a4c782" } ], "vtxinwit": [ - "30440220558a48e1bde6d57f56bd516a29be8dd2b9bedded8787b3cf92fbaaaca433b13c02206b041ff81d6776180c9f9db952a79635543a6cef51ecf0204be43d0c044ca29701", - "03627149b11072d173c18af5d57b2e956a6e9486c355941852729eb2c95ff676c1" + "3044022046f9bfbb030b7551d95765541ea931dc3a76e2fc6ab1a95a94147cf1765c2a9c0220619122b438446d1d2fb04790d3457b848378e8fe81e8f86bd7948c56a687e56401", + "0352e612ef317c96dc910d7efc93996e313947873e472d8309212310d61a946122" ], "lock_time": 0, - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", - "tx_id": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b" + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_id": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a" }, "unpacked_data": { "message_type": "enhanced_send", @@ -851,7 +867,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "memo": null, "asset_info": { "divisible": true, @@ -878,17 +894,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", - "block_time": 1726825461, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_time": 1726943809, + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982:1", + "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -913,17 +929,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", - "block_time": 1726825461, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_time": 1726943809, + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982:1", + "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -952,47 +968,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58 }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "status": "valid", - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, - "block_time": 1726825457, + "block_time": 1726943805, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -1002,24 +1018,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "XCP", "block_index": 192, - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -1029,36 +1045,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 } ], "next_cursor": 523, @@ -1071,47 +1087,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58 }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "status": "valid", - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, - "block_time": 1726825457, + "block_time": 1726943805, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -1121,24 +1137,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "XCP", "block_index": 192, - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -1148,36 +1164,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 } ], "next_cursor": 523, @@ -1187,10 +1203,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "quantity": 10, "status": "valid", @@ -1198,7 +1214,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "divisible": true, "asset_longname": null, @@ -1211,10 +1227,10 @@ }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1222,11 +1238,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -1235,10 +1251,10 @@ }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1246,11 +1262,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -1266,27 +1282,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", + "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", - "destination": "bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", + "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "last_status_tx_hash": null, - "origin": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -1301,7 +1317,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726825274, + "block_time": 1726943634, "asset_info": { "divisible": true, "asset_longname": null, @@ -1322,16 +1338,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -1341,63 +1357,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 } ], "next_cursor": null, @@ -1409,16 +1425,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -1428,63 +1444,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 } ], "next_cursor": null, @@ -1497,7 +1513,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1507,7 +1523,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -1518,7 +1534,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1528,7 +1544,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -1539,7 +1555,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1549,7 +1565,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -1560,7 +1576,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1570,7 +1586,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -1581,7 +1597,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1591,7 +1607,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -1605,17 +1621,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "block_hash": "55cbd37166a9a25349e5eaecdc54a6013ce7f007f24bbf56a470c2578737fc07", - "block_time": 1726825453, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", + "block_time": 1726943802, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608:1", + "utxos_info": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1651,23 +1667,23 @@ }, { "tx_index": 56, - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "block_index": 190, - "block_hash": "29da6fc91ec18423fdab22602a03b65cabcc1f6f52b45b347cab54af4b046c6e", - "block_time": 1726825449, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "23b27ef62e72432568ac3d2827afc0d1be45e5a1eb3461f8b58d24ab532f4f66", + "block_time": 1726943798, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "data": "46de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "supported": true, - "utxos_info": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752:1", + "utxos_info": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "status": "valid" } }, @@ -1675,17 +1691,17 @@ }, { "tx_index": 55, - "tx_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "block_index": 189, - "block_hash": "7b9ff65175ed743c0a5542fb04c596ca46b7752c4a3ec2f771df6fc22bcad206", - "block_time": 1726825444, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "26cc98a125105d26459d4cdde73737ee6a87200dd1e260833a753985df7a6e96", + "block_time": 1726943793, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a:1", + "utxos_info": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1721,17 +1737,17 @@ }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "block_hash": "43ca72a55a007c72d131f08f74c4674102ecd3bdf4d74f223797109d9f4add01", - "block_time": 1726825440, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "423947d2489b48a6e1d3a68c229e08b6abe64ea53afa8512a39037e9e3d57ed0", + "block_time": 1726943789, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d34b7d969a887b9498d483ecf3b55ee82f8e299a803a92bf67fd998b844b7ea1a455ec67c46c4bc757803f58a79291a265f610e74bf153dca296bc399fb2400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003802b08c45289028349cc594a15406b2e9391f71c7c80c6ffd5588e4548e249935cfdedfb570089a7e433804d58139ca58d4e5278dcc90c123825e920a4c782400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d:0", + "utxos_info": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1739,14 +1755,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -1754,7 +1770,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1773,25 +1789,25 @@ }, { "tx_index": 51, - "tx_hash": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d", + "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", "block_index": 185, - "block_hash": "052570879ea11bd318935d12ea062dab4311e14f3694e245eaae0e58b7012c93", - "block_time": 1726825427, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "destination": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "096ad85b8b9dd2b5eaeb1be8fe0ddc244c436aacac8adbd2a9fa76e6ab9e712e", + "block_time": 1726943776, + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "btc_amount": 2000, "fee": 10000, - "data": "0b78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf252ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "data": "0bde81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914fc869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "supported": true, - "utxos_info": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d:0", + "utxos_info": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx1_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", - "order_match_id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "status": "valid" } }, @@ -1820,11 +1836,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "status": "open", - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "tx_index": 57, - "block_time": 1726825453, + "block_time": 1726943802, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1848,24 +1864,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "block_time": 1726825453 + "block_time": 1726943802 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "block_index": 191, - "event": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "event": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1726825453, + "block_time": 1726943802, "asset_info": { "divisible": true, "asset_longname": null, @@ -1875,25 +1891,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "block_time": 1726825453 + "block_time": 1726943802 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "55cbd37166a9a25349e5eaecdc54a6013ce7f007f24bbf56a470c2578737fc07", + "block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", "block_index": 191, - "block_time": 1726825453, + "block_time": 1726943802, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "tx_index": 57, - "utxos_info": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608:1", + "utxos_info": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1925,40 +1941,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "block_time": 1726825453 + "block_time": 1726943802 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "status": "valid", - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "tx_index": 56, - "block_time": 1726825449 + "block_time": 1726943798 }, - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "block_index": 190, - "block_time": 1726825449 + "block_time": 1726943798 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726825449, + "block_time": 1726943798, "asset_info": { "divisible": true, "asset_longname": null, @@ -1968,9 +1984,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "block_index": 190, - "block_time": 1726825449 + "block_time": 1726943798 } ], "next_cursor": 506, @@ -1979,17 +1995,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "memo": null, "quantity": 10000, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "status": "valid", - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "tx_index": 60, "asset_info": { "divisible": true, @@ -2002,19 +2018,19 @@ } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "CREDIT", "params": { - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,19 +2042,19 @@ } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 193, - "event": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -2050,27 +2066,27 @@ } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726825466.1412678, + "block_time": 1726943814.1647968, "btc_amount": 0, - "data": "0200000000000000010000000000002710803a92bf67fd998b844b7ea1a455ec67c46c4bc757", + "data": "020000000000000001000000000000271080c6ffd5588e4548e249935cfdedfb570089a7e433", "destination": "", "fee": 10000, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "tx_index": 60, - "utxos_info": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b:1", + "utxos_info": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "memo": null, "asset_info": { "divisible": true, @@ -2092,7 +2108,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2100,14 +2116,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2115,14 +2131,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2137,7 +2153,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2145,7 +2161,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2157,7 +2173,7 @@ }, "/v2/addresses/
/balances/": { "result": { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2176,16 +2192,16 @@ "result": [ { "block_index": 190, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825449, + "block_time": 1726943798, "asset_info": { "divisible": true, "asset_longname": null, @@ -2197,16 +2213,16 @@ }, { "block_index": 182, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b", + "event": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825356, + "block_time": 1726943703, "asset_info": { "divisible": true, "asset_longname": null, @@ -2218,20 +2234,20 @@ }, { "block_index": 159, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "10cfae46493da7d2e6bf22d408237bbce06107cad0667073471cd7a2b03ac7e6", + "event": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825340, + "block_time": 1726943687, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2239,20 +2255,20 @@ }, { "block_index": 156, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "b852601dc9b19f603942ca34706fa6e463efae4faaf8831fbfdef4a2143e93f0", + "event": "730d154e7c40e6f269a3c0f15937c64309d932202616ef4c54ec0c6e07ddc29c", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825317, + "block_time": 1726943675, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2264,16 +2280,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "b144bf44a59f20f97233b6b2f8df8815e33ae7cd0fd284bfe3f95e1da2f77164", + "event": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", "tx_index": 38, - "utxo": "b144bf44a59f20f97233b6b2f8df8815e33ae7cd0fd284bfe3f95e1da2f77164:1", - "utxo_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "utxo": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98:1", + "utxo_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "confirmed": true, - "block_time": 1726825295, + "block_time": 1726943654, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2287,16 +2303,16 @@ "result": [ { "block_index": 191, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "event": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825453, + "block_time": 1726943802, "asset_info": { "divisible": true, "asset_longname": null, @@ -2308,16 +2324,16 @@ }, { "block_index": 189, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825444, + "block_time": 1726943793, "asset_info": { "divisible": true, "asset_longname": null, @@ -2329,16 +2345,16 @@ }, { "block_index": 188, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "event": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "divisible": true, "asset_longname": null, @@ -2350,20 +2366,20 @@ }, { "block_index": 188, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "event": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2371,16 +2387,16 @@ }, { "block_index": 183, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", + "event": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825420, + "block_time": 1726943768, "asset_info": { "divisible": true, "asset_longname": null, @@ -2403,9 +2419,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "26c8f08ba6eb1653583ea631a32a4360bf8efa472e2549da69e17e976c2ad5b9", + "tx_hash": "3adb5f6a83dbf36fc41ff713ae0883905bee565d0450041334cb0b35e8d7dc74", "block_index": 137, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2413,7 +2429,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726825226, + "block_time": 1726943585, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2424,14 +2440,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "e4935fcf9d26c3c9972ac4163e643d45b615be1b629cc7445e2e9607eb2694ac", + "tx_hash": "70bd09bcb435a334ba6a729d10e1151605bda96aff86cb463ddcf0536caef07c", "block_index": 112, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1726825120, + "block_time": 1726943484, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2443,10 +2459,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2454,7 +2470,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "divisible": true, "asset_longname": null, @@ -2467,10 +2483,10 @@ }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2478,11 +2494,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2491,10 +2507,10 @@ }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2502,11 +2518,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2515,10 +2531,10 @@ }, { "tx_index": 38, - "tx_hash": "b144bf44a59f20f97233b6b2f8df8815e33ae7cd0fd284bfe3f95e1da2f77164", + "tx_hash": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", "block_index": 151, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "b144bf44a59f20f97233b6b2f8df8815e33ae7cd0fd284bfe3f95e1da2f77164:1", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2526,11 +2542,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825295, + "block_time": 1726943654, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2539,10 +2555,10 @@ }, { "tx_index": 35, - "tx_hash": "5b56af4dc86e2f021c6b8a05c1730c3ac5396aa8f7a4c203363b274831f39346", + "tx_hash": "bb7e237846f4ba8f55a20cc8e2bfaf6731be5297749cf62cadc18474047a3030", "block_index": 148, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "dc4490de7d9dcfbbd88d7d329e61ffdb70aba9b47120da1597dc11c2690f89c0:1", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "9dc5d37ade58fe3fcc4001a7c5a086fc13efa89bbb556610bb78c7d6c2b059a1:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2550,11 +2566,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825283, + "block_time": 1726943642, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2569,10 +2585,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "0d50c7d10fe1a5942c143ae0b53b6fa4e48148c36d47ab3de093dc895c38146b", + "tx_hash": "97881a57024ad6e05e14ae9d17fff8be24276335e8f9afefcce9b70168d36808", "block_index": 150, - "source": "330e4c148d12cfcceb7de4268c14d00bf280ab8a2d4d34fd7681c805ce7932aa:0", - "destination": "bcrt1qer50mmddxamklxlnhp2ts8wg0ajzqns2mleqhf", + "source": "cc7990d855f354e057a6e08b954da3db23de867816732e8fc48f06b3fcadb83b:0", + "destination": "bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2580,11 +2596,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825290, + "block_time": 1726943651, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2599,10 +2615,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2610,11 +2626,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2623,10 +2639,10 @@ }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2634,11 +2650,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2647,10 +2663,10 @@ }, { "tx_index": 38, - "tx_hash": "b144bf44a59f20f97233b6b2f8df8815e33ae7cd0fd284bfe3f95e1da2f77164", + "tx_hash": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", "block_index": 151, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "b144bf44a59f20f97233b6b2f8df8815e33ae7cd0fd284bfe3f95e1da2f77164:1", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2658,11 +2674,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825295, + "block_time": 1726943654, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2671,10 +2687,10 @@ }, { "tx_index": 35, - "tx_hash": "5b56af4dc86e2f021c6b8a05c1730c3ac5396aa8f7a4c203363b274831f39346", + "tx_hash": "bb7e237846f4ba8f55a20cc8e2bfaf6731be5297749cf62cadc18474047a3030", "block_index": 148, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "dc4490de7d9dcfbbd88d7d329e61ffdb70aba9b47120da1597dc11c2690f89c0:1", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "9dc5d37ade58fe3fcc4001a7c5a086fc13efa89bbb556610bb78c7d6c2b059a1:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2682,11 +2698,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825283, + "block_time": 1726943642, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2701,10 +2717,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "0d50c7d10fe1a5942c143ae0b53b6fa4e48148c36d47ab3de093dc895c38146b", + "tx_hash": "97881a57024ad6e05e14ae9d17fff8be24276335e8f9afefcce9b70168d36808", "block_index": 150, - "source": "330e4c148d12cfcceb7de4268c14d00bf280ab8a2d4d34fd7681c805ce7932aa:0", - "destination": "bcrt1qer50mmddxamklxlnhp2ts8wg0ajzqns2mleqhf", + "source": "cc7990d855f354e057a6e08b954da3db23de867816732e8fc48f06b3fcadb83b:0", + "destination": "bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2712,11 +2728,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825290, + "block_time": 1726943651, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -2731,9 +2747,9 @@ "result": [ { "tx_index": 30, - "tx_hash": "a5fce55057a25a0e4f1a17eca63c2121a48e1802c130a7b0b5d172928cfa9141", + "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", "block_index": 144, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2742,7 +2758,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2752,7 +2768,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825266, + "block_time": 1726943625, "asset_info": { "divisible": true, "asset_longname": null, @@ -2768,9 +2784,9 @@ }, { "tx_index": 26, - "tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2779,7 +2795,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2789,7 +2805,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -2810,9 +2826,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 30, - "tx_hash": "a5fce55057a25a0e4f1a17eca63c2121a48e1802c130a7b0b5d172928cfa9141", + "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", "block_index": 144, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2821,7 +2837,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2831,7 +2847,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825266, + "block_time": 1726943625, "asset_info": { "divisible": true, "asset_longname": null, @@ -2851,19 +2867,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "15c76615f19c7ab60a28be17ee51ee7eeb9274a29410baad82bd76217b4c1059", + "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2871,7 +2887,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2886,7 +2902,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -2900,19 +2916,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2bc8003e54c5015f26156d3a0108e500f87bbb12f215ab1bbd96f193c0af43bf", + "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", "block_index": 140, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2920,7 +2936,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2935,7 +2951,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825238, + "block_time": 1726943598, "asset_info": { "divisible": true, "asset_longname": null, @@ -2955,19 +2971,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "15c76615f19c7ab60a28be17ee51ee7eeb9274a29410baad82bd76217b4c1059", + "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2975,7 +2991,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2990,7 +3006,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -3004,19 +3020,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2bc8003e54c5015f26156d3a0108e500f87bbb12f215ab1bbd96f193c0af43bf", + "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", "block_index": 140, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3024,7 +3040,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3039,7 +3055,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825238, + "block_time": 1726943598, "asset_info": { "divisible": true, "asset_longname": null, @@ -3059,19 +3075,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "15c76615f19c7ab60a28be17ee51ee7eeb9274a29410baad82bd76217b4c1059", + "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3079,7 +3095,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3094,7 +3110,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -3108,19 +3124,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2bc8003e54c5015f26156d3a0108e500f87bbb12f215ab1bbd96f193c0af43bf", + "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", "block_index": 140, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3128,7 +3144,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3143,7 +3159,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825238, + "block_time": 1726943598, "asset_info": { "divisible": true, "asset_longname": null, @@ -3163,19 +3179,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "15c76615f19c7ab60a28be17ee51ee7eeb9274a29410baad82bd76217b4c1059", + "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3183,7 +3199,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3198,7 +3214,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -3212,19 +3228,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2bc8003e54c5015f26156d3a0108e500f87bbb12f215ab1bbd96f193c0af43bf", + "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", "block_index": 140, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3232,7 +3248,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3247,7 +3263,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825238, + "block_time": 1726943598, "asset_info": { "divisible": true, "asset_longname": null, @@ -3266,16 +3282,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "fee_paid_normalized": "0.00600000" } ], @@ -3286,14 +3302,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "10cfae46493da7d2e6bf22d408237bbce06107cad0667073471cd7a2b03ac7e6", + "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -3308,20 +3324,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825340, + "block_time": 1726943687, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "c9993ca12278a2515f3d2392bc3815d92314e56cca6eb8a0f0f4a763384172b7", + "tx_hash": "ad5638a61876314ea341c91f638042e00c58a6a150651c1198858bbfa50bcdd3", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -3336,20 +3352,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726825336, + "block_time": 1726943683, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "6eab9bdda455830ed79ad0385271d751f42068b84397671cf28b7fde4368eb98", + "tx_hash": "920160abffc2681cf411a03e5ddc3c3f7f1156c1ceffaa2304a7f6f82032e82f", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -3364,20 +3380,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825331, + "block_time": 1726943679, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "b852601dc9b19f603942ca34706fa6e463efae4faaf8831fbfdef4a2143e93f0", + "tx_hash": "730d154e7c40e6f269a3c0f15937c64309d932202616ef4c54ec0c6e07ddc29c", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -3392,20 +3408,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825317, + "block_time": 1726943675, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "7ff19e841762b03ac9474c56b93d5277be99de115207c28dc8ae8dcc20427f97", + "tx_hash": "3b78cdcb0b5a931b4804337596e836bbd23872bb1dafeed65aad95db32933c61", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -3420,7 +3436,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825279, + "block_time": 1726943638, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -3434,8 +3450,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 10000000000, @@ -3443,16 +3459,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726825317, - "last_issuance_block_time": 1726825336, + "first_issuance_block_time": 1726943675, + "last_issuance_block_time": 1726943683, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 100000000000, @@ -3460,16 +3476,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726825279, - "last_issuance_block_time": 1726825279, + "first_issuance_block_time": 1726943638, + "last_issuance_block_time": 1726943638, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 40, @@ -3477,16 +3493,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726825217, - "last_issuance_block_time": 1726825221, + "first_issuance_block_time": 1726943577, + "last_issuance_block_time": 1726943581, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 19, @@ -3494,16 +3510,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726825201, - "last_issuance_block_time": 1726825213, + "first_issuance_block_time": 1726943560, + "last_issuance_block_time": 1726943573, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 0, @@ -3511,8 +3527,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1726825180, - "last_issuance_block_time": 1726825197, + "first_issuance_block_time": 1726943539, + "last_issuance_block_time": 1726943556, "supply_normalized": "0.00000000" } ], @@ -3523,17 +3539,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "block_hash": "55cbd37166a9a25349e5eaecdc54a6013ce7f007f24bbf56a470c2578737fc07", - "block_time": 1726825453, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", + "block_time": 1726943802, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608:1", + "utxos_info": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3569,23 +3585,23 @@ }, { "tx_index": 56, - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "block_index": 190, - "block_hash": "29da6fc91ec18423fdab22602a03b65cabcc1f6f52b45b347cab54af4b046c6e", - "block_time": 1726825449, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "23b27ef62e72432568ac3d2827afc0d1be45e5a1eb3461f8b58d24ab532f4f66", + "block_time": 1726943798, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "data": "46de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "supported": true, - "utxos_info": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752:1", + "utxos_info": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "status": "valid" } }, @@ -3593,17 +3609,17 @@ }, { "tx_index": 55, - "tx_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "block_index": 189, - "block_hash": "7b9ff65175ed743c0a5542fb04c596ca46b7752c4a3ec2f771df6fc22bcad206", - "block_time": 1726825444, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "26cc98a125105d26459d4cdde73737ee6a87200dd1e260833a753985df7a6e96", + "block_time": 1726943793, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a:1", + "utxos_info": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3639,17 +3655,17 @@ }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "block_hash": "43ca72a55a007c72d131f08f74c4674102ecd3bdf4d74f223797109d9f4add01", - "block_time": 1726825440, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "423947d2489b48a6e1d3a68c229e08b6abe64ea53afa8512a39037e9e3d57ed0", + "block_time": 1726943789, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d34b7d969a887b9498d483ecf3b55ee82f8e299a803a92bf67fd998b844b7ea1a455ec67c46c4bc757803f58a79291a265f610e74bf153dca296bc399fb2400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003802b08c45289028349cc594a15406b2e9391f71c7c80c6ffd5588e4548e249935cfdedfb570089a7e433804d58139ca58d4e5278dcc90c123825e920a4c782400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d:0", + "utxos_info": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3657,14 +3673,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -3672,7 +3688,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3691,17 +3707,17 @@ }, { "tx_index": 49, - "tx_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", + "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", "block_index": 183, - "block_hash": "6e1ea1135992296310a0583ed2db72dd2f5089a24056590c390cc71b3c38a500", - "block_time": 1726825420, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "block_hash": "76b787bee668425bd1b438a2a899ce68b2c993774bd6797755aca7cecf2e2b88", + "block_time": 1726943768, + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25:1", + "utxos_info": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3743,20 +3759,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8", + "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", "block_index": 153, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726825303, + "block_time": 1726943663, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -3778,9 +3794,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3795,7 +3811,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726825453, + "block_time": 1726943802, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3821,9 +3837,9 @@ }, { "tx_index": 55, - "tx_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "block_index": 190, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3838,7 +3854,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726825449, + "block_time": 1726943798, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3864,9 +3880,9 @@ }, { "tx_index": 49, - "tx_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", + "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", "block_index": 186, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3881,7 +3897,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726825432, + "block_time": 1726943781, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3907,9 +3923,9 @@ }, { "tx_index": 47, - "tx_hash": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b", + "tx_hash": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", "block_index": 182, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3924,7 +3940,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1726825356, + "block_time": 1726943703, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3955,10 +3971,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "70a08a09be7e7db658afd9643104aa69036256014c37028c4cf48c03228597bd", + "tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -3983,13 +3999,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726825217 + "block_time": 1726943577 }, { - "tx_hash": "e7323ddacfbba1ea3be9123e0aa839426a9b1c70cbc7e2d589144cbb7c737cfb", + "tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4014,13 +4030,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726825201 + "block_time": 1726943560 }, { - "tx_hash": "019c1a0e87d4fc9a572746bc4785e4a308e1827daaa4e9a77bc61c0d0ce7fc75", + "tx_hash": "f8863d06dd1c63af927665e2741a68593285bb4a52bbadf58685b17809c50470", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4045,13 +4061,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726825197 + "block_time": 1726943556 }, { - "tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4076,7 +4092,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726825176 + "block_time": 1726943534 } ], "next_cursor": null, @@ -4085,127 +4101,127 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "df594a32bdedb9f8407dde28c2412506a53badab07b2cbce3e4919633c06b316", + "tx_hash": "296a4a2f8facf4a5ccf44ab044c61ea9b9216a3071599a39f70b231bc11801f0", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "fairminter_tx_hash": "70a08a09be7e7db658afd9643104aa69036256014c37028c4cf48c03228597bd", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "fairminter_tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825221, + "block_time": 1726943581, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } }, { - "tx_hash": "aec366da0f357fb164abc4f48fbd7c5d044e8cab5b73567e190bcee307a2a566", + "tx_hash": "5ed673dd8d97553e61d83fbccf8e095279db7b2b17182af9e56c3ad7c3a4fa03", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "fairminter_tx_hash": "e7323ddacfbba1ea3be9123e0aa839426a9b1c70cbc7e2d589144cbb7c737cfb", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "fairminter_tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825213, + "block_time": 1726943573, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } }, { - "tx_hash": "96cc1822dacc53a422a4748a569384866998aa220d9c33e35a5a7dfd33d93565", + "tx_hash": "51faa319e2cca4033cc7107e24db91cffd7aa0de24e6dbb3416f14414fbb1513", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "fairminter_tx_hash": "e7323ddacfbba1ea3be9123e0aa839426a9b1c70cbc7e2d589144cbb7c737cfb", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "fairminter_tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825209, + "block_time": 1726943568, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } }, { - "tx_hash": "f2b4824a98311a4bad85273847804b24c7e343ace4e033c4543d2258ced3287a", + "tx_hash": "43aca2b646d3f1276f04a8c106efccaa0693ff0cd78d964dcca325aa3d8fb96b", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "fairminter_tx_hash": "e7323ddacfbba1ea3be9123e0aa839426a9b1c70cbc7e2d589144cbb7c737cfb", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "fairminter_tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825205, + "block_time": 1726943564, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } }, { - "tx_hash": "feff8b132aee97b98a939928233656dcc903e3e2e7b6b0bb1997e2936cbd070d", + "tx_hash": "2988c15ef26d780e374920eb96e0569d184800843ea6a308102bc549436780e5", "tx_index": 15, "block_index": 127, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "fairminter_tx_hash": "019c1a0e87d4fc9a572746bc4785e4a308e1827daaa4e9a77bc61c0d0ce7fc75", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "fairminter_tx_hash": "f8863d06dd1c63af927665e2741a68593285bb4a52bbadf58685b17809c50470", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825184, + "block_time": 1726943543, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } }, { - "tx_hash": "5ff1033ca6de7b9f191e14e803b0106fe025ee35bd22ddb56a77427d0975c947", + "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "fairminter_tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825167, + "block_time": 1726943527, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } @@ -4217,22 +4233,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "5ff1033ca6de7b9f191e14e803b0106fe025ee35bd22ddb56a77427d0975c947", + "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "fairminter_tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825167, + "block_time": 1726943527, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } @@ -4246,9 +4262,9 @@ }, "/v2/addresses/
/compose/broadcast": { "result": { - "rawtransaction": "0200000000010158423eb8e249c27bba2b290ac7f0bb1c21c0bacaa7c32c089b1dc7edb3a7da7900000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff0200000000000000002b6a291fa1b0eb2e3f5afae0e5c65b0b2642e920b44c674393fcfeb02155b9a8a16e8f5b1487ac61ec36f8ed3bb1052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101c7a751b79fc1bba15db96e76fddc03eaf28c83033bbac943b3ec9b4fb733b1ca000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff0200000000000000002b6a2921d0690c1e43531d52511b2b8d83499e0ad38c216c1cea450000060de19642e0efe783a088dd85b7fb34b1052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4267,13 +4283,13 @@ }, "/v2/addresses/
/compose/btcpay": { "result": { - "rawtransaction": "02000000000101189b8c34034c9b4d76e49ee815fc3ea9e7b47c56a7107b858a0ccf6cbfa6808300000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff03b80b000000000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc00000000000000004b6a49f9c07b0e8252ed42feb71de2ad6fd1f9d6b276d45ea10d671233e671f221686660a6ac1594304076f875425803562aaaacb946c1818d0872f6229073ccf78cefef2db082ab8b7c1fedd993052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "020000000001014908917f0d6e695aa7e8041867a48a6a093206725417ad922e840a75ddf26706000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff03b80b0000000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf00000000000000004b6a49ffb002f713ca7b9fd27b391c2093a26eb078e7696684324b0b5450b219e025235fba61c51b4453692cbf1469cba72688768d7e70bb53caa4aef186df9696b9ef4fee30fca81bd2da78d093052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "order_match_id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be" + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c" }, "name": "btcpay", - "data": "434e5452505254590b78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "data": "434e5452505254590bde81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4285,9 +4301,9 @@ }, "/v2/addresses/
/compose/burn": { "result": { - "rawtransaction": "02000000000101c96c1d4aeb1ff4c91195a270b0da9d687d8933c7b9aee701e920aed77dfe27eb00000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101ce27407bf8f204ef537df027953eb6114b8487e9d150d6a84d085a95863f6414000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88acdab1052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "quantity": 1000, "overburn": false }, @@ -4297,13 +4313,13 @@ }, "/v2/addresses/
/compose/cancel": { "result": { - "rawtransaction": "02000000000101b57a8c4bf5aa959a4f5f3edebed5371fe4db67402857c2bb37172b86d16c4c1300000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff0200000000000000002b6a29a9a48f2f485e6f281a87fe7159096ecbf50d2f290ef9b04a6851ec3de70f6acf8848b077defae1d3f63bb1052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101e9d22b8ed7ff43a163cfb388952132f6f63b8f256b2072abb965ee5a4f930b7c000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff0200000000000000002b6a29ecbf2575a7e33509a02495729973f16fcbe3de84291c13e5e5338d397cbb96e87149c0a9a8686d8ff634b1052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "offer_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608" + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "offer_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e" }, "name": "cancel", - "data": "434e54525052545946e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "data": "434e545250525459468503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4315,9 +4331,9 @@ }, "/v2/addresses/
/compose/destroy": { "result": { - "rawtransaction": "0200000000010121629dee3eb7540192d731a60bd071d1f4d8712a07950153bd72d7fb5400d6f100000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff020000000000000000226a208c607f56d53dea214111f840c391bae423bb0c44e96396f4f7d121328d1179d2a4b3052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101cadc6dcd9e21ecdbadbd599e901d28c76bfe7d992d637b8ee189a0a69d5a148f000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000226a20ae4ee5980fee7c78bbd35e3c3c2c1d87ed4ffb8ea4425940791bb8498f8f53329db3052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4343,9 +4359,9 @@ }, "/v2/addresses/
/compose/dispenser": { "result": { - "rawtransaction": "02000000000101666537a765cc6186bff728369ff2ec79473d3c5a9cd28d0fcb5c945123c3030402000000160014dccd35ab9aa1a198710ac3c6be2a77bba71dec02ffffffff0200000000000000002c6a2aa91e5e967d7dcd77b369c341aa9a803a5b6538fa879b575d9996200e669f62a2c34e77e1d170b1df0d46474b0a2701000000160014dccd35ab9aa1a198710ac3c6be2a77bba71dec0202000000000000", + "rawtransaction": "02000000000101812f049104ecd8c5421d3aeb84f1e0d503d0673524bc38770bd25a75c0b4143302000000160014b75117bea813ac18e875e6955c46b90b822d1473ffffffff0200000000000000002c6a2a35e29811a9d0b3bce85ee69bebf2239fd0ea376e9c930087a670a0b4e22320795162476e62698b07e3de404b0a2701000000160014b75117bea813ac18e875e6955c46b90b822d147302000000000000", "params": { - "source": "bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt", + "source": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4376,16 +4392,16 @@ }, "/v2/addresses/
/compose/dividend": { "result": { - "rawtransaction": "020000000001014351f691dd53000b0f0b63089d2fd37f6a3d061556e130152502f3016cda404c00000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff020000000000000000236a2136eca670840baeb51fbd2373a87830bdf427f0e75f09168babd2fe9e4b618ca04a60b3052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "020000000001013fcf0426cb9d37dbe9f35ee44b5ec8880dc75b0a71e91e40fb26511d4347f86f000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000236a218df562c9f208ed50ccae382ca92b02c27702e79477aea3af2695ddaac8ebce991559b3052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -4411,12 +4427,12 @@ }, "/v2/addresses/
/compose/issuance": { "result": { - "rawtransaction": "0200000000010151ff7e2fd3da4fa026fa89c655b5d3223eb0324ad68f13e53a07bce48b4219c600000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff032202000000000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc0000000000000000236a21c993fe96aa8d8934d1b45d85e5b99980f2107878f78479690b1210dd0095d1984c24a8052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101eed4b56dff0f6735bfcb64fd71bc79a2bac83188e844f08cc0808fba7d2e238c000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff0322020000000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf0000000000000000236a217d872c33d7f4702e6aecf40eb79042d40d6865869cc902d0daf2e7ea32bd9aa3471ca8052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "transfer_destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "lock": false, "reset": false, @@ -4436,18 +4452,18 @@ }, "/v2/addresses/
/compose/mpma": { "result": { - "rawtransaction": "02000000000104f3518302ac13fd58907c8536c38052588ed35514190f3c67b491c52023236b0c00000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccfffffffff2b04e864007a32020ac4d42a034437794e4325e04cb171430a8c060990c5bf700000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff13a057c91586e83f43c86be76aff149a12ea9aff92f86452dd29d982c38ef14500000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffffabfb599c1c24563d6ee43d77fe0a48de3107ccf4d749c3927c2ba61befc5150500000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff03e8030000000000006951210327526b07641e065a41b92215dab67aa19c3cf5e48d87d3a71ff2803af186874a21025a32d6f2a3e31b1f8b5db1331fa773f082adfb81926d416e8395d491f38d5d1a2102826647162b0c6923b8cb80931a26d52766d59f1eaa8341f34b9b31592e138ebe53aee8030000000000006951210228526b07641e065a419a5578287b16570d5948d059ccf2ff5b7a66df8c70dd0e210328fe1e21e89e8d8503262dabcb249f0337f311ae1c44dbe1a1ddb1fd9fe271fd2102826647162b0c6923b8cb80931a26d52766d59f1eaa8341f34b9b31592e138ebe53ae61d016a804000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000002000002000002000000000000", + "rawtransaction": "02000000000104de819b9fc81ec47056ded5b3ba6b85bb1877b45eb40270c05a55b6bb413c4880000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffffc09b668a70c9a3f5219e4e535139c3f6eaab26c72fc9aa91e8eb6963b05328c0000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffffcba0f51565c80be9eceab047b664ccf9215bcfd49988f6e18039c9020a5bb071000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff33ad01ffd981010a7b7f85cec69713780d546e2c4d639e0fb2cee3371c24e1a5000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff03e80300000000000069512103869b25513395fa664ab1249e6177b8160304c9ab1e788b7db690f7bfbd62cbe521023075a3d35d96ec97dd45b01c69ae34053749b76967e71c61f4206d9ac7a7c9742102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153aee80300000000000069512102899b25513395fa664a9253f3932167841b436d964ea20fcf5d5295cbbeacac96210270ba6bf85552be1edfc6f1d030e421455c6726f890fb60eed66808f6abc8e52b2102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153ae47d016a8040000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000002000002000002000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", 1 ], [ "MYASSETA", - "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", 2 ] ], @@ -4455,7 +4471,7 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc80d34b7d969a887b9498d483ecf3b55ee82f8e299a8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e545250525459030002803abbb33ac7a43d5ccf1f395ce2627403ce6740cf802b08c45289028349cc594a15406b2e9391f71c7c8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4467,9 +4483,9 @@ }, "/v2/addresses/
/compose/order": { "result": { - "rawtransaction": "020000000001011d7639b5fa0873b5a2af704d7a6aacb62675b57849326fedbccd9be06f32fb7d00000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff020000000000000000356a333be723773d1eaf24fef1236fdf27528082ad1e2262ce84c161e7c3a10ebcce8337d464689dc72ee9f0765c0905f0550041d8668eae052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101c731eb09c72abf0af77a6164e7b3278f8fcd8d150d5fb92225e7a5c9dfd629e9000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000356a336e78117dafe38e89e931b18ea1638fcce6fa2276a898a1c5cbdbbb229bd47da4d46b74cf8d9aff60985bfc6bffb84aecf62e8d87ae052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4486,7 +4502,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -4507,10 +4523,10 @@ }, "/v2/addresses/
/compose/send": { "result": { - "rawtransaction": "02000000000101f7bedeaf49b0f8976b195a92bb7a45b21744867de7f1a6271d109d827902d51200000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff020000000000000000306a2ed99eeed48e4ee8840d27f2ef533f8dc08e1a939cec991a58e834999a302517aae8f91479a24e09872e9d91a08230e5af052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101bdb7938d4a99e508a552731ee1aa29935ca0c5848f5fa8ce220efb76421c11cd000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000306a2e910edd304c294569d596a33a1eb438784df08ebdaea9ffdec0398f5866a80da0dbf41b1284fd8adf063779711d60deaf052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4526,7 +4542,7 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d34b7d969a887b9498d483ecf3b55ee82f8e299a", + "data": "434e54525052545902000000000000000100000000000003e8802b08c45289028349cc594a15406b2e9391f71c7c", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4538,15 +4554,15 @@ }, "/v2/addresses/
/compose/sweep": { "result": { - "rawtransaction": "02000000000101eae71bd80b833bc9207e59e1379ca495ef0c83de276503409f4f3d7f16255b5400000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff020000000000000000236a213403f36611cf4668ffebf84440c47559b0057622c0d9eca7b3769ae6a6aba0c1db60b3052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101b45c1cc6db765897669ae0918a7dd0167dd26d2cc925304bc3fbde5c6d0af6a3000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000236a212da04bebf6d4a4b5629d338c8f4c28d5672494a10929d05f171bb0d113586c514b59b3052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480d34b7d969a887b9498d483ecf3b55ee82f8e299a07ffff", + "data": "434e54525052545904802b08c45289028349cc594a15406b2e9391f71c7c07ffff", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4558,10 +4574,10 @@ }, "/v2/addresses/
/compose/dispense": { "result": { - "rawtransaction": "020000000001011dae1ed72378f16b759eb60b7c3594af30cc390d0df9e43a22eaca430fe6a38702000000160014d34b7d969a887b9498d483ecf3b55ee82f8e299affffffff03e8030000000000001600143f58a79291a265f610e74bf153dca296bc399fb200000000000000000c6a0a3466a926374814a30a0f66b8082701000000160014d34b7d969a887b9498d483ecf3b55ee82f8e299a02000000000000", + "rawtransaction": "02000000000101119dbe2ceeda25c2be45d2aba37559fcce4c913e993aa325d0ab72e23f06ab39020000001600142b08c45289028349cc594a15406b2e9391f71c7cffffffff03e8030000000000001600144d58139ca58d4e5278dcc90c123825e920a4c78200000000000000000c6a0a3b15b6e696812f9609ef5fb80827010000001600142b08c45289028349cc594a15406b2e9391f71c7c02000000000000", "params": { - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "quantity": 1000 }, "name": "dispense", @@ -4577,9 +4593,9 @@ }, "/v2/addresses/
/compose/fairminter": { "result": { - "rawtransaction": "02000000000101175a2b32bfe16a1b497ea0715e0e749fdf37f92ee232725876237e50f748886800000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff020000000000000000316a2f45fcf2ce030b61b00e46acf4f6f1dcb916707118a5f1c535e60857ede0ab8f2af8f6de436a0c45752720de1e8ef22fa0af052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101c90d43ea7a244f57e0ec9f519f7c76b2f0a7763744ab6f7a75c8abb61ba15ac0000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000316a2f35e908ad61113bb575e8c54a8a9318b9acc9ca6f44db52c9d54a494d53f2d145dc45e5c0136dbb05bba1f6f739c36e99af052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4611,15 +4627,15 @@ }, "/v2/addresses/
/compose/fairmint": { "result": { - "rawtransaction": "02000000000101d9f2c1fc5cdac6246611f5021f64f973612e0d045c82ad2c2ff945687e6de82600000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff020000000000000000166a14457c7e9863505b7607b08b7f034565964e5eba47dab6052a01000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000000000000", + "rawtransaction": "02000000000101f3e542c39e892018df6490f555f3094c88c4a380510d3affd25ec845aee5f020000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000166a14f35fd73585af2365f86aba91b9701aed9186e133d4b6052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -4638,10 +4654,10 @@ }, "/v2/addresses/
/compose/attach": { "result": { - "rawtransaction": "020000000001068064a4c872709fda6a2e6d1bee8591ee24a97e4be5b99fd456dd36ce76f554cf00000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff066c67ee95761c8ecd99f44dce618f0495ad7761073f9df4fbc61c8dec2ec83b00000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff1e09fecb1c6b655b77fb28a63e16f148ee315a46a9caa69f568b4e67e3336f4500000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccfffffffffb831099612050d5fdcb6ddb8e7fa4fa84a9d215b5e23c2b0e2a33aa460c36d000000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff8545b133f0164a422154633cc7b4ec08eb3c8327b07beafda4be404178b5a28200000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffffadbe2b803f9fc171304e4b4f8733ba2c005165f611e2dfaec13b1a8ca3ca57cd00000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72ccffffffff04e80300000000000069512102147d74dbc36c50dfee6c9a96da427c9325e6009847178f007c955d66c5598ed2210343db7409d2ce94f9766d071fd2a47a3aad1b8c0dff70580263eac47a511afdd42102826647162b0c6923b8cb80931a26d52766d59f1eaa8341f34b9b31592e138ebe53aee80300000000000069512103147d74dbc36c50dfee6eccc6cb57288322ad4a9d1255850024c45b668508d93d210316de740d82c4c5a27a6a0c4289f33968be1ec10bee7e014963ef962d031da8302102826647162b0c6923b8cb80931a26d52766d59f1eaa8341f34b9b31592e138ebe53aee803000000000000695121033e7d74dbc36c50dfee699dc4cc0c7d9e48dc29804651d30914a06b02b631bab1210375ed446ce4fdf1914f5d6f72eb910f51db29f43d8c18307e5bdda549342ccd262102826647162b0c6923b8cb80931a26d52766d59f1eaa8341f34b9b31592e138ebe53aee83922fc06000000160014a108d7b3e5bd34d85ebad3f3a8e6e57df65a72cc02000002000002000002000002000002000000000000", + "rawtransaction": "020000000001068b45c8be8ff92bbba5b5c2dda07b503f5545f3da2e069379f635d648c3462fc3000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff8793d45f8f4010d8e8e328dab5768f855e73dd99f690ce397db9992322843bc0000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff86ec152a47bd8f17389c79fc5818af06033bc05313a82f0bfb1ec2ba098e39bd000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff964aaeef52ff6553088b3c4224e983f3955681388ea9a0818036f5138fc7b51d000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff199b9ad5d5a5b91a9af4b2fbe97a5395db52c6ae6eea83c77f8103f55a929b0d000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffffd4775192c52937dbc731da8b8f1ff6f93862668bbdadbe2a8ea2c5bb2b980836000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff04e80300000000000069512103e936ed976e664450737aca36fe1e353dc89dccbe7c5ce14d951f54c0b9a7256e210375e4409ff7d7eb87de775c0d49b342cd89b61060d8ff59fbd67fbb2d9cefdbbb2102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153aee80300000000000069512102e936ed976e66445073289f64e80b347cc79ecce76613ec46c50a00c0efad779d21027def4ddce496bbdfdc370a0202f203818bf95c698af105b7d62fe82f9fb8db882102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153aee80300000000000069512103c336ed976e664450732ecd31b4503530a8ecfdaf351bba45a06c63f4dcc946b9210319dc79e880ae88e9eb066c3531c431b5b9c0650cbf936087b21a8e1ef9dbbda32102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153aec13922fc060000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d:0", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4654,7 +4670,7 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713579796430766c396835366473683436363065363365683930686d3935756b763278307368687c383761336536306634336361656132323361653466393064306433396363333061663934333537633062623639653735366266313738323364373165616531643a307c5843507c31303030", + "data": "434e545250525459646263727431713832616d78776b3835733734656e636c3839777779636e35713038787773783076756c676c397c646535336534663637316461303037316134623866336566633433643164333434643833363731663733363234323939653562653064356631666366306564383a317c5843507c31303030", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4666,10 +4682,10 @@ }, "/v2/utxos//compose/detach": { "result": { - "rawtransaction": "020000000001012f4d7a4c52f6ba9ce74d24e2176fc79e6c2b4d43808c4748afb55876f3c87c200100000016001466ee2243f13b5d0902d7942f8c5b3ff8a5dfa3c1ffffffff04e803000000000000695121025bee27b169956b9719d089daaddb3625d44df7e47a248f8e3f68bb63a303e72e21036e09095c8ac09cada6367e5b629d784bfdcae198192b2bbb4b64b831beb78487210302df2348d2e2794f53cbefb920784e3e7bb164f17b77fe51c95942f11216a1f753aee803000000000000695121025bee27b169956b9719d28ddfa88c362ad34aa4e02926dcc73c6dfd2fa645ea3a210274485d58cf98c1f7f13679116fca794bab9ee0ce4e7126bf476cb63da8be931b210302df2348d2e2794f53cbefb920784e3e7bb164f17b77fe51c95942f11216a1f753aee8030000000000006951210371ee27b169956b971986c3dae9d03d61ea3d90ae7e2cdd8b5e0e8f5b9734dffb21030d313968b9f4f89fc4001d6207fe4f7d9bfbd6fd2b191f8f2f018f08ddd5e5c6210302df2348d2e2794f53cbefb920784e3e7bb164f17b77fe51c95942f11216a1f753aef49808270100000016001466ee2243f13b5d0902d7942f8c5b3ff8a5dfa3c102000000000000", + "rawtransaction": "020000000001011cad9a9319fca4afa7b2d4cbacd0741ecfcc6edfe1346b2d6d4b66a237e0902c010000001600145f0a669381ca92fe5c67bb77083133c750fc8521ffffffff04e80300000000000069512103aa92ec82797fe0a4b39d4f8a9c278bd7e2897dc1fb7c69ea3a3644a3c9f09edf2102b655dba7fd942cb87e45605ec681a76a6cf1bb9639255fbc1b72f20182a7f99221025334ed116f50f7942d8cde029e80dda0180e31a39aa128d50c9729185d0615ea53aee80300000000000069512102aa92ec82797fe0a4b39f1ed89c2edddeb0df78c2ae706cf46e3104b3cee3958f2103b05187bbecc971ee6e11320acdd5ff3665e7af8c382f5eaf192bbd1797befd0a21025334ed116f50f7942d8cde029e80dda0180e31a39aa128d50c9729185d0615ea53aee803000000000000695121028092ec82797fe0a4b38f0885c27bd79b89fd4c8ffc7a6db80c5276c7ff92ad6d21028230eac39ba249db1d26066fa3b6930e5c90d8f55b416bde2913c560e4c6cdf321025334ed116f50f7942d8cde029e80dda0180e31a39aa128d50c9729185d0615ea53aee8980827010000001600145f0a669381ca92fe5c67bb77083133c750fc852102000000000000", "params": { - "source": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f:1", - "destination": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c:1", + "destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4682,7 +4698,7 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964323037636338663337363538623561663438343738633830343334643262366339656337366631376532323434646537396362616636353234633761346432663a317c6263727431713579796430766c396835366473683436363065363365683930686d3935756b763278307368687c5843507c31303030", + "data": "434e54525052545964326339306530333761323636346236643264366233346531646636656363636631653734643061636362643462326137616661346663313939333961616431633a317c6263727431713832616d78776b3835733734656e636c3839777779636e35713038787773783076756c676c397c5843507c31303030", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4698,8 +4714,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 10000000000, @@ -4707,16 +4723,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726825317, - "last_issuance_block_time": 1726825336, + "first_issuance_block_time": 1726943675, + "last_issuance_block_time": 1726943683, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qvmhzysl38dwsjqkhjshcckellzjalg7pmtpee2", - "owner": "bcrt1qvmhzysl38dwsjqkhjshcckellzjalg7pmtpee2", + "issuer": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", + "owner": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", "divisible": true, "locked": false, "supply": 100000000000, @@ -4724,16 +4740,16 @@ "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1726825313, - "last_issuance_block_time": 1726825313, + "first_issuance_block_time": 1726943670, + "last_issuance_block_time": 1726943670, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 100000000000, @@ -4741,16 +4757,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726825279, - "last_issuance_block_time": 1726825279, + "first_issuance_block_time": 1726943638, + "last_issuance_block_time": 1726943638, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 40, @@ -4758,16 +4774,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726825217, - "last_issuance_block_time": 1726825221, + "first_issuance_block_time": 1726943577, + "last_issuance_block_time": 1726943581, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 19, @@ -4775,8 +4791,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726825201, - "last_issuance_block_time": 1726825213, + "first_issuance_block_time": 1726943560, + "last_issuance_block_time": 1726943573, "supply_normalized": "0.00000019" } ], @@ -4788,8 +4804,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 10000000000, @@ -4797,15 +4813,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1726825163, - "last_issuance_block_time": 1726825176, + "first_issuance_block_time": 1726943523, + "last_issuance_block_time": 1726943534, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4813,14 +4829,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4828,7 +4844,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -4840,7 +4856,7 @@ }, "/v2/assets//balances/
": { "result": { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4859,9 +4875,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4876,7 +4892,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726825453, + "block_time": 1726943802, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4902,9 +4918,9 @@ }, { "tx_index": 55, - "tx_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "block_index": 190, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4919,7 +4935,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726825449, + "block_time": 1726943798, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4945,9 +4961,9 @@ }, { "tx_index": 52, - "tx_hash": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "tx_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "block_index": 186, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -4962,7 +4978,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726825432, + "block_time": 1726943781, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4988,9 +5004,9 @@ }, { "tx_index": 50, - "tx_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "tx_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "block_index": 185, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5005,7 +5021,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726825427, + "block_time": 1726943776, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5031,9 +5047,9 @@ }, { "tx_index": 49, - "tx_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", + "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", "block_index": 186, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5048,7 +5064,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726825432, + "block_time": 1726943781, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5079,13 +5095,13 @@ "/v2/assets//matches": { "result": [ { - "id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "tx0_index": 49, - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 52, - "tx1_hash": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", - "tx1_address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5099,7 +5115,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726825432, + "block_time": 1726943781, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5119,13 +5135,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "tx0_index": 49, - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 50, - "tx1_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", - "tx1_address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5139,7 +5155,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726825427, + "block_time": 1726943776, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5159,13 +5175,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b_7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", + "id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", "tx0_index": 47, - "tx0_hash": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 48, - "tx1_hash": "7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", - "tx1_address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "tx1_hash": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5179,7 +5195,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726825356, + "block_time": 1726943703, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5206,20 +5222,20 @@ "result": [ { "block_index": 192, - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5227,20 +5243,20 @@ }, { "block_index": 125, - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "9e33d1c18f232f70831324c5da3242bd7223b2046634bac4d8ac230c6fa77625", + "event": "ad20ce4b786258ea1c1df1c6f730a0b7989626161405060fe9f692ef84bf66f1", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825176, + "block_time": 1726943534, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5248,20 +5264,20 @@ }, { "block_index": 124, - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "3cab6bd1d988b7c58fd2f2500fd32d5b49adbff82781905060b6fb78f9e8e7bf", + "event": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825171, + "block_time": 1726943531, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5269,20 +5285,20 @@ }, { "block_index": 124, - "address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "5ff1033ca6de7b9f191e14e803b0106fe025ee35bd22ddb56a77427d0975c947", + "event": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825171, + "block_time": 1726943531, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5294,16 +5310,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "3cab6bd1d988b7c58fd2f2500fd32d5b49adbff82781905060b6fb78f9e8e7bf", + "event": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825171, + "block_time": 1726943531, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5317,16 +5333,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "event": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -5338,16 +5354,16 @@ }, { "block_index": 192, - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -5359,16 +5375,16 @@ }, { "block_index": 192, - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -5380,16 +5396,16 @@ }, { "block_index": 191, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "event": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825453, + "block_time": 1726943802, "asset_info": { "divisible": true, "asset_longname": null, @@ -5401,16 +5417,16 @@ }, { "block_index": 189, - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825444, + "block_time": 1726943793, "asset_info": { "divisible": true, "asset_longname": null, @@ -5428,20 +5444,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8", + "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", "block_index": 153, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726825303, + "block_time": 1726943663, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5463,14 +5479,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "9e33d1c18f232f70831324c5da3242bd7223b2046634bac4d8ac230c6fa77625", + "tx_hash": "ad20ce4b786258ea1c1df1c6f730a0b7989626161405060fe9f692ef84bf66f1", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -5485,20 +5501,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726825176, + "block_time": 1726943534, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "3cab6bd1d988b7c58fd2f2500fd32d5b49adbff82781905060b6fb78f9e8e7bf", + "tx_hash": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -5513,20 +5529,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726825171, + "block_time": 1726943531, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "5ff1033ca6de7b9f191e14e803b0106fe025ee35bd22ddb56a77427d0975c947", + "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -5541,20 +5557,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726825167, + "block_time": 1726943527, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -5569,7 +5585,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1726825163, + "block_time": 1726943523, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5581,10 +5597,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5592,7 +5608,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "divisible": true, "asset_longname": null, @@ -5605,10 +5621,10 @@ }, { "tx_index": 53, - "tx_hash": "59e81ffd913405acb74f32dfc79bccf2605e8b41c6117f26b184127c9adaf747", + "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f", "block_index": 187, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5616,7 +5632,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825436, + "block_time": 1726943785, "asset_info": { "divisible": true, "asset_longname": null, @@ -5629,10 +5645,10 @@ }, { "tx_index": 42, - "tx_hash": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f", + "tx_hash": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", "block_index": 155, - "source": "3fef13f6bcdd2af88bb1ea176f0e66bd711f27abee3a15cd5d9f024a2ca9712b:0", - "destination": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f:1", + "source": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1:0", + "destination": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5640,7 +5656,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825313, + "block_time": 1726943670, "asset_info": { "divisible": true, "asset_longname": null, @@ -5653,10 +5669,10 @@ }, { "tx_index": 41, - "tx_hash": "3fef13f6bcdd2af88bb1ea176f0e66bd711f27abee3a15cd5d9f024a2ca9712b", + "tx_hash": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1", "block_index": 154, - "source": "1ca47b3ed3faa95f09ad9663d035d659e3d277dce309ac6dfa12736be2a05564:0", - "destination": "3fef13f6bcdd2af88bb1ea176f0e66bd711f27abee3a15cd5d9f024a2ca9712b:0", + "source": "74d316ca342326f38281e59ead3dfc971daed967e3bf1bba4ebaf1ebbfaccca3:0", + "destination": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5664,7 +5680,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825308, + "block_time": 1726943667, "asset_info": { "divisible": true, "asset_longname": null, @@ -5683,18 +5699,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", + "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "last_status_tx_hash": null, - "origin": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5704,7 +5720,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726825274, + "block_time": 1726943634, "asset_info": { "divisible": true, "asset_longname": null, @@ -5720,9 +5736,9 @@ }, { "tx_index": 30, - "tx_hash": "a5fce55057a25a0e4f1a17eca63c2121a48e1802c130a7b0b5d172928cfa9141", + "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", "block_index": 144, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5731,7 +5747,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5741,7 +5757,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825266, + "block_time": 1726943625, "asset_info": { "divisible": true, "asset_longname": null, @@ -5757,9 +5773,9 @@ }, { "tx_index": 29, - "tx_hash": "b918c1b51b630dab246f03fa8cb9d56e1854db3eba62069590bdaae213c9c46b", + "tx_hash": "fc59b2d70ba6a4019eb86b813223acd00bf3fe1819d6d28e2a2efdbb3fc9b526", "block_index": 142, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5768,7 +5784,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "origin": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5778,7 +5794,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825247, + "block_time": 1726943607, "asset_info": { "divisible": true, "asset_longname": null, @@ -5794,9 +5810,9 @@ }, { "tx_index": 26, - "tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5805,7 +5821,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5815,7 +5831,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -5836,9 +5852,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 30, - "tx_hash": "a5fce55057a25a0e4f1a17eca63c2121a48e1802c130a7b0b5d172928cfa9141", + "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", "block_index": 144, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5847,7 +5863,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5857,7 +5873,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825266, + "block_time": 1726943625, "asset_info": { "divisible": true, "asset_longname": null, @@ -5885,7 +5901,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5893,7 +5909,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -5902,7 +5918,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5910,7 +5926,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -5919,7 +5935,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5927,7 +5943,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -5936,7 +5952,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -5951,27 +5967,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", + "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", - "destination": "bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", + "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "last_status_tx_hash": null, - "origin": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5986,7 +6002,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726825274, + "block_time": 1726943634, "asset_info": { "divisible": true, "asset_longname": null, @@ -6000,19 +6016,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "15c76615f19c7ab60a28be17ee51ee7eeb9274a29410baad82bd76217b4c1059", + "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6020,7 +6036,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6035,7 +6051,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -6049,19 +6065,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2bc8003e54c5015f26156d3a0108e500f87bbb12f215ab1bbd96f193c0af43bf", + "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", "block_index": 140, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6069,7 +6085,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6084,7 +6100,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825238, + "block_time": 1726943598, "asset_info": { "divisible": true, "asset_longname": null, @@ -6105,8 +6121,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "owner": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false, "supply": 0, @@ -6114,8 +6130,8 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1726825331, - "last_issuance_block_time": 1726825331, + "first_issuance_block_time": 1726943679, + "last_issuance_block_time": 1726943679, "supply_normalized": "0.00000000" } ], @@ -6125,10 +6141,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6153,7 +6169,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726825176 + "block_time": 1726943534 } ], "next_cursor": null, @@ -6162,64 +6178,64 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "9e33d1c18f232f70831324c5da3242bd7223b2046634bac4d8ac230c6fa77625", + "tx_hash": "ad20ce4b786258ea1c1df1c6f730a0b7989626161405060fe9f692ef84bf66f1", "tx_index": 13, "block_index": 125, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", - "fairminter_tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825176, + "block_time": 1726943534, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } }, { - "tx_hash": "3cab6bd1d988b7c58fd2f2500fd32d5b49adbff82781905060b6fb78f9e8e7bf", + "tx_hash": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134", "tx_index": 12, "block_index": 124, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", - "fairminter_tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825171, + "block_time": 1726943531, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } }, { - "tx_hash": "5ff1033ca6de7b9f191e14e803b0106fe025ee35bd22ddb56a77427d0975c947", + "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "fairminter_tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825167, + "block_time": 1726943527, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } @@ -6231,22 +6247,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "5ff1033ca6de7b9f191e14e803b0106fe025ee35bd22ddb56a77427d0975c947", + "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "fairminter_tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726825167, + "block_time": 1726943527, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } @@ -6259,9 +6275,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6276,7 +6292,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726825453, + "block_time": 1726943802, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6302,9 +6318,9 @@ }, { "tx_index": 55, - "tx_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "block_index": 190, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6319,7 +6335,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726825449, + "block_time": 1726943798, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6345,9 +6361,9 @@ }, { "tx_index": 52, - "tx_hash": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "tx_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "block_index": 186, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6362,7 +6378,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726825432, + "block_time": 1726943781, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6388,9 +6404,9 @@ }, { "tx_index": 50, - "tx_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "tx_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "block_index": 185, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6405,7 +6421,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726825427, + "block_time": 1726943776, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6431,9 +6447,9 @@ }, { "tx_index": 49, - "tx_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", + "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", "block_index": 186, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6448,7 +6464,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726825432, + "block_time": 1726943781, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6479,9 +6495,9 @@ "/v2/orders/": { "result": { "tx_index": 57, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6496,7 +6512,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726825453, + "block_time": 1726943802, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6524,13 +6540,13 @@ "/v2/orders//matches": { "result": [ { - "id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "tx0_index": 49, - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 52, - "tx1_hash": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", - "tx1_address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6544,7 +6560,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726825432, + "block_time": 1726943781, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6564,13 +6580,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "tx0_index": 49, - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 50, - "tx1_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", - "tx1_address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6584,7 +6600,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726825427, + "block_time": 1726943776, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6611,15 +6627,15 @@ "result": [ { "tx_index": 51, - "tx_hash": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d", + "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", "block_index": 185, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "destination": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "btc_amount": 2000, - "order_match_id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "status": "valid", "confirmed": true, - "block_time": 1726825427, + "block_time": 1726943776, "btc_amount_normalized": "0.00002000" } ], @@ -6630,9 +6646,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6650,7 +6666,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726825453, + "block_time": 1726943802, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6676,9 +6692,9 @@ }, { "tx_index": 55, - "tx_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "block_index": 190, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6696,7 +6712,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726825449, + "block_time": 1726943798, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6722,9 +6738,9 @@ }, { "tx_index": 52, - "tx_hash": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "tx_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "block_index": 186, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6742,7 +6758,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726825432, + "block_time": 1726943781, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6768,9 +6784,9 @@ }, { "tx_index": 50, - "tx_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "tx_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "block_index": 185, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6788,7 +6804,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726825427, + "block_time": 1726943776, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6814,9 +6830,9 @@ }, { "tx_index": 49, - "tx_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", + "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", "block_index": 186, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6834,7 +6850,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726825432, + "block_time": 1726943781, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6865,13 +6881,13 @@ "/v2/orders///matches": { "result": [ { - "id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "tx0_index": 49, - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 52, - "tx1_hash": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", - "tx1_address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6888,7 +6904,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726825432, + "block_time": 1726943781, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6908,13 +6924,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "tx0_index": 49, - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 50, - "tx1_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", - "tx1_address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6931,7 +6947,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726825427, + "block_time": 1726943776, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6951,13 +6967,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b_7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", + "id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", "tx0_index": 47, - "tx0_hash": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 48, - "tx1_hash": "7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", - "tx1_address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "tx1_hash": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6974,7 +6990,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726825356, + "block_time": 1726943703, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7000,13 +7016,13 @@ "/v2/order_matches": { "result": [ { - "id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "tx0_index": 49, - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 52, - "tx1_hash": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", - "tx1_address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7020,7 +7036,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726825432, + "block_time": 1726943781, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7040,13 +7056,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "tx0_index": 49, - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 50, - "tx1_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", - "tx1_address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7060,7 +7076,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726825427, + "block_time": 1726943776, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7080,13 +7096,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b_7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", + "id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", "tx0_index": 47, - "tx0_hash": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_hash": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx1_index": 48, - "tx1_hash": "7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", - "tx1_address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "tx1_hash": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7100,7 +7116,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726825356, + "block_time": 1726943703, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7145,66 +7161,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "c724be97644ba07ec1c9f927fbec7f0af277326c1db1abbd8979c6cc79c326e9", + "tx_hash": "338720d47c7ab728d1364edded99b5ecf28424429f2e3506bb6c2812aa8f8513", "block_index": 121, - "source": "bcrt1qy6cw9lzzwxl4z390c2kml2pgpxu6stzez3l2xz", + "source": "bcrt1qxmw2n03dl0jlw8ap4tg5n9htdske39r04u5amh", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1726825158, + "block_time": 1726943518, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "33dd53ae13def52250cb41311432dbc125ba8ef11b61e1bbada76e1ae239e4cd", + "tx_hash": "3760de148308b4b87619486b603d3b4e624dfce380efedd710b1e491b7992988", "block_index": 120, - "source": "bcrt1qvmhzysl38dwsjqkhjshcckellzjalg7pmtpee2", + "source": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1726825154, + "block_time": 1726943514, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "9b88d94d59ea60ddb9250e8c3f0236f64fc0a5e3a8b03b6194b01b12eb623d9c", + "tx_hash": "b5267ba78738e5b02fb213596fe807b28bcf218bab3cb1baf8d82d5594b9dccb", "block_index": 119, - "source": "bcrt1qp348umcgxw3k2ulcwm5f9gsu6lnntqfft3mehw", + "source": "bcrt1qkjfngjnf7pr6038cynrarc5kh9cuje48yv3wtm", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1726825149, + "block_time": 1726943511, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "6c1f708f623ffb89d5daeec88bcb133d051985644f265de2127dc026a360a264", + "tx_hash": "f1021a619687969d2bb8d9aecfd6e31c57d607b63df712475770c829311688e5", "block_index": 118, - "source": "bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt", + "source": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1726825145, + "block_time": 1726943507, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "9c3ed50276fc8685811c1f3beca7b9328382b86d3970791d121ba98b1bb4055f", + "tx_hash": "0659d434af9b56b1f1a97b3c83cb4d4bd3f4f78be6d848f9567e8237cdeca510", "block_index": 117, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1726825141, + "block_time": 1726943502, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7216,18 +7232,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", + "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "last_status_tx_hash": null, - "origin": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7237,7 +7253,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726825274, + "block_time": 1726943634, "asset_info": { "divisible": true, "asset_longname": null, @@ -7253,9 +7269,9 @@ }, { "tx_index": 30, - "tx_hash": "a5fce55057a25a0e4f1a17eca63c2121a48e1802c130a7b0b5d172928cfa9141", + "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", "block_index": 144, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7264,7 +7280,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7274,7 +7290,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825266, + "block_time": 1726943625, "asset_info": { "divisible": true, "asset_longname": null, @@ -7290,9 +7306,9 @@ }, { "tx_index": 29, - "tx_hash": "b918c1b51b630dab246f03fa8cb9d56e1854db3eba62069590bdaae213c9c46b", + "tx_hash": "fc59b2d70ba6a4019eb86b813223acd00bf3fe1819d6d28e2a2efdbb3fc9b526", "block_index": 142, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7301,7 +7317,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "origin": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7311,7 +7327,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825247, + "block_time": 1726943607, "asset_info": { "divisible": true, "asset_longname": null, @@ -7327,9 +7343,9 @@ }, { "tx_index": 26, - "tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7338,7 +7354,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7348,7 +7364,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -7369,9 +7385,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7380,7 +7396,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7390,7 +7406,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -7410,19 +7426,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "15c76615f19c7ab60a28be17ee51ee7eeb9274a29410baad82bd76217b4c1059", + "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7430,7 +7446,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7445,7 +7461,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -7459,19 +7475,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2bc8003e54c5015f26156d3a0108e500f87bbb12f215ab1bbd96f193c0af43bf", + "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", "block_index": 140, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7479,7 +7495,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7494,7 +7510,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825238, + "block_time": 1726943598, "asset_info": { "divisible": true, "asset_longname": null, @@ -7513,20 +7529,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8", + "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", "block_index": 153, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726825303, + "block_time": 1726943663, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -7547,20 +7563,20 @@ "/v2/dividends/": { "result": { "tx_index": 40, - "tx_hash": "d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8", + "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", "block_index": 153, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726825303, + "block_time": 1726943663, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -7583,12 +7599,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8", + "event": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", "tx_index": 40, - "utxo": "1ca47b3ed3faa95f09ad9663d035d659e3d277dce309ac6dfa12736be2a05564:0", - "utxo_address": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "utxo": "74d316ca342326f38281e59ead3dfc971daed967e3bf1bba4ebaf1ebbfaccca3:0", + "utxo_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "confirmed": true, - "block_time": 1726825303, + "block_time": 1726943663, "asset_info": { "divisible": true, "asset_longname": null, @@ -7600,16 +7616,16 @@ }, { "block_index": 153, - "address": "bcrt1qer50mmddxamklxlnhp2ts8wg0ajzqns2mleqhf", + "address": "bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8", + "event": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726825303, + "block_time": 1726943663, "asset_info": { "divisible": true, "asset_longname": null, @@ -7630,27 +7646,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "16a2a4d25db0bdbc4b8b59436e96066cfb1fae75bf3485f694e86481b001a4d8", - "messages_hash": "f4dc020ee1b28cf6418bf348d583d9fd9eb4670253b0537a52e0820b98904bd7", + "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", + "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", "transaction_count": 1, - "txlist_hash": "15f051ecea1b0e7dc7afa64a941fb638b8014c03d0f629c8426274d9bd419803", - "block_time": 1726825461 + "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", + "block_time": 1726943809 }, "tx_hash": null, "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "tx_index": 59 }, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 }, { "event_index": 533, @@ -7659,12 +7675,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "status": "valid", "tag": "64657374726f79", - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "tx_index": 59, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -7674,24 +7690,24 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 193, - "event": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "event": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -7701,25 +7717,25 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", "block_index": 193, - "block_time": 1726825461, + "block_time": 1726943809, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "tx_index": 59, - "utxos_info": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982:1", + "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -7739,9 +7755,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 } ], "next_cursor": 530, @@ -7753,15 +7769,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "16a2a4d25db0bdbc4b8b59436e96066cfb1fae75bf3485f694e86481b001a4d8", - "messages_hash": "f4dc020ee1b28cf6418bf348d583d9fd9eb4670253b0537a52e0820b98904bd7", + "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", + "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", "transaction_count": 1, - "txlist_hash": "15f051ecea1b0e7dc7afa64a941fb638b8014c03d0f629c8426274d9bd419803", - "block_time": 1726825461 + "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", + "block_time": 1726943809 }, "tx_hash": null, "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 } }, "/v2/events/counts": { @@ -7796,16 +7812,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -7815,78 +7831,78 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", + "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726825449, + "block_time": 1726943798, "asset_info": { "divisible": true, "asset_longname": null, @@ -7896,24 +7912,24 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "block_index": 190, - "block_time": 1726825449 + "block_time": 1726943798 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "event": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "divisible": true, "asset_longname": null, @@ -7923,9 +7939,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "block_time": 1726825440 + "block_time": 1726943789 } ], "next_cursor": 490, @@ -7942,27 +7958,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", + "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", - "destination": "bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", + "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "last_status_tx_hash": null, - "origin": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7977,7 +7993,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726825274, + "block_time": 1726943634, "asset_info": { "divisible": true, "asset_longname": null, @@ -7991,19 +8007,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "15c76615f19c7ab60a28be17ee51ee7eeb9274a29410baad82bd76217b4c1059", + "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8011,7 +8027,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8026,7 +8042,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825243, + "block_time": 1726943602, "asset_info": { "divisible": true, "asset_longname": null, @@ -8040,19 +8056,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2bc8003e54c5015f26156d3a0108e500f87bbb12f215ab1bbd96f193c0af43bf", + "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", "block_index": 140, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2bd1e7ca04a292f1195db2f05fa31f017a6a30116b02f02c52b78c6252e47d4d", + "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8060,7 +8076,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8075,7 +8091,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726825238, + "block_time": 1726943598, "asset_info": { "divisible": true, "asset_longname": null, @@ -8094,10 +8110,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8105,7 +8121,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "divisible": true, "asset_longname": null, @@ -8118,10 +8134,10 @@ }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8129,11 +8145,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -8142,10 +8158,10 @@ }, { "tx_index": 54, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8153,11 +8169,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -8166,10 +8182,10 @@ }, { "tx_index": 53, - "tx_hash": "59e81ffd913405acb74f32dfc79bccf2605e8b41c6117f26b184127c9adaf747", + "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f", "block_index": 187, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -8177,7 +8193,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825436, + "block_time": 1726943785, "asset_info": { "divisible": true, "asset_longname": null, @@ -8190,10 +8206,10 @@ }, { "tx_index": 42, - "tx_hash": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f", + "tx_hash": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", "block_index": 155, - "source": "3fef13f6bcdd2af88bb1ea176f0e66bd711f27abee3a15cd5d9f024a2ca9712b:0", - "destination": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f:1", + "source": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1:0", + "destination": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8201,7 +8217,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726825313, + "block_time": 1726943670, "asset_info": { "divisible": true, "asset_longname": null, @@ -8220,14 +8236,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "10cfae46493da7d2e6bf22d408237bbce06107cad0667073471cd7a2b03ac7e6", + "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -8242,20 +8258,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825340, + "block_time": 1726943687, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "c9993ca12278a2515f3d2392bc3815d92314e56cca6eb8a0f0f4a763384172b7", + "tx_hash": "ad5638a61876314ea341c91f638042e00c58a6a150651c1198858bbfa50bcdd3", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -8270,20 +8286,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726825336, + "block_time": 1726943683, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "6eab9bdda455830ed79ad0385271d751f42068b84397671cf28b7fde4368eb98", + "tx_hash": "920160abffc2681cf411a03e5ddc3c3f7f1156c1ceffaa2304a7f6f82032e82f", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -8298,20 +8314,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825331, + "block_time": 1726943679, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "b852601dc9b19f603942ca34706fa6e463efae4faaf8831fbfdef4a2143e93f0", + "tx_hash": "730d154e7c40e6f269a3c0f15937c64309d932202616ef4c54ec0c6e07ddc29c", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -8326,20 +8342,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825317, + "block_time": 1726943675, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f", + "tx_hash": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qvmhzysl38dwsjqkhjshcckellzjalg7pmtpee2", - "issuer": "bcrt1qvmhzysl38dwsjqkhjshcckellzjalg7pmtpee2", + "source": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", + "issuer": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", "transfer": false, "callable": false, "call_date": 0, @@ -8354,7 +8370,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825313, + "block_time": 1726943670, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8365,14 +8381,14 @@ "/v2/issuances/": { "result": { "tx_index": 46, - "tx_hash": "10cfae46493da7d2e6bf22d408237bbce06107cad0667073471cd7a2b03ac7e6", + "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "transfer": false, "callable": false, "call_date": 0, @@ -8387,7 +8403,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726825340, + "block_time": 1726943687, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8396,16 +8412,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "fee_paid_normalized": "0.00600000" } ], @@ -8416,16 +8432,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726825457, + "block_time": 1726943805, "fee_paid_normalized": "0.00600000" } ], @@ -8436,9 +8452,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "7afd835b6e2698c872818ef165eacb80569bf7feb379434a7a8500f2ca203a5e", + "tx_hash": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea", "block_index": 138, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8446,14 +8462,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726825230, + "block_time": 1726943590, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "26c8f08ba6eb1653583ea631a32a4360bf8efa472e2549da69e17e976c2ad5b9", + "tx_hash": "3adb5f6a83dbf36fc41ff713ae0883905bee565d0450041334cb0b35e8d7dc74", "block_index": 137, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8461,7 +8477,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726825226, + "block_time": 1726943585, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8471,9 +8487,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "7afd835b6e2698c872818ef165eacb80569bf7feb379434a7a8500f2ca203a5e", + "tx_hash": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea", "block_index": 138, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8481,17 +8497,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726825230, + "block_time": 1726943590, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "70a08a09be7e7db658afd9643104aa69036256014c37028c4cf48c03228597bd", + "tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8516,13 +8532,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726825217 + "block_time": 1726943577 }, { - "tx_hash": "e7323ddacfbba1ea3be9123e0aa839426a9b1c70cbc7e2d589144cbb7c737cfb", + "tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8547,13 +8563,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726825201 + "block_time": 1726943560 }, { - "tx_hash": "019c1a0e87d4fc9a572746bc4785e4a308e1827daaa4e9a77bc61c0d0ce7fc75", + "tx_hash": "f8863d06dd1c63af927665e2741a68593285bb4a52bbadf58685b17809c50470", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8578,13 +8594,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726825197 + "block_time": 1726943556 }, { - "tx_hash": "8197942bfdef14c93764f57901fbe99b26ab1a0cf8d030396521b48913fa0fd7", + "tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8609,7 +8625,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726825176 + "block_time": 1726943534 } ], "next_cursor": null, @@ -8623,8 +8639,8 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", - "address": "bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt" + "txid": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "address": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc" }, { "vout": 2, @@ -8632,8 +8648,8 @@ "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f", - "address": "bcrt1qp348umcgxw3k2ulcwm5f9gsu6lnntqfft3mehw" + "txid": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", + "address": "bcrt1qkjfngjnf7pr6038cynrarc5kh9cuje48yv3wtm" } ], "next_cursor": null, @@ -8642,28 +8658,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "b67f5af2e627e0827c544fb71b70ff8b8754740c3ea26d7a302ae0cb78430605" + "tx_hash": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134" }, { - "tx_hash": "59e81ffd913405acb74f32dfc79bccf2605e8b41c6117f26b184127c9adaf747" + "tx_hash": "cc7990d855f354e057a6e08b954da3db23de867816732e8fc48f06b3fcadb83b" }, { - "tx_hash": "330e4c148d12cfcceb7de4268c14d00bf280ab8a2d4d34fd7681c805ce7932aa" + "tx_hash": "19c2df8875b48b0feac5ebd32ecd51687724b5f0cd6696c4530be3fe54275942" }, { - "tx_hash": "9925f2aefd06218212ce3703d212e1482bfbaa21eaf739259b4f6af9790480ac" + "tx_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c" }, { - "tx_hash": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be" + "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f" }, { - "tx_hash": "3cab6bd1d988b7c58fd2f2500fd32d5b49adbff82781905060b6fb78f9e8e7bf" + "tx_hash": "9dc5d37ade58fe3fcc4001a7c5a086fc13efa89bbb556610bb78c7d6c2b059a1" }, { - "tx_hash": "dc4490de7d9dcfbbd88d7d329e61ffdb70aba9b47120da1597dc11c2690f89c0" + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" }, { - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8" + "tx_hash": "29fa7abdb8f36c6ccf566648eecdf35b25c8832dd3e7d04c05cd68cb89a5b9cf" } ], "next_cursor": null, @@ -8671,8 +8687,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 6, - "tx_hash": "b9f401d610a4d5a8ba21cb87fc26cabbb2f6c5265e0dad2b23612d5f7701e918" + "block_index": 1, + "tx_hash": "5fb7017e22dd99935308749bc42c99dcb2c7f63a000eabcb579f2de68b1a65d5" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -8683,20 +8699,20 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566" + "txid": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "02826647162b0c6923b8cb80931a26d52766d59f1eaa8341f34b9b31592e138ebe" + "result": "02a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a761" }, "/v2/bitcoin/transactions/": { - "result": "020000000001016b14385c89dc93e03dab476dc34881e4a46f3bb5e03a142c94a5e10fd1c7500d0300000000ffffffff020000000000000000226a20e2a35f57e4de5d3f9318e1f758b5bc9d811e9dd2b332a6625c97932b99ca37df680b0a27010000001600143f58a79291a265f610e74bf153dca296bc399fb202473044022060f012d87c7164aa7c303baafffe24810872e7563e06556f08548ee640f07579022063dea91814fd60c0e0b1430373d8f018448f1f4dcaa7cc6e9be7d424cb9eac93012103627149b11072d173c18af5d57b2e956a6e9486c355941852729eb2c95ff676c100000000" + "result": "020000000001010868d36801b7e9ccefaff9e835632724bef8ff179dae145ee0d64a02571a88970300000000ffffffff020000000000000000226a20efd23af66b243324230f7699e2ab650a7995a09ba6f342c89445eeb929c76651680b0a27010000001600144d58139ca58d4e5278dcc90c123825e920a4c7820247304402207b586af9c20ebe66916002d4457616420fa09a3636aff04d5c858dc611669d6202204c63d1f3a0c0f3f632455c02abd8e28fa98efddf8c513e252280783611cd71eb01210352e612ef317c96dc910d7efc93996e313947873e472d8309212310d61a94612200000000" }, "/v2/bitcoin/estimatesmartfee": { - "result": 68517 + "result": 68546 }, "/v2/bitcoin/getmempoolinfo": { "result": { @@ -8716,26 +8732,26 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "tx_index": 60 } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "memo": null, "quantity": 10000, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "status": "valid", - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "tx_index": 60, "asset_info": { "divisible": true, @@ -8748,19 +8764,19 @@ } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "CREDIT", "params": { - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -8772,19 +8788,19 @@ } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 193, - "event": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -8796,27 +8812,27 @@ } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726825466.1412678, + "block_time": 1726943814.1647968, "btc_amount": 0, - "data": "0200000000000000010000000000002710803a92bf67fd998b844b7ea1a455ec67c46c4bc757", + "data": "020000000000000001000000000000271080c6ffd5588e4548e249935cfdedfb570089a7e433", "destination": "", "fee": 10000, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "tx_index": 60, - "utxos_info": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b:1", + "utxos_info": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "memo": null, "asset_info": { "divisible": true, @@ -8838,19 +8854,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "CREDIT", "params": { - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -8868,26 +8884,26 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "tx_index": 60 } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "memo": null, "quantity": 10000, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "status": "valid", - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "tx_index": 60, "asset_info": { "divisible": true, @@ -8900,19 +8916,19 @@ } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "CREDIT", "params": { - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -8924,19 +8940,19 @@ } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 193, - "event": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -8948,27 +8964,27 @@ } }, { - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726825466.1412678, + "block_time": 1726943814.1647968, "btc_amount": 0, - "data": "0200000000000000010000000000002710803a92bf67fd998b844b7ea1a455ec67c46c4bc757", + "data": "020000000000000001000000000000271080c6ffd5588e4548e249935cfdedfb570089a7e433", "destination": "", "fee": 10000, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", - "tx_hash": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", "tx_index": 60, - "utxos_info": "38eba775477908aeadc41ad354a95db4a947e25e3addde6a2f4c8241bad76d1b:1", + "utxos_info": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "memo": null, "asset_info": { "divisible": true, @@ -9003,15 +9019,15 @@ "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", "block_index": 193, - "block_time": 1726825461, + "block_time": 1726943809, "difficulty": 545259519, - "previous_block_hash": "666ed1a2f7c2924a82e4d8e9d3b3d6c367f1850f8cdb1303858ab48bbf78d7b6" + "previous_block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f" }, "tx_hash": null, "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 } ], "next_cursor": 518, @@ -9023,17 +9039,17 @@ "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "4d4a4ebf37f6f9d8459965b1ad8a75d398a6911695c3e3075245f51e149306f9", + "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", "block_index": 193, - "block_time": 1726825461, + "block_time": 1726943809, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "tx_index": 59, - "utxos_info": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982:1", + "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -9053,9 +9069,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 } ], "next_cursor": 519, @@ -9069,16 +9085,16 @@ "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "destination": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "out_index": 0, - "tx_hash": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", + "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", "tx_index": 33, - "block_time": 1726825274, + "block_time": 1726943634, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", + "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", "block_index": 146, - "block_time": 1726825274 + "block_time": 1726943634 } ], "next_cursor": 237, @@ -9091,15 +9107,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "16a2a4d25db0bdbc4b8b59436e96066cfb1fae75bf3485f694e86481b001a4d8", - "messages_hash": "f4dc020ee1b28cf6418bf348d583d9fd9eb4670253b0537a52e0820b98904bd7", + "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", + "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", "transaction_count": 1, - "txlist_hash": "15f051ecea1b0e7dc7afa64a941fb638b8014c03d0f629c8426274d9bd419803", - "block_time": 1726825461 + "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", + "block_time": 1726943809 }, "tx_hash": null, "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 } ], "next_cursor": 529, @@ -9112,12 +9128,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "tx_index": 59 }, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 } ], "next_cursor": 528, @@ -9130,15 +9146,15 @@ "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 193, - "event": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "event": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -9148,9 +9164,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 } ], "next_cursor": 525, @@ -9162,16 +9178,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726825457, + "block_time": 1726943805, "asset_info": { "divisible": true, "asset_longname": null, @@ -9181,9 +9197,9 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 } ], "next_cursor": 524, @@ -9197,14 +9213,14 @@ "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "memo": null, "quantity": 10000, - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "status": "valid", - "tx_hash": "59e81ffd913405acb74f32dfc79bccf2605e8b41c6117f26b184127c9adaf747", + "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f", "tx_index": 53, - "block_time": 1726825436, + "block_time": 1726943785, "asset_info": { "divisible": true, "asset_longname": null, @@ -9214,9 +9230,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "59e81ffd913405acb74f32dfc79bccf2605e8b41c6117f26b184127c9adaf747", + "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f", "block_index": 187, - "block_time": 1726825436 + "block_time": 1726943785 } ], "next_cursor": null, @@ -9230,15 +9246,15 @@ "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "status": "valid", - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "tx_index": 54, - "block_time": 1726825440, + "block_time": 1726943789, "asset_info": { "divisible": true, "asset_longname": null, @@ -9248,9 +9264,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e27a3017a09a0ec0fedd589c1eefa7bfeb4a9b008f1e9176c6484ab44156191d", + "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", "block_index": 188, - "block_time": 1726825440 + "block_time": 1726943789 } ], "next_cursor": 495, @@ -9273,20 +9289,20 @@ "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "status": "valid", - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "tx_index": 58, - "block_time": 1726825457, + "block_time": 1726943805, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "8d8f95a2791ef08784966a94c93811197f84b351b5bf664e0c91211163d11ed8", + "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", "block_index": 192, - "block_time": 1726825457 + "block_time": 1726943805 } ], "next_cursor": null, @@ -9303,15 +9319,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "status": "valid", - "tx_hash": "d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8", + "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", "tx_index": 40, - "block_time": 1726825303, + "block_time": 1726943663, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, @@ -9325,9 +9341,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "d22395f5efbb725b78d56169f6842702cd2385cf553b9c03ad30193da257e9a8", + "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", "block_index": 153, - "block_time": 1726825303 + "block_time": 1726943663 } ], "next_cursor": null, @@ -9348,11 +9364,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 159, - "block_time": 1726825340 + "block_time": 1726943687 }, - "tx_hash": "10cfae46493da7d2e6bf22d408237bbce06107cad0667073471cd7a2b03ac7e6", + "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", "block_index": 159, - "block_time": 1726825340 + "block_time": 1726943687 } ], "next_cursor": 367, @@ -9375,22 +9391,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "status": "valid", "transfer": false, - "tx_hash": "10cfae46493da7d2e6bf22d408237bbce06107cad0667073471cd7a2b03ac7e6", + "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", "tx_index": 46, - "block_time": 1726825340, + "block_time": 1726943687, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "10cfae46493da7d2e6bf22d408237bbce06107cad0667073471cd7a2b03ac7e6", + "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", "block_index": 159, - "block_time": 1726825340 + "block_time": 1726943687 } ], "next_cursor": 374, @@ -9405,12 +9421,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1q8av20y535fjlvy88f0c48h9zj67rn8ajprn7wz", + "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", "status": "valid", "tag": "64657374726f79", - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "tx_index": 59, - "block_time": 1726825461, + "block_time": 1726943809, "asset_info": { "divisible": true, "asset_longname": null, @@ -9420,9 +9436,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "960012dfd82223bf994c580c7e3c89fc7901cd4a9c65e5adcd6f62fd561e7982", + "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", "block_index": 193, - "block_time": 1726825461 + "block_time": 1726943809 } ], "next_cursor": 157, @@ -9447,11 +9463,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "status": "open", - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "tx_index": 57, - "block_time": 1726825453, + "block_time": 1726943802, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9475,9 +9491,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "e096ede5b2f739182dfa1c191ac3d0ed50284cff86cbfdee9cb43da41571c608", + "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", "block_index": 191, - "block_time": 1726825453 + "block_time": 1726943802 } ], "next_cursor": 502, @@ -9495,20 +9511,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25", + "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", "tx0_index": 49, - "tx1_address": "bcrt1q82ft7elanx9cgjm75xj9tmr8c3kyh36h7njgtk", + "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "tx1_index": 52, - "block_time": 1726825432, + "block_time": 1726943781, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9527,9 +9543,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "694dcae1375c9c53ccb825be6605b9244a5f982c54dd23fcbe947fbbfd8e33be", + "tx_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", "block_index": 186, - "block_time": 1726825432 + "block_time": 1726943781 } ], "next_cursor": 461, @@ -9542,11 +9558,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a" + "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8" }, - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "block_index": 190, - "block_time": 1726825449 + "block_time": 1726943798 } ], "next_cursor": 476, @@ -9559,11 +9575,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff" + "tx_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294" }, - "tx_hash": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d", + "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", "block_index": 185, - "block_time": 1726825427 + "block_time": 1726943776 } ], "next_cursor": null, @@ -9575,13 +9591,13 @@ "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", - "order_match_id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", + "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", "status": "completed" }, - "tx_hash": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d", + "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", "block_index": 185, - "block_time": 1726825427 + "block_time": 1726943776 } ], "next_cursor": 440, @@ -9595,18 +9611,18 @@ "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "order_match_id": "78fd39e3d20b04cfef70cae6b2458e49a0fffdc5cdac1402ae07e3dbac1baf25_2ecca561a170b5243dd50d5b9283a4688bc020a8f9713d076f2c4a96fd4a08ff", - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "status": "valid", - "tx_hash": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d", + "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", "tx_index": 51, - "block_time": 1726825427, + "block_time": 1726943776, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "87a3e60f43caea223ae4f90d0d39cc30af94357c0bb69e756bf17823d71eae1d", + "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", "block_index": 185, - "block_time": 1726825427 + "block_time": 1726943776 } ], "next_cursor": null, @@ -9619,16 +9635,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "060d850bea4c2c484281aefbeaea7bde50f51751c2de5774d016c8e849e4b62a", - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "status": "valid", - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "tx_index": 56, - "block_time": 1726825449 + "block_time": 1726943798 }, - "tx_hash": "97f1e8881c0ba42d902c6f15a80e2259a36219b51fc55322050b90cf1684c752", + "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", "block_index": 190, - "block_time": 1726825449 + "block_time": 1726943798 } ], "next_cursor": null, @@ -9641,13 +9657,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "block_time": 1726825356 + "order_hash": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "block_time": 1726943703 }, "tx_hash": null, "block_index": 182, - "block_time": 1726825356 + "block_time": 1726943703 } ], "next_cursor": 446, @@ -9660,14 +9676,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "27d544d919433994421cccb00655c95de5f867a1d016db020fa70e8e6a5fbd1b_7896ac5fa27a056de9df69f0d55bd3b9395b5074ea556d7d378cfd4bea8d49c1", - "tx0_address": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "tx1_address": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", - "block_time": 1726825356 + "order_match_id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "block_time": 1726943703 }, "tx_hash": null, "block_index": 182, - "block_time": 1726825356 + "block_time": 1726943703 } ], "next_cursor": null, @@ -9685,14 +9701,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", - "origin": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "satoshirate": 1, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "status": 0, - "tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", + "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", "tx_index": 32, - "block_time": 1726825270, + "block_time": 1726943630, "asset_info": { "divisible": true, "asset_longname": null, @@ -9705,9 +9721,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", + "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", "block_index": 145, - "block_time": 1726825270 + "block_time": 1726943630 } ], "next_cursor": 254, @@ -9722,9 +9738,9 @@ "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "status": 0, - "tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", + "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", "asset_info": { "divisible": true, "asset_longname": null, @@ -9734,9 +9750,9 @@ }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", + "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", "block_index": 146, - "block_time": 1726825274 + "block_time": 1726943634 } ], "next_cursor": 260, @@ -9750,13 +9766,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "ms48hnZTjeTsNXyBuLcWPRMrqz7Ko9awMB", + "destination": "mnFNV6wfK94ay8hxrDH4jGrSPTwRBmePWL", "dispense_quantity": 10, - "dispenser_tx_hash": "a5fce55057a25a0e4f1a17eca63c2121a48e1802c130a7b0b5d172928cfa9141", - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", - "tx_hash": "a99e0620b36a633808a6dc3d6e4ec0e63145e9cc43b20653ac99776d26d23da5", + "dispenser_tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx_hash": "8ee82991c0b27326c3967002388a490584097696bdce50c624fb03d2516758db", "tx_index": 31, - "block_time": 1726825266, + "block_time": 1726943625, "asset_info": { "divisible": true, "asset_longname": null, @@ -9766,9 +9782,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "a99e0620b36a633808a6dc3d6e4ec0e63145e9cc43b20653ac99776d26d23da5", + "tx_hash": "8ee82991c0b27326c3967002388a490584097696bdce50c624fb03d2516758db", "block_index": 144, - "block_time": 1726825266 + "block_time": 1726943625 } ], "next_cursor": null, @@ -9783,14 +9799,14 @@ "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qmnxnt2u65xsesug2c0rtu2nhhwn3mmqzc9w3nt", + "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "46d6a03a52b47291bba12ff7e0612266533e49c06b191b88d7af89f634408d97", - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", - "tx_hash": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", + "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", "tx_index": 33, - "block_time": 1726825274, + "block_time": 1726943634, "asset_info": { "divisible": true, "asset_longname": null, @@ -9801,9 +9817,9 @@ "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "0403c32351945ccb0f8dd29c5a3c3d4779ecf29f3628f7bf8661cc65a7376566", + "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", "block_index": 146, - "block_time": 1726825274 + "block_time": 1726943634 } ], "next_cursor": 240, @@ -9818,19 +9834,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qkxscnrmtsvw8xj0xm3r7x49erere00vg8zftu0", + "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "7afd835b6e2698c872818ef165eacb80569bf7feb379434a7a8500f2ca203a5e", + "tx_hash": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea", "tx_index": 25, "value": 66600.0, - "block_time": 1726825230, + "block_time": 1726943590, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "7afd835b6e2698c872818ef165eacb80569bf7feb379434a7a8500f2ca203a5e", + "tx_hash": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea", "block_index": 138, - "block_time": 1726825230 + "block_time": 1726943590 } ], "next_cursor": 213, @@ -9861,16 +9877,16 @@ "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "start_block": 0, "status": "open", - "tx_hash": "70a08a09be7e7db658afd9643104aa69036256014c37028c4cf48c03228597bd", + "tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", "tx_index": 22, - "block_time": 1726825217 + "block_time": 1726943577 }, - "tx_hash": "70a08a09be7e7db658afd9643104aa69036256014c37028c4cf48c03228597bd", + "tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", "block_index": 135, - "block_time": 1726825217 + "block_time": 1726943577 } ], "next_cursor": 161, @@ -9883,11 +9899,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "019c1a0e87d4fc9a572746bc4785e4a308e1827daaa4e9a77bc61c0d0ce7fc75" + "tx_hash": "f8863d06dd1c63af927665e2741a68593285bb4a52bbadf58685b17809c50470" }, "tx_hash": null, "block_index": 130, - "block_time": 1726825197 + "block_time": 1726943556 } ], "next_cursor": 110, @@ -9903,24 +9919,24 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "70a08a09be7e7db658afd9643104aa69036256014c37028c4cf48c03228597bd", + "fairminter_tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", "paid_quantity": 34, - "source": "bcrt1q6d9hm9563paefxx5s0k08d27aqhcu2v6e53q79", + "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", "status": "valid", - "tx_hash": "df594a32bdedb9f8407dde28c2412506a53badab07b2cbce3e4919633c06b316", + "tx_hash": "296a4a2f8facf4a5ccf44ab044c61ea9b9216a3071599a39f70b231bc11801f0", "tx_index": 23, - "block_time": 1726825221, + "block_time": 1726943581, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false } }, - "tx_hash": "df594a32bdedb9f8407dde28c2412506a53badab07b2cbce3e4919633c06b316", + "tx_hash": "296a4a2f8facf4a5ccf44ab044c61ea9b9216a3071599a39f70b231bc11801f0", "block_index": 136, - "block_time": 1726825221 + "block_time": 1726943581 } ], "next_cursor": 190, @@ -9934,28 +9950,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "b144bf44a59f20f97233b6b2f8df8815e33ae7cd0fd284bfe3f95e1da2f77164:1", + "destination": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "status": "valid", - "tx_hash": "b144bf44a59f20f97233b6b2f8df8815e33ae7cd0fd284bfe3f95e1da2f77164", + "tx_hash": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", "tx_index": 38, - "block_time": 1726825295, + "block_time": 1726943654, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "b144bf44a59f20f97233b6b2f8df8815e33ae7cd0fd284bfe3f95e1da2f77164", + "tx_hash": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", "block_index": 151, - "block_time": 1726825295 + "block_time": 1726943654 } ], "next_cursor": 291, @@ -9969,28 +9985,28 @@ "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qer50mmddxamklxlnhp2ts8wg0ajzqns2mleqhf", + "destination": "bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "330e4c148d12cfcceb7de4268c14d00bf280ab8a2d4d34fd7681c805ce7932aa:0", + "source": "cc7990d855f354e057a6e08b954da3db23de867816732e8fc48f06b3fcadb83b:0", "status": "valid", - "tx_hash": "0d50c7d10fe1a5942c143ae0b53b6fa4e48148c36d47ab3de093dc895c38146b", + "tx_hash": "97881a57024ad6e05e14ae9d17fff8be24276335e8f9afefcce9b70168d36808", "tx_index": 37, - "block_time": 1726825290, + "block_time": 1726943651, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5yyd0vl9h56dsh4660e63eh90hm95ukv2x0shh", + "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "0d50c7d10fe1a5942c143ae0b53b6fa4e48148c36d47ab3de093dc895c38146b", + "tx_hash": "97881a57024ad6e05e14ae9d17fff8be24276335e8f9afefcce9b70168d36808", "block_index": 150, - "block_time": 1726825290 + "block_time": 1726943651 } ], "next_cursor": null, @@ -10004,14 +10020,14 @@ "params": { "asset": "XCP", "block_index": 155, - "destination": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f:1", + "destination": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c:1", "msg_index": 1, "quantity": 1500000000, - "source": "3fef13f6bcdd2af88bb1ea176f0e66bd711f27abee3a15cd5d9f024a2ca9712b:0", + "source": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1:0", "status": "valid", - "tx_hash": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f", + "tx_hash": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", "tx_index": 42, - "block_time": 1726825313, + "block_time": 1726943670, "asset_info": { "divisible": true, "asset_longname": null, @@ -10021,9 +10037,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "207cc8f37658b5af48478c80434d2b6c9ec76f17e2244de79cbaf6524c7a4d2f", + "tx_hash": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", "block_index": 155, - "block_time": 1726825313 + "block_time": 1726943670 } ], "next_cursor": 346, @@ -10038,17 +10054,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qy6cw9lzzwxl4z390c2kml2pgpxu6stzez3l2xz", + "source": "bcrt1qxmw2n03dl0jlw8ap4tg5n9htdske39r04u5amh", "status": "valid", - "tx_hash": "c724be97644ba07ec1c9f927fbec7f0af277326c1db1abbd8979c6cc79c326e9", + "tx_hash": "338720d47c7ab728d1364edded99b5ecf28424429f2e3506bb6c2812aa8f8513", "tx_index": 9, - "block_time": 1726825158, + "block_time": 1726943518, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "c724be97644ba07ec1c9f927fbec7f0af277326c1db1abbd8979c6cc79c326e9", + "tx_hash": "338720d47c7ab728d1364edded99b5ecf28424429f2e3506bb6c2812aa8f8513", "block_index": 121, - "block_time": 1726825158 + "block_time": 1726943518 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index 9dd2de3ecd..0c73afb21e 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -262,7 +262,7 @@ def run_scenarios(serve=False): # 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 2bd8af2bd8d38d8721ffc9136f9cd04b1ce47b9f Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 21 Sep 2024 20:29:03 +0000 Subject: [PATCH 24/46] clean transaction.py phase 2 --- apiary.apib | 3386 ++++++++--------- .../counterpartycore/lib/transaction.py | 1461 +++---- .../test/regtest/apidoc/apicache.json | 3054 ++++++++------- 3 files changed, 3944 insertions(+), 3957 deletions(-) diff --git a/apiary.apib b/apiary.apib index e53734e890..5fa4c62928 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-09-21 18:37:05.556760. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-09-21 20:27:25.622373. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -179,15 +179,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", "block_index": 193, - "block_time": 1726943809, + "block_time": 1726950429, "difficulty": 545259519, - "previous_block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f" + "previous_block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e" }, "tx_hash": null, "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 } ], "next_cursor": 518, @@ -204,17 +204,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", "block_index": 193, - "block_time": 1726943809, + "block_time": 1726950429, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "tx_index": 59, - "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", + "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -234,9 +234,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 } ], "next_cursor": 519, @@ -255,16 +255,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "destination": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "out_index": 0, - "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", "tx_index": 33, - "block_time": 1726943634, + "block_time": 1726950217, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", "block_index": 146, - "block_time": 1726943634 + "block_time": 1726950217 } ], "next_cursor": 237, @@ -282,15 +282,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", - "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", + "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", + "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", "transaction_count": 1, - "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", - "block_time": 1726943809 + "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", + "block_time": 1726950429 }, "tx_hash": null, "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 } ], "next_cursor": 529, @@ -308,12 +308,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "tx_index": 59 }, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 } ], "next_cursor": 528, @@ -333,15 +333,15 @@ Here is a list of events classified by theme and for each an example response: "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 193, - "event": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "event": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -351,9 +351,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 } ], "next_cursor": 525, @@ -370,16 +370,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -389,9 +389,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 } ], "next_cursor": 524, @@ -410,14 +410,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "memo": null, "quantity": 10000, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "status": "valid", - "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f", + "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d", "tx_index": 53, - "block_time": 1726943785, + "block_time": 1726950394, "asset_info": { "divisible": true, "asset_longname": null, @@ -427,9 +427,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f", + "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d", "block_index": 187, - "block_time": 1726943785 + "block_time": 1726950394 } ], "next_cursor": null, @@ -448,15 +448,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "status": "valid", - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "tx_index": 54, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "divisible": true, "asset_longname": null, @@ -466,9 +466,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "block_time": 1726943789 + "block_time": 1726950398 } ], "next_cursor": 495, @@ -506,20 +506,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "status": "valid", - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, - "block_time": 1726943805, + "block_time": 1726950425, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 } ], "next_cursor": null, @@ -541,15 +541,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": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "status": "valid", - "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", + "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", "tx_index": 40, - "block_time": 1726943663, + "block_time": 1726950256, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -563,9 +563,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": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", + "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", "block_index": 153, - "block_time": 1726943663 + "block_time": 1726950256 } ], "next_cursor": null, @@ -598,11 +598,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": 159, - "block_time": 1726943687 + "block_time": 1726950282 }, - "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", + "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", "block_index": 159, - "block_time": 1726943687 + "block_time": 1726950282 } ], "next_cursor": 367, @@ -630,22 +630,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": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "status": "valid", "transfer": false, - "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", + "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", "tx_index": 46, - "block_time": 1726943687, + "block_time": 1726950282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", + "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", "block_index": 159, - "block_time": 1726943687 + "block_time": 1726950282 } ], "next_cursor": 374, @@ -665,12 +665,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "status": "valid", "tag": "64657374726f79", - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "tx_index": 59, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -680,9 +680,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 } ], "next_cursor": 157, @@ -714,11 +714,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": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "status": "open", - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "tx_index": 57, - "block_time": 1726943802, + "block_time": 1726950421, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -742,9 +742,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": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "block_time": 1726943802 + "block_time": 1726950421 } ], "next_cursor": 502, @@ -767,20 +767,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": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", "tx0_index": 49, - "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "tx1_index": 52, - "block_time": 1726943781, + "block_time": 1726950389, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -799,9 +799,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": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "tx_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "block_index": 186, - "block_time": 1726943781 + "block_time": 1726950389 } ], "next_cursor": 461, @@ -819,11 +819,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8" + "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26" }, - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "block_index": 190, - "block_time": 1726943798 + "block_time": 1726950417 } ], "next_cursor": 476, @@ -841,11 +841,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294" + "tx_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec" }, - "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", + "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", "block_index": 185, - "block_time": 1726943776 + "block_time": 1726950385 } ], "next_cursor": null, @@ -862,13 +862,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", - "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "status": "completed" }, - "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", + "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", "block_index": 185, - "block_time": 1726943776 + "block_time": 1726950385 } ], "next_cursor": 440, @@ -887,18 +887,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "status": "valid", - "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", + "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", "tx_index": 51, - "block_time": 1726943776, + "block_time": 1726950385, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", + "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", "block_index": 185, - "block_time": 1726943776 + "block_time": 1726950385 } ], "next_cursor": null, @@ -916,16 +916,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "status": "valid", - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "tx_index": 56, - "block_time": 1726943798 + "block_time": 1726950417 }, - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "block_index": 190, - "block_time": 1726943798 + "block_time": 1726950417 } ], "next_cursor": null, @@ -943,13 +943,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "block_time": 1726943703 + "order_hash": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "block_time": 1726950308 }, "tx_hash": null, "block_index": 182, - "block_time": 1726943703 + "block_time": 1726950308 } ], "next_cursor": 446, @@ -967,14 +967,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "block_time": 1726943703 + "order_match_id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "block_time": 1726950308 }, "tx_hash": null, "block_index": 182, - "block_time": 1726943703 + "block_time": 1726950308 } ], "next_cursor": null, @@ -999,14 +999,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": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", - "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "satoshirate": 1, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "status": 0, - "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", "tx_index": 32, - "block_time": 1726943630, + "block_time": 1726950213, "asset_info": { "divisible": true, "asset_longname": null, @@ -1019,9 +1019,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": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", "block_index": 145, - "block_time": 1726943630 + "block_time": 1726950213 } ], "next_cursor": 254, @@ -1041,9 +1041,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "status": 0, - "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", "asset_info": { "divisible": true, "asset_longname": null, @@ -1053,9 +1053,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", "block_index": 146, - "block_time": 1726943634 + "block_time": 1726950217 } ], "next_cursor": 260, @@ -1074,13 +1074,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mnFNV6wfK94ay8hxrDH4jGrSPTwRBmePWL", + "destination": "myw2gnUjyQk3M8df2PczAdDghPFxkySJAb", "dispense_quantity": 10, - "dispenser_tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "tx_hash": "8ee82991c0b27326c3967002388a490584097696bdce50c624fb03d2516758db", + "dispenser_tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx_hash": "da3e84b4976d41d317b9af30be69bf3e402f496316d4b7be76dfa6882ef99186", "tx_index": 31, - "block_time": 1726943625, + "block_time": 1726950210, "asset_info": { "divisible": true, "asset_longname": null, @@ -1090,9 +1090,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "8ee82991c0b27326c3967002388a490584097696bdce50c624fb03d2516758db", + "tx_hash": "da3e84b4976d41d317b9af30be69bf3e402f496316d4b7be76dfa6882ef99186", "block_index": 144, - "block_time": 1726943625 + "block_time": 1726950210 } ], "next_cursor": null, @@ -1112,14 +1112,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", + "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", - "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", "tx_index": 33, - "block_time": 1726943634, + "block_time": 1726950217, "asset_info": { "divisible": true, "asset_longname": null, @@ -1130,9 +1130,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", "block_index": 146, - "block_time": 1726943634 + "block_time": 1726950217 } ], "next_cursor": 240, @@ -1154,19 +1154,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": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea", + "tx_hash": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198", "tx_index": 25, "value": 66600.0, - "block_time": 1726943590, + "block_time": 1726950185, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea", + "tx_hash": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198", "block_index": 138, - "block_time": 1726943590 + "block_time": 1726950185 } ], "next_cursor": 213, @@ -1204,16 +1204,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "start_block": 0, "status": "open", - "tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", + "tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", "tx_index": 22, - "block_time": 1726943577 + "block_time": 1726950172 }, - "tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", + "tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", "block_index": 135, - "block_time": 1726943577 + "block_time": 1726950172 } ], "next_cursor": 161, @@ -1231,11 +1231,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "f8863d06dd1c63af927665e2741a68593285bb4a52bbadf58685b17809c50470" + "tx_hash": "e69f3ddbfd1ba8c631b757819d7664ca2bc7041fcd5a75be8e2711eea2cac9f8" }, "tx_hash": null, "block_index": 130, - "block_time": 1726943556 + "block_time": 1726950151 } ], "next_cursor": 110, @@ -1256,24 +1256,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", + "fairminter_tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", "paid_quantity": 34, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "status": "valid", - "tx_hash": "296a4a2f8facf4a5ccf44ab044c61ea9b9216a3071599a39f70b231bc11801f0", + "tx_hash": "34bec257ccf1f8c374493fc15f7cbb1af6846494d3b097680b0826b82f088d9d", "tx_index": 23, - "block_time": 1726943581, + "block_time": 1726950177, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } }, - "tx_hash": "296a4a2f8facf4a5ccf44ab044c61ea9b9216a3071599a39f70b231bc11801f0", + "tx_hash": "34bec257ccf1f8c374493fc15f7cbb1af6846494d3b097680b0826b82f088d9d", "block_index": 136, - "block_time": 1726943581 + "block_time": 1726950177 } ], "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": 151, - "destination": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98:1", + "destination": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "status": "valid", - "tx_hash": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", + "tx_hash": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", "tx_index": 38, - "block_time": 1726943654, + "block_time": 1726950248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", + "tx_hash": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", "block_index": 151, - "block_time": 1726943654 + "block_time": 1726950248 } ], "next_cursor": 291, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9", + "destination": "bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "cc7990d855f354e057a6e08b954da3db23de867816732e8fc48f06b3fcadb83b:0", + "source": "facd73ce7e552dab11a369e33253c91a09a63e697ed4542f29c5e0a118eb3a01:0", "status": "valid", - "tx_hash": "97881a57024ad6e05e14ae9d17fff8be24276335e8f9afefcce9b70168d36808", + "tx_hash": "c687f93269aa03f150204db384563efed1dfa9dd7319d77a879e3a346e36471c", "tx_index": 37, - "block_time": 1726943651, + "block_time": 1726950243, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "97881a57024ad6e05e14ae9d17fff8be24276335e8f9afefcce9b70168d36808", + "tx_hash": "c687f93269aa03f150204db384563efed1dfa9dd7319d77a879e3a346e36471c", "block_index": 150, - "block_time": 1726943651 + "block_time": 1726950243 } ], "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": 155, - "destination": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c:1", + "destination": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee:1", "msg_index": 1, "quantity": 1500000000, - "source": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1:0", + "source": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f:0", "status": "valid", - "tx_hash": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", + "tx_hash": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", "tx_index": 42, - "block_time": 1726943670, + "block_time": 1726950266, "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": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", + "tx_hash": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", "block_index": 155, - "block_time": 1726943670 + "block_time": 1726950266 } ], "next_cursor": 346, @@ -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": "bcrt1qxmw2n03dl0jlw8ap4tg5n9htdske39r04u5amh", + "source": "bcrt1qwqs0vxzwhmrrq95fnvdhz0dlywewnjusllcjc7", "status": "valid", - "tx_hash": "338720d47c7ab728d1364edded99b5ecf28424429f2e3506bb6c2812aa8f8513", + "tx_hash": "b59307cc2ac4f942129759aae2c01c6787c312068f1f9274b9fca33b37cf2b5b", "tx_index": 9, - "block_time": 1726943518, + "block_time": 1726950113, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "338720d47c7ab728d1364edded99b5ecf28424429f2e3506bb6c2812aa8f8513", + "tx_hash": "b59307cc2ac4f942129759aae2c01c6787c312068f1f9274b9fca33b37cf2b5b", "block_index": 121, - "block_time": 1726943518 + "block_time": 1726950113 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 193, - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", - "block_time": 1726943809, - "previous_block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_time": 1726950429, + "previous_block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", "difficulty": 545259519, - "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", - "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", - "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", + "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", + "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", + "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", - "block_time": 1726943805, - "previous_block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", + "block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", + "block_time": 1726950425, + "previous_block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", "difficulty": 545259519, - "ledger_hash": "412150712c6869e6ac5019ac1af4fca3e25b87cfd959dfdcf50a375eb0a3fb6c", - "txlist_hash": "d7164fc59cb695753afe073c5bb4774cd53dae324c7128b4984197951e0ece2c", - "messages_hash": "600e929c4505c894ea01a40564eff783657a75a7b33c2369546ae0237130f279", + "ledger_hash": "dae4aa18c818cf73356ae2538c5a128aab9652e31d3624deab317f635f240de3", + "txlist_hash": "2c6782906fccd6b50403d5f0cde890b85661d684650a67eeea3fbb61d893ea5a", + "messages_hash": "768e34bdb9fdd5c9805b7cc009eb4dc2d616c0eb60b0e69406f3d7a296973085", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", - "block_time": 1726943802, - "previous_block_hash": "23b27ef62e72432568ac3d2827afc0d1be45e5a1eb3461f8b58d24ab532f4f66", + "block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", + "block_time": 1726950421, + "previous_block_hash": "27e860cc72fbd13d937f5d53894473cdec16612f8b3a5c708a5cf6676b57a478", "difficulty": 545259519, - "ledger_hash": "347da26f295ca004a4058551b21f0918e3ccfd4d75b47fae6357f9b7d7577707", - "txlist_hash": "ed92b50006ebed219c3b0ee78411f957772394a2d5c189957c6c18bb5bc1d53d", - "messages_hash": "c855a1f4f99540f7cb14aaa43f1f4f8d72b4bcf16b50466e82291b6e7ed76ff4", + "ledger_hash": "d03e39607e9fd68726675c128d69cfaa1cd44a77ab03dd23287e4de22ce338e3", + "txlist_hash": "a2d3060eb32f38f0ef6849fcc09c56112eceec36516dbc142534648915a0e59b", + "messages_hash": "808eb90f60258406e139d977da28defeaa59b9f188b7a234cd729feba830dd25", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "23b27ef62e72432568ac3d2827afc0d1be45e5a1eb3461f8b58d24ab532f4f66", - "block_time": 1726943798, - "previous_block_hash": "26cc98a125105d26459d4cdde73737ee6a87200dd1e260833a753985df7a6e96", + "block_hash": "27e860cc72fbd13d937f5d53894473cdec16612f8b3a5c708a5cf6676b57a478", + "block_time": 1726950417, + "previous_block_hash": "5aa33299fee53ddd0fb4f86ddb1dbd45d1fdaa8332537a4fdb69892979db6de0", "difficulty": 545259519, - "ledger_hash": "75841fb8c87cb673361762b82649a7a4382f8d2b00c0ccd7dbdd26a6784664f0", - "txlist_hash": "9fa98a107f0760d3ea30ab290ddab051bd95e90474fb50fa8dafaaf2705ec337", - "messages_hash": "fcf933ab3251044fb12043cdff6b0895bfc112ad664cbf5ad6787c765180f3d1", + "ledger_hash": "a4bcdd2aeceb344ca201fadf8783f0124ec2261604874ec80cd2b43000af0774", + "txlist_hash": "a5d93acd26bd4f1fb7d65fd0ec9106b4b157a717b293ecb06ae1d59fa5991917", + "messages_hash": "22fa8a357331aa52a6479b19d56d72967c2dc8b06421543347709ce788c43fa9", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "26cc98a125105d26459d4cdde73737ee6a87200dd1e260833a753985df7a6e96", - "block_time": 1726943793, - "previous_block_hash": "423947d2489b48a6e1d3a68c229e08b6abe64ea53afa8512a39037e9e3d57ed0", + "block_hash": "5aa33299fee53ddd0fb4f86ddb1dbd45d1fdaa8332537a4fdb69892979db6de0", + "block_time": 1726950402, + "previous_block_hash": "0d5917e665af2adf0e67fa25a3703c9fec72d0d4fead388ec0fd867bb676dd3a", "difficulty": 545259519, - "ledger_hash": "dcbbc021e8d75b82eb4a2d623285bed6a64543f2f7f1db436d3f9fb8294c11c1", - "txlist_hash": "787f716d594b44792069aa2cfc004ed2396f4f5b82b196181800f97d6d5c23a7", - "messages_hash": "63932d87e6b9a88194fdd69f6e03d8e97766771070fb269827c7afbc070cc03a", + "ledger_hash": "9ffe2f005d1d4cba5d039c3c09312f34813be6ce60cec8137b5f3351b2b2f0fc", + "txlist_hash": "534af2b951fb094ca3cbdc5db77d750a7b0ac403cc3cceced1c6993f27896e1c", + "messages_hash": "1ea76d522ee2dc6e8dccdef6d972f84ed3253a08faabd3b8f87f50eedbb8124c", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 193, - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", - "block_time": 1726943809, - "previous_block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_time": 1726950429, + "previous_block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", "difficulty": 545259519, - "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", - "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", - "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", + "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", + "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", + "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae` (str, required) - The index of the block to return + + block_hash: `473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c` (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": 193, - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", - "block_time": 1726943809, - "previous_block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_time": 1726950429, + "previous_block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", "difficulty": 545259519, - "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", - "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", - "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", + "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", + "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", + "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 59, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", - "block_time": 1726943809, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_time": 1726950429, + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", + "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1706,11 +1706,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "412150712c6869e6ac5019ac1af4fca3e25b87cfd959dfdcf50a375eb0a3fb6c", - "messages_hash": "600e929c4505c894ea01a40564eff783657a75a7b33c2369546ae0237130f279", + "ledger_hash": "dae4aa18c818cf73356ae2538c5a128aab9652e31d3624deab317f635f240de3", + "messages_hash": "768e34bdb9fdd5c9805b7cc009eb4dc2d616c0eb60b0e69406f3d7a296973085", "transaction_count": 1, - "txlist_hash": "d7164fc59cb695753afe073c5bb4774cd53dae324c7128b4984197951e0ece2c", - "block_time": 1726943805 + "txlist_hash": "2c6782906fccd6b50403d5f0cde890b85661d684650a67eeea3fbb61d893ea5a", + "block_time": 1726950425 }, "tx_hash": null }, @@ -1719,43 +1719,43 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58 }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "status": "valid", - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, - "block_time": 1726943805, + "block_time": 1726950425, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -1765,22 +1765,22 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "XCP", "block_index": 192, - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -1790,7 +1790,7 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" } ], "next_cursor": 524, @@ -1873,16 +1873,16 @@ Returns the events of a block filtered by event "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -1892,57 +1892,57 @@ Returns the events of a block filtered by event }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" } ], "next_cursor": null, @@ -2005,16 +2005,16 @@ Returns the credits of a block "result": [ { "block_index": 192, - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,20 +2026,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2047,20 +2047,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2116,16 +2116,16 @@ Returns the debits of a block "result": [ { "block_index": 193, - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "event": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -2165,24 +2165,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "object_id": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", "block_index": 182, "confirmed": true, - "block_time": 1726943703 + "block_time": 1726950308 }, { "type": "order", - "object_id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", + "object_id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", "block_index": 182, "confirmed": true, - "block_time": 1726943703 + "block_time": 1726950308 }, { "type": "order_match", - "object_id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "object_id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", "block_index": 182, "confirmed": true, - "block_time": 1726943703 + "block_time": 1726950308 } ], "next_cursor": null, @@ -2214,13 +2214,13 @@ Returns the cancels of a block "result": [ { "tx_index": 56, - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "block_index": 190, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "status": "valid", "confirmed": true, - "block_time": 1726943798 + "block_time": 1726950417 } ], "next_cursor": null, @@ -2252,15 +2252,15 @@ Returns the destructions of a block "result": [ { "tx_index": 59, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -2300,14 +2300,14 @@ Returns the issuances of a block "result": [ { "tx_index": 46, - "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", + "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -2322,7 +2322,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943687, + "block_time": 1726950282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2356,10 +2356,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2367,7 +2367,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "divisible": true, "asset_longname": null, @@ -2380,10 +2380,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2391,11 +2391,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2404,10 +2404,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2415,11 +2415,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2457,27 +2457,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", - "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "last_status_tx_hash": null, - "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2492,7 +2492,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726943634, + "block_time": 1726950217, "asset_info": { "divisible": true, "asset_longname": null, @@ -2533,16 +2533,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 58, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "fee_paid_normalized": "0.00600000" } ], @@ -2576,17 +2576,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea", + "tx_hash": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198", "block_index": 138, - "block_hash": "783e3e2d5e4ce450234c83deb77f7bd10f45c8a1b28f8742583d1fcdfd397f6a", - "block_time": 1726943590, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "block_hash": "33c0f76ab4ba6d9125e62c88b27cf97b4dc96d0de734bc7b608b573ea4a1ed4e", + "block_time": 1726950185, + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea:1", + "utxos_info": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2611,25 +2611,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 51, - "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", + "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", "block_index": 185, - "block_hash": "096ad85b8b9dd2b5eaeb1be8fe0ddc244c436aacac8adbd2a9fa76e6ab9e712e", - "block_time": 1726943776, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "22a6951b71290ec238ef452a688ef8e9c800dd277ca4be3253aed7072d440d06", + "block_time": 1726950385, + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "btc_amount": 2000, "fee": 10000, - "data": "0bde81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914fc869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "data": "0be78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc01b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "supported": true, - "utxos_info": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11:0", + "utxos_info": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", - "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", - "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "status": "valid" } }, @@ -2644,23 +2644,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "block_index": 190, - "block_hash": "23b27ef62e72432568ac3d2827afc0d1be45e5a1eb3461f8b58d24ab532f4f66", - "block_time": 1726943798, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "27e860cc72fbd13d937f5d53894473cdec16612f8b3a5c708a5cf6676b57a478", + "block_time": 1726950417, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "data": "46b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "supported": true, - "utxos_info": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a:1", + "utxos_info": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "status": "valid" } }, @@ -2675,17 +2675,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", - "block_time": 1726943809, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_time": 1726950429, + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", + "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2715,17 +2715,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 32, - "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", "block_index": 145, - "block_hash": "278af4d2c39e5c92ead142aa68a464c75878f7f8cc608f9edf41760044dff7a6", - "block_time": 1726943630, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "block_hash": "29a578dbdeeb8b9ba80c386bfa1cbba4c46fb3b48039039f9211b37c2f044d31", + "block_time": 1726950213, + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c00000000000000010000000000000001000000000000271000000000000000010080459d1fbf1cdf35891e4eb21203b753b1242efc5a", + "data": "0c00000000000000010000000000000001000000000000271000000000000000010080dd4517099b8b4e454678a0633383dc61ed965b29", "supported": true, - "utxos_info": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1:1", + "utxos_info": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2737,7 +2737,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "status": "valid", "asset_info": { "divisible": true, @@ -2761,17 +2761,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", "block_index": 146, - "block_hash": "2b906b1f5ade530171b223a5a497350aaf2fc2722586ab90dc18ddc8fc7d8fb0", - "block_time": 1726943634, - "source": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", - "destination": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "block_hash": "034a31457a21c374ac9398ad3b7ef6d4a67c7ccfd4face71a1394bc5feef88d4", + "block_time": 1726950217, + "source": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", + "destination": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "btc_amount": 10000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81:0", + "utxos_info": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 40, - "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", + "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", "block_index": 153, - "block_hash": "7a8169d989011e0754ba1483d975e82388545bc4a8ea1044d62d80332d7e9102", - "block_time": 1726943663, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "3a6fbe16988afba5aca1ea6a5021c0a35d9332b45e32b1f81c113e786c6c4dec", + "block_time": 1726950256, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c:1", + "utxos_info": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2814,7 +2814,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2839,17 +2839,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 46, - "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", + "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", "block_index": 159, - "block_hash": "576e0381390109f1bba5318fecdc7442fb2cfdf97b317fffeb241c4637651e19", - "block_time": 1726943687, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "29ad8374ff5ab826358851ad64416af0c313a3e47a2d32345337c5e9cb8330ea", + "block_time": 1726950282, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c:1", + "utxos_info": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2881,17 +2881,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", - "block_time": 1726943802, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", + "block_time": 1726950421, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e:1", + "utxos_info": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2934,17 +2934,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f", + "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d", "block_index": 187, - "block_hash": "58450cb009c474fc9da39531acb546b0c0586f99552953eff8612fcbf407efac", - "block_time": 1726943785, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "block_hash": "3d327b308bcda6020b6605ec19c5b2b97e8ede67a291a7a79c977844044dc21a", + "block_time": 1726950394, + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710804d58139ca58d4e5278dcc90c123825e920a4c782", + "data": "020000000000000001000000000000271080bebd760d2e19686fe41856142fc45e3c18bea249", "supported": true, - "utxos_info": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f:1", + "utxos_info": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2952,7 +2952,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "memo": null, "asset_info": { "divisible": true, @@ -2975,17 +2975,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "block_hash": "423947d2489b48a6e1d3a68c229e08b6abe64ea53afa8512a39037e9e3d57ed0", - "block_time": 1726943789, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "0d5917e665af2adf0e67fa25a3703c9fec72d0d4fead388ec0fd867bb676dd3a", + "block_time": 1726950398, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802b08c45289028349cc594a15406b2e9391f71c7c80c6ffd5588e4548e249935cfdedfb570089a7e433804d58139ca58d4e5278dcc90c123825e920a4c782400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a2f39be999227f439233f92bfc92175307049033802d892d9d215a3e35d0fffb2b3e7cabdb14d2454980bebd760d2e19686fe41856142fc45e3c18bea249400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3:0", + "utxos_info": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2993,14 +2993,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -3008,7 +3008,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3034,23 +3034,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", - "block_time": 1726943805, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", + "block_time": 1726950425, + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04804d58139ca58d4e5278dcc90c123825e920a4c782017377656570206d7920617373657473", + "data": "0480bebd760d2e19686fe41856142fc45e3c18bea249017377656570206d7920617373657473", "supported": true, - "utxos_info": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb:1", + "utxos_info": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "flags": 1, "memo": "sweep my assets" } @@ -3083,17 +3083,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 59, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", - "block_time": 1726943809, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_time": 1726950429, + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", + "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3116,23 +3116,23 @@ Returns the list of the last ten transactions }, { "tx_index": 58, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", - "block_time": 1726943805, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", + "block_time": 1726950425, + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04804d58139ca58d4e5278dcc90c123825e920a4c782017377656570206d7920617373657473", + "data": "0480bebd760d2e19686fe41856142fc45e3c18bea249017377656570206d7920617373657473", "supported": true, - "utxos_info": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb:1", + "utxos_info": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "flags": 1, "memo": "sweep my assets" } @@ -3150,7 +3150,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000101216e0862c8508a40aec05dd49145343698c24e4e3713dcbbe21810e55cbe50440000000000ffffffff020000000000000000356a33dabdbb44e49f85d2a327402cf1ae7d4da7a8c921c1b7230f50ff3f43347c6fb5a949fdb8a077b2dc50d9ff6d8bba56af4f3786f0ca052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02473044022021efb15847a51b8d3d831481506e7531f2f8c421e65599d42b0bff699df9f3510220344618f602e6a3b53004dd16d88a3597f8fbcbaf1ce050cecf1775924a8f99aa012102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76100000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000101ec6758f524983df9733199a822e59562e2b2c7724698b0b89af6bbb2adec441b0100000000ffffffff03d00700000000000016001478a3909dd27183d907e4449a5efb8a6eec443bd200000000000000004b6a4948be01b94d96fa6e0283eb7a46b8a57e6ca98673686900ace3453afba3f66252000ace06f908711b530849f60869623afd9af5d9f3ea91ef23c96ffe8df66edcd8636446b4d2b5054ee0fd082701000000160014a2f39be999227f439233f92bfc921753070490330247304402202068b84b1108d9c49124e85d47ecf26fcafb3fe6a2103e7479e144d4ee8124cc0220525fce23d44876ff7ae1b9aee3d1e94c57c4954013e39f067686aa20860c896e0121028099986bc838533585add0380a756004aaf6506170b596a7a1527ab22460410d00000000` (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. @@ -3163,73 +3163,57 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": null, - "btc_amount": 0, + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "btc_amount": 2000, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "0be78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc01b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "216e0862c8508a40aec05dd49145343698c24e4e3713dcbbe21810e55cbe5044", - "n": 0, + "hash": "ec6758f524983df9733199a822e59562e2b2c7724698b0b89af6bbb2adec441b", + "n": 1, "script_sig": "", "sequence": 4294967295, "coinbase": false } ], "vout": [ + { + "value": 2000, + "script_pub_key": "001478a3909dd27183d907e4449a5efb8a6eec443bd2" + }, { "value": 0, - "script_pub_key": "6a33dabdbb44e49f85d2a327402cf1ae7d4da7a8c921c1b7230f50ff3f43347c6fb5a949fdb8a077b2dc50d9ff6d8bba56af4f3786" + "script_pub_key": "6a4948be01b94d96fa6e0283eb7a46b8a57e6ca98673686900ace3453afba3f66252000ace06f908711b530849f60869623afd9af5d9f3ea91ef23c96ffe8df66edcd8636446b4d2b5054e" }, { - "value": 4999990000, - "script_pub_key": "00143abbb33ac7a43d5ccf1f395ce2627403ce6740cf" + "value": 4949868000, + "script_pub_key": "0014a2f39be999227f439233f92bfc92175307049033" } ], "vtxinwit": [ - "3044022021efb15847a51b8d3d831481506e7531f2f8c421e65599d42b0bff699df9f3510220344618f602e6a3b53004dd16d88a3597f8fbcbaf1ce050cecf1775924a8f99aa01", - "02a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a761" + "304402202068b84b1108d9c49124e85d47ecf26fcafb3fe6a2103e7479e144d4ee8124cc0220525fce23d44876ff7ae1b9aee3d1e94c57c4954013e39f067686aa20860c896e01", + "028099986bc838533585add0380a756004aaf6506170b596a7a1527ab22460410d" ], "lock_time": 0, - "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", - "tx_id": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8" + "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", + "tx_id": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5" }, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, + "message_type": "btcpay", + "message_type_id": 11, "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" + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "status": "valid" } }, - "btc_amount_normalized": "0.00000000" + "btc_amount_normalized": "0.00002000" } } ``` @@ -3239,7 +3223,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a` (str, required) - Transaction hash + + tx_hash: `e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94` (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. @@ -3250,18 +3234,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080c6ffd5588e4548e249935cfdedfb570089a7e433", + "data": "0200000000000000010000000000002710802d892d9d215a3e35d0fffb2b3e7cabdb14d24549", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "a3ccacbfebf1ba4eba1bbfe367d9ae1d97fc3dad9ee58182f3262334ca16d374", + "hash": "c99952b1d114237bca14d9da69ea03b9e0c563872a7af942d5a80cf541614d83", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3271,20 +3255,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e87ff790c314d7b574207d38ca7d88463a79f5c5e8152fef110516011cda54bf5b84adf90a81857b385614bd1277f" + "script_pub_key": "6a2e6ab7aa5f53bd31977be7b313e0e0b0e22d0d99a4072ca15d63f8eedab121a23418d06d2844458bcca078cce2c353" }, { "value": 4999955000, - "script_pub_key": "00144d58139ca58d4e5278dcc90c123825e920a4c782" + "script_pub_key": "0014bebd760d2e19686fe41856142fc45e3c18bea249" } ], "vtxinwit": [ - "3044022046f9bfbb030b7551d95765541ea931dc3a76e2fc6ab1a95a94147cf1765c2a9c0220619122b438446d1d2fb04790d3457b848378e8fe81e8f86bd7948c56a687e56401", - "0352e612ef317c96dc910d7efc93996e313947873e472d8309212310d61a946122" + "3044022043caca504be770b0de99047ffe5e5d1ad869ee2402d30a6281137090df2cda9c0220089c65fa1ec2e1dabc64b0b62b8752a36b78eb7c1c6ae8d94d04e9ee0ecad6e901", + "022098f1d02b56e77ca857c5355d804950681dd648a95db1667bedd171bfe91e70" ], "lock_time": 0, - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", - "tx_id": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a" + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_id": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3292,7 +3276,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "memo": null, "asset_info": { "divisible": true, @@ -3353,17 +3337,17 @@ Returns a transaction by its index. { "result": { "tx_index": 59, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", - "block_time": 1726943809, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_time": 1726950429, + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", + "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3392,7 +3376,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf` (str, required) - The hash of the transaction + + tx_hash: `e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98` (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. @@ -3404,17 +3388,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 59, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", - "block_time": 1726943809, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_time": 1726950429, + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", + "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3467,47 +3451,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58 }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "status": "valid", - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, - "block_time": 1726943805, + "block_time": 1726950425, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -3517,24 +3501,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "XCP", "block_index": 192, - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -3544,36 +3528,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 } ], "next_cursor": 523, @@ -3586,7 +3570,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb` (str, required) - The hash of the transaction to return + + tx_hash: `5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -3610,47 +3594,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58 }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "status": "valid", - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, - "block_time": 1726943805, + "block_time": 1726950425, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -3660,24 +3644,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "XCP", "block_index": 192, - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -3687,36 +3671,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 } ], "next_cursor": 523, @@ -3729,7 +3713,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3` (str, required) - The hash of the transaction to return + + tx_hash: `c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4` (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 @@ -3748,10 +3732,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "quantity": 10, "status": "valid", @@ -3759,7 +3743,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "divisible": true, "asset_longname": null, @@ -3772,10 +3756,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3783,11 +3767,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -3796,10 +3780,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3807,11 +3791,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -3829,7 +3813,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81` (str, required) - The hash of the transaction to return + + tx_hash: `240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387` (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 @@ -3849,27 +3833,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", - "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "last_status_tx_hash": null, - "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3884,7 +3868,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726943634, + "block_time": 1726950217, "asset_info": { "divisible": true, "asset_longname": null, @@ -3928,16 +3912,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -3947,63 +3931,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 } ], "next_cursor": null, @@ -4016,7 +4000,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb` (str, required) - The hash of the transaction to return + + tx_hash: `5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `535` (str, optional) - The last event index to return + Default: `None` @@ -4038,16 +4022,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -4057,63 +4041,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 } ], "next_cursor": null, @@ -4128,7 +4112,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9,bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2,bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (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 @@ -4152,7 +4136,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4162,7 +4146,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -4173,7 +4157,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4183,7 +4167,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -4194,7 +4178,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4204,7 +4188,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -4215,7 +4199,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4225,7 +4209,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -4236,7 +4220,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4246,7 +4230,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -4263,7 +4247,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9,bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2,bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (str, required) - Comma separated list of addresses to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4282,17 +4266,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 57, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", - "block_time": 1726943802, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", + "block_time": 1726950421, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e:1", + "utxos_info": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4328,23 +4312,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "block_index": 190, - "block_hash": "23b27ef62e72432568ac3d2827afc0d1be45e5a1eb3461f8b58d24ab532f4f66", - "block_time": 1726943798, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "27e860cc72fbd13d937f5d53894473cdec16612f8b3a5c708a5cf6676b57a478", + "block_time": 1726950417, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "data": "46b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "supported": true, - "utxos_info": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a:1", + "utxos_info": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "status": "valid" } }, @@ -4352,17 +4336,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 55, - "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "block_index": 189, - "block_hash": "26cc98a125105d26459d4cdde73737ee6a87200dd1e260833a753985df7a6e96", - "block_time": 1726943793, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "5aa33299fee53ddd0fb4f86ddb1dbd45d1fdaa8332537a4fdb69892979db6de0", + "block_time": 1726950402, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8:1", + "utxos_info": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4398,17 +4382,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "block_hash": "423947d2489b48a6e1d3a68c229e08b6abe64ea53afa8512a39037e9e3d57ed0", - "block_time": 1726943789, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "0d5917e665af2adf0e67fa25a3703c9fec72d0d4fead388ec0fd867bb676dd3a", + "block_time": 1726950398, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802b08c45289028349cc594a15406b2e9391f71c7c80c6ffd5588e4548e249935cfdedfb570089a7e433804d58139ca58d4e5278dcc90c123825e920a4c782400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a2f39be999227f439233f92bfc92175307049033802d892d9d215a3e35d0fffb2b3e7cabdb14d2454980bebd760d2e19686fe41856142fc45e3c18bea249400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3:0", + "utxos_info": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4416,14 +4400,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -4431,7 +4415,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4450,25 +4434,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 51, - "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", + "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", "block_index": 185, - "block_hash": "096ad85b8b9dd2b5eaeb1be8fe0ddc244c436aacac8adbd2a9fa76e6ab9e712e", - "block_time": 1726943776, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "22a6951b71290ec238ef452a688ef8e9c800dd277ca4be3253aed7072d440d06", + "block_time": 1726950385, + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "btc_amount": 2000, "fee": 10000, - "data": "0bde81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914fc869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "data": "0be78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc01b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "supported": true, - "utxos_info": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11:0", + "utxos_info": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", - "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", - "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "status": "valid" } }, @@ -4485,7 +4469,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9,bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2,bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -4521,11 +4505,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "status": "open", - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "tx_index": 57, - "block_time": 1726943802, + "block_time": 1726950421, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4549,24 +4533,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "block_time": 1726943802 + "block_time": 1726950421 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "block_index": 191, - "event": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "event": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1726943802, + "block_time": 1726950421, "asset_info": { "divisible": true, "asset_longname": null, @@ -4576,25 +4560,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "block_time": 1726943802 + "block_time": 1726950421 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", + "block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", "block_index": 191, - "block_time": 1726943802, + "block_time": 1726950421, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "tx_index": 57, - "utxos_info": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e:1", + "utxos_info": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4626,40 +4610,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "block_time": 1726943802 + "block_time": 1726950421 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "status": "valid", - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "tx_index": 56, - "block_time": 1726943798 + "block_time": 1726950417 }, - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "block_index": 190, - "block_time": 1726943798 + "block_time": 1726950417 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726943798, + "block_time": 1726950417, "asset_info": { "divisible": true, "asset_longname": null, @@ -4669,9 +4653,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "block_index": 190, - "block_time": 1726943798 + "block_time": 1726950417 } ], "next_cursor": 506, @@ -4684,7 +4668,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk,bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779,bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday` (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 @@ -4700,17 +4684,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "memo": null, "quantity": 10000, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "status": "valid", - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "tx_index": 60, "asset_info": { "divisible": true, @@ -4723,19 +4707,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "CREDIT", "params": { - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -4747,19 +4731,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 193, - "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -4771,27 +4755,27 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726943814.1647968, + "block_time": 1726950434.0695176, "btc_amount": 0, - "data": "020000000000000001000000000000271080c6ffd5588e4548e249935cfdedfb570089a7e433", + "data": "0200000000000000010000000000002710802d892d9d215a3e35d0fffb2b3e7cabdb14d24549", "destination": "", "fee": 10000, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "tx_index": 60, - "utxos_info": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a:1", + "utxos_info": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "memo": null, "asset_info": { "divisible": true, @@ -4817,7 +4801,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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 @@ -4837,7 +4821,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4845,14 +4829,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4860,14 +4844,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4882,7 +4866,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4890,7 +4874,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -4907,7 +4891,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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` @@ -4919,7 +4903,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4941,7 +4925,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4991,16 +4975,16 @@ Returns the credits of an address "result": [ { "block_index": 190, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943798, + "block_time": 1726950417, "asset_info": { "divisible": true, "asset_longname": null, @@ -5012,16 +4996,16 @@ Returns the credits of an address }, { "block_index": 182, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", + "event": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943703, + "block_time": 1726950308, "asset_info": { "divisible": true, "asset_longname": null, @@ -5033,20 +5017,20 @@ Returns the credits of an address }, { "block_index": 159, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", + "event": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943687, + "block_time": 1726950282, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5054,20 +5038,20 @@ Returns the credits of an address }, { "block_index": 156, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "730d154e7c40e6f269a3c0f15937c64309d932202616ef4c54ec0c6e07ddc29c", + "event": "9157f7bfaf353b8d1bfda36bbcaf83e7a1ae668161834e9f1b166f1e47b0f4c0", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943675, + "block_time": 1726950270, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5079,16 +5063,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", + "event": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", "tx_index": 38, - "utxo": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98:1", - "utxo_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "utxo": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae:1", + "utxo_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "confirmed": true, - "block_time": 1726943654, + "block_time": 1726950248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5105,7 +5089,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5144,16 +5128,16 @@ Returns the debits of an address "result": [ { "block_index": 191, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "event": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943802, + "block_time": 1726950421, "asset_info": { "divisible": true, "asset_longname": null, @@ -5165,16 +5149,16 @@ Returns the debits of an address }, { "block_index": 189, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943793, + "block_time": 1726950402, "asset_info": { "divisible": true, "asset_longname": null, @@ -5186,16 +5170,16 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "event": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "divisible": true, "asset_longname": null, @@ -5207,20 +5191,20 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "event": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5228,16 +5212,16 @@ Returns the debits of an address }, { "block_index": 183, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "event": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943768, + "block_time": 1726950377, "asset_info": { "divisible": true, "asset_longname": null, @@ -5258,7 +5242,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address of the feed + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5293,7 +5277,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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 @@ -5312,9 +5296,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "3adb5f6a83dbf36fc41ff713ae0883905bee565d0450041334cb0b35e8d7dc74", + "tx_hash": "ba4be2ba08322daea13f5b8b4710717e27f736da291c8238d4310b7a967668cf", "block_index": 137, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5322,7 +5306,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726943585, + "block_time": 1726950181, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5336,7 +5320,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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 @@ -5355,14 +5339,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "70bd09bcb435a334ba6a729d10e1151605bda96aff86cb463ddcf0536caef07c", + "tx_hash": "0657f75b12ca7313124e55cfc3cebac21f770a096caa4ec7a60900a01602aea3", "block_index": 112, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1726943484, + "block_time": 1726950075, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5377,7 +5361,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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 @@ -5396,10 +5380,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5407,7 +5391,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "divisible": true, "asset_longname": null, @@ -5420,10 +5404,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5431,11 +5415,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5444,10 +5428,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5455,11 +5439,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5468,10 +5452,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 38, - "tx_hash": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", + "tx_hash": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", "block_index": 151, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98:1", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5479,11 +5463,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943654, + "block_time": 1726950248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5492,10 +5476,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 35, - "tx_hash": "bb7e237846f4ba8f55a20cc8e2bfaf6731be5297749cf62cadc18474047a3030", + "tx_hash": "351ae12754d2a615f37c96873f3e178d77d842607e0522e954ee066b969514be", "block_index": 148, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "9dc5d37ade58fe3fcc4001a7c5a086fc13efa89bbb556610bb78c7d6c2b059a1:1", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "005e41992c61245f5c6c82a7140ca55b6813d522dfdd67fd5bb22b1b144ee77d:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5503,11 +5487,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943642, + "block_time": 1726950236, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5525,7 +5509,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9` (str, required) - The address to return + + address: `bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj` (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 @@ -5544,10 +5528,10 @@ Returns the receives of an address "result": [ { "tx_index": 37, - "tx_hash": "97881a57024ad6e05e14ae9d17fff8be24276335e8f9afefcce9b70168d36808", + "tx_hash": "c687f93269aa03f150204db384563efed1dfa9dd7319d77a879e3a346e36471c", "block_index": 150, - "source": "cc7990d855f354e057a6e08b954da3db23de867816732e8fc48f06b3fcadb83b:0", - "destination": "bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9", + "source": "facd73ce7e552dab11a369e33253c91a09a63e697ed4542f29c5e0a118eb3a01:0", + "destination": "bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5555,11 +5539,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943651, + "block_time": 1726950243, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5577,7 +5561,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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` @@ -5597,10 +5581,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5608,11 +5592,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5621,10 +5605,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5632,11 +5616,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5645,10 +5629,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 38, - "tx_hash": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", + "tx_hash": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", "block_index": 151, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98:1", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5656,11 +5640,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943654, + "block_time": 1726950248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5669,10 +5653,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 35, - "tx_hash": "bb7e237846f4ba8f55a20cc8e2bfaf6731be5297749cf62cadc18474047a3030", + "tx_hash": "351ae12754d2a615f37c96873f3e178d77d842607e0522e954ee066b969514be", "block_index": 148, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "9dc5d37ade58fe3fcc4001a7c5a086fc13efa89bbb556610bb78c7d6c2b059a1:1", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "005e41992c61245f5c6c82a7140ca55b6813d522dfdd67fd5bb22b1b144ee77d:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5680,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": 1726943642, + "block_time": 1726950236, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5702,7 +5686,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9` (str, required) - The address to return + + address: `bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj` (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` @@ -5722,10 +5706,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 37, - "tx_hash": "97881a57024ad6e05e14ae9d17fff8be24276335e8f9afefcce9b70168d36808", + "tx_hash": "c687f93269aa03f150204db384563efed1dfa9dd7319d77a879e3a346e36471c", "block_index": 150, - "source": "cc7990d855f354e057a6e08b954da3db23de867816732e8fc48f06b3fcadb83b:0", - "destination": "bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9", + "source": "facd73ce7e552dab11a369e33253c91a09a63e697ed4542f29c5e0a118eb3a01:0", + "destination": "bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5733,11 +5717,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943651, + "block_time": 1726950243, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5755,7 +5739,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5782,9 +5766,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 30, - "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", + "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", "block_index": 144, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5793,7 +5777,7 @@ Returns the dispensers of an address "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5803,7 +5787,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943625, + "block_time": 1726950210, "asset_info": { "divisible": true, "asset_longname": null, @@ -5819,9 +5803,9 @@ Returns the dispensers of an address }, { "tx_index": 26, - "tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5830,7 +5814,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5840,7 +5824,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -5865,7 +5849,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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 +5862,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", + "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", "block_index": 144, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5889,7 +5873,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5899,7 +5883,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943625, + "block_time": 1726950210, "asset_info": { "divisible": true, "asset_longname": null, @@ -5921,7 +5905,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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 +5925,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", + "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5961,7 +5945,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5976,7 +5960,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -5990,19 +5974,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", + "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", "block_index": 140, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6010,7 +5994,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6025,7 +6009,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943598, + "block_time": 1726950194, "asset_info": { "divisible": true, "asset_longname": null, @@ -6047,7 +6031,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (str, required) - The address to return + + address: `bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (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 @@ -6067,19 +6051,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", + "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6087,7 +6071,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6102,7 +6086,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -6116,19 +6100,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", + "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", "block_index": 140, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6136,7 +6120,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6151,7 +6135,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943598, + "block_time": 1726950194, "asset_info": { "divisible": true, "asset_longname": null, @@ -6173,7 +6157,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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` @@ -6194,19 +6178,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", + "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6214,7 +6198,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6229,7 +6213,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -6243,19 +6227,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", + "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", "block_index": 140, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6263,7 +6247,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6278,7 +6262,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943598, + "block_time": 1726950194, "asset_info": { "divisible": true, "asset_longname": null, @@ -6300,7 +6284,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (str, required) - The address to return + + address: `bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (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` @@ -6321,19 +6305,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", + "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6341,7 +6325,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6356,7 +6340,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -6370,19 +6354,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", + "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", "block_index": 140, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6390,7 +6374,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6405,7 +6389,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943598, + "block_time": 1726950194, "asset_info": { "divisible": true, "asset_longname": null, @@ -6427,7 +6411,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk` (str, required) - The address to return + + address: `bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779` (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 @@ -6446,16 +6430,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 58, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "fee_paid_normalized": "0.00600000" } ], @@ -6469,7 +6453,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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 @@ -6488,14 +6472,14 @@ Returns the issuances of an address "result": [ { "tx_index": 46, - "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", + "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -6510,20 +6494,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943687, + "block_time": 1726950282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "ad5638a61876314ea341c91f638042e00c58a6a150651c1198858bbfa50bcdd3", + "tx_hash": "9a15129044c626aa6de4262f26195a677a41cc8a4b82c649cb7a381658023bdd", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -6538,20 +6522,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726943683, + "block_time": 1726950277, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "920160abffc2681cf411a03e5ddc3c3f7f1156c1ceffaa2304a7f6f82032e82f", + "tx_hash": "3de27df9207dede883d535efe529dd8fc3974cb18d1a62d257e6bcb91aa08a74", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -6566,20 +6550,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943679, + "block_time": 1726950274, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "730d154e7c40e6f269a3c0f15937c64309d932202616ef4c54ec0c6e07ddc29c", + "tx_hash": "9157f7bfaf353b8d1bfda36bbcaf83e7a1ae668161834e9f1b166f1e47b0f4c0", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -6594,20 +6578,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943675, + "block_time": 1726950270, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "3b78cdcb0b5a931b4804337596e836bbd23872bb1dafeed65aad95db32933c61", + "tx_hash": "da1ecc1d6cf234a109110be3902414ad2324678c0e9ccfde053c2f792d0f6a5e", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -6622,7 +6606,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943638, + "block_time": 1726950222, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -6637,7 +6621,7 @@ Returns the issuances of an address Returns the valid assets of an issuer + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The issuer to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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 @@ -6660,8 +6644,8 @@ Returns the valid assets of an issuer "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 10000000000, @@ -6669,16 +6653,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726943675, - "last_issuance_block_time": 1726943683, + "first_issuance_block_time": 1726950270, + "last_issuance_block_time": 1726950277, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 100000000000, @@ -6686,16 +6670,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726943638, - "last_issuance_block_time": 1726943638, + "first_issuance_block_time": 1726950222, + "last_issuance_block_time": 1726950222, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 40, @@ -6703,16 +6687,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726943577, - "last_issuance_block_time": 1726943581, + "first_issuance_block_time": 1726950172, + "last_issuance_block_time": 1726950177, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 19, @@ -6720,16 +6704,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726943560, - "last_issuance_block_time": 1726943573, + "first_issuance_block_time": 1726950155, + "last_issuance_block_time": 1726950168, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 0, @@ -6737,8 +6721,8 @@ Returns the valid assets of an issuer "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1726943539, - "last_issuance_block_time": 1726943556, + "first_issuance_block_time": 1726950134, + "last_issuance_block_time": 1726950151, "supply_normalized": "0.00000000" } ], @@ -6752,7 +6736,7 @@ Returns the valid assets of an issuer Returns the transactions of an address + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -6771,17 +6755,17 @@ Returns the transactions of an address "result": [ { "tx_index": 57, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", - "block_time": 1726943802, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", + "block_time": 1726950421, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e:1", + "utxos_info": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6817,23 +6801,23 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "block_index": 190, - "block_hash": "23b27ef62e72432568ac3d2827afc0d1be45e5a1eb3461f8b58d24ab532f4f66", - "block_time": 1726943798, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "27e860cc72fbd13d937f5d53894473cdec16612f8b3a5c708a5cf6676b57a478", + "block_time": 1726950417, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "data": "46b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "supported": true, - "utxos_info": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a:1", + "utxos_info": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "status": "valid" } }, @@ -6841,17 +6825,17 @@ Returns the transactions of an address }, { "tx_index": 55, - "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "block_index": 189, - "block_hash": "26cc98a125105d26459d4cdde73737ee6a87200dd1e260833a753985df7a6e96", - "block_time": 1726943793, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "5aa33299fee53ddd0fb4f86ddb1dbd45d1fdaa8332537a4fdb69892979db6de0", + "block_time": 1726950402, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8:1", + "utxos_info": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6887,17 +6871,17 @@ Returns the transactions of an address }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "block_hash": "423947d2489b48a6e1d3a68c229e08b6abe64ea53afa8512a39037e9e3d57ed0", - "block_time": 1726943789, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "0d5917e665af2adf0e67fa25a3703c9fec72d0d4fead388ec0fd867bb676dd3a", + "block_time": 1726950398, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802b08c45289028349cc594a15406b2e9391f71c7c80c6ffd5588e4548e249935cfdedfb570089a7e433804d58139ca58d4e5278dcc90c123825e920a4c782400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a2f39be999227f439233f92bfc92175307049033802d892d9d215a3e35d0fffb2b3e7cabdb14d2454980bebd760d2e19686fe41856142fc45e3c18bea249400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3:0", + "utxos_info": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -6905,14 +6889,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -6920,7 +6904,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -6939,17 +6923,17 @@ Returns the transactions of an address }, { "tx_index": 49, - "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", "block_index": 183, - "block_hash": "76b787bee668425bd1b438a2a899ce68b2c993774bd6797755aca7cecf2e2b88", - "block_time": 1726943768, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "4e7a73ffc2fbf5c77ed880774d1e307872db577f80ffb792138702af83acc4db", + "block_time": 1726950377, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f:1", + "utxos_info": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6994,7 +6978,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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 @@ -7013,20 +6997,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 40, - "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", + "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", "block_index": 153, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726943663, + "block_time": 1726950256, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -7051,7 +7035,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7078,9 +7062,9 @@ Returns the orders of an address "result": [ { "tx_index": 57, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7095,7 +7079,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726943802, + "block_time": 1726950421, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7121,9 +7105,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "block_index": 190, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7138,7 +7122,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726943798, + "block_time": 1726950417, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7164,9 +7148,9 @@ Returns the orders of an address }, { "tx_index": 49, - "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", "block_index": 186, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7181,7 +7165,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726943781, + "block_time": 1726950389, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7207,9 +7191,9 @@ Returns the orders of an address }, { "tx_index": 47, - "tx_hash": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", + "tx_hash": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", "block_index": 182, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7224,7 +7208,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1726943703, + "block_time": 1726950308, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7259,7 +7243,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The source of the fairminter to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7277,10 +7261,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", + "tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", "tx_index": 22, "block_index": 135, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7305,13 +7289,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726943577 + "block_time": 1726950172 }, { - "tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", + "tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", "tx_index": 18, "block_index": 131, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7336,13 +7320,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726943560 + "block_time": 1726950155 }, { - "tx_hash": "f8863d06dd1c63af927665e2741a68593285bb4a52bbadf58685b17809c50470", + "tx_hash": "e69f3ddbfd1ba8c631b757819d7664ca2bc7041fcd5a75be8e2711eea2cac9f8", "tx_index": 14, "block_index": 130, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7367,13 +7351,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726943556 + "block_time": 1726950151 }, { - "tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "tx_index": 10, "block_index": 125, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7398,7 +7382,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726943534 + "block_time": 1726950130 } ], "next_cursor": null, @@ -7411,7 +7395,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (str, required) - The address of the mints to return + + address: `bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7429,127 +7413,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "296a4a2f8facf4a5ccf44ab044c61ea9b9216a3071599a39f70b231bc11801f0", + "tx_hash": "34bec257ccf1f8c374493fc15f7cbb1af6846494d3b097680b0826b82f088d9d", "tx_index": 23, "block_index": 136, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "fairminter_tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "fairminter_tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943581, + "block_time": 1726950177, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } }, { - "tx_hash": "5ed673dd8d97553e61d83fbccf8e095279db7b2b17182af9e56c3ad7c3a4fa03", + "tx_hash": "db57e70f00a61a0047c98b0ec58ea73359d9350575524094dd8e5bd2912a6bff", "tx_index": 21, "block_index": 134, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "fairminter_tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "fairminter_tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943573, + "block_time": 1726950168, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } }, { - "tx_hash": "51faa319e2cca4033cc7107e24db91cffd7aa0de24e6dbb3416f14414fbb1513", + "tx_hash": "5d803fb3c505bfe22205e2970b56904799390c0defd2234b82e6e0d73731f2b3", "tx_index": 20, "block_index": 133, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "fairminter_tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "fairminter_tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943568, + "block_time": 1726950164, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } }, { - "tx_hash": "43aca2b646d3f1276f04a8c106efccaa0693ff0cd78d964dcca325aa3d8fb96b", + "tx_hash": "cba0ccae5a7223e0217e916991da9cdb306a21211aba783c1a617f3f678cf2fc", "tx_index": 19, "block_index": 132, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "fairminter_tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "fairminter_tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943564, + "block_time": 1726950160, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } }, { - "tx_hash": "2988c15ef26d780e374920eb96e0569d184800843ea6a308102bc549436780e5", + "tx_hash": "b05cca3bc275486fc1ad03760458825512e861deba57984710051915d4975e5a", "tx_index": 15, "block_index": 127, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "fairminter_tx_hash": "f8863d06dd1c63af927665e2741a68593285bb4a52bbadf58685b17809c50470", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "fairminter_tx_hash": "e69f3ddbfd1ba8c631b757819d7664ca2bc7041fcd5a75be8e2711eea2cac9f8", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943543, + "block_time": 1726950138, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } }, { - "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", + "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943527, + "block_time": 1726950121, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } @@ -7565,7 +7549,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (str, required) - The address of the mints to return + + address: `bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (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` @@ -7584,22 +7568,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", + "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943527, + "block_time": 1726950121, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } @@ -7638,8 +7622,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: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address that will make the bet - + feed_address: `bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address that will make the bet + + feed_address: `bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (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) @@ -7705,7 +7689,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: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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) @@ -7758,9 +7742,9 @@ Composes a transaction to broadcast textual and numerical information to the net ``` { "result": { - "rawtransaction": "02000000000101c7a751b79fc1bba15db96e76fddc03eaf28c83033bbac943b3ec9b4fb733b1ca000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff0200000000000000002b6a2921d0690c1e43531d52511b2b8d83499e0ad38c216c1cea450000060de19642e0efe783a088dd85b7fb34b1052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "02000000000101baa101cbc940a198c493a89141be8f75d0048e0d7a5dc37087907fe9bf8be6620000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff0200000000000000002b6a29411d762b9dc4b64ca7864736f8a3ac4e85bb5eeb17df4a8b3bf104383cee8fd76b601ab179212384033bb1052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7784,8 +7768,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: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address that will be sending the payment - + order_match_id: `de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c` (str, required) - The ID of the order match to pay for + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address that will be sending the payment + + order_match_id: `e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448` (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) @@ -7834,13 +7818,13 @@ Composes a transaction to pay for a BTC order match. ``` { "result": { - "rawtransaction": "020000000001014908917f0d6e695aa7e8041867a48a6a093206725417ad922e840a75ddf26706000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff03b80b0000000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf00000000000000004b6a49ffb002f713ca7b9fd27b391c2093a26eb078e7696684324b0b5450b219e025235fba61c51b4453692cbf1469cba72688768d7e70bb53caa4aef186df9696b9ef4fee30fca81bd2da78d093052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "020000000001013d85bff283f6055716040c2c51141398d7775951f61cf1ef9a12ccbd2da5e3370000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff03b80b00000000000016001478a3909dd27183d907e4449a5efb8a6eec443bd200000000000000004b6a4917b6d73524118ffb4dba108ccebe4e312409d5a0c62af302bd2fc94045cee07f1c04251c685216d77a736875b9adafd3104b683301a939a659438f13b6e712b00f0ef936f95218def2d993052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c" + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448" }, "name": "btcpay", - "data": "434e5452505254590bde81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "data": "434e5452505254590be78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7857,7 +7841,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: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address with the BTC to burn + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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` @@ -7909,9 +7893,9 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss ``` { "result": { - "rawtransaction": "02000000000101ce27407bf8f204ef537df027953eb6114b8487e9d150d6a84d085a95863f6414000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88acdab1052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "02000000000101fa643da10f023a6f4cdd832b487377afc08378e3a396a2f764a050b94a5b3cf60000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "quantity": 1000, "overburn": false }, @@ -7926,8 +7910,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: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055` (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) @@ -7976,13 +7960,13 @@ Composes a transaction to cancel an open order or bet. ``` { "result": { - "rawtransaction": "02000000000101e9d22b8ed7ff43a163cfb388952132f6f63b8f256b2072abb965ee5a4f930b7c000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff0200000000000000002b6a29ecbf2575a7e33509a02495729973f16fcbe3de84291c13e5e5338d397cbb96e87149c0a9a8686d8ff634b1052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "02000000000101eedbefe4bd636546d57c8e1f4c0eb76bd855239cfa7c77f8b251af49eb9196140000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff0200000000000000002b6a29bb90f36f9b86d1233cfc3bfa0724f1e524d4d32c8824fa115943b30c9b6bc6124ba66fac7e49803b373bb1052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "offer_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e" + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "offer_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055" }, "name": "cancel", - "data": "434e545250525459468503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "data": "434e54525052545946b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7999,7 +7983,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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 @@ -8051,9 +8035,9 @@ Composes a transaction to destroy a quantity of an asset. ``` { "result": { - "rawtransaction": "02000000000101cadc6dcd9e21ecdbadbd599e901d28c76bfe7d992d637b8ee189a0a69d5a148f000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000226a20ae4ee5980fee7c78bbd35e3c3c2c1d87ed4ffb8ea4425940791bb8498f8f53329db3052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "0200000000010130d7691e00629eb4961825a5c0cd3a09c650b1485d7baf7b6a7bc9093c5e66210000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000226a20e9ef305760432a385b4316e09d8b138f51b4d7c1649ef5a9eca33c059faac5a2a4b3052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8084,7 +8068,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: `bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh` (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) @@ -8142,9 +8126,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv ``` { "result": { - "rawtransaction": "02000000000101812f049104ecd8c5421d3aeb84f1e0d503d0673524bc38770bd25a75c0b4143302000000160014b75117bea813ac18e875e6955c46b90b822d1473ffffffff0200000000000000002c6a2a35e29811a9d0b3bce85ee69bebf2239fd0ea376e9c930087a670a0b4e22320795162476e62698b07e3de404b0a2701000000160014b75117bea813ac18e875e6955c46b90b822d147302000000000000", + "rawtransaction": "0200000000010187137586cf80f0894942be32c20a0d0dda47ae0714b0f873dd7a7951a4080a24020000001600149a874d4ce5bb7cc6fcf889d8d61a3cd667e7c43dffffffff0200000000000000002c6a2a0e1e937628aca7a522cee3b287a42b3bc78b6233d54a79cf73e78bea9e6bcd48c3d7bf613fd4eb1b9ff6474b0a27010000001600149a874d4ce5bb7cc6fcf889d8d61a3cd667e7c43d02000000000000", "params": { - "source": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", + "source": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8180,7 +8164,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: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (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: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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 @@ -8232,16 +8216,16 @@ Composes a transaction to issue a dividend to holders of a given asset. ``` { "result": { - "rawtransaction": "020000000001013fcf0426cb9d37dbe9f35ee44b5ec8880dc75b0a71e91e40fb26511d4347f86f000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000236a218df562c9f208ed50ccae382ca92b02c27702e79477aea3af2695ddaac8ebce991559b3052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "02000000000101e6e36a1100c493467b382a99ec5aee83575997f72471d86c33881f4b296c9df90000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000236a212228e09122064a733b43f540b88cd03dc744b649a35ed92ce17fd05cc8bf71dcd460b3052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -8272,10 +8256,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: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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` @@ -8333,12 +8317,12 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo ``` { "result": { - "rawtransaction": "02000000000101eed4b56dff0f6735bfcb64fd71bc79a2bac83188e844f08cc0808fba7d2e238c000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff0322020000000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf0000000000000000236a217d872c33d7f4702e6aecf40eb79042d40d6865869cc902d0daf2e7ea32bd9aa3471ca8052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "0200000000010136d6e6a155dea2dc07c5dbfc215477089050c771975ff25549a50aca2042d9110000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff03220200000000000016001478a3909dd27183d907e4449a5efb8a6eec443bd20000000000000000236a21a5d731112dcfb5e7accd100224da20485a77f4d6b626d7e938f6e22f44d928dc6a24a8052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "transfer_destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "lock": false, "reset": false, @@ -8363,9 +8347,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: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9,bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2,bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (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` @@ -8419,18 +8403,18 @@ Composes a transaction to send multiple payments to multiple addresses. ``` { "result": { - "rawtransaction": "02000000000104de819b9fc81ec47056ded5b3ba6b85bb1877b45eb40270c05a55b6bb413c4880000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffffc09b668a70c9a3f5219e4e535139c3f6eaab26c72fc9aa91e8eb6963b05328c0000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffffcba0f51565c80be9eceab047b664ccf9215bcfd49988f6e18039c9020a5bb071000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff33ad01ffd981010a7b7f85cec69713780d546e2c4d639e0fb2cee3371c24e1a5000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff03e80300000000000069512103869b25513395fa664ab1249e6177b8160304c9ab1e788b7db690f7bfbd62cbe521023075a3d35d96ec97dd45b01c69ae34053749b76967e71c61f4206d9ac7a7c9742102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153aee80300000000000069512102899b25513395fa664a9253f3932167841b436d964ea20fcf5d5295cbbeacac96210270ba6bf85552be1edfc6f1d030e421455c6726f890fb60eed66808f6abc8e52b2102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153ae47d016a8040000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000002000002000002000000000000", + "rawtransaction": "020000000001045d4eb11fe84e3712b4ebd879c01bc40c0527526e763aa02a891e4c9f75e1774a0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffffeac0d9ac05994d37e2be6b545ee86c7af2a01beeda39353990297dbfefd23b7c0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2fffffffff37cb30fbab0598f0be01ca736ce36762364665229cbe0c5e31d0aaf1a143da60000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff5429e8ff1be03db404fed6b06882c88df2efb89a85eacb7c9cb682e7715111790000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff03e8030000000000006951210380c01d0b508801d559f1f62d847e298ff33b1f3f177fea7e447b0a18c04fa5c42103be8259e6629403853ffdfb06bcfd31e67fce4cf395846b885e157e43c250863e2103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453aee803000000000000695121038fc01d0b508801d559d28140766aee3e4c696ebcc26d95b16905f192aea3e1fc210385509144910fea1c1d82b0948f041a1aedd91df4911458077c5d1b2fae3faa662103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453ae61d016a80400000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000002000002000002000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", 1 ], [ "MYASSETA", - "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", 2 ] ], @@ -8438,7 +8422,7 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e545250525459030002803abbb33ac7a43d5ccf1f395ce2627403ce6740cf802b08c45289028349cc594a15406b2e9391f71c7c8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e5452505254590300028078a3909dd27183d907e4449a5efb8a6eec443bd280a2f39be999227f439233f92bfc921753070490338f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8455,7 +8439,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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 @@ -8510,9 +8494,9 @@ Composes a transaction to place an order on the distributed exchange. ``` { "result": { - "rawtransaction": "02000000000101c731eb09c72abf0af77a6164e7b3278f8fcd8d150d5fb92225e7a5c9dfd629e9000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000356a336e78117dafe38e89e931b18ea1638fcce6fa2276a898a1c5cbdbbb229bd47da4d46b74cf8d9aff60985bfc6bffb84aecf62e8d87ae052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "02000000000101ccdedd2808c475ca5c88e5449b3c176fe02031ec8e63eecb922aeaf26a5c18b50000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000356a3353ef808f83366b6cf8d9952b5f83c9aa93502e5ec99ae234ba6b25efe0929adacf71a868b12cb91f4cf9dc0f55d288e7704f008eae052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8529,7 +8513,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -8555,8 +8539,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: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (str, required) - The address that will be receiving the asset + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (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 @@ -8613,10 +8597,10 @@ Composes a transaction to send a quantity of an asset to another address. ``` { "result": { - "rawtransaction": "02000000000101bdb7938d4a99e508a552731ee1aa29935ca0c5848f5fa8ce220efb76421c11cd000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000306a2e910edd304c294569d596a33a1eb438784df08ebdaea9ffdec0398f5866a80da0dbf41b1284fd8adf063779711d60deaf052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "020000000001018d066198354bcccb5ae30b8e22e0dc1c7b7cc82e2f09f5717467887f0be02e130000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000306a2e10f778129d9a05da90bb7b9780c7c24abf81c0eaca62afba7ac192691e47563954763c578ae8b6a863aea692eb7de5af052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8632,7 +8616,7 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8802b08c45289028349cc594a15406b2e9391f71c7c", + "data": "434e54525052545902000000000000000100000000000003e880a2f39be999227f439233f92bfc92175307049033", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8649,8 +8633,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: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address that will be sending - + destination: `bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address that will be sending + + destination: `bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (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 @@ -8701,15 +8685,15 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti ``` { "result": { - "rawtransaction": "02000000000101b45c1cc6db765897669ae0918a7dd0167dd26d2cc925304bc3fbde5c6d0af6a3000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000236a212da04bebf6d4a4b5629d338c8f4c28d5672494a10929d05f171bb0d113586c514b59b3052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "02000000000101d3588bfb2399ce534e9d0709c9163fc54404d4543935cf439037c8359a2a65ba0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000236a217aae0a2a9fd30ec2ced0653034b208a74ec9420f24a2951e2fdb9a888794e54f5760b3052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904802b08c45289028349cc594a15406b2e9391f71c7c07ffff", + "data": "434e5452505254590480a2f39be999227f439233f92bfc9217530704903307ffff", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8726,8 +8710,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: `bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday` (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` @@ -8777,10 +8761,10 @@ Composes a transaction to send BTC to a dispenser. ``` { "result": { - "rawtransaction": "02000000000101119dbe2ceeda25c2be45d2aba37559fcce4c913e993aa325d0ab72e23f06ab39020000001600142b08c45289028349cc594a15406b2e9391f71c7cffffffff03e8030000000000001600144d58139ca58d4e5278dcc90c123825e920a4c78200000000000000000c6a0a3b15b6e696812f9609ef5fb80827010000001600142b08c45289028349cc594a15406b2e9391f71c7c02000000000000", + "rawtransaction": "02000000000101f5f8c62f3372e9b1fbbd14a59ce06876ca5bb083695e2bb5d8e3354c8d7e3af902000000160014a2f39be999227f439233f92bfc92175307049033ffffffff03e803000000000000160014bebd760d2e19686fe41856142fc45e3c18bea24900000000000000000c6a0a82bdbe18eb20c070df0066b8082701000000160014a2f39be999227f439233f92bfc9217530704903302000000000000", "params": { - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "quantity": 1000 }, "name": "dispense", @@ -8801,7 +8785,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address that will be issuing the asset + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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: `` @@ -8883,9 +8867,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. ``` { "result": { - "rawtransaction": "02000000000101c90d43ea7a244f57e0ec9f519f7c76b2f0a7763744ab6f7a75c8abb61ba15ac0000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000316a2f35e908ad61113bb575e8c54a8a9318b9acc9ca6f44db52c9d54a494d53f2d145dc45e5c0136dbb05bba1f6f739c36e99af052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "020000000001018a5d294695a3cad514f9a5355a1878d1b6985d4c2b75246f10b5ef4d1e4654a80000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000316a2f00366867e989fc281223556af269bde9b5862ec32ee8e4ddc59019e2af0a3f6c8ade61f624719c7ad07618314d1780a0af052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -8922,7 +8906,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: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address that will be minting the asset + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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` @@ -8974,15 +8958,15 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto ``` { "result": { - "rawtransaction": "02000000000101f3e542c39e892018df6490f555f3094c88c4a380510d3affd25ec845aee5f020000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000166a14f35fd73585af2365f86aba91b9701aed9186e133d4b6052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "02000000000101e8ab6caff3cacfcfd3dbadcbad2347735d0bbd4497929b30e82b3da7daac8c610000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000166a148480d79da2451734ec5258d8a4d16bad633ac169dab6052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -9006,10 +8990,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: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address from which the assets are attached + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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: `de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8:1` (str, optional) - The utxo to attach the assets to + + destination: `f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5:0` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9059,10 +9043,10 @@ Composes a transaction to attach assets from an address to UTXO. ``` { "result": { - "rawtransaction": "020000000001068b45c8be8ff92bbba5b5c2dda07b503f5545f3da2e069379f635d648c3462fc3000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff8793d45f8f4010d8e8e328dab5768f855e73dd99f690ce397db9992322843bc0000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff86ec152a47bd8f17389c79fc5818af06033bc05313a82f0bfb1ec2ba098e39bd000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff964aaeef52ff6553088b3c4224e983f3955681388ea9a0818036f5138fc7b51d000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff199b9ad5d5a5b91a9af4b2fbe97a5395db52c6ae6eea83c77f8103f55a929b0d000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffffd4775192c52937dbc731da8b8f1ff6f93862668bbdadbe2a8ea2c5bb2b980836000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff04e80300000000000069512103e936ed976e664450737aca36fe1e353dc89dccbe7c5ce14d951f54c0b9a7256e210375e4409ff7d7eb87de775c0d49b342cd89b61060d8ff59fbd67fbb2d9cefdbbb2102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153aee80300000000000069512102e936ed976e66445073289f64e80b347cc79ecce76613ec46c50a00c0efad779d21027def4ddce496bbdfdc370a0202f203818bf95c698af105b7d62fe82f9fb8db882102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153aee80300000000000069512103c336ed976e664450732ecd31b4503530a8ecfdaf351bba45a06c63f4dcc946b9210319dc79e880ae88e9eb066c3531c431b5b9c0650cbf936087b21a8e1ef9dbbda32102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153aec13922fc060000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106205474b852fd4c7ba82f078bdeea2a4d7e53ef4ea71724239b1f900ca093944f0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffffaa4c09c2227b094d2f3ba8dcadfa8b405ded9f775f960cc73026fc39580f5adc0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffffe41bcc599b63d1291193efde4f1c01bff9cc5569fd20d0de50b63ca0f320faae0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff2ebf8d97e45fb132031c0c5216a66d5eb6e0d2ca5dece980c302328d4ba02afc0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff13eccb9a92f0089f539d84322538d0c6f830cbed3ceb15ae0b08cf07d0f0d9980000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff71e1f0347d35e80df8e619a793c159c06ed180d2ef8fc0f04cd5e4c30ec494990000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff04e803000000000000695121025f199d3d069301d062dc703f6b6d6bee8b30d127877cebaf6a3e1e49407bcae021028038e667690d83c9a2cfbb15c033dcf4bdecaef30f7542c751c6b7f34a45bbc42103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453aee803000000000000695121035f199d3d069301d062dc263f2a2c3facdf728077c526a9a02b7f561b483b936b21029b3ced34665a8cd9a092b51f8c659fa1b3e2bcf90c7b498c05ccb7a01b43b52d2103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453aee8030000000000006951210375199d3d069301d062de2a3a2c236ae3e309b23ec674acf51d466e282a0ba6982103f95f8c03506cb4bc90abd67eb954abc3d784de9b3d1e70bb37ff84927d20839c2103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453aee83922fc0600000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8:1", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5:0", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9075,7 +9059,7 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713832616d78776b3835733734656e636c3839777779636e35713038787773783076756c676c397c646535336534663637316461303037316134623866336566633433643164333434643833363731663733363234323939653562653064356631666366306564383a317c5843507c31303030", + "data": "434e54525052545964626372743171307a33657038776a777870616a706c79676a643961377532646d6b796777376a687068326b327c663933613765386434633335653364386235326235653639383362303562636137363638653039636135313462646662623165393732333332666336663866353a307c5843507c31303030", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9092,8 +9076,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: `2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c:1` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to detach the assets to + + utxo: `4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee:1` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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 @@ -9144,10 +9128,10 @@ Composes a transaction to detach assets from UTXO to an address. ``` { "result": { - "rawtransaction": "020000000001011cad9a9319fca4afa7b2d4cbacd0741ecfcc6edfe1346b2d6d4b66a237e0902c010000001600145f0a669381ca92fe5c67bb77083133c750fc8521ffffffff04e80300000000000069512103aa92ec82797fe0a4b39d4f8a9c278bd7e2897dc1fb7c69ea3a3644a3c9f09edf2102b655dba7fd942cb87e45605ec681a76a6cf1bb9639255fbc1b72f20182a7f99221025334ed116f50f7942d8cde029e80dda0180e31a39aa128d50c9729185d0615ea53aee80300000000000069512102aa92ec82797fe0a4b39f1ed89c2edddeb0df78c2ae706cf46e3104b3cee3958f2103b05187bbecc971ee6e11320acdd5ff3665e7af8c382f5eaf192bbd1797befd0a21025334ed116f50f7942d8cde029e80dda0180e31a39aa128d50c9729185d0615ea53aee803000000000000695121028092ec82797fe0a4b38f0885c27bd79b89fd4c8ffc7a6db80c5276c7ff92ad6d21028230eac39ba249db1d26066fa3b6930e5c90d8f55b416bde2913c560e4c6cdf321025334ed116f50f7942d8cde029e80dda0180e31a39aa128d50c9729185d0615ea53aee8980827010000001600145f0a669381ca92fe5c67bb77083133c750fc852102000000000000", + "rawtransaction": "02000000000101ee686ccfdf3a59108b1e94563148fb751758ca450757a0702214c34bcbc5174e01000000160014e5e7994267229ac88ef1b87c6bb3dd5ea6d8b915ffffffff04e80300000000000069512103d10c408319c158050fc7352fd30cae885c0e6cc47e770da5cb3ff182b089e35e2102ffa9319f5d5598f26968c6da1435aa18b608d02a24a1b90ab5c606f343a4dcf82103e9e0419bbf5a98aa4575404f101dac624c7d6c81a7f307d7f76566c820155e0a53aee80300000000000069512102d10c408319c158050f90602e8458ab8b5c5a60c3787e0ded9b6eb4c6e0c8e6552103b2aa63db504193b029299087513fb14be45fd87e25edbf5fbd951da504a68f332103e9e0419bbf5a98aa4575404f101dac624c7d6c81a7f307d7f76566c820155e0a53aee80300000000000069512102fb0c408319c158050fcb7122d050ffc1672f08da2c740ca1f90dc6b2d1b9d64c2103c89906ab6836f9c75159f1ed2153c82c8e3be11f12988d3bd0fe64c27391e57d2103e9e0419bbf5a98aa4575404f101dac624c7d6c81a7f307d7f76566c820155e0a53aef498082701000000160014e5e7994267229ac88ef1b87c6bb3dd5ea6d8b91502000000000000", "params": { - "source": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c:1", - "destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee:1", + "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9160,7 +9144,7 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964326339306530333761323636346236643264366233346531646636656363636631653734643061636362643462326137616661346663313939333961616431633a317c6263727431713832616d78776b3835733734656e636c3839777779636e35713038787773783076756c676c397c5843507c31303030", + "data": "434e54525052545964346531376335636234626333313432323730613035373037343563613538313737356662343833313536393431653862313035393361646663663663363865653a317c626372743171307a33657038776a777870616a706c79676a643961377532646d6b796777376a687068326b327c5843507c31303030", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9215,8 +9199,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 10000000000, @@ -9224,16 +9208,16 @@ Returns the valid assets "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726943675, - "last_issuance_block_time": 1726943683, + "first_issuance_block_time": 1726950270, + "last_issuance_block_time": 1726950277, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", - "owner": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", + "issuer": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", + "owner": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", "divisible": true, "locked": false, "supply": 100000000000, @@ -9241,16 +9225,16 @@ Returns the valid assets "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1726943670, - "last_issuance_block_time": 1726943670, + "first_issuance_block_time": 1726950266, + "last_issuance_block_time": 1726950266, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 100000000000, @@ -9258,16 +9242,16 @@ Returns the valid assets "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726943638, - "last_issuance_block_time": 1726943638, + "first_issuance_block_time": 1726950222, + "last_issuance_block_time": 1726950222, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 40, @@ -9275,16 +9259,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726943577, - "last_issuance_block_time": 1726943581, + "first_issuance_block_time": 1726950172, + "last_issuance_block_time": 1726950177, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 19, @@ -9292,8 +9276,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726943560, - "last_issuance_block_time": 1726943573, + "first_issuance_block_time": 1726950155, + "last_issuance_block_time": 1726950168, "supply_normalized": "0.00000019" } ], @@ -9321,8 +9305,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 10000000000, @@ -9330,8 +9314,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1726943523, - "last_issuance_block_time": 1726943534, + "first_issuance_block_time": 1726950117, + "last_issuance_block_time": 1726950130, "supply_normalized": "100.00000000" } } @@ -9362,7 +9346,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9370,14 +9354,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9385,7 +9369,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -9402,7 +9386,7 @@ Returns the asset balances Returns the balance of an address and asset + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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` @@ -9414,7 +9398,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -9463,9 +9447,9 @@ Returns the orders of an asset "result": [ { "tx_index": 57, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9480,7 +9464,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726943802, + "block_time": 1726950421, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9506,9 +9490,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "block_index": 190, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9523,7 +9507,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726943798, + "block_time": 1726950417, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9549,9 +9533,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "tx_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "block_index": 186, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -9566,7 +9550,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726943781, + "block_time": 1726950389, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9592,9 +9576,9 @@ Returns the orders of an asset }, { "tx_index": 50, - "tx_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "tx_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "block_index": 185, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -9609,7 +9593,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726943776, + "block_time": 1726950385, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9635,9 +9619,9 @@ Returns the orders of an asset }, { "tx_index": 49, - "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", "block_index": 186, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9652,7 +9636,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726943781, + "block_time": 1726950389, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9712,13 +9696,13 @@ Returns the orders of an asset { "result": [ { - "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "tx0_index": 49, - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 52, - "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", - "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -9732,7 +9716,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726943781, + "block_time": 1726950389, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9752,13 +9736,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "tx0_index": 49, - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 50, - "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", - "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -9772,7 +9756,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726943776, + "block_time": 1726950385, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9792,13 +9776,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", "tx0_index": 47, - "tx0_hash": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 48, - "tx1_hash": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", - "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "tx1_hash": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -9812,7 +9796,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726943703, + "block_time": 1726950308, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9892,20 +9876,20 @@ Returns the credits of an asset "result": [ { "block_index": 192, - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -9913,20 +9897,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "ad20ce4b786258ea1c1df1c6f730a0b7989626161405060fe9f692ef84bf66f1", + "event": "fa62268a3981b9cfff3d701ad4e086a879507e450c3e676a6fee67ce980309f3", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943534, + "block_time": 1726950130, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -9934,20 +9918,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134", + "event": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943531, + "block_time": 1726950126, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -9955,20 +9939,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", + "event": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943531, + "block_time": 1726950126, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -9980,16 +9964,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134", + "event": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943531, + "block_time": 1726950126, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -10045,16 +10029,16 @@ Returns the debits of an asset "result": [ { "block_index": 193, - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "event": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -10066,16 +10050,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -10087,16 +10071,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -10108,16 +10092,16 @@ Returns the debits of an asset }, { "block_index": 191, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "event": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943802, + "block_time": 1726950421, "asset_info": { "divisible": true, "asset_longname": null, @@ -10129,16 +10113,16 @@ Returns the debits of an asset }, { "block_index": 189, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943793, + "block_time": 1726950402, "asset_info": { "divisible": true, "asset_longname": null, @@ -10178,20 +10162,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 40, - "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", + "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", "block_index": 153, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726943663, + "block_time": 1726950256, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -10235,14 +10219,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "ad20ce4b786258ea1c1df1c6f730a0b7989626161405060fe9f692ef84bf66f1", + "tx_hash": "fa62268a3981b9cfff3d701ad4e086a879507e450c3e676a6fee67ce980309f3", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -10257,20 +10241,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726943534, + "block_time": 1726950130, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134", + "tx_hash": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -10285,20 +10269,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726943531, + "block_time": 1726950126, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", + "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -10313,20 +10297,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726943527, + "block_time": 1726950121, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -10341,7 +10325,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1726943523, + "block_time": 1726950117, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10375,10 +10359,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10386,7 +10370,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "divisible": true, "asset_longname": null, @@ -10399,10 +10383,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 53, - "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f", + "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d", "block_index": 187, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10410,7 +10394,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943785, + "block_time": 1726950394, "asset_info": { "divisible": true, "asset_longname": null, @@ -10423,10 +10407,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 42, - "tx_hash": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", + "tx_hash": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", "block_index": 155, - "source": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1:0", - "destination": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c:1", + "source": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f:0", + "destination": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10434,7 +10418,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943670, + "block_time": 1726950266, "asset_info": { "divisible": true, "asset_longname": null, @@ -10447,10 +10431,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 41, - "tx_hash": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1", + "tx_hash": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f", "block_index": 154, - "source": "74d316ca342326f38281e59ead3dfc971daed967e3bf1bba4ebaf1ebbfaccca3:0", - "destination": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1:0", + "source": "834d6141f50ca8d542f97a2a8763c5e0b903ea69dad914ca7b2314d1b15299c9:0", + "destination": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10458,7 +10442,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943667, + "block_time": 1726950261, "asset_info": { "divisible": true, "asset_longname": null, @@ -10507,18 +10491,18 @@ Returns the dispensers of an asset "result": [ { "tx_index": 32, - "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "last_status_tx_hash": null, - "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10528,7 +10512,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726943634, + "block_time": 1726950217, "asset_info": { "divisible": true, "asset_longname": null, @@ -10544,9 +10528,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", + "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", "block_index": 144, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10555,7 +10539,7 @@ Returns the dispensers of an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10565,7 +10549,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943625, + "block_time": 1726950210, "asset_info": { "divisible": true, "asset_longname": null, @@ -10581,9 +10565,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "fc59b2d70ba6a4019eb86b813223acd00bf3fe1819d6d28e2a2efdbb3fc9b526", + "tx_hash": "0a0a386a108fc77532c20f16f9135923ccb21213e6b57fc920af53fdec07f3a3", "block_index": 142, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10592,7 +10576,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "origin": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10602,7 +10586,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943607, + "block_time": 1726950201, "asset_info": { "divisible": true, "asset_longname": null, @@ -10618,9 +10602,9 @@ Returns the dispensers of an asset }, { "tx_index": 26, - "tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10629,7 +10613,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10639,7 +10623,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -10664,7 +10648,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - The address to return + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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` @@ -10677,9 +10661,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", + "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", "block_index": 144, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10688,7 +10672,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10698,7 +10682,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943625, + "block_time": 1726950210, "asset_info": { "divisible": true, "asset_longname": null, @@ -10748,7 +10732,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -10756,7 +10740,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -10765,7 +10749,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -10773,7 +10757,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -10782,7 +10766,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -10790,7 +10774,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -10799,7 +10783,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -10836,27 +10820,27 @@ Returns the dispenses of an asset { "tx_index": 33, "dispense_index": 0, - "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", - "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "last_status_tx_hash": null, - "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10871,7 +10855,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726943634, + "block_time": 1726950217, "asset_info": { "divisible": true, "asset_longname": null, @@ -10885,19 +10869,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", + "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10905,7 +10889,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10920,7 +10904,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -10934,19 +10918,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", + "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", "block_index": 140, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10954,7 +10938,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10969,7 +10953,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943598, + "block_time": 1726950194, "asset_info": { "divisible": true, "asset_longname": null, @@ -11012,8 +10996,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 0, @@ -11021,8 +11005,8 @@ Returns asset subassets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1726943679, - "last_issuance_block_time": 1726943679, + "first_issuance_block_time": 1726950274, + "last_issuance_block_time": 1726950274, "supply_normalized": "0.00000000" } ], @@ -11054,10 +11038,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "tx_index": 10, "block_index": 125, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11082,7 +11066,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726943534 + "block_time": 1726950130 } ], "next_cursor": null, @@ -11113,64 +11097,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "ad20ce4b786258ea1c1df1c6f730a0b7989626161405060fe9f692ef84bf66f1", + "tx_hash": "fa62268a3981b9cfff3d701ad4e086a879507e450c3e676a6fee67ce980309f3", "tx_index": 13, "block_index": 125, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", - "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943534, + "block_time": 1726950130, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } }, { - "tx_hash": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134", + "tx_hash": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7", "tx_index": 12, "block_index": 124, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", - "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943531, + "block_time": 1726950126, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } }, { - "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", + "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943527, + "block_time": 1726950121, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } @@ -11186,7 +11170,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh` (str, required) - The address of the mints to return + + address: `bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (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` @@ -11205,22 +11189,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", + "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943527, + "block_time": 1726950121, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } @@ -11264,9 +11248,9 @@ Returns all the orders "result": [ { "tx_index": 57, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11281,7 +11265,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726943802, + "block_time": 1726950421, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11307,9 +11291,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "block_index": 190, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11324,7 +11308,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726943798, + "block_time": 1726950417, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11350,9 +11334,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "tx_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "block_index": 186, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11367,7 +11351,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726943781, + "block_time": 1726950389, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11393,9 +11377,9 @@ Returns all the orders }, { "tx_index": 50, - "tx_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "tx_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "block_index": 185, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11410,7 +11394,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726943776, + "block_time": 1726950385, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11436,9 +11420,9 @@ Returns all the orders }, { "tx_index": 49, - "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", "block_index": 186, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11453,7 +11437,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726943781, + "block_time": 1726950389, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11488,7 +11472,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e` (str, required) - The hash of the transaction that created the order + + order_hash: `b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055` (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. @@ -11500,9 +11484,9 @@ Returns the information of an order { "result": { "tx_index": 57, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11517,7 +11501,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726943802, + "block_time": 1726950421, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11549,7 +11533,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f` (str, required) - The hash of the transaction that created the order + + order_hash: `e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0` (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 @@ -11574,13 +11558,13 @@ Returns the order matches of an order { "result": [ { - "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "tx0_index": 49, - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 52, - "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", - "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11594,7 +11578,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726943781, + "block_time": 1726950389, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11614,13 +11598,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "tx0_index": 49, - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 50, - "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", - "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11634,7 +11618,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726943776, + "block_time": 1726950385, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11664,7 +11648,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f` (str, required) - The hash of the transaction that created the order + + order_hash: `e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0` (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 @@ -11683,15 +11667,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 51, - "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", + "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", "block_index": 185, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "btc_amount": 2000, - "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "status": "valid", "confirmed": true, - "block_time": 1726943776, + "block_time": 1726950385, "btc_amount_normalized": "0.00002000" } ], @@ -11733,9 +11717,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 57, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11753,7 +11737,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726943802, + "block_time": 1726950421, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11779,9 +11763,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "block_index": 190, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11799,7 +11783,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726943798, + "block_time": 1726950417, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11825,9 +11809,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "tx_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "block_index": 186, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11845,7 +11829,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726943781, + "block_time": 1726950389, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11871,9 +11855,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "tx_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "block_index": 185, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11891,7 +11875,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726943776, + "block_time": 1726950385, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11917,9 +11901,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", "block_index": 186, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11937,7 +11921,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726943781, + "block_time": 1726950389, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11998,13 +11982,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "tx0_index": 49, - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 52, - "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", - "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12021,7 +12005,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726943781, + "block_time": 1726950389, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12041,13 +12025,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "tx0_index": 49, - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 50, - "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", - "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12064,7 +12048,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726943776, + "block_time": 1726950385, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12084,13 +12068,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", "tx0_index": 47, - "tx0_hash": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 48, - "tx1_hash": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", - "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "tx1_hash": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12107,7 +12091,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726943703, + "block_time": 1726950308, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12163,13 +12147,13 @@ Returns all the order matches { "result": [ { - "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "tx0_index": 49, - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 52, - "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", - "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12183,7 +12167,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726943781, + "block_time": 1726950389, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12203,13 +12187,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "tx0_index": 49, - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 50, - "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", - "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12223,7 +12207,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726943776, + "block_time": 1726950385, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12243,13 +12227,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", "tx0_index": 47, - "tx0_hash": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 48, - "tx1_hash": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", - "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "tx1_hash": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12263,7 +12247,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726943703, + "block_time": 1726950308, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12431,66 +12415,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "338720d47c7ab728d1364edded99b5ecf28424429f2e3506bb6c2812aa8f8513", + "tx_hash": "b59307cc2ac4f942129759aae2c01c6787c312068f1f9274b9fca33b37cf2b5b", "block_index": 121, - "source": "bcrt1qxmw2n03dl0jlw8ap4tg5n9htdske39r04u5amh", + "source": "bcrt1qwqs0vxzwhmrrq95fnvdhz0dlywewnjusllcjc7", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1726943518, + "block_time": 1726950113, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "3760de148308b4b87619486b603d3b4e624dfce380efedd710b1e491b7992988", + "tx_hash": "cf3157538196c2ef2157f38ef876e51f522ca4dc1d4741b70aaee62b039ad635", "block_index": 120, - "source": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", + "source": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1726943514, + "block_time": 1726950109, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "b5267ba78738e5b02fb213596fe807b28bcf218bab3cb1baf8d82d5594b9dccb", + "tx_hash": "00b37df4c94335bff4c2621d0e083938367a01ace9ea4e952190a3bb3f35e521", "block_index": 119, - "source": "bcrt1qkjfngjnf7pr6038cynrarc5kh9cuje48yv3wtm", + "source": "bcrt1qtxavwjw8l7zg62dpwpj69pl6d2e55eh7c846rr", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1726943511, + "block_time": 1726950105, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "f1021a619687969d2bb8d9aecfd6e31c57d607b63df712475770c829311688e5", + "tx_hash": "0e233f42a66c3f1584ae4115105af5ee53d7aa4c12ba8c4e96ac321517b65e25", "block_index": 118, - "source": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", + "source": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1726943507, + "block_time": 1726950100, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "0659d434af9b56b1f1a97b3c83cb4d4bd3f4f78be6d848f9567e8237cdeca510", + "tx_hash": "ddae9377ab97695ed0de3b6aa7478a8c6ad78e88f509db7b4b4866b138eff01e", "block_index": 117, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1726943502, + "block_time": 1726950096, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12533,18 +12517,18 @@ Returns all dispensers "result": [ { "tx_index": 32, - "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "last_status_tx_hash": null, - "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -12554,7 +12538,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726943634, + "block_time": 1726950217, "asset_info": { "divisible": true, "asset_longname": null, @@ -12570,9 +12554,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", + "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", "block_index": 144, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -12581,7 +12565,7 @@ Returns all dispensers "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12591,7 +12575,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943625, + "block_time": 1726950210, "asset_info": { "divisible": true, "asset_longname": null, @@ -12607,9 +12591,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "fc59b2d70ba6a4019eb86b813223acd00bf3fe1819d6d28e2a2efdbb3fc9b526", + "tx_hash": "0a0a386a108fc77532c20f16f9135923ccb21213e6b57fc920af53fdec07f3a3", "block_index": 142, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12618,7 +12602,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "origin": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12628,7 +12612,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943607, + "block_time": 1726950201, "asset_info": { "divisible": true, "asset_longname": null, @@ -12644,9 +12628,9 @@ Returns all dispensers }, { "tx_index": 26, - "tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12655,7 +12639,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12665,7 +12649,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -12690,7 +12674,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4` (str, required) - The hash of the dispenser to return + + dispenser_hash: `55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e` (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. @@ -12702,9 +12686,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12713,7 +12697,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12723,7 +12707,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -12745,7 +12729,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4` (str, required) - The hash of the dispenser to return + + dispenser_hash: `55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e` (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 @@ -12765,19 +12749,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", + "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12785,7 +12769,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12800,7 +12784,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -12814,19 +12798,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", + "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", "block_index": 140, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12834,7 +12818,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12849,7 +12833,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943598, + "block_time": 1726950194, "asset_info": { "divisible": true, "asset_longname": null, @@ -12891,20 +12875,20 @@ Returns all the dividends "result": [ { "tx_index": 40, - "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", + "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", "block_index": 153, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726943663, + "block_time": 1726950256, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -12929,7 +12913,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c` (str, required) - The hash of the dividend to return + + dividend_hash: `cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85` (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. @@ -12941,20 +12925,20 @@ Returns a dividend by its hash { "result": { "tx_index": 40, - "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", + "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", "block_index": 153, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726943663, + "block_time": 1726950256, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -12976,7 +12960,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85` (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 @@ -12999,12 +12983,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", + "event": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", "tx_index": 40, - "utxo": "74d316ca342326f38281e59ead3dfc971daed967e3bf1bba4ebaf1ebbfaccca3:0", - "utxo_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "utxo": "834d6141f50ca8d542f97a2a8763c5e0b903ea69dad914ca7b2314d1b15299c9:0", + "utxo_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "confirmed": true, - "block_time": 1726943663, + "block_time": 1726950256, "asset_info": { "divisible": true, "asset_longname": null, @@ -13016,16 +13000,16 @@ Returns a dividend distribution by its hash }, { "block_index": 153, - "address": "bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9", + "address": "bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", + "event": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943663, + "block_time": 1726950256, "asset_info": { "divisible": true, "asset_longname": null, @@ -13071,27 +13055,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", - "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", + "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", + "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", "transaction_count": 1, - "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", - "block_time": 1726943809 + "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", + "block_time": 1726950429 }, "tx_hash": null, "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "tx_index": 59 }, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 }, { "event_index": 533, @@ -13100,12 +13084,12 @@ Returns all events "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "status": "valid", "tag": "64657374726f79", - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "tx_index": 59, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -13115,24 +13099,24 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 193, - "event": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "event": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -13142,25 +13126,25 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", "block_index": 193, - "block_time": 1726943809, + "block_time": 1726950429, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "tx_index": 59, - "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", + "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -13180,9 +13164,9 @@ Returns all events }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 } ], "next_cursor": 530, @@ -13210,15 +13194,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", - "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", + "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", + "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", "transaction_count": 1, - "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", - "block_time": 1726943809 + "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", + "block_time": 1726950429 }, "tx_hash": null, "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 } } ``` @@ -13296,16 +13280,16 @@ Returns the events filtered by event name "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -13315,78 +13299,78 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726943798, + "block_time": 1726950417, "asset_info": { "divisible": true, "asset_longname": null, @@ -13396,24 +13380,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "block_index": 190, - "block_time": 1726943798 + "block_time": 1726950417 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "event": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "divisible": true, "asset_longname": null, @@ -13423,9 +13407,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "block_time": 1726943789 + "block_time": 1726950398 } ], "next_cursor": 490, @@ -13481,27 +13465,27 @@ Returns all the dispenses { "tx_index": 33, "dispense_index": 0, - "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", - "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "last_status_tx_hash": null, - "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13516,7 +13500,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726943634, + "block_time": 1726950217, "asset_info": { "divisible": true, "asset_longname": null, @@ -13530,19 +13514,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", + "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13550,7 +13534,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13565,7 +13549,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -13579,19 +13563,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", + "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", "block_index": 140, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13599,7 +13583,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13614,7 +13598,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943598, + "block_time": 1726950194, "asset_info": { "divisible": true, "asset_longname": null, @@ -13656,10 +13640,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "quantity": 10, "status": "valid", @@ -13667,7 +13651,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "divisible": true, "asset_longname": null, @@ -13680,10 +13664,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13691,11 +13675,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -13704,10 +13688,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13715,11 +13699,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -13728,10 +13712,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 53, - "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f", + "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d", "block_index": 187, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -13739,7 +13723,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943785, + "block_time": 1726950394, "asset_info": { "divisible": true, "asset_longname": null, @@ -13752,10 +13736,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 42, - "tx_hash": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", + "tx_hash": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", "block_index": 155, - "source": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1:0", - "destination": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c:1", + "source": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f:0", + "destination": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -13763,7 +13747,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943670, + "block_time": 1726950266, "asset_info": { "divisible": true, "asset_longname": null, @@ -13805,14 +13789,14 @@ Returns all the issuances "result": [ { "tx_index": 46, - "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", + "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -13827,20 +13811,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943687, + "block_time": 1726950282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "ad5638a61876314ea341c91f638042e00c58a6a150651c1198858bbfa50bcdd3", + "tx_hash": "9a15129044c626aa6de4262f26195a677a41cc8a4b82c649cb7a381658023bdd", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -13855,20 +13839,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726943683, + "block_time": 1726950277, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "920160abffc2681cf411a03e5ddc3c3f7f1156c1ceffaa2304a7f6f82032e82f", + "tx_hash": "3de27df9207dede883d535efe529dd8fc3974cb18d1a62d257e6bcb91aa08a74", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -13883,20 +13867,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943679, + "block_time": 1726950274, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "730d154e7c40e6f269a3c0f15937c64309d932202616ef4c54ec0c6e07ddc29c", + "tx_hash": "9157f7bfaf353b8d1bfda36bbcaf83e7a1ae668161834e9f1b166f1e47b0f4c0", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -13911,20 +13895,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943675, + "block_time": 1726950270, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", + "tx_hash": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", - "issuer": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", + "source": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", + "issuer": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", "transfer": false, "callable": false, "call_date": 0, @@ -13939,7 +13923,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943670, + "block_time": 1726950266, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -13954,7 +13938,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c` (str, required) - The hash of the transaction to return + + tx_hash: `9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88` (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. @@ -13966,14 +13950,14 @@ Returns the issuances of a block { "result": { "tx_index": 46, - "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", + "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -13988,7 +13972,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943687, + "block_time": 1726950282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14020,16 +14004,16 @@ Returns all sweeps "result": [ { "tx_index": 58, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "fee_paid_normalized": "0.00600000" } ], @@ -14043,7 +14027,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb` (str, required) - The hash of the transaction to return + + tx_hash: `5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199` (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. @@ -14056,16 +14040,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 58, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "fee_paid_normalized": "0.00600000" } ], @@ -14099,9 +14083,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea", + "tx_hash": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198", "block_index": 138, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14109,14 +14093,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726943590, + "block_time": 1726950185, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "3adb5f6a83dbf36fc41ff713ae0883905bee565d0450041334cb0b35e8d7dc74", + "tx_hash": "ba4be2ba08322daea13f5b8b4710717e27f736da291c8238d4310b7a967668cf", "block_index": 137, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14124,7 +14108,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726943585, + "block_time": 1726950181, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14138,7 +14122,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea` (str, required) - The hash of the transaction to return + + tx_hash: `499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198` (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. @@ -14150,9 +14134,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea", + "tx_hash": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198", "block_index": 138, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14160,7 +14144,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726943590, + "block_time": 1726950185, "fee_fraction_int_normalized": "0.00000000" } } @@ -14190,10 +14174,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", + "tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", "tx_index": 22, "block_index": 135, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14218,13 +14202,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726943577 + "block_time": 1726950172 }, { - "tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", + "tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", "tx_index": 18, "block_index": 131, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14249,13 +14233,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726943560 + "block_time": 1726950155 }, { - "tx_hash": "f8863d06dd1c63af927665e2741a68593285bb4a52bbadf58685b17809c50470", + "tx_hash": "e69f3ddbfd1ba8c631b757819d7664ca2bc7041fcd5a75be8e2711eea2cac9f8", "tx_index": 14, "block_index": 130, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14280,13 +14264,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726943556 + "block_time": 1726950151 }, { - "tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "tx_index": 10, "block_index": 125, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14311,7 +14295,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726943534 + "block_time": 1726950130 } ], "next_cursor": null, @@ -14354,7 +14338,7 @@ Returns the mints by fairminter Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc,bcrt1qkjfngjnf7pr6038cynrarc5kh9cuje48yv3wtm` (str, required) - The addresses to search for + + addresses: `bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh,bcrt1qtxavwjw8l7zg62dpwpj69pl6d2e55eh7c846rr` (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. @@ -14373,8 +14357,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", - "address": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc" + "txid": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "address": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh" }, { "vout": 2, @@ -14382,8 +14366,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", - "address": "bcrt1qkjfngjnf7pr6038cynrarc5kh9cuje48yv3wtm" + "txid": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", + "address": "bcrt1qtxavwjw8l7zg62dpwpj69pl6d2e55eh7c846rr" } ], "next_cursor": null, @@ -14396,7 +14380,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk` (str, required) - The address to search for + + address: `bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779` (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 @@ -14412,28 +14396,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134" + "tx_hash": "facd73ce7e552dab11a369e33253c91a09a63e697ed4542f29c5e0a118eb3a01" }, { - "tx_hash": "cc7990d855f354e057a6e08b954da3db23de867816732e8fc48f06b3fcadb83b" + "tx_hash": "712a9aba1cb503ed1a41fa5c0babfb3e6b649e69cbd2e657530242a61484c913" }, { - "tx_hash": "19c2df8875b48b0feac5ebd32ecd51687724b5f0cd6696c4530be3fe54275942" + "tx_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448" }, { - "tx_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c" + "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d" }, { - "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f" + "tx_hash": "005e41992c61245f5c6c82a7140ca55b6813d522dfdd67fd5bb22b1b144ee77d" }, { - "tx_hash": "9dc5d37ade58fe3fcc4001a7c5a086fc13efa89bbb556610bb78c7d6c2b059a1" + "tx_hash": "e742483b2266e8ade01df73224124c166517189dbb36182c8f2d5ff8960d3f87" }, { - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" }, { - "tx_hash": "29fa7abdb8f36c6ccf566648eecdf35b25c8832dd3e7d04c05cd68cb89a5b9cf" + "tx_hash": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7" } ], "next_cursor": null, @@ -14446,7 +14430,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y` (str, required) - The address to search for. + + address: `bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc` (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. @@ -14459,8 +14443,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 1, - "tx_hash": "5fb7017e22dd99935308749bc42c99dcb2c7f63a000eabcb579f2de68b1a65d5" + "block_index": 2, + "tx_hash": "2d45e6b03b23a3f1ea01231cc3f27bd052b446c1246fefdce01f9faf99e55a4b" } } ``` @@ -14470,7 +14454,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc` (str, required) - The address to search for + + address: `bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh` (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 @@ -14491,7 +14475,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81" + "txid": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387" } ], "next_cursor": null, @@ -14504,7 +14488,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9` (str, required) - Address to get pubkey for. + + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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. @@ -14516,7 +14500,7 @@ Get pubkey for an address. ``` { - "result": "02a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a761" + "result": "03bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb724" } ``` @@ -14525,7 +14509,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf` (str, required) - The transaction hash + + tx_hash: `e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98` (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. @@ -14537,7 +14521,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001010868d36801b7e9ccefaff9e835632724bef8ff179dae145ee0d64a02571a88970300000000ffffffff020000000000000000226a20efd23af66b243324230f7699e2ab650a7995a09ba6f342c89445eeb929c76651680b0a27010000001600144d58139ca58d4e5278dcc90c123825e920a4c7820247304402207b586af9c20ebe66916002d4457616420fa09a3636aff04d5c858dc611669d6202204c63d1f3a0c0f3f632455c02abd8e28fa98efddf8c513e252280783611cd71eb01210352e612ef317c96dc910d7efc93996e313947873e472d8309212310d61a94612200000000" + "result": "020000000001011c47366e343a9e877ad71973dda9dfd1fe3e5684b34d2050f103aa6932f987c60300000000ffffffff020000000000000000226a20cea231665cabd08a82716fe6f464d520b5b5cf11fa08af64b5a40c8a74d38315680b0a2701000000160014bebd760d2e19686fe41856142fc45e3c18bea249024730440220649b9ca4964671c3eb365c42aea2a7d90717d1d6571f1d5ad3e4b1ac9e8da90b0220646fee8e452cea4dc757229333dd9499c3ea97ea59f96e98f0e3794c76848e440121022098f1d02b56e77ca857c5355d804950681dd648a95db1667bedd171bfe91e7000000000" } ``` @@ -14559,7 +14543,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 68546 + "result": 68517 } ``` @@ -14630,26 +14614,26 @@ Returns all mempool events { "result": [ { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "tx_index": 60 } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "memo": null, "quantity": 10000, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "status": "valid", - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "tx_index": 60, "asset_info": { "divisible": true, @@ -14662,19 +14646,19 @@ Returns all mempool events } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "CREDIT", "params": { - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -14686,19 +14670,19 @@ Returns all mempool events } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 193, - "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -14710,27 +14694,27 @@ Returns all mempool events } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726943814.1647968, + "block_time": 1726950434.0695176, "btc_amount": 0, - "data": "020000000000000001000000000000271080c6ffd5588e4548e249935cfdedfb570089a7e433", + "data": "0200000000000000010000000000002710802d892d9d215a3e35d0fffb2b3e7cabdb14d24549", "destination": "", "fee": 10000, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "tx_index": 60, - "utxos_info": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a:1", + "utxos_info": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "memo": null, "asset_info": { "divisible": true, @@ -14774,19 +14758,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "CREDIT", "params": { - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -14808,7 +14792,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a` (str, required) - The hash of the transaction to return + + tx_hash: `e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94` (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 @@ -14828,26 +14812,26 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "tx_index": 60 } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "memo": null, "quantity": 10000, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "status": "valid", - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "tx_index": 60, "asset_info": { "divisible": true, @@ -14860,19 +14844,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "CREDIT", "params": { - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -14884,19 +14868,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 193, - "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -14908,27 +14892,27 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726943814.1647968, + "block_time": 1726950434.0695176, "btc_amount": 0, - "data": "020000000000000001000000000000271080c6ffd5588e4548e249935cfdedfb570089a7e433", + "data": "0200000000000000010000000000002710802d892d9d215a3e35d0fffb2b3e7cabdb14d24549", "destination": "", "fee": 10000, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "tx_index": 60, - "utxos_info": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a:1", + "utxos_info": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "memo": null, "asset_info": { "divisible": true, diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index b8c97320b8..887148dfb0 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -31,6 +31,8 @@ from counterpartycore.lib.messages import dispense # noqa: F401 from counterpartycore.lib.transaction_helper import p2sh_encoding, serializer +logger = logging.getLogger(config.LOGGER_NAME) + # Constants OP_RETURN = b"\x6a" OP_PUSHDATA1 = b"\x4c" @@ -109,13 +111,15 @@ def construct( p2sh_source_multisig_pubkeys_required=None, p2sh_pretx_txid=None, exclude_utxos=None, + op_return_max_size=config.OP_RETURN_MAX_SIZE, ): if TRANSACTION_SERVICE_SINGLETON is None: raise Exception("Transaction not initialized") - return TRANSACTION_SERVICE_SINGLETON.construct( + return construct_transaction( db, tx_info, + TRANSACTION_SERVICE_SINGLETON, encoding, fee_per_kb, estimate_fee_per_kb, @@ -138,6 +142,7 @@ def construct( p2sh_source_multisig_pubkeys_required, p2sh_pretx_txid, exclude_utxos, + op_return_max_size, ) @@ -206,6 +211,178 @@ def sort_unspent_txouts(unspent, dust_size=config.DEFAULT_REGULAR_DUST_SIZE): return unspent +def construct_coin_selection( + encoding, + data_array, + source, + allow_unconfirmed_inputs, + unspent_tx_hash, + inputs_set, + fee_per_kb, + estimate_fee_per_kb, + estimate_fee_per_kb_nblocks, + exact_fee, + size_for_fee, + fee_provided, + destination_btc_out, + data_btc_out, + regular_dust_size, + multisig_dust_size, + disable_utxo_locks, + exclude_utxos, + lock_utxos_instance, +): + # Array of UTXOs, as retrieved by listunspent function from bitcoind + if inputs_set: + use_inputs = unspent = inputs_set + else: + if unspent_tx_hash is not None: + unspent = backend.addrindexrs.get_unspent_txouts( + source, + unconfirmed=allow_unconfirmed_inputs, + unspent_tx_hash=unspent_tx_hash, + ) + else: + unspent = backend.addrindexrs.get_unspent_txouts( + source, unconfirmed=allow_unconfirmed_inputs + ) + logger.trace(f"TX Construct - Unspent UTXOs: {[print_coin(coin) for coin in unspent]}") + if len(unspent) == 0: + raise exceptions.BalanceError( + f"Insufficient {config.BTC} at address {source}: no unspent outputs." + ) + + unspent = lock_utxos_instance.filter_unspents(source, unspent, exclude_utxos) + + if encoding == "multisig": + dust = multisig_dust_size + else: + dust = regular_dust_size + + unspent = sort_unspent_txouts(unspent, dust_size=dust) + # self.logger.debug(f"Sorted candidate UTXOs: {[print_coin(coin) for coin in unspent]}") + use_inputs = unspent + + # use backend estimated fee_per_kb + if estimate_fee_per_kb: + estimated_fee_per_kb = backend.bitcoind.fee_per_kb( + estimate_fee_per_kb_nblocks, config.ESTIMATE_FEE_MODE + ) + if estimated_fee_per_kb is not None: + fee_per_kb = max( + estimated_fee_per_kb, fee_per_kb + ) # never drop below the default fee_per_kb + + logger.trace(f"TX Construct - Fee/KB {fee_per_kb / config.UNIT:.8f}") + + inputs = [] + btc_in = 0 + change_quantity = 0 + sufficient_funds = False + final_fee = fee_per_kb + desired_input_count = 1 + + if encoding == "multisig" and data_array and util.enabled("bytespersigop"): + desired_input_count = len(data_array) * 2 + + # pop inputs until we can pay for the fee + use_inputs_index = 0 + for coin in use_inputs: + logger.trace(f"TX Construct - New input: {print_coin(coin)}") + inputs.append(coin) + btc_in += round(coin["amount"] * config.UNIT) + + # If exact fee is specified, use that. Otherwise, calculate size of tx + # and base fee on that (plus provide a minimum fee for selling BTC). + size = 181 * len(inputs) + size_for_fee + 10 + if exact_fee: + final_fee = exact_fee + else: + necessary_fee = int(size / 1000 * fee_per_kb) + final_fee = max(fee_provided, necessary_fee) + logger.trace( + f"TX Construct - final_fee inputs: {len(inputs)} size: {size} final_fee {final_fee}" + ) + + # Check if good. + btc_out = destination_btc_out + data_btc_out + change_quantity = btc_in - (btc_out + final_fee) + logger.trace( + f"TX Construct - Size: {size} Fee: {final_fee / config.UNIT:.8f} Change quantity: {change_quantity / config.UNIT:.8f} BTC" + ) + + # If after the sum of all the utxos the change is dust, then it will be added to the miners instead of returning an error + if ( + (use_inputs_index == len(use_inputs) - 1) + and (change_quantity > 0) + and (change_quantity < regular_dust_size) + ): + sufficient_funds = True + final_fee = final_fee + change_quantity + change_quantity = 0 + # If change is necessary, must not be a dust output. + elif change_quantity == 0 or change_quantity >= regular_dust_size: + sufficient_funds = True + if len(inputs) >= desired_input_count: + break + + use_inputs_index = use_inputs_index + 1 + + if not sufficient_funds: + # Approximate needed change, fee by with most recently calculated + # quantities. + btc_out = destination_btc_out + data_btc_out + total_btc_out = btc_out + max(change_quantity, 0) + final_fee + + need = f"{D(total_btc_out) / D(config.UNIT)} {config.BTC}" + include_fee = f"{D(final_fee) / D(config.UNIT)} {config.BTC}" + available = f"{D(btc_in) / D(config.UNIT)} {config.BTC}" + error_message = f"Insufficient {config.BTC} at address {source}. Need: {need} (Including fee: {include_fee}), available: {available}." + error_message += f" These fees are estimated for a confirmation target of {estimate_fee_per_kb_nblocks} blocks, you can reduce them by using the `confirmation_target` parameter with a higher value or by manually setting the fees with the `fee` parameter." + + if not allow_unconfirmed_inputs: + error_message += " To spend unconfirmed coins, use the flag `--unconfirmed`. (Unconfirmed coins cannot be spent from multi‐sig addresses.)" + + raise exceptions.BalanceError(error_message) + + if not disable_utxo_locks: + lock_utxos_instance.lock_utxos(source, inputs) + + # ensure inputs have scriptPubKey + # this is not provided by indexd + inputs = script.ensure_script_pub_key_for_inputs(inputs) + + return inputs, change_quantity, btc_in, final_fee + + +def select_any_coin_from_source( + source, + lock_utxos_instance, + allow_unconfirmed_inputs=True, + disable_utxo_locks=False, + exclude_utxos=None, +): + """Get the first (biggest) input from the source address""" + + # Array of UTXOs, as retrieved by listunspent function from bitcoind + unspent = backend.addrindexrs.get_unspent_txouts(source, unconfirmed=allow_unconfirmed_inputs) + + unspent = lock_utxos_instance.filter_unspents(source, unspent, exclude_utxos) + + # sort + unspent = sort_unspent_txouts(unspent, dust_size=config.DEFAULT_REGULAR_DUST_SIZE) + + # use the first input + input = unspent[0] + if input is None: + return None + + if not disable_utxo_locks: + lock_utxos_instance.lock_utxos(source, [input]) + + return input + + def pubkeyhash_to_pubkey(pubkeyhash, provided_pubkeys=None): # Search provided pubkeys. if provided_pubkeys: @@ -280,339 +457,457 @@ def get_dust_return_pubkey(source, provided_pubkeys): return dust_return_pubkey -# set higher than the max number of UTXOs we should expect to -# manage in an aging cache for any one source address, at any one period -# UTXO_P2SH_ENCODING_LOCKS is TTLCache for UTXOs that are used for chaining p2sh encoding -# instead of a simple (txid, vout) key we use [(vin.prevout.hash, vin.prevout.n) for vin tx1.vin] -# we cache the make_outkey_vin to avoid having to fetch raw txs too often - +def determine_encoding( + data, + prefix, + desired_encoding="auto", + op_return_max_size=config.OP_RETURN_MAX_SIZE, + old_style_api=None, +): + # Data encoding methods (choose and validate). + if not data: + return None -class TransactionService: - def __init__( - self, - backend, - prefix, - ps2h_dust_return_pubkey, - utxo_locks_max_age=3.0, - utxo_locks_max_addresses=1000, - utxo_locks_per_address_maxsize=5000, - default_regular_dust_size=config.DEFAULT_REGULAR_DUST_SIZE, - default_multisig_dust_size=config.DEFAULT_MULTISIG_DUST_SIZE, - estimate_fee_mode=config.ESTIMATE_FEE_MODE, - op_return_max_size=config.OP_RETURN_MAX_SIZE, - utxo_p2sh_encoding_locks=None, - utxo_p2sh_encoding_locks_cache=None, - utxo_locks=None, - ): - self.logger = logging.getLogger( - config.LOGGER_NAME - ) # has to be config.LOGGER_NAME or integration tests fail - self.backend = backend + if desired_encoding == "auto": + if len(data) + len(prefix) <= op_return_max_size: + encoding = "opreturn" + else: + encoding = ( + "p2sh" if not old_style_api and util.enabled("p2sh_encoding") else "multisig" + ) # p2sh is not possible with old_style_api + else: + encoding = desired_encoding + + if encoding == "p2sh" and not util.enabled("p2sh_encoding"): + raise exceptions.TransactionError("P2SH encoding not enabled yet") + + elif encoding not in ("pubkeyhash", "multisig", "opreturn", "p2sh"): + raise exceptions.TransactionError("Unknown encoding‐scheme.") + + return encoding + + +def prepare_inputs( + encoding, + prefix, + data, + destination_outputs, + data_array, + source, + p2sh_pretx_txid, + allow_unconfirmed_inputs, + unspent_tx_hash, + inputs_set, + fee_per_kb, + estimate_fee_per_kb, + estimate_fee_per_kb_nblocks, + exact_fee, + fee_provided, + destination_btc_out, + data_btc_out, + regular_dust_size, + multisig_dust_size, + disable_utxo_locks, + exclude_utxos, + utxo_locks_instance, +): + btc_in = 0 + final_fee = 0 + # Calculate collective size of outputs, for fee calculation + p2pkhsize = 25 + 9 + if encoding == "multisig": + data_output_size = 81 # 71 for the data + elif encoding == "opreturn": + # prefix + data + 10 bytes script overhead + data_output_size = len(prefix) + 10 + if data is not None: + data_output_size = data_output_size + len(data) + else: + data_output_size = p2pkhsize # Pay‐to‐PubKeyHash (25 for the data?) - self.utxo_p2sh_encoding_locks = utxo_p2sh_encoding_locks or ThreadSafeTTLCache(10000, 180) - self.utxo_p2sh_encoding_locks_cache = utxo_p2sh_encoding_locks_cache or ThreadSafeTTLCache( - 1000, 600 + if encoding == "p2sh": + # calculate all the p2sh outputs + size_for_fee, datatx_necessary_fee, data_value, data_btc_out = ( + p2sh_encoding.calculate_outputs(destination_outputs, data_array, fee_per_kb, exact_fee) ) - self.utxo_locks = utxo_locks - - self.utxo_locks_max_age = utxo_locks_max_age - self.utxo_locks_max_addresses = utxo_locks_max_addresses - self.utxo_locks_per_address_maxsize = utxo_locks_per_address_maxsize - - self.default_regular_dust_size = default_regular_dust_size - self.default_multisig_dust_size = default_multisig_dust_size - self.estimate_fee_mode = estimate_fee_mode + # replace the data value + # data_output = (data_array, data_value) + else: + sum_data_output_size = len(data_array) * data_output_size + size_for_fee = ((25 + 9) * len(destination_outputs)) + sum_data_output_size - self.prefix = prefix - self.op_return_max_size = op_return_max_size - self.ps2h_dust_return_pubkey = ps2h_dust_return_pubkey + if not (encoding == "p2sh" and p2sh_pretx_txid): + inputs, change_quantity, n_btc_in, n_final_fee = construct_coin_selection( + encoding, + data_array, + source, + allow_unconfirmed_inputs, + unspent_tx_hash, + inputs_set, + fee_per_kb, + estimate_fee_per_kb, + estimate_fee_per_kb_nblocks, + exact_fee, + size_for_fee, + fee_provided, + destination_btc_out, + data_btc_out, + regular_dust_size, + multisig_dust_size, + disable_utxo_locks, + exclude_utxos, + utxo_locks_instance, + ) + btc_in = n_btc_in + final_fee = n_final_fee + else: + # when encoding is P2SH and the pretx txid is passed we can skip coinselection + inputs, change_quantity = None, None - def make_outkey_vin_txid(self, txid, vout): - if (txid, vout) not in self.utxo_p2sh_encoding_locks_cache: - txhex = self.backend.bitcoind.getrawtransaction(txid, verbose=False) - self.utxo_p2sh_encoding_locks_cache.set((txid, vout), make_outkey_vin(txhex, vout)) + return inputs, change_quantity, btc_in, final_fee - return self.utxo_p2sh_encoding_locks_cache.get((txid, vout)) - def construct_coin_selection( - self, - encoding, - data_array, - source, - allow_unconfirmed_inputs, - unspent_tx_hash, - inputs_set, - fee_per_kb, - estimate_fee_per_kb, - estimate_fee_per_kb_nblocks, - exact_fee, - size_for_fee, - fee_provided, - destination_btc_out, - data_btc_out, - regular_dust_size, - disable_utxo_locks, - exclude_utxos, - ): - # Array of UTXOs, as retrieved by listunspent function from bitcoind - if inputs_set: - use_inputs = unspent = inputs_set - else: - if unspent_tx_hash is not None: - unspent = self.backend.addrindexrs.get_unspent_txouts( - source, - unconfirmed=allow_unconfirmed_inputs, - unspent_tx_hash=unspent_tx_hash, - ) +def compute_destinations_and_values( + destination_outputs, encoding, multisig_dust_size, regular_dust_size, provided_pubkeys +): + # Destination outputs. + # Replace multi‐sig addresses with multi‐sig pubkeys. Check that the + # destination output isn’t a dust output. Set null values to dust size. + destination_outputs_new = [] + if encoding != "p2sh": + for address, value in destination_outputs: + # Value. + if script.is_multisig(address): + dust_size = multisig_dust_size else: - unspent = self.backend.addrindexrs.get_unspent_txouts( - source, unconfirmed=allow_unconfirmed_inputs + dust_size = regular_dust_size + if value == None: # noqa: E711 + value = dust_size # noqa: PLW2901 + elif value < dust_size: + raise exceptions.TransactionError("Destination output is dust.") + # Address. + script.validate(address) + if script.is_multisig(address): + destination_outputs_new.append( + ( + multisig_pubkeyhashes_to_pubkeys(address, provided_pubkeys), + value, + ) ) - self.logger.trace( - f"TX Construct - Unspent UTXOs: {[print_coin(coin) for coin in unspent]}" - ) - if len(unspent) == 0: - raise exceptions.BalanceError( - f"Insufficient {config.BTC} at address {source}: no unspent outputs." + else: + destination_outputs_new.append((address, value)) + return destination_outputs_new + + +def prepare_data_output( + data, + source, + ps2h_dust_return_pubkey, + prefix, + encoding, + multisig_dust_size, + regular_dust_size, + provided_pubkeys, + source_is_p2sh, + dust_return_pubkey, + op_return_value, +): + data_value = 0 + data_array = [] + if data: + # @TODO: p2sh encoding require signable dust key + if encoding == "multisig": + # dust_return_pubkey should be set or explicitly set to False to use the default configured for the node + # the default for the node is optional so could fail + if (source_is_p2sh and dust_return_pubkey is None) or ( + dust_return_pubkey is False and ps2h_dust_return_pubkey is None + ): + raise exceptions.TransactionError( + "Can't use multisig encoding when source is P2SH and no dust_return_pubkey is provided." ) + elif dust_return_pubkey is False: + dust_return_pubkey = binascii.unhexlify(ps2h_dust_return_pubkey) - filter_unspents_utxo_locks = [] - if self.utxo_locks is not None and source in self.utxo_locks: - filter_unspents_utxo_locks = self.utxo_locks[source].keys() - filter_unspents_p2sh_locks = self.utxo_p2sh_encoding_locks.keys() # filter out any locked UTXOs to prevent creating transactions that spend the same UTXO when they're created at the same time - filtered_unspent = [] - for output in unspent: - if ( - make_outkey(output) not in filter_unspents_utxo_locks - and self.make_outkey_vin_txid(output["txid"], output["vout"]) - not in filter_unspents_p2sh_locks - and ( - not exclude_utxos - or not isinstance(exclude_utxos, str) - or f"{output['txid']}:{output['vout']}" not in exclude_utxos.split(",") - ) - ): - filtered_unspent.append(output) - unspent = filtered_unspent - - if encoding == "multisig": - dust = self.default_multisig_dust_size + if not dust_return_pubkey: + if encoding == "multisig" or encoding == "p2sh" and not source_is_p2sh: + dust_return_pubkey = get_dust_return_pubkey(source, provided_pubkeys) else: - dust = self.default_regular_dust_size + dust_return_pubkey = None + + # Divide data into chunks. + if encoding == "pubkeyhash": + # Prefix is also a suffix here. + chunk_size = 20 - 1 - 8 + elif encoding == "multisig": + # Two pubkeys, minus length byte, minus prefix, minus two nonces, + # minus two sign bytes. + chunk_size = (33 * 2) - 1 - 8 - 2 - 2 + elif encoding == "p2sh": + pubkeylength = -1 + if dust_return_pubkey is not None: + pubkeylength = len(dust_return_pubkey) + + chunk_size = p2sh_encoding.maximum_data_chunk_size(pubkeylength) + elif encoding == "opreturn": + chunk_size = config.OP_RETURN_MAX_SIZE + if len(data) + len(prefix) > chunk_size: + raise exceptions.TransactionError("One `OP_RETURN` output per transaction.") + data_array = list(chunks(data, chunk_size)) - unspent = sort_unspent_txouts(unspent, dust_size=dust) - # self.logger.debug(f"Sorted candidate UTXOs: {[print_coin(coin) for coin in unspent]}") - use_inputs = unspent + # Data outputs. + if encoding == "multisig": + data_value = multisig_dust_size + elif encoding == "p2sh": + data_value = 0 # this will be calculated later + elif encoding == "opreturn": + data_value = op_return_value + else: + # Pay‐to‐PubKeyHash, e.g. + data_value = regular_dust_size + else: + dust_return_pubkey = None + + return data_value, data_array, dust_return_pubkey + + +def serialize_p2sh( + inputs, + source, + source_address, + destination_outputs, + data_output, + change_output, + dust_return_pubkey, + p2sh_source_multisig_pubkeys, + p2sh_source_multisig_pubkeys_required, + p2sh_pretx_txid, + segwit, + exclude_utxos, + utxo_locks_instance, +): + pretx_txid = None + unsigned_pretx_hex = None + unsigned_tx_hex = None + + assert not (segwit and p2sh_pretx_txid) # shouldn't do old style with segwit enabled - # use backend estimated fee_per_kb - if estimate_fee_per_kb: - estimated_fee_per_kb = self.backend.bitcoind.fee_per_kb( - estimate_fee_per_kb_nblocks, config.ESTIMATE_FEE_MODE + if p2sh_pretx_txid: + pretx_txid = ( + p2sh_pretx_txid + if isinstance(p2sh_pretx_txid, bytes) + else binascii.unhexlify(p2sh_pretx_txid) + ) + unsigned_pretx = None + else: + destination_value_sum = sum([value for (_destination, value) in destination_outputs]) + source_value = destination_value_sum + + if change_output: + # add the difference between source and destination to the change + change_value = change_output[1] + (destination_value_sum - source_value) + change_output = (change_output[0], change_value) + + unsigned_pretx = serializer.serialise_p2sh_pretx( + inputs, + source=source_address, + source_value=source_value, + data_output=data_output, + change_output=change_output, + pubkey=dust_return_pubkey, + multisig_pubkeys=p2sh_source_multisig_pubkeys, + multisig_pubkeys_required=p2sh_source_multisig_pubkeys_required, + ) + unsigned_pretx_hex = binascii.hexlify(unsigned_pretx).decode("utf-8") + + # with segwit we already know the txid and can return both + if segwit: + # pretx_txid = hashlib.sha256(unsigned_pretx).digest() # this should be segwit txid + ptx = CTransaction.stream_deserialize( + io.BytesIO(unsigned_pretx) + ) # could be a non-segwit tx anyways + txid_ba = bytearray(ptx.GetTxid()) + txid_ba.reverse() + pretx_txid = bytes(txid_ba) # gonna leave the malleability problem to upstream + logger.debug(f"pretx_txid {pretx_txid}") + + if unsigned_pretx: + # we set a long lock on this, don't want other TXs to spend from it + utxo_locks_instance.lock_p2sh_utxos(unsigned_pretx) + + # only generate the data TX if we have the pretx txId + if pretx_txid: + source_input = None + if script.is_p2sh(source): + source_input = select_any_coin_from_source( + source, utxo_locks_instance, exclude_utxos=exclude_utxos ) - if estimated_fee_per_kb is not None: - fee_per_kb = max( - estimated_fee_per_kb, fee_per_kb - ) # never drop below the default fee_per_kb - - self.logger.trace(f"TX Construct - Fee/KB {fee_per_kb / config.UNIT:.8f}") - - inputs = [] - btc_in = 0 - change_quantity = 0 - sufficient_funds = False - final_fee = fee_per_kb - desired_input_count = 1 - - if encoding == "multisig" and data_array and util.enabled("bytespersigop"): - desired_input_count = len(data_array) * 2 - - # pop inputs until we can pay for the fee - use_inputs_index = 0 - for coin in use_inputs: - self.logger.trace(f"TX Construct - New input: {print_coin(coin)}") - inputs.append(coin) - btc_in += round(coin["amount"] * config.UNIT) - - # If exact fee is specified, use that. Otherwise, calculate size of tx - # and base fee on that (plus provide a minimum fee for selling BTC). - size = 181 * len(inputs) + size_for_fee + 10 - if exact_fee: - final_fee = exact_fee - else: - necessary_fee = int(size / 1000 * fee_per_kb) - final_fee = max(fee_provided, necessary_fee) - self.logger.trace( - f"TX Construct - final_fee inputs: {len(inputs)} size: {size} final_fee {final_fee}" + if not source_input: + raise exceptions.TransactionError( + "Unable to select source input for p2sh source address" ) - # Check if good. - btc_out = destination_btc_out + data_btc_out - change_quantity = btc_in - (btc_out + final_fee) - self.logger.trace( - f"TX Construct - Size: {size} Fee: {final_fee / config.UNIT:.8f} Change quantity: {change_quantity / config.UNIT:.8f} BTC" - ) + unsigned_datatx = serializer.serialise_p2sh_datatx( + pretx_txid, + source=source_address, + source_input=source_input, + destination_outputs=destination_outputs, + data_output=data_output, + pubkey=dust_return_pubkey, + multisig_pubkeys=p2sh_source_multisig_pubkeys, + multisig_pubkeys_required=p2sh_source_multisig_pubkeys_required, + ) + unsigned_datatx_hex = binascii.hexlify(unsigned_datatx).decode("utf-8") - # If after the sum of all the utxos the change is dust, then it will be added to the miners instead of returning an error - if ( - (use_inputs_index == len(use_inputs) - 1) - and (change_quantity > 0) - and (change_quantity < regular_dust_size) - ): - sufficient_funds = True - final_fee = final_fee + change_quantity - change_quantity = 0 - # If change is necessary, must not be a dust output. - elif change_quantity == 0 or change_quantity >= regular_dust_size: - sufficient_funds = True - if len(inputs) >= desired_input_count: - break - - use_inputs_index = use_inputs_index + 1 - - if not sufficient_funds: - # Approximate needed change, fee by with most recently calculated - # quantities. - btc_out = destination_btc_out + data_btc_out - total_btc_out = btc_out + max(change_quantity, 0) + final_fee - - need = f"{D(total_btc_out) / D(config.UNIT)} {config.BTC}" - include_fee = f"{D(final_fee) / D(config.UNIT)} {config.BTC}" - available = f"{D(btc_in) / D(config.UNIT)} {config.BTC}" - error_message = f"Insufficient {config.BTC} at address {source}. Need: {need} (Including fee: {include_fee}), available: {available}." - error_message += f" These fees are estimated for a confirmation target of {estimate_fee_per_kb_nblocks} blocks, you can reduce them by using the `confirmation_target` parameter with a higher value or by manually setting the fees with the `fee` parameter." - - if not allow_unconfirmed_inputs: - error_message += " To spend unconfirmed coins, use the flag `--unconfirmed`. (Unconfirmed coins cannot be spent from multi‐sig addresses.)" - - raise exceptions.BalanceError(error_message) + # let the rest of the code work it's magic on the data tx + unsigned_tx_hex = unsigned_datatx_hex + return pretx_txid, unsigned_pretx_hex, unsigned_tx_hex + else: + # we're just gonna return the pretx, it doesn't require any of the further checks + return pretx_txid, unsigned_pretx_hex, None - # Lock the source's inputs (UTXOs) chosen for this transaction - if self.utxo_locks is not None and not disable_utxo_locks: - if source not in self.utxo_locks: - self.utxo_locks[source] = ThreadSafeTTLCache( - self.utxo_locks_per_address_maxsize, self.utxo_locks_max_age - ) - for input in inputs: - self.utxo_locks[source].set(make_outkey(input), input) +def check_transaction_sanity( + db, source, tx_info, unsigned_tx_hex, encoding, inputs, utxo_locks_instance +): + (desired_source, desired_destination_outputs, desired_data) = tx_info + desired_source = script.make_canonical(desired_source) + desired_destination = ( + script.make_canonical(desired_destination_outputs[0][0]) + if desired_destination_outputs + else "" + ) + # NOTE: Include change in destinations for BTC transactions. + # if change_output and not desired_data and desired_destination != config.UNSPENDABLE: + # if desired_destination == '': + # desired_destination = desired_source + # else: + # desired_destination += f'-{desired_source}' + # NOTE + if desired_data == None: # noqa: E711 + desired_data = b"" + + # Parsed transaction info. + try: + parsed_source, parsed_destination, x, y, parsed_data, extra = ( + # TODO: inject + gettxinfo.get_tx_info_new( + db, + deserialize.deserialize_tx(unsigned_tx_hex, use_txid=True), + util.CURRENT_BLOCK_INDEX, + p2sh_is_segwit=script.is_bech32(desired_source), + composing=True, + ) + ) - # list_unspent = [make_outkey(coin) for coin in unspent] - # list_used = [make_outkey(input) for input in inputs] - # list_locked = list(self.utxo_locks[source].keys()) - # self.logger.debug( - # f"UTXO locks: Potentials ({len(unspent)}): {list_unspent}, Used: {list_used}, locked UTXOs: {list_locked}" - # ) + if encoding == "p2sh": + # make_canonical can't determine the address, so we blindly change the desired to the parsed + desired_source = parsed_source + except exceptions.BTCOnlyError: + # Skip BTC‐only transactions. + return + + desired_source = script.make_canonical(desired_source) + + # Check desired info against parsed info. + desired = (desired_source, desired_destination, desired_data) + parsed = (parsed_source, parsed_destination, parsed_data) + if desired != parsed: + utxo_locks_instance.unlock_utxos(source, inputs) + + raise exceptions.TransactionError( + f"Constructed transaction does not parse correctly: {desired} ≠ {parsed}" + ) - # ensure inputs have scriptPubKey - # this is not provided by indexd - inputs = script.ensure_script_pub_key_for_inputs(inputs) - return inputs, change_quantity, btc_in, final_fee +def construct_transaction( + db, + tx_info, + utxo_locks_instance, + encoding="auto", + fee_per_kb=config.DEFAULT_FEE_PER_KB, + estimate_fee_per_kb=None, + estimate_fee_per_kb_nblocks=config.ESTIMATE_FEE_CONF_TARGET, + regular_dust_size=config.DEFAULT_REGULAR_DUST_SIZE, + multisig_dust_size=config.DEFAULT_MULTISIG_DUST_SIZE, + op_return_value=config.DEFAULT_OP_RETURN_VALUE, + exact_fee=None, + fee_provided=0, + provided_pubkeys=None, + dust_return_pubkey=None, + allow_unconfirmed_inputs=False, + unspent_tx_hash=None, + inputs_set=None, + disable_utxo_locks=False, + extended_tx_info=False, + old_style_api=None, + segwit=False, + p2sh_source_multisig_pubkeys=None, + p2sh_source_multisig_pubkeys_required=None, + p2sh_pretx_txid=None, + exclude_utxos=None, + op_return_max_size=config.OP_RETURN_MAX_SIZE, +): + prefix = config.PREFIX + ps2h_dust_return_pubkey = config.P2SH_DUST_RETURN_PUBKEY - def select_any_coin_from_source( - self, source, allow_unconfirmed_inputs=True, disable_utxo_locks=False - ): - """Get the first (biggest) input from the source address""" + if estimate_fee_per_kb is None: + estimate_fee_per_kb = config.ESTIMATE_FEE_PER_KB - # Array of UTXOs, as retrieved by listunspent function from bitcoind - unspent = self.backend.addrindexrs.get_unspent_txouts( - source, unconfirmed=allow_unconfirmed_inputs - ) + # lazy assign from config, because when set as default it's evaluated before it's configured + if old_style_api is None: + old_style_api = config.OLD_STYLE_API - filter_unspents_utxo_locks = [] - if self.utxo_locks is not None and source in self.utxo_locks: - filter_unspents_utxo_locks = self.utxo_locks[source].keys() + (source, destination_outputs, data) = tx_info - # filter out any locked UTXOs to prevent creating transactions that spend the same UTXO when they're created at the same time - filtered_unspent = [] - for output in unspent: - if make_outkey(output) not in filter_unspents_utxo_locks: - filtered_unspent.append(output) - unspent = filtered_unspent - - # sort - unspent = sort_unspent_txouts(unspent, dust_size=config.DEFAULT_REGULAR_DUST_SIZE) + if dust_return_pubkey: + dust_return_pubkey = binascii.unhexlify(dust_return_pubkey) - # use the first input - input = unspent[0] - if input is None: - return None + if p2sh_source_multisig_pubkeys: + p2sh_source_multisig_pubkeys = [binascii.unhexlify(p) for p in p2sh_source_multisig_pubkeys] - # Lock the source's inputs (UTXOs) chosen for this transaction - if self.utxo_locks is not None and not disable_utxo_locks: - if source not in self.utxo_locks: - # TODO: dont ref cache tools directly - self.utxo_locks[source] = cachetools.TTLCache( - self.utxo_locks_per_address_maxsize, self.utxo_locks_max_age - ) + # Source. + # If public key is necessary for construction of (unsigned) + # transaction, use the public key provided, or find it from the + # blockchain. + if source: + script.validate(source) - self.utxo_locks[source].set(make_outkey(input), input) + source_is_p2sh = script.is_p2sh(source) - return input + # Normalize source + if script.is_multisig(source): + source_address = multisig_pubkeyhashes_to_pubkeys(source, provided_pubkeys) + else: + source_address = source - def determine_encoding(self, data, desired_encoding="auto", old_style_api=None): - # Data encoding methods (choose and validate). - if not data: - return None + # Sanity checks. + if exact_fee and not isinstance(exact_fee, int): + raise exceptions.TransactionError("Exact fees must be in satoshis.") + if not isinstance(fee_provided, int): + raise exceptions.TransactionError("Fee provided must be in satoshis.") - if desired_encoding == "auto": - if len(data) + len(self.prefix) <= self.op_return_max_size: - encoding = "opreturn" - else: - encoding = ( - "p2sh" if not old_style_api and util.enabled("p2sh_encoding") else "multisig" - ) # p2sh is not possible with old_style_api - else: - encoding = desired_encoding + """Determine encoding method""" - if encoding == "p2sh" and not util.enabled("p2sh_encoding"): - raise exceptions.TransactionError("P2SH encoding not enabled yet") + encoding = determine_encoding(data, prefix, encoding, op_return_max_size, old_style_api) + if encoding: + logger.debug(f"TX Construct - Constructing `{encoding.upper()}` transaction from {source}.") + else: + logger.debug(f"TX Construct - Constructing transaction from {source}.") - elif encoding not in ("pubkeyhash", "multisig", "opreturn", "p2sh"): - raise exceptions.TransactionError("Unknown encoding‐scheme.") + """Destinations""" - return encoding + destination_outputs = compute_destinations_and_values( + destination_outputs, encoding, multisig_dust_size, regular_dust_size, provided_pubkeys + ) + destination_btc_out = sum([value for address, value in destination_outputs]) - def compute_destinations_and_values( - self, destination_outputs, encoding, multisig_dust_size, regular_dust_size, provided_pubkeys - ): - # Destination outputs. - # Replace multi‐sig addresses with multi‐sig pubkeys. Check that the - # destination output isn’t a dust output. Set null values to dust size. - destination_outputs_new = [] - if encoding != "p2sh": - for address, value in destination_outputs: - # Value. - if script.is_multisig(address): - dust_size = multisig_dust_size - else: - dust_size = regular_dust_size - if value == None: # noqa: E711 - value = dust_size # noqa: PLW2901 - elif value < dust_size: - raise exceptions.TransactionError("Destination output is dust.") - - print("regular_dust_size", regular_dust_size) - print("multisig_dust_size", multisig_dust_size) - print("dust_size", dust_size) - - # Address. - script.validate(address) - if script.is_multisig(address): - destination_outputs_new.append( - ( - multisig_pubkeyhashes_to_pubkeys(address, provided_pubkeys), - value, - ) - ) - else: - destination_outputs_new.append((address, value)) - return destination_outputs_new + """Data""" - def prepare_data_output( - self, + data_value, data_array, dust_return_pubkey = prepare_data_output( data, source, + ps2h_dust_return_pubkey, + prefix, encoding, multisig_dust_size, regular_dust_size, @@ -620,67 +915,27 @@ def prepare_data_output( source_is_p2sh, dust_return_pubkey, op_return_value, - ): - data_value = 0 - data_array = [] - if data: - # @TODO: p2sh encoding require signable dust key - if encoding == "multisig": - # dust_return_pubkey should be set or explicitly set to False to use the default configured for the node - # the default for the node is optional so could fail - if (source_is_p2sh and dust_return_pubkey is None) or ( - dust_return_pubkey is False and self.ps2h_dust_return_pubkey is None - ): - raise exceptions.TransactionError( - "Can't use multisig encoding when source is P2SH and no dust_return_pubkey is provided." - ) - elif dust_return_pubkey is False: - dust_return_pubkey = binascii.unhexlify(self.ps2h_dust_return_pubkey) + ) - if not dust_return_pubkey: - if encoding == "multisig" or encoding == "p2sh" and not source_is_p2sh: - dust_return_pubkey = get_dust_return_pubkey(source, provided_pubkeys) - else: - dust_return_pubkey = None - - # Divide data into chunks. - if encoding == "pubkeyhash": - # Prefix is also a suffix here. - chunk_size = 20 - 1 - 8 - elif encoding == "multisig": - # Two pubkeys, minus length byte, minus prefix, minus two nonces, - # minus two sign bytes. - chunk_size = (33 * 2) - 1 - 8 - 2 - 2 - elif encoding == "p2sh": - pubkeylength = -1 - if dust_return_pubkey is not None: - pubkeylength = len(dust_return_pubkey) - - chunk_size = p2sh_encoding.maximum_data_chunk_size(pubkeylength) - elif encoding == "opreturn": - chunk_size = config.OP_RETURN_MAX_SIZE - if len(data) + len(self.prefix) > chunk_size: - raise exceptions.TransactionError("One `OP_RETURN` output per transaction.") - data_array = list(chunks(data, chunk_size)) - - # Data outputs. - if encoding == "multisig": - data_value = multisig_dust_size - elif encoding == "p2sh": - data_value = 0 # this will be calculated later - elif encoding == "opreturn": - data_value = op_return_value - else: - # Pay‐to‐PubKeyHash, e.g. - data_value = regular_dust_size - else: - dust_return_pubkey = None + if encoding == "p2sh": + _size_for_fee, _datatx_necessary_fee, data_value, data_btc_out = ( + p2sh_encoding.calculate_outputs(destination_outputs, data_array, fee_per_kb, exact_fee) + ) + # replace the data value + data_output = (data_array, data_value) + else: + data_output = (data_array, data_value) if len(data_array) > 0 else None + data_btc_out = data_value * len(data_array) - return data_value, data_array, dust_return_pubkey + logger.trace( + f"TX Construct - data_btc_out={data_btc_out} (data_value={data_value} len(data_array)={len(data_array)})" + ) - def prepare_inputs( - self, + """Inputs""" + + inputs, change_quantity, btc_in, final_fee = prepare_inputs( encoding, + prefix, data, destination_outputs, data_array, @@ -697,401 +952,165 @@ def prepare_inputs( destination_btc_out, data_btc_out, regular_dust_size, + multisig_dust_size, disable_utxo_locks, exclude_utxos, - ): - btc_in = 0 - final_fee = 0 - # Calculate collective size of outputs, for fee calculation - p2pkhsize = 25 + 9 - if encoding == "multisig": - data_output_size = 81 # 71 for the data - elif encoding == "opreturn": - # prefix + data + 10 bytes script overhead - data_output_size = len(self.prefix) + 10 - if data is not None: - data_output_size = data_output_size + len(data) - else: - data_output_size = p2pkhsize # Pay‐to‐PubKeyHash (25 for the data?) + utxo_locks_instance, + ) - if encoding == "p2sh": - # calculate all the p2sh outputs - size_for_fee, datatx_necessary_fee, data_value, data_btc_out = ( - p2sh_encoding.calculate_outputs( - destination_outputs, data_array, fee_per_kb, exact_fee - ) - ) - # replace the data value - # data_output = (data_array, data_value) - else: - sum_data_output_size = len(data_array) * data_output_size - size_for_fee = ((25 + 9) * len(destination_outputs)) + sum_data_output_size + """Finish""" - if not (encoding == "p2sh" and p2sh_pretx_txid): - inputs, change_quantity, n_btc_in, n_final_fee = self.construct_coin_selection( - encoding, - data_array, - source, - allow_unconfirmed_inputs, - unspent_tx_hash, - inputs_set, - fee_per_kb, - estimate_fee_per_kb, - estimate_fee_per_kb_nblocks, - exact_fee, - size_for_fee, - fee_provided, - destination_btc_out, - data_btc_out, - regular_dust_size, - disable_utxo_locks, - exclude_utxos, - ) - btc_in = n_btc_in - final_fee = n_final_fee - else: - # when encoding is P2SH and the pretx txid is passed we can skip coinselection - inputs, change_quantity = None, None - - return inputs, change_quantity, btc_in, final_fee - - def check_transaction_sanity(self, db, source, tx_info, unsigned_tx_hex, encoding, inputs): - (desired_source, desired_destination_outputs, desired_data) = tx_info - desired_source = script.make_canonical(desired_source) - desired_destination = ( - script.make_canonical(desired_destination_outputs[0][0]) - if desired_destination_outputs - else "" + if change_quantity: + change_output = (source_address, change_quantity) + else: + change_output = None + + unsigned_pretx_hex = None + unsigned_tx_hex = None + + pretx_txid = None + if encoding == "p2sh": + pretx_txid, unsigned_pretx_hex, unsigned_tx_hex = serialize_p2sh( + inputs, + source, + source_address, + destination_outputs, + data_output, + change_output, + dust_return_pubkey, + p2sh_source_multisig_pubkeys, + p2sh_source_multisig_pubkeys_required, + p2sh_pretx_txid, + segwit, + exclude_utxos, + utxo_locks_instance, ) - # NOTE: Include change in destinations for BTC transactions. - # if change_output and not desired_data and desired_destination != config.UNSPENDABLE: - # if desired_destination == '': - # desired_destination = desired_source - # else: - # desired_destination += f'-{desired_source}' - # NOTE - if desired_data == None: # noqa: E711 - desired_data = b"" - - # Parsed transaction info. - try: - parsed_source, parsed_destination, x, y, parsed_data, extra = ( - # TODO: inject - gettxinfo.get_tx_info_new( - db, - deserialize.deserialize_tx(unsigned_tx_hex, use_txid=True), - util.CURRENT_BLOCK_INDEX, - p2sh_is_segwit=script.is_bech32(desired_source), - composing=True, - ) - ) + else: + # Serialise inputs and outputs. + unsigned_tx = serializer.serialise( + encoding, + inputs, + destination_outputs, + data_output, + change_output, + dust_return_pubkey=dust_return_pubkey, + ) + unsigned_tx_hex = binascii.hexlify(unsigned_tx).decode("utf-8") - if encoding == "p2sh": - # make_canonical can't determine the address, so we blindly change the desired to the parsed - desired_source = parsed_source - except exceptions.BTCOnlyError: - # Skip BTC‐only transactions. - return - - desired_source = script.make_canonical(desired_source) - - # Check desired info against parsed info. - desired = (desired_source, desired_destination, desired_data) - parsed = (parsed_source, parsed_destination, parsed_data) - if desired != parsed: - # Unlock (revert) UTXO locks - if self.utxo_locks is not None and inputs: - for input in inputs: - self.utxo_locks[source].pop(make_outkey(input), None) - - raise exceptions.TransactionError( - f"Constructed transaction does not parse correctly: {desired} ≠ {parsed}" - ) + """Sanity Check""" - def serialize_p2sh( - self, - inputs, - source, - source_address, - destination_outputs, - data_output, - change_output, - dust_return_pubkey, - p2sh_source_multisig_pubkeys, - p2sh_source_multisig_pubkeys_required, - p2sh_pretx_txid, - segwit, - ): - pretx_txid = None - unsigned_pretx_hex = None - unsigned_tx_hex = None + if (encoding == "p2sh" and pretx_txid) or encoding != "p2sh": + check_transaction_sanity( + db, source, tx_info, unsigned_tx_hex, encoding, inputs, utxo_locks_instance + ) - assert not (segwit and p2sh_pretx_txid) # shouldn't do old style with segwit enabled + if extended_tx_info: + return { + "btc_in": btc_in, + "btc_out": destination_btc_out + data_btc_out, + "btc_change": change_quantity, + "btc_fee": final_fee, + "tx_hex": unsigned_tx_hex, + } + + logger.debug("TX Construct - Transaction constructed.") + if unsigned_pretx_hex: + return return_result([unsigned_pretx_hex, unsigned_tx_hex], old_style_api=old_style_api) + else: + return return_result([unsigned_tx_hex], old_style_api=old_style_api) - if p2sh_pretx_txid: - pretx_txid = ( - p2sh_pretx_txid - if isinstance(p2sh_pretx_txid, bytes) - else binascii.unhexlify(p2sh_pretx_txid) - ) - unsigned_pretx = None - else: - destination_value_sum = sum([value for (destination, value) in destination_outputs]) - source_value = destination_value_sum - - if change_output: - # add the difference between source and destination to the change - change_value = change_output[1] + (destination_value_sum - source_value) - change_output = (change_output[0], change_value) - - unsigned_pretx = serializer.serialise_p2sh_pretx( - inputs, - source=source_address, - source_value=source_value, - data_output=data_output, - change_output=change_output, - pubkey=dust_return_pubkey, - multisig_pubkeys=p2sh_source_multisig_pubkeys, - multisig_pubkeys_required=p2sh_source_multisig_pubkeys_required, - ) - unsigned_pretx_hex = binascii.hexlify(unsigned_pretx).decode("utf-8") - - # with segwit we already know the txid and can return both - if segwit: - # pretx_txid = hashlib.sha256(unsigned_pretx).digest() # this should be segwit txid - ptx = CTransaction.stream_deserialize( - io.BytesIO(unsigned_pretx) - ) # could be a non-segwit tx anyways - txid_ba = bytearray(ptx.GetTxid()) - txid_ba.reverse() - pretx_txid = bytes(txid_ba) # gonna leave the malleability problem to upstream - self.logger.debug(f"pretx_txid {pretx_txid}") - - if unsigned_pretx: - # we set a long lock on this, don't want other TXs to spend from it - self.utxo_p2sh_encoding_locks.set(make_outkey_vin(unsigned_pretx, 0), True) - - # only generate the data TX if we have the pretx txId - if pretx_txid: - source_input = None - if script.is_p2sh(source): - source_input = self.select_any_coin_from_source(source) - if not source_input: - raise exceptions.TransactionError( - "Unable to select source input for p2sh source address" - ) - unsigned_datatx = serializer.serialise_p2sh_datatx( - pretx_txid, - source=source_address, - source_input=source_input, - destination_outputs=destination_outputs, - data_output=data_output, - pubkey=dust_return_pubkey, - multisig_pubkeys=p2sh_source_multisig_pubkeys, - multisig_pubkeys_required=p2sh_source_multisig_pubkeys_required, - ) - unsigned_datatx_hex = binascii.hexlify(unsigned_datatx).decode("utf-8") +# set higher than the max number of UTXOs we should expect to +# manage in an aging cache for any one source address, at any one period +# UTXO_P2SH_ENCODING_LOCKS is TTLCache for UTXOs that are used for chaining p2sh encoding +# instead of a simple (txid, vout) key we use [(vin.prevout.hash, vin.prevout.n) for vin tx1.vin] +# we cache the make_outkey_vin to avoid having to fetch raw txs too often - # let the rest of the code work it's magic on the data tx - unsigned_tx_hex = unsigned_datatx_hex - return pretx_txid, unsigned_pretx_hex, unsigned_tx_hex - else: - # we're just gonna return the pretx, it doesn't require any of the further checks - return pretx_txid, unsigned_pretx_hex, None - def construct( +class TransactionService: + def __init__( self, - db, - tx_info, - encoding="auto", - fee_per_kb=config.DEFAULT_FEE_PER_KB, - estimate_fee_per_kb=None, - estimate_fee_per_kb_nblocks=config.ESTIMATE_FEE_CONF_TARGET, - regular_dust_size=config.DEFAULT_REGULAR_DUST_SIZE, - multisig_dust_size=config.DEFAULT_MULTISIG_DUST_SIZE, - op_return_value=config.DEFAULT_OP_RETURN_VALUE, - exact_fee=None, - fee_provided=0, - provided_pubkeys=None, - dust_return_pubkey=None, - allow_unconfirmed_inputs=False, - unspent_tx_hash=None, - inputs_set=None, - disable_utxo_locks=False, - extended_tx_info=False, - old_style_api=None, - segwit=False, - p2sh_source_multisig_pubkeys=None, - p2sh_source_multisig_pubkeys_required=None, - p2sh_pretx_txid=None, - exclude_utxos=None, + backend, + prefix, + utxo_locks_max_age=3.0, + utxo_locks_max_addresses=1000, + utxo_locks_per_address_maxsize=5000, + default_regular_dust_size=config.DEFAULT_REGULAR_DUST_SIZE, + default_multisig_dust_size=config.DEFAULT_MULTISIG_DUST_SIZE, + estimate_fee_mode=config.ESTIMATE_FEE_MODE, + op_return_max_size=config.OP_RETURN_MAX_SIZE, + utxo_p2sh_encoding_locks=None, + utxo_p2sh_encoding_locks_cache=None, + utxo_locks=None, + ps2h_dust_return_pubkey=None, ): - if estimate_fee_per_kb is None: - estimate_fee_per_kb = config.ESTIMATE_FEE_PER_KB - - # lazy assign from config, because when set as default it's evaluated before it's configured - if old_style_api is None: - old_style_api = config.OLD_STYLE_API - - (source, destination_outputs, data) = tx_info - - if dust_return_pubkey: - dust_return_pubkey = binascii.unhexlify(dust_return_pubkey) - - if p2sh_source_multisig_pubkeys: - p2sh_source_multisig_pubkeys = [ - binascii.unhexlify(p) for p in p2sh_source_multisig_pubkeys - ] - - # Source. - # If public key is necessary for construction of (unsigned) - # transaction, use the public key provided, or find it from the - # blockchain. - if source: - script.validate(source) - - source_is_p2sh = script.is_p2sh(source) - - # Normalize source - if script.is_multisig(source): - source_address = multisig_pubkeyhashes_to_pubkeys(source, provided_pubkeys) - else: - source_address = source - - # Sanity checks. - if exact_fee and not isinstance(exact_fee, int): - raise exceptions.TransactionError("Exact fees must be in satoshis.") - if not isinstance(fee_provided, int): - raise exceptions.TransactionError("Fee provided must be in satoshis.") - - """Determine encoding method""" - - encoding = self.determine_encoding(data, encoding, old_style_api) - if encoding: - self.logger.debug( - f"TX Construct - Constructing `{encoding.upper()}` transaction from {source}." - ) - else: - self.logger.debug(f"TX Construct - Constructing transaction from {source}.") - - """Destinations""" - - destination_outputs = self.compute_destinations_and_values( - destination_outputs, encoding, multisig_dust_size, regular_dust_size, provided_pubkeys - ) - destination_btc_out = sum([value for address, value in destination_outputs]) - - """Data""" - - data_value, data_array, dust_return_pubkey = self.prepare_data_output( - data, - source, - encoding, - multisig_dust_size, - regular_dust_size, - provided_pubkeys, - source_is_p2sh, - dust_return_pubkey, - op_return_value, - ) - - if encoding == "p2sh": - _size_for_fee, _datatx_necessary_fee, data_value, data_btc_out = ( - p2sh_encoding.calculate_outputs( - destination_outputs, data_array, fee_per_kb, exact_fee - ) - ) - # replace the data value - data_output = (data_array, data_value) - else: - data_output = (data_array, data_value) if len(data_array) > 0 else None - data_btc_out = data_value * len(data_array) + self.logger = logging.getLogger( + config.LOGGER_NAME + ) # has to be config.LOGGER_NAME or integration tests fail + self.backend = backend - self.logger.trace( - f"TX Construct - data_btc_out={data_btc_out} (data_value={data_value} len(data_array)={len(data_array)})" + self.utxo_p2sh_encoding_locks = utxo_p2sh_encoding_locks or ThreadSafeTTLCache(10000, 180) + self.utxo_p2sh_encoding_locks_cache = utxo_p2sh_encoding_locks_cache or ThreadSafeTTLCache( + 1000, 600 ) + self.utxo_locks = utxo_locks - """Inputs""" - - inputs, change_quantity, btc_in, final_fee = self.prepare_inputs( - encoding, - data, - destination_outputs, - data_array, - source, - p2sh_pretx_txid, - allow_unconfirmed_inputs, - unspent_tx_hash, - inputs_set, - fee_per_kb, - estimate_fee_per_kb, - estimate_fee_per_kb_nblocks, - exact_fee, - fee_provided, - destination_btc_out, - data_btc_out, - regular_dust_size, - disable_utxo_locks, - exclude_utxos, - ) + self.utxo_locks_max_age = utxo_locks_max_age + self.utxo_locks_max_addresses = utxo_locks_max_addresses + self.utxo_locks_per_address_maxsize = utxo_locks_per_address_maxsize - """Finish""" + self.default_regular_dust_size = default_regular_dust_size + self.default_multisig_dust_size = default_multisig_dust_size + self.estimate_fee_mode = estimate_fee_mode - if change_quantity: - change_output = (source_address, change_quantity) - else: - change_output = None + self.prefix = prefix + self.op_return_max_size = op_return_max_size + self.ps2h_dust_return_pubkey = ps2h_dust_return_pubkey or config.P2SH_DUST_RETURN_PUBKEY - unsigned_pretx_hex = None - unsigned_tx_hex = None + def make_outkey_vin_txid(self, txid, vout): + if (txid, vout) not in self.utxo_p2sh_encoding_locks_cache: + txhex = self.backend.bitcoind.getrawtransaction(txid, verbose=False) + self.utxo_p2sh_encoding_locks_cache.set((txid, vout), make_outkey_vin(txhex, vout)) - pretx_txid = None - if encoding == "p2sh": - pretx_txid, unsigned_pretx_hex, unsigned_tx_hex = self.serialize_p2sh( - inputs, - source, - source_address, - destination_outputs, - data_output, - change_output, - dust_return_pubkey, - p2sh_source_multisig_pubkeys, - p2sh_source_multisig_pubkeys_required, - p2sh_pretx_txid, - segwit, - ) - else: - # Serialise inputs and outputs. - unsigned_tx = serializer.serialise( - encoding, - inputs, - destination_outputs, - data_output, - change_output, - dust_return_pubkey=dust_return_pubkey, - ) - unsigned_tx_hex = binascii.hexlify(unsigned_tx).decode("utf-8") + return self.utxo_p2sh_encoding_locks_cache.get((txid, vout)) - """Sanity Check""" + def filter_unspents(self, source, unspent, exclude_utxos): + filter_unspents_utxo_locks = [] + if self.utxo_locks is not None and source in self.utxo_locks: + filter_unspents_utxo_locks = self.utxo_locks[source].keys() + filter_unspents_p2sh_locks = self.utxo_p2sh_encoding_locks.keys() # filter out any locked UTXOs to prevent creating transactions that spend the same UTXO when they're created at the same time + filtered_unspent = [] + for output in unspent: + if ( + make_outkey(output) not in filter_unspents_utxo_locks + and self.make_outkey_vin_txid(output["txid"], output["vout"]) + not in filter_unspents_p2sh_locks + and ( + not exclude_utxos + or not isinstance(exclude_utxos, str) + or f"{output['txid']}:{output['vout']}" not in exclude_utxos.split(",") + ) + ): + filtered_unspent.append(output) + return filtered_unspent - if (encoding == "p2sh" and pretx_txid) or encoding != "p2sh": - self.check_transaction_sanity(db, source, tx_info, unsigned_tx_hex, encoding, inputs) + def lock_utxos(self, source, inputs): + # Lock the source's inputs (UTXOs) chosen for this transaction + if self.utxo_locks is not None: + if source not in self.utxo_locks: + self.utxo_locks[source] = ThreadSafeTTLCache( + self.utxo_locks_per_address_maxsize, self.utxo_locks_max_age + ) + for input in inputs: + self.utxo_locks[source].set(make_outkey(input), input) - if extended_tx_info: - return { - "btc_in": btc_in, - "btc_out": destination_btc_out + data_btc_out, - "btc_change": change_quantity, - "btc_fee": final_fee, - "tx_hex": unsigned_tx_hex, - } + def lock_p2sh_utxos(self, unsigned_pretx): + self.utxo_p2sh_encoding_locks.set(make_outkey_vin(unsigned_pretx, 0), True) - self.logger.debug("TX Construct - Transaction constructed.") - if unsigned_pretx_hex: - return return_result([unsigned_pretx_hex, unsigned_tx_hex], old_style_api=old_style_api) - else: - return return_result([unsigned_tx_hex], old_style_api=old_style_api) + def unlock_utxos(self, source, inputs): + if self.utxo_locks is not None and inputs: + for input in inputs: + self.utxo_locks[source].pop(make_outkey(input), None) def print_coin(coin): diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 25589b41cf..c93c380552 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": 193, - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", - "block_time": 1726943809, - "previous_block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_time": 1726950429, + "previous_block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", "difficulty": 545259519, - "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", - "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", - "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", + "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", + "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", + "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", - "block_time": 1726943805, - "previous_block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", + "block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", + "block_time": 1726950425, + "previous_block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", "difficulty": 545259519, - "ledger_hash": "412150712c6869e6ac5019ac1af4fca3e25b87cfd959dfdcf50a375eb0a3fb6c", - "txlist_hash": "d7164fc59cb695753afe073c5bb4774cd53dae324c7128b4984197951e0ece2c", - "messages_hash": "600e929c4505c894ea01a40564eff783657a75a7b33c2369546ae0237130f279", + "ledger_hash": "dae4aa18c818cf73356ae2538c5a128aab9652e31d3624deab317f635f240de3", + "txlist_hash": "2c6782906fccd6b50403d5f0cde890b85661d684650a67eeea3fbb61d893ea5a", + "messages_hash": "768e34bdb9fdd5c9805b7cc009eb4dc2d616c0eb60b0e69406f3d7a296973085", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", - "block_time": 1726943802, - "previous_block_hash": "23b27ef62e72432568ac3d2827afc0d1be45e5a1eb3461f8b58d24ab532f4f66", + "block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", + "block_time": 1726950421, + "previous_block_hash": "27e860cc72fbd13d937f5d53894473cdec16612f8b3a5c708a5cf6676b57a478", "difficulty": 545259519, - "ledger_hash": "347da26f295ca004a4058551b21f0918e3ccfd4d75b47fae6357f9b7d7577707", - "txlist_hash": "ed92b50006ebed219c3b0ee78411f957772394a2d5c189957c6c18bb5bc1d53d", - "messages_hash": "c855a1f4f99540f7cb14aaa43f1f4f8d72b4bcf16b50466e82291b6e7ed76ff4", + "ledger_hash": "d03e39607e9fd68726675c128d69cfaa1cd44a77ab03dd23287e4de22ce338e3", + "txlist_hash": "a2d3060eb32f38f0ef6849fcc09c56112eceec36516dbc142534648915a0e59b", + "messages_hash": "808eb90f60258406e139d977da28defeaa59b9f188b7a234cd729feba830dd25", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "23b27ef62e72432568ac3d2827afc0d1be45e5a1eb3461f8b58d24ab532f4f66", - "block_time": 1726943798, - "previous_block_hash": "26cc98a125105d26459d4cdde73737ee6a87200dd1e260833a753985df7a6e96", + "block_hash": "27e860cc72fbd13d937f5d53894473cdec16612f8b3a5c708a5cf6676b57a478", + "block_time": 1726950417, + "previous_block_hash": "5aa33299fee53ddd0fb4f86ddb1dbd45d1fdaa8332537a4fdb69892979db6de0", "difficulty": 545259519, - "ledger_hash": "75841fb8c87cb673361762b82649a7a4382f8d2b00c0ccd7dbdd26a6784664f0", - "txlist_hash": "9fa98a107f0760d3ea30ab290ddab051bd95e90474fb50fa8dafaaf2705ec337", - "messages_hash": "fcf933ab3251044fb12043cdff6b0895bfc112ad664cbf5ad6787c765180f3d1", + "ledger_hash": "a4bcdd2aeceb344ca201fadf8783f0124ec2261604874ec80cd2b43000af0774", + "txlist_hash": "a5d93acd26bd4f1fb7d65fd0ec9106b4b157a717b293ecb06ae1d59fa5991917", + "messages_hash": "22fa8a357331aa52a6479b19d56d72967c2dc8b06421543347709ce788c43fa9", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "26cc98a125105d26459d4cdde73737ee6a87200dd1e260833a753985df7a6e96", - "block_time": 1726943793, - "previous_block_hash": "423947d2489b48a6e1d3a68c229e08b6abe64ea53afa8512a39037e9e3d57ed0", + "block_hash": "5aa33299fee53ddd0fb4f86ddb1dbd45d1fdaa8332537a4fdb69892979db6de0", + "block_time": 1726950402, + "previous_block_hash": "0d5917e665af2adf0e67fa25a3703c9fec72d0d4fead388ec0fd867bb676dd3a", "difficulty": 545259519, - "ledger_hash": "dcbbc021e8d75b82eb4a2d623285bed6a64543f2f7f1db436d3f9fb8294c11c1", - "txlist_hash": "787f716d594b44792069aa2cfc004ed2396f4f5b82b196181800f97d6d5c23a7", - "messages_hash": "63932d87e6b9a88194fdd69f6e03d8e97766771070fb269827c7afbc070cc03a", + "ledger_hash": "9ffe2f005d1d4cba5d039c3c09312f34813be6ce60cec8137b5f3351b2b2f0fc", + "txlist_hash": "534af2b951fb094ca3cbdc5db77d750a7b0ac403cc3cceced1c6993f27896e1c", + "messages_hash": "1ea76d522ee2dc6e8dccdef6d972f84ed3253a08faabd3b8f87f50eedbb8124c", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", - "block_time": 1726943809, - "previous_block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_time": 1726950429, + "previous_block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", "difficulty": 545259519, - "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", - "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", - "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", + "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", + "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", + "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", - "block_time": 1726943809, - "previous_block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_time": 1726950429, + "previous_block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", "difficulty": 545259519, - "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", - "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", - "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", + "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", + "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", + "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", - "block_time": 1726943809, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_time": 1726950429, + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", + "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -139,11 +139,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "412150712c6869e6ac5019ac1af4fca3e25b87cfd959dfdcf50a375eb0a3fb6c", - "messages_hash": "600e929c4505c894ea01a40564eff783657a75a7b33c2369546ae0237130f279", + "ledger_hash": "dae4aa18c818cf73356ae2538c5a128aab9652e31d3624deab317f635f240de3", + "messages_hash": "768e34bdb9fdd5c9805b7cc009eb4dc2d616c0eb60b0e69406f3d7a296973085", "transaction_count": 1, - "txlist_hash": "d7164fc59cb695753afe073c5bb4774cd53dae324c7128b4984197951e0ece2c", - "block_time": 1726943805 + "txlist_hash": "2c6782906fccd6b50403d5f0cde890b85661d684650a67eeea3fbb61d893ea5a", + "block_time": 1726950425 }, "tx_hash": null }, @@ -152,43 +152,43 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58 }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "status": "valid", - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, - "block_time": 1726943805, + "block_time": 1726950425, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -198,22 +198,22 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "XCP", "block_index": 192, - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -223,7 +223,7 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" } ], "next_cursor": 524, @@ -261,16 +261,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -280,57 +280,57 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" } ], "next_cursor": null, @@ -340,16 +340,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -361,20 +361,20 @@ }, { "block_index": 192, - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -382,20 +382,20 @@ }, { "block_index": 192, - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -409,16 +409,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "event": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -436,24 +436,24 @@ "result": [ { "type": "order", - "object_id": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "object_id": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", "block_index": 182, "confirmed": true, - "block_time": 1726943703 + "block_time": 1726950308 }, { "type": "order", - "object_id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", + "object_id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", "block_index": 182, "confirmed": true, - "block_time": 1726943703 + "block_time": 1726950308 }, { "type": "order_match", - "object_id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "object_id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", "block_index": 182, "confirmed": true, - "block_time": 1726943703 + "block_time": 1726950308 } ], "next_cursor": null, @@ -463,13 +463,13 @@ "result": [ { "tx_index": 56, - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "block_index": 190, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "status": "valid", "confirmed": true, - "block_time": 1726943798 + "block_time": 1726950417 } ], "next_cursor": null, @@ -479,15 +479,15 @@ "result": [ { "tx_index": 59, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -505,14 +505,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", + "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -527,7 +527,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943687, + "block_time": 1726950282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -539,10 +539,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "quantity": 10, "status": "valid", @@ -550,7 +550,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "divisible": true, "asset_longname": null, @@ -563,10 +563,10 @@ }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -574,11 +574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -587,10 +587,10 @@ }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -598,11 +598,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -618,27 +618,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", - "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "last_status_tx_hash": null, - "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -653,7 +653,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726943634, + "block_time": 1726950217, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,16 +672,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "fee_paid_normalized": "0.00600000" } ], @@ -692,17 +692,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", - "block_time": 1726943809, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_time": 1726950429, + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", + "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -725,23 +725,23 @@ }, { "tx_index": 58, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f", - "block_time": 1726943805, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", + "block_time": 1726950425, + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04804d58139ca58d4e5278dcc90c123825e920a4c782017377656570206d7920617373657473", + "data": "0480bebd760d2e19686fe41856142fc45e3c18bea249017377656570206d7920617373657473", "supported": true, - "utxos_info": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb:1", + "utxos_info": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "flags": 1, "memo": "sweep my assets" } @@ -754,89 +754,73 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": null, - "btc_amount": 0, + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "btc_amount": 2000, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "0be78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc01b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "216e0862c8508a40aec05dd49145343698c24e4e3713dcbbe21810e55cbe5044", - "n": 0, + "hash": "ec6758f524983df9733199a822e59562e2b2c7724698b0b89af6bbb2adec441b", + "n": 1, "script_sig": "", "sequence": 4294967295, "coinbase": false } ], "vout": [ + { + "value": 2000, + "script_pub_key": "001478a3909dd27183d907e4449a5efb8a6eec443bd2" + }, { "value": 0, - "script_pub_key": "6a33dabdbb44e49f85d2a327402cf1ae7d4da7a8c921c1b7230f50ff3f43347c6fb5a949fdb8a077b2dc50d9ff6d8bba56af4f3786" + "script_pub_key": "6a4948be01b94d96fa6e0283eb7a46b8a57e6ca98673686900ace3453afba3f66252000ace06f908711b530849f60869623afd9af5d9f3ea91ef23c96ffe8df66edcd8636446b4d2b5054e" }, { - "value": 4999990000, - "script_pub_key": "00143abbb33ac7a43d5ccf1f395ce2627403ce6740cf" + "value": 4949868000, + "script_pub_key": "0014a2f39be999227f439233f92bfc92175307049033" } ], "vtxinwit": [ - "3044022021efb15847a51b8d3d831481506e7531f2f8c421e65599d42b0bff699df9f3510220344618f602e6a3b53004dd16d88a3597f8fbcbaf1ce050cecf1775924a8f99aa01", - "02a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a761" + "304402202068b84b1108d9c49124e85d47ecf26fcafb3fe6a2103e7479e144d4ee8124cc0220525fce23d44876ff7ae1b9aee3d1e94c57c4954013e39f067686aa20860c896e01", + "028099986bc838533585add0380a756004aaf6506170b596a7a1527ab22460410d" ], "lock_time": 0, - "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", - "tx_id": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8" + "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", + "tx_id": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5" }, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, + "message_type": "btcpay", + "message_type_id": 11, "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" + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "status": "valid" } }, - "btc_amount_normalized": "0.00000000" + "btc_amount_normalized": "0.00002000" } }, "/v2/transactions//info": { "result": { - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080c6ffd5588e4548e249935cfdedfb570089a7e433", + "data": "0200000000000000010000000000002710802d892d9d215a3e35d0fffb2b3e7cabdb14d24549", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "a3ccacbfebf1ba4eba1bbfe367d9ae1d97fc3dad9ee58182f3262334ca16d374", + "hash": "c99952b1d114237bca14d9da69ea03b9e0c563872a7af942d5a80cf541614d83", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -846,20 +830,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e87ff790c314d7b574207d38ca7d88463a79f5c5e8152fef110516011cda54bf5b84adf90a81857b385614bd1277f" + "script_pub_key": "6a2e6ab7aa5f53bd31977be7b313e0e0b0e22d0d99a4072ca15d63f8eedab121a23418d06d2844458bcca078cce2c353" }, { "value": 4999955000, - "script_pub_key": "00144d58139ca58d4e5278dcc90c123825e920a4c782" + "script_pub_key": "0014bebd760d2e19686fe41856142fc45e3c18bea249" } ], "vtxinwit": [ - "3044022046f9bfbb030b7551d95765541ea931dc3a76e2fc6ab1a95a94147cf1765c2a9c0220619122b438446d1d2fb04790d3457b848378e8fe81e8f86bd7948c56a687e56401", - "0352e612ef317c96dc910d7efc93996e313947873e472d8309212310d61a946122" + "3044022043caca504be770b0de99047ffe5e5d1ad869ee2402d30a6281137090df2cda9c0220089c65fa1ec2e1dabc64b0b62b8752a36b78eb7c1c6ae8d94d04e9ee0ecad6e901", + "022098f1d02b56e77ca857c5355d804950681dd648a95db1667bedd171bfe91e70" ], "lock_time": 0, - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", - "tx_id": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a" + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_id": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94" }, "unpacked_data": { "message_type": "enhanced_send", @@ -867,7 +851,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "memo": null, "asset_info": { "divisible": true, @@ -894,17 +878,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", - "block_time": 1726943809, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_time": 1726950429, + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", + "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -929,17 +913,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", - "block_time": 1726943809, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_time": 1726950429, + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", + "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -968,47 +952,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58 }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "status": "valid", - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, - "block_time": 1726943805, + "block_time": 1726950425, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -1018,24 +1002,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "XCP", "block_index": 192, - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,36 +1029,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 } ], "next_cursor": 523, @@ -1087,47 +1071,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58 }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "status": "valid", - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, - "block_time": 1726943805, + "block_time": 1726950425, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -1137,24 +1121,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "XCP", "block_index": 192, - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -1164,36 +1148,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 } ], "next_cursor": 523, @@ -1203,10 +1187,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "quantity": 10, "status": "valid", @@ -1214,7 +1198,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "divisible": true, "asset_longname": null, @@ -1227,10 +1211,10 @@ }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1238,11 +1222,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -1251,10 +1235,10 @@ }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1262,11 +1246,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -1282,27 +1266,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", - "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "last_status_tx_hash": null, - "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -1317,7 +1301,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726943634, + "block_time": 1726950217, "asset_info": { "divisible": true, "asset_longname": null, @@ -1338,16 +1322,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -1357,63 +1341,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 } ], "next_cursor": null, @@ -1425,16 +1409,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -1444,63 +1428,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 } ], "next_cursor": null, @@ -1513,7 +1497,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1523,7 +1507,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -1534,7 +1518,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1544,7 +1528,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -1555,7 +1539,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1565,7 +1549,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -1576,7 +1560,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1586,7 +1570,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -1597,7 +1581,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1607,7 +1591,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -1621,17 +1605,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", - "block_time": 1726943802, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", + "block_time": 1726950421, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e:1", + "utxos_info": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1667,23 +1651,23 @@ }, { "tx_index": 56, - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "block_index": 190, - "block_hash": "23b27ef62e72432568ac3d2827afc0d1be45e5a1eb3461f8b58d24ab532f4f66", - "block_time": 1726943798, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "27e860cc72fbd13d937f5d53894473cdec16612f8b3a5c708a5cf6676b57a478", + "block_time": 1726950417, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "data": "46b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "supported": true, - "utxos_info": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a:1", + "utxos_info": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "status": "valid" } }, @@ -1691,17 +1675,17 @@ }, { "tx_index": 55, - "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "block_index": 189, - "block_hash": "26cc98a125105d26459d4cdde73737ee6a87200dd1e260833a753985df7a6e96", - "block_time": 1726943793, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "5aa33299fee53ddd0fb4f86ddb1dbd45d1fdaa8332537a4fdb69892979db6de0", + "block_time": 1726950402, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8:1", + "utxos_info": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1737,17 +1721,17 @@ }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "block_hash": "423947d2489b48a6e1d3a68c229e08b6abe64ea53afa8512a39037e9e3d57ed0", - "block_time": 1726943789, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "0d5917e665af2adf0e67fa25a3703c9fec72d0d4fead388ec0fd867bb676dd3a", + "block_time": 1726950398, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802b08c45289028349cc594a15406b2e9391f71c7c80c6ffd5588e4548e249935cfdedfb570089a7e433804d58139ca58d4e5278dcc90c123825e920a4c782400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a2f39be999227f439233f92bfc92175307049033802d892d9d215a3e35d0fffb2b3e7cabdb14d2454980bebd760d2e19686fe41856142fc45e3c18bea249400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3:0", + "utxos_info": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1755,14 +1739,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -1770,7 +1754,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1789,25 +1773,25 @@ }, { "tx_index": 51, - "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", + "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", "block_index": 185, - "block_hash": "096ad85b8b9dd2b5eaeb1be8fe0ddc244c436aacac8adbd2a9fa76e6ab9e712e", - "block_time": 1726943776, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "22a6951b71290ec238ef452a688ef8e9c800dd277ca4be3253aed7072d440d06", + "block_time": 1726950385, + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "btc_amount": 2000, "fee": 10000, - "data": "0bde81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914fc869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "data": "0be78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc01b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "supported": true, - "utxos_info": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11:0", + "utxos_info": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", - "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", - "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "status": "valid" } }, @@ -1836,11 +1820,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "status": "open", - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "tx_index": 57, - "block_time": 1726943802, + "block_time": 1726950421, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1864,24 +1848,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "block_time": 1726943802 + "block_time": 1726950421 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "block_index": 191, - "event": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "event": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1726943802, + "block_time": 1726950421, "asset_info": { "divisible": true, "asset_longname": null, @@ -1891,25 +1875,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "block_time": 1726943802 + "block_time": 1726950421 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", + "block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", "block_index": 191, - "block_time": 1726943802, + "block_time": 1726950421, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "tx_index": 57, - "utxos_info": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e:1", + "utxos_info": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1941,40 +1925,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "block_time": 1726943802 + "block_time": 1726950421 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "status": "valid", - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "tx_index": 56, - "block_time": 1726943798 + "block_time": 1726950417 }, - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "block_index": 190, - "block_time": 1726943798 + "block_time": 1726950417 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726943798, + "block_time": 1726950417, "asset_info": { "divisible": true, "asset_longname": null, @@ -1984,9 +1968,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "block_index": 190, - "block_time": 1726943798 + "block_time": 1726950417 } ], "next_cursor": 506, @@ -1995,17 +1979,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "memo": null, "quantity": 10000, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "status": "valid", - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "tx_index": 60, "asset_info": { "divisible": true, @@ -2018,19 +2002,19 @@ } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "CREDIT", "params": { - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -2042,19 +2026,19 @@ } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 193, - "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -2066,27 +2050,27 @@ } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726943814.1647968, + "block_time": 1726950434.0695176, "btc_amount": 0, - "data": "020000000000000001000000000000271080c6ffd5588e4548e249935cfdedfb570089a7e433", + "data": "0200000000000000010000000000002710802d892d9d215a3e35d0fffb2b3e7cabdb14d24549", "destination": "", "fee": 10000, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "tx_index": 60, - "utxos_info": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a:1", + "utxos_info": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "memo": null, "asset_info": { "divisible": true, @@ -2108,7 +2092,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2116,14 +2100,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2131,14 +2115,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2153,7 +2137,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2161,7 +2145,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2173,7 +2157,7 @@ }, "/v2/addresses/
/balances/": { "result": { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2192,16 +2176,16 @@ "result": [ { "block_index": 190, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943798, + "block_time": 1726950417, "asset_info": { "divisible": true, "asset_longname": null, @@ -2213,16 +2197,16 @@ }, { "block_index": 182, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", + "event": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943703, + "block_time": 1726950308, "asset_info": { "divisible": true, "asset_longname": null, @@ -2234,20 +2218,20 @@ }, { "block_index": 159, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", + "event": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943687, + "block_time": 1726950282, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2255,20 +2239,20 @@ }, { "block_index": 156, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "730d154e7c40e6f269a3c0f15937c64309d932202616ef4c54ec0c6e07ddc29c", + "event": "9157f7bfaf353b8d1bfda36bbcaf83e7a1ae668161834e9f1b166f1e47b0f4c0", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943675, + "block_time": 1726950270, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2280,16 +2264,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", + "event": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", "tx_index": 38, - "utxo": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98:1", - "utxo_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "utxo": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae:1", + "utxo_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "confirmed": true, - "block_time": 1726943654, + "block_time": 1726950248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2303,16 +2287,16 @@ "result": [ { "block_index": 191, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "event": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943802, + "block_time": 1726950421, "asset_info": { "divisible": true, "asset_longname": null, @@ -2324,16 +2308,16 @@ }, { "block_index": 189, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943793, + "block_time": 1726950402, "asset_info": { "divisible": true, "asset_longname": null, @@ -2345,16 +2329,16 @@ }, { "block_index": 188, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "event": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "divisible": true, "asset_longname": null, @@ -2366,20 +2350,20 @@ }, { "block_index": 188, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "event": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2387,16 +2371,16 @@ }, { "block_index": 183, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "event": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943768, + "block_time": 1726950377, "asset_info": { "divisible": true, "asset_longname": null, @@ -2419,9 +2403,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "3adb5f6a83dbf36fc41ff713ae0883905bee565d0450041334cb0b35e8d7dc74", + "tx_hash": "ba4be2ba08322daea13f5b8b4710717e27f736da291c8238d4310b7a967668cf", "block_index": 137, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2429,7 +2413,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726943585, + "block_time": 1726950181, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2440,14 +2424,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "70bd09bcb435a334ba6a729d10e1151605bda96aff86cb463ddcf0536caef07c", + "tx_hash": "0657f75b12ca7313124e55cfc3cebac21f770a096caa4ec7a60900a01602aea3", "block_index": 112, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1726943484, + "block_time": 1726950075, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2459,10 +2443,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2470,7 +2454,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "divisible": true, "asset_longname": null, @@ -2483,10 +2467,10 @@ }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2494,11 +2478,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2507,10 +2491,10 @@ }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2518,11 +2502,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2531,10 +2515,10 @@ }, { "tx_index": 38, - "tx_hash": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", + "tx_hash": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", "block_index": 151, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98:1", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2542,11 +2526,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943654, + "block_time": 1726950248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2555,10 +2539,10 @@ }, { "tx_index": 35, - "tx_hash": "bb7e237846f4ba8f55a20cc8e2bfaf6731be5297749cf62cadc18474047a3030", + "tx_hash": "351ae12754d2a615f37c96873f3e178d77d842607e0522e954ee066b969514be", "block_index": 148, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "9dc5d37ade58fe3fcc4001a7c5a086fc13efa89bbb556610bb78c7d6c2b059a1:1", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "005e41992c61245f5c6c82a7140ca55b6813d522dfdd67fd5bb22b1b144ee77d:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2566,11 +2550,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943642, + "block_time": 1726950236, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2585,10 +2569,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "97881a57024ad6e05e14ae9d17fff8be24276335e8f9afefcce9b70168d36808", + "tx_hash": "c687f93269aa03f150204db384563efed1dfa9dd7319d77a879e3a346e36471c", "block_index": 150, - "source": "cc7990d855f354e057a6e08b954da3db23de867816732e8fc48f06b3fcadb83b:0", - "destination": "bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9", + "source": "facd73ce7e552dab11a369e33253c91a09a63e697ed4542f29c5e0a118eb3a01:0", + "destination": "bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2596,11 +2580,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943651, + "block_time": 1726950243, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2615,10 +2599,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2626,11 +2610,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2639,10 +2623,10 @@ }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2650,11 +2634,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2663,10 +2647,10 @@ }, { "tx_index": 38, - "tx_hash": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", + "tx_hash": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", "block_index": 151, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98:1", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2674,11 +2658,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943654, + "block_time": 1726950248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2687,10 +2671,10 @@ }, { "tx_index": 35, - "tx_hash": "bb7e237846f4ba8f55a20cc8e2bfaf6731be5297749cf62cadc18474047a3030", + "tx_hash": "351ae12754d2a615f37c96873f3e178d77d842607e0522e954ee066b969514be", "block_index": 148, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "9dc5d37ade58fe3fcc4001a7c5a086fc13efa89bbb556610bb78c7d6c2b059a1:1", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "005e41992c61245f5c6c82a7140ca55b6813d522dfdd67fd5bb22b1b144ee77d:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2698,11 +2682,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943642, + "block_time": 1726950236, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2717,10 +2701,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "97881a57024ad6e05e14ae9d17fff8be24276335e8f9afefcce9b70168d36808", + "tx_hash": "c687f93269aa03f150204db384563efed1dfa9dd7319d77a879e3a346e36471c", "block_index": 150, - "source": "cc7990d855f354e057a6e08b954da3db23de867816732e8fc48f06b3fcadb83b:0", - "destination": "bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9", + "source": "facd73ce7e552dab11a369e33253c91a09a63e697ed4542f29c5e0a118eb3a01:0", + "destination": "bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2728,11 +2712,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943651, + "block_time": 1726950243, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -2747,9 +2731,9 @@ "result": [ { "tx_index": 30, - "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", + "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", "block_index": 144, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2758,7 +2742,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2768,7 +2752,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943625, + "block_time": 1726950210, "asset_info": { "divisible": true, "asset_longname": null, @@ -2784,9 +2768,9 @@ }, { "tx_index": 26, - "tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2795,7 +2779,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2805,7 +2789,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -2826,9 +2810,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 30, - "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", + "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", "block_index": 144, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2837,7 +2821,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2847,7 +2831,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943625, + "block_time": 1726950210, "asset_info": { "divisible": true, "asset_longname": null, @@ -2867,19 +2851,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", + "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2887,7 +2871,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2902,7 +2886,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -2916,19 +2900,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", + "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", "block_index": 140, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2936,7 +2920,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2951,7 +2935,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943598, + "block_time": 1726950194, "asset_info": { "divisible": true, "asset_longname": null, @@ -2971,19 +2955,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", + "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2991,7 +2975,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3006,7 +2990,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -3020,19 +3004,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", + "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", "block_index": 140, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3040,7 +3024,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3055,7 +3039,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943598, + "block_time": 1726950194, "asset_info": { "divisible": true, "asset_longname": null, @@ -3075,19 +3059,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", + "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3095,7 +3079,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3110,7 +3094,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -3124,19 +3108,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", + "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", "block_index": 140, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3144,7 +3128,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3159,7 +3143,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943598, + "block_time": 1726950194, "asset_info": { "divisible": true, "asset_longname": null, @@ -3179,19 +3163,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", + "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3199,7 +3183,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3214,7 +3198,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -3228,19 +3212,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", + "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", "block_index": 140, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3248,7 +3232,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3263,7 +3247,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943598, + "block_time": 1726950194, "asset_info": { "divisible": true, "asset_longname": null, @@ -3282,16 +3266,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "fee_paid_normalized": "0.00600000" } ], @@ -3302,14 +3286,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", + "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -3324,20 +3308,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943687, + "block_time": 1726950282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "ad5638a61876314ea341c91f638042e00c58a6a150651c1198858bbfa50bcdd3", + "tx_hash": "9a15129044c626aa6de4262f26195a677a41cc8a4b82c649cb7a381658023bdd", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -3352,20 +3336,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726943683, + "block_time": 1726950277, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "920160abffc2681cf411a03e5ddc3c3f7f1156c1ceffaa2304a7f6f82032e82f", + "tx_hash": "3de27df9207dede883d535efe529dd8fc3974cb18d1a62d257e6bcb91aa08a74", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -3380,20 +3364,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943679, + "block_time": 1726950274, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "730d154e7c40e6f269a3c0f15937c64309d932202616ef4c54ec0c6e07ddc29c", + "tx_hash": "9157f7bfaf353b8d1bfda36bbcaf83e7a1ae668161834e9f1b166f1e47b0f4c0", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -3408,20 +3392,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943675, + "block_time": 1726950270, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "3b78cdcb0b5a931b4804337596e836bbd23872bb1dafeed65aad95db32933c61", + "tx_hash": "da1ecc1d6cf234a109110be3902414ad2324678c0e9ccfde053c2f792d0f6a5e", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -3436,7 +3420,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943638, + "block_time": 1726950222, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -3450,8 +3434,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 10000000000, @@ -3459,16 +3443,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726943675, - "last_issuance_block_time": 1726943683, + "first_issuance_block_time": 1726950270, + "last_issuance_block_time": 1726950277, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 100000000000, @@ -3476,16 +3460,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726943638, - "last_issuance_block_time": 1726943638, + "first_issuance_block_time": 1726950222, + "last_issuance_block_time": 1726950222, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 40, @@ -3493,16 +3477,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726943577, - "last_issuance_block_time": 1726943581, + "first_issuance_block_time": 1726950172, + "last_issuance_block_time": 1726950177, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 19, @@ -3510,16 +3494,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726943560, - "last_issuance_block_time": 1726943573, + "first_issuance_block_time": 1726950155, + "last_issuance_block_time": 1726950168, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 0, @@ -3527,8 +3511,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1726943539, - "last_issuance_block_time": 1726943556, + "first_issuance_block_time": 1726950134, + "last_issuance_block_time": 1726950151, "supply_normalized": "0.00000000" } ], @@ -3539,17 +3523,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "block_hash": "2f476dfff236cf917d3eba6f6100e1213afff49f0229d7560672f99a24c6ece8", - "block_time": 1726943802, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", + "block_time": 1726950421, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e:1", + "utxos_info": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3585,23 +3569,23 @@ }, { "tx_index": 56, - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "block_index": 190, - "block_hash": "23b27ef62e72432568ac3d2827afc0d1be45e5a1eb3461f8b58d24ab532f4f66", - "block_time": 1726943798, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "27e860cc72fbd13d937f5d53894473cdec16612f8b3a5c708a5cf6676b57a478", + "block_time": 1726950417, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "data": "46b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "supported": true, - "utxos_info": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a:1", + "utxos_info": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "status": "valid" } }, @@ -3609,17 +3593,17 @@ }, { "tx_index": 55, - "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "block_index": 189, - "block_hash": "26cc98a125105d26459d4cdde73737ee6a87200dd1e260833a753985df7a6e96", - "block_time": 1726943793, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "5aa33299fee53ddd0fb4f86ddb1dbd45d1fdaa8332537a4fdb69892979db6de0", + "block_time": 1726950402, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8:1", + "utxos_info": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3655,17 +3639,17 @@ }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "block_hash": "423947d2489b48a6e1d3a68c229e08b6abe64ea53afa8512a39037e9e3d57ed0", - "block_time": 1726943789, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "0d5917e665af2adf0e67fa25a3703c9fec72d0d4fead388ec0fd867bb676dd3a", + "block_time": 1726950398, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802b08c45289028349cc594a15406b2e9391f71c7c80c6ffd5588e4548e249935cfdedfb570089a7e433804d58139ca58d4e5278dcc90c123825e920a4c782400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a2f39be999227f439233f92bfc92175307049033802d892d9d215a3e35d0fffb2b3e7cabdb14d2454980bebd760d2e19686fe41856142fc45e3c18bea249400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3:0", + "utxos_info": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3673,14 +3657,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -3688,7 +3672,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3707,17 +3691,17 @@ }, { "tx_index": 49, - "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", "block_index": 183, - "block_hash": "76b787bee668425bd1b438a2a899ce68b2c993774bd6797755aca7cecf2e2b88", - "block_time": 1726943768, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "block_hash": "4e7a73ffc2fbf5c77ed880774d1e307872db577f80ffb792138702af83acc4db", + "block_time": 1726950377, + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f:1", + "utxos_info": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3759,20 +3743,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", + "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", "block_index": 153, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726943663, + "block_time": 1726950256, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -3794,9 +3778,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3811,7 +3795,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726943802, + "block_time": 1726950421, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3837,9 +3821,9 @@ }, { "tx_index": 55, - "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "block_index": 190, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3854,7 +3838,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726943798, + "block_time": 1726950417, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3880,9 +3864,9 @@ }, { "tx_index": 49, - "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", "block_index": 186, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3897,7 +3881,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726943781, + "block_time": 1726950389, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3923,9 +3907,9 @@ }, { "tx_index": 47, - "tx_hash": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", + "tx_hash": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", "block_index": 182, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3940,7 +3924,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1726943703, + "block_time": 1726950308, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3971,10 +3955,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", + "tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", "tx_index": 22, "block_index": 135, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -3999,13 +3983,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726943577 + "block_time": 1726950172 }, { - "tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", + "tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", "tx_index": 18, "block_index": 131, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4030,13 +4014,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726943560 + "block_time": 1726950155 }, { - "tx_hash": "f8863d06dd1c63af927665e2741a68593285bb4a52bbadf58685b17809c50470", + "tx_hash": "e69f3ddbfd1ba8c631b757819d7664ca2bc7041fcd5a75be8e2711eea2cac9f8", "tx_index": 14, "block_index": 130, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4061,13 +4045,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726943556 + "block_time": 1726950151 }, { - "tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "tx_index": 10, "block_index": 125, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4092,7 +4076,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726943534 + "block_time": 1726950130 } ], "next_cursor": null, @@ -4101,127 +4085,127 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "296a4a2f8facf4a5ccf44ab044c61ea9b9216a3071599a39f70b231bc11801f0", + "tx_hash": "34bec257ccf1f8c374493fc15f7cbb1af6846494d3b097680b0826b82f088d9d", "tx_index": 23, "block_index": 136, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "fairminter_tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "fairminter_tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943581, + "block_time": 1726950177, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } }, { - "tx_hash": "5ed673dd8d97553e61d83fbccf8e095279db7b2b17182af9e56c3ad7c3a4fa03", + "tx_hash": "db57e70f00a61a0047c98b0ec58ea73359d9350575524094dd8e5bd2912a6bff", "tx_index": 21, "block_index": 134, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "fairminter_tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "fairminter_tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943573, + "block_time": 1726950168, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } }, { - "tx_hash": "51faa319e2cca4033cc7107e24db91cffd7aa0de24e6dbb3416f14414fbb1513", + "tx_hash": "5d803fb3c505bfe22205e2970b56904799390c0defd2234b82e6e0d73731f2b3", "tx_index": 20, "block_index": 133, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "fairminter_tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "fairminter_tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943568, + "block_time": 1726950164, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } }, { - "tx_hash": "43aca2b646d3f1276f04a8c106efccaa0693ff0cd78d964dcca325aa3d8fb96b", + "tx_hash": "cba0ccae5a7223e0217e916991da9cdb306a21211aba783c1a617f3f678cf2fc", "tx_index": 19, "block_index": 132, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "fairminter_tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "fairminter_tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943564, + "block_time": 1726950160, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } }, { - "tx_hash": "2988c15ef26d780e374920eb96e0569d184800843ea6a308102bc549436780e5", + "tx_hash": "b05cca3bc275486fc1ad03760458825512e861deba57984710051915d4975e5a", "tx_index": 15, "block_index": 127, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "fairminter_tx_hash": "f8863d06dd1c63af927665e2741a68593285bb4a52bbadf58685b17809c50470", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "fairminter_tx_hash": "e69f3ddbfd1ba8c631b757819d7664ca2bc7041fcd5a75be8e2711eea2cac9f8", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943543, + "block_time": 1726950138, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } }, { - "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", + "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943527, + "block_time": 1726950121, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } @@ -4233,22 +4217,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", + "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943527, + "block_time": 1726950121, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } @@ -4262,9 +4246,9 @@ }, "/v2/addresses/
/compose/broadcast": { "result": { - "rawtransaction": "02000000000101c7a751b79fc1bba15db96e76fddc03eaf28c83033bbac943b3ec9b4fb733b1ca000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff0200000000000000002b6a2921d0690c1e43531d52511b2b8d83499e0ad38c216c1cea450000060de19642e0efe783a088dd85b7fb34b1052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "02000000000101baa101cbc940a198c493a89141be8f75d0048e0d7a5dc37087907fe9bf8be6620000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff0200000000000000002b6a29411d762b9dc4b64ca7864736f8a3ac4e85bb5eeb17df4a8b3bf104383cee8fd76b601ab179212384033bb1052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4283,13 +4267,13 @@ }, "/v2/addresses/
/compose/btcpay": { "result": { - "rawtransaction": "020000000001014908917f0d6e695aa7e8041867a48a6a093206725417ad922e840a75ddf26706000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff03b80b0000000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf00000000000000004b6a49ffb002f713ca7b9fd27b391c2093a26eb078e7696684324b0b5450b219e025235fba61c51b4453692cbf1469cba72688768d7e70bb53caa4aef186df9696b9ef4fee30fca81bd2da78d093052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "020000000001013d85bff283f6055716040c2c51141398d7775951f61cf1ef9a12ccbd2da5e3370000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff03b80b00000000000016001478a3909dd27183d907e4449a5efb8a6eec443bd200000000000000004b6a4917b6d73524118ffb4dba108ccebe4e312409d5a0c62af302bd2fc94045cee07f1c04251c685216d77a736875b9adafd3104b683301a939a659438f13b6e712b00f0ef936f95218def2d993052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c" + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448" }, "name": "btcpay", - "data": "434e5452505254590bde81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "data": "434e5452505254590be78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4301,9 +4285,9 @@ }, "/v2/addresses/
/compose/burn": { "result": { - "rawtransaction": "02000000000101ce27407bf8f204ef537df027953eb6114b8487e9d150d6a84d085a95863f6414000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88acdab1052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "02000000000101fa643da10f023a6f4cdd832b487377afc08378e3a396a2f764a050b94a5b3cf60000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "quantity": 1000, "overburn": false }, @@ -4313,13 +4297,13 @@ }, "/v2/addresses/
/compose/cancel": { "result": { - "rawtransaction": "02000000000101e9d22b8ed7ff43a163cfb388952132f6f63b8f256b2072abb965ee5a4f930b7c000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff0200000000000000002b6a29ecbf2575a7e33509a02495729973f16fcbe3de84291c13e5e5338d397cbb96e87149c0a9a8686d8ff634b1052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "02000000000101eedbefe4bd636546d57c8e1f4c0eb76bd855239cfa7c77f8b251af49eb9196140000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff0200000000000000002b6a29bb90f36f9b86d1233cfc3bfa0724f1e524d4d32c8824fa115943b30c9b6bc6124ba66fac7e49803b373bb1052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "offer_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e" + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "offer_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055" }, "name": "cancel", - "data": "434e545250525459468503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "data": "434e54525052545946b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4331,9 +4315,9 @@ }, "/v2/addresses/
/compose/destroy": { "result": { - "rawtransaction": "02000000000101cadc6dcd9e21ecdbadbd599e901d28c76bfe7d992d637b8ee189a0a69d5a148f000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000226a20ae4ee5980fee7c78bbd35e3c3c2c1d87ed4ffb8ea4425940791bb8498f8f53329db3052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "0200000000010130d7691e00629eb4961825a5c0cd3a09c650b1485d7baf7b6a7bc9093c5e66210000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000226a20e9ef305760432a385b4316e09d8b138f51b4d7c1649ef5a9eca33c059faac5a2a4b3052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4359,9 +4343,9 @@ }, "/v2/addresses/
/compose/dispenser": { "result": { - "rawtransaction": "02000000000101812f049104ecd8c5421d3aeb84f1e0d503d0673524bc38770bd25a75c0b4143302000000160014b75117bea813ac18e875e6955c46b90b822d1473ffffffff0200000000000000002c6a2a35e29811a9d0b3bce85ee69bebf2239fd0ea376e9c930087a670a0b4e22320795162476e62698b07e3de404b0a2701000000160014b75117bea813ac18e875e6955c46b90b822d147302000000000000", + "rawtransaction": "0200000000010187137586cf80f0894942be32c20a0d0dda47ae0714b0f873dd7a7951a4080a24020000001600149a874d4ce5bb7cc6fcf889d8d61a3cd667e7c43dffffffff0200000000000000002c6a2a0e1e937628aca7a522cee3b287a42b3bc78b6233d54a79cf73e78bea9e6bcd48c3d7bf613fd4eb1b9ff6474b0a27010000001600149a874d4ce5bb7cc6fcf889d8d61a3cd667e7c43d02000000000000", "params": { - "source": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", + "source": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4392,16 +4376,16 @@ }, "/v2/addresses/
/compose/dividend": { "result": { - "rawtransaction": "020000000001013fcf0426cb9d37dbe9f35ee44b5ec8880dc75b0a71e91e40fb26511d4347f86f000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000236a218df562c9f208ed50ccae382ca92b02c27702e79477aea3af2695ddaac8ebce991559b3052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "02000000000101e6e36a1100c493467b382a99ec5aee83575997f72471d86c33881f4b296c9df90000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000236a212228e09122064a733b43f540b88cd03dc744b649a35ed92ce17fd05cc8bf71dcd460b3052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -4427,12 +4411,12 @@ }, "/v2/addresses/
/compose/issuance": { "result": { - "rawtransaction": "02000000000101eed4b56dff0f6735bfcb64fd71bc79a2bac83188e844f08cc0808fba7d2e238c000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff0322020000000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf0000000000000000236a217d872c33d7f4702e6aecf40eb79042d40d6865869cc902d0daf2e7ea32bd9aa3471ca8052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "0200000000010136d6e6a155dea2dc07c5dbfc215477089050c771975ff25549a50aca2042d9110000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff03220200000000000016001478a3909dd27183d907e4449a5efb8a6eec443bd20000000000000000236a21a5d731112dcfb5e7accd100224da20485a77f4d6b626d7e938f6e22f44d928dc6a24a8052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "transfer_destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "lock": false, "reset": false, @@ -4452,18 +4436,18 @@ }, "/v2/addresses/
/compose/mpma": { "result": { - "rawtransaction": "02000000000104de819b9fc81ec47056ded5b3ba6b85bb1877b45eb40270c05a55b6bb413c4880000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffffc09b668a70c9a3f5219e4e535139c3f6eaab26c72fc9aa91e8eb6963b05328c0000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffffcba0f51565c80be9eceab047b664ccf9215bcfd49988f6e18039c9020a5bb071000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff33ad01ffd981010a7b7f85cec69713780d546e2c4d639e0fb2cee3371c24e1a5000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff03e80300000000000069512103869b25513395fa664ab1249e6177b8160304c9ab1e788b7db690f7bfbd62cbe521023075a3d35d96ec97dd45b01c69ae34053749b76967e71c61f4206d9ac7a7c9742102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153aee80300000000000069512102899b25513395fa664a9253f3932167841b436d964ea20fcf5d5295cbbeacac96210270ba6bf85552be1edfc6f1d030e421455c6726f890fb60eed66808f6abc8e52b2102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153ae47d016a8040000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000002000002000002000000000000", + "rawtransaction": "020000000001045d4eb11fe84e3712b4ebd879c01bc40c0527526e763aa02a891e4c9f75e1774a0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffffeac0d9ac05994d37e2be6b545ee86c7af2a01beeda39353990297dbfefd23b7c0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2fffffffff37cb30fbab0598f0be01ca736ce36762364665229cbe0c5e31d0aaf1a143da60000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff5429e8ff1be03db404fed6b06882c88df2efb89a85eacb7c9cb682e7715111790000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff03e8030000000000006951210380c01d0b508801d559f1f62d847e298ff33b1f3f177fea7e447b0a18c04fa5c42103be8259e6629403853ffdfb06bcfd31e67fce4cf395846b885e157e43c250863e2103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453aee803000000000000695121038fc01d0b508801d559d28140766aee3e4c696ebcc26d95b16905f192aea3e1fc210385509144910fea1c1d82b0948f041a1aedd91df4911458077c5d1b2fae3faa662103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453ae61d016a80400000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000002000002000002000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", 1 ], [ "MYASSETA", - "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", 2 ] ], @@ -4471,7 +4455,7 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e545250525459030002803abbb33ac7a43d5ccf1f395ce2627403ce6740cf802b08c45289028349cc594a15406b2e9391f71c7c8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e5452505254590300028078a3909dd27183d907e4449a5efb8a6eec443bd280a2f39be999227f439233f92bfc921753070490338f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4483,9 +4467,9 @@ }, "/v2/addresses/
/compose/order": { "result": { - "rawtransaction": "02000000000101c731eb09c72abf0af77a6164e7b3278f8fcd8d150d5fb92225e7a5c9dfd629e9000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000356a336e78117dafe38e89e931b18ea1638fcce6fa2276a898a1c5cbdbbb229bd47da4d46b74cf8d9aff60985bfc6bffb84aecf62e8d87ae052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "02000000000101ccdedd2808c475ca5c88e5449b3c176fe02031ec8e63eecb922aeaf26a5c18b50000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000356a3353ef808f83366b6cf8d9952b5f83c9aa93502e5ec99ae234ba6b25efe0929adacf71a868b12cb91f4cf9dc0f55d288e7704f008eae052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4502,7 +4486,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -4523,10 +4507,10 @@ }, "/v2/addresses/
/compose/send": { "result": { - "rawtransaction": "02000000000101bdb7938d4a99e508a552731ee1aa29935ca0c5848f5fa8ce220efb76421c11cd000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000306a2e910edd304c294569d596a33a1eb438784df08ebdaea9ffdec0398f5866a80da0dbf41b1284fd8adf063779711d60deaf052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "020000000001018d066198354bcccb5ae30b8e22e0dc1c7b7cc82e2f09f5717467887f0be02e130000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000306a2e10f778129d9a05da90bb7b9780c7c24abf81c0eaca62afba7ac192691e47563954763c578ae8b6a863aea692eb7de5af052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4542,7 +4526,7 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8802b08c45289028349cc594a15406b2e9391f71c7c", + "data": "434e54525052545902000000000000000100000000000003e880a2f39be999227f439233f92bfc92175307049033", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4554,15 +4538,15 @@ }, "/v2/addresses/
/compose/sweep": { "result": { - "rawtransaction": "02000000000101b45c1cc6db765897669ae0918a7dd0167dd26d2cc925304bc3fbde5c6d0af6a3000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000236a212da04bebf6d4a4b5629d338c8f4c28d5672494a10929d05f171bb0d113586c514b59b3052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "02000000000101d3588bfb2399ce534e9d0709c9163fc54404d4543935cf439037c8359a2a65ba0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000236a217aae0a2a9fd30ec2ced0653034b208a74ec9420f24a2951e2fdb9a888794e54f5760b3052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904802b08c45289028349cc594a15406b2e9391f71c7c07ffff", + "data": "434e5452505254590480a2f39be999227f439233f92bfc9217530704903307ffff", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4574,10 +4558,10 @@ }, "/v2/addresses/
/compose/dispense": { "result": { - "rawtransaction": "02000000000101119dbe2ceeda25c2be45d2aba37559fcce4c913e993aa325d0ab72e23f06ab39020000001600142b08c45289028349cc594a15406b2e9391f71c7cffffffff03e8030000000000001600144d58139ca58d4e5278dcc90c123825e920a4c78200000000000000000c6a0a3b15b6e696812f9609ef5fb80827010000001600142b08c45289028349cc594a15406b2e9391f71c7c02000000000000", + "rawtransaction": "02000000000101f5f8c62f3372e9b1fbbd14a59ce06876ca5bb083695e2bb5d8e3354c8d7e3af902000000160014a2f39be999227f439233f92bfc92175307049033ffffffff03e803000000000000160014bebd760d2e19686fe41856142fc45e3c18bea24900000000000000000c6a0a82bdbe18eb20c070df0066b8082701000000160014a2f39be999227f439233f92bfc9217530704903302000000000000", "params": { - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "quantity": 1000 }, "name": "dispense", @@ -4593,9 +4577,9 @@ }, "/v2/addresses/
/compose/fairminter": { "result": { - "rawtransaction": "02000000000101c90d43ea7a244f57e0ec9f519f7c76b2f0a7763744ab6f7a75c8abb61ba15ac0000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000316a2f35e908ad61113bb575e8c54a8a9318b9acc9ca6f44db52c9d54a494d53f2d145dc45e5c0136dbb05bba1f6f739c36e99af052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "020000000001018a5d294695a3cad514f9a5355a1878d1b6985d4c2b75246f10b5ef4d1e4654a80000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000316a2f00366867e989fc281223556af269bde9b5862ec32ee8e4ddc59019e2af0a3f6c8ade61f624719c7ad07618314d1780a0af052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4627,15 +4611,15 @@ }, "/v2/addresses/
/compose/fairmint": { "result": { - "rawtransaction": "02000000000101f3e542c39e892018df6490f555f3094c88c4a380510d3affd25ec845aee5f020000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff020000000000000000166a14f35fd73585af2365f86aba91b9701aed9186e133d4b6052a010000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000000000000", + "rawtransaction": "02000000000101e8ab6caff3cacfcfd3dbadcbad2347735d0bbd4497929b30e82b3da7daac8c610000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000166a148480d79da2451734ec5258d8a4d16bad633ac169dab6052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -4654,10 +4638,10 @@ }, "/v2/addresses/
/compose/attach": { "result": { - "rawtransaction": "020000000001068b45c8be8ff92bbba5b5c2dda07b503f5545f3da2e069379f635d648c3462fc3000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff8793d45f8f4010d8e8e328dab5768f855e73dd99f690ce397db9992322843bc0000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff86ec152a47bd8f17389c79fc5818af06033bc05313a82f0bfb1ec2ba098e39bd000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff964aaeef52ff6553088b3c4224e983f3955681388ea9a0818036f5138fc7b51d000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff199b9ad5d5a5b91a9af4b2fbe97a5395db52c6ae6eea83c77f8103f55a929b0d000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffffd4775192c52937dbc731da8b8f1ff6f93862668bbdadbe2a8ea2c5bb2b980836000000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cfffffffff04e80300000000000069512103e936ed976e664450737aca36fe1e353dc89dccbe7c5ce14d951f54c0b9a7256e210375e4409ff7d7eb87de775c0d49b342cd89b61060d8ff59fbd67fbb2d9cefdbbb2102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153aee80300000000000069512102e936ed976e66445073289f64e80b347cc79ecce76613ec46c50a00c0efad779d21027def4ddce496bbdfdc370a0202f203818bf95c698af105b7d62fe82f9fb8db882102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153aee80300000000000069512103c336ed976e664450732ecd31b4503530a8ecfdaf351bba45a06c63f4dcc946b9210319dc79e880ae88e9eb066c3531c431b5b9c0650cbf936087b21a8e1ef9dbbda32102a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a76153aec13922fc060000001600143abbb33ac7a43d5ccf1f395ce2627403ce6740cf02000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106205474b852fd4c7ba82f078bdeea2a4d7e53ef4ea71724239b1f900ca093944f0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffffaa4c09c2227b094d2f3ba8dcadfa8b405ded9f775f960cc73026fc39580f5adc0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffffe41bcc599b63d1291193efde4f1c01bff9cc5569fd20d0de50b63ca0f320faae0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff2ebf8d97e45fb132031c0c5216a66d5eb6e0d2ca5dece980c302328d4ba02afc0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff13eccb9a92f0089f539d84322538d0c6f830cbed3ceb15ae0b08cf07d0f0d9980000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff71e1f0347d35e80df8e619a793c159c06ed180d2ef8fc0f04cd5e4c30ec494990000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff04e803000000000000695121025f199d3d069301d062dc703f6b6d6bee8b30d127877cebaf6a3e1e49407bcae021028038e667690d83c9a2cfbb15c033dcf4bdecaef30f7542c751c6b7f34a45bbc42103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453aee803000000000000695121035f199d3d069301d062dc263f2a2c3facdf728077c526a9a02b7f561b483b936b21029b3ced34665a8cd9a092b51f8c659fa1b3e2bcf90c7b498c05ccb7a01b43b52d2103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453aee8030000000000006951210375199d3d069301d062de2a3a2c236ae3e309b23ec674acf51d466e282a0ba6982103f95f8c03506cb4bc90abd67eb954abc3d784de9b3d1e70bb37ff84927d20839c2103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453aee83922fc0600000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8:1", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5:0", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4670,7 +4654,7 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713832616d78776b3835733734656e636c3839777779636e35713038787773783076756c676c397c646535336534663637316461303037316134623866336566633433643164333434643833363731663733363234323939653562653064356631666366306564383a317c5843507c31303030", + "data": "434e54525052545964626372743171307a33657038776a777870616a706c79676a643961377532646d6b796777376a687068326b327c663933613765386434633335653364386235326235653639383362303562636137363638653039636135313462646662623165393732333332666336663866353a307c5843507c31303030", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4682,10 +4666,10 @@ }, "/v2/utxos//compose/detach": { "result": { - "rawtransaction": "020000000001011cad9a9319fca4afa7b2d4cbacd0741ecfcc6edfe1346b2d6d4b66a237e0902c010000001600145f0a669381ca92fe5c67bb77083133c750fc8521ffffffff04e80300000000000069512103aa92ec82797fe0a4b39d4f8a9c278bd7e2897dc1fb7c69ea3a3644a3c9f09edf2102b655dba7fd942cb87e45605ec681a76a6cf1bb9639255fbc1b72f20182a7f99221025334ed116f50f7942d8cde029e80dda0180e31a39aa128d50c9729185d0615ea53aee80300000000000069512102aa92ec82797fe0a4b39f1ed89c2edddeb0df78c2ae706cf46e3104b3cee3958f2103b05187bbecc971ee6e11320acdd5ff3665e7af8c382f5eaf192bbd1797befd0a21025334ed116f50f7942d8cde029e80dda0180e31a39aa128d50c9729185d0615ea53aee803000000000000695121028092ec82797fe0a4b38f0885c27bd79b89fd4c8ffc7a6db80c5276c7ff92ad6d21028230eac39ba249db1d26066fa3b6930e5c90d8f55b416bde2913c560e4c6cdf321025334ed116f50f7942d8cde029e80dda0180e31a39aa128d50c9729185d0615ea53aee8980827010000001600145f0a669381ca92fe5c67bb77083133c750fc852102000000000000", + "rawtransaction": "02000000000101ee686ccfdf3a59108b1e94563148fb751758ca450757a0702214c34bcbc5174e01000000160014e5e7994267229ac88ef1b87c6bb3dd5ea6d8b915ffffffff04e80300000000000069512103d10c408319c158050fc7352fd30cae885c0e6cc47e770da5cb3ff182b089e35e2102ffa9319f5d5598f26968c6da1435aa18b608d02a24a1b90ab5c606f343a4dcf82103e9e0419bbf5a98aa4575404f101dac624c7d6c81a7f307d7f76566c820155e0a53aee80300000000000069512102d10c408319c158050f90602e8458ab8b5c5a60c3787e0ded9b6eb4c6e0c8e6552103b2aa63db504193b029299087513fb14be45fd87e25edbf5fbd951da504a68f332103e9e0419bbf5a98aa4575404f101dac624c7d6c81a7f307d7f76566c820155e0a53aee80300000000000069512102fb0c408319c158050fcb7122d050ffc1672f08da2c740ca1f90dc6b2d1b9d64c2103c89906ab6836f9c75159f1ed2153c82c8e3be11f12988d3bd0fe64c27391e57d2103e9e0419bbf5a98aa4575404f101dac624c7d6c81a7f307d7f76566c820155e0a53aef498082701000000160014e5e7994267229ac88ef1b87c6bb3dd5ea6d8b91502000000000000", "params": { - "source": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c:1", - "destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee:1", + "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4698,7 +4682,7 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964326339306530333761323636346236643264366233346531646636656363636631653734643061636362643462326137616661346663313939333961616431633a317c6263727431713832616d78776b3835733734656e636c3839777779636e35713038787773783076756c676c397c5843507c31303030", + "data": "434e54525052545964346531376335636234626333313432323730613035373037343563613538313737356662343833313536393431653862313035393361646663663663363865653a317c626372743171307a33657038776a777870616a706c79676a643961377532646d6b796777376a687068326b327c5843507c31303030", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4714,8 +4698,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 10000000000, @@ -4723,16 +4707,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726943675, - "last_issuance_block_time": 1726943683, + "first_issuance_block_time": 1726950270, + "last_issuance_block_time": 1726950277, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", - "owner": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", + "issuer": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", + "owner": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", "divisible": true, "locked": false, "supply": 100000000000, @@ -4740,16 +4724,16 @@ "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1726943670, - "last_issuance_block_time": 1726943670, + "first_issuance_block_time": 1726950266, + "last_issuance_block_time": 1726950266, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 100000000000, @@ -4757,16 +4741,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726943638, - "last_issuance_block_time": 1726943638, + "first_issuance_block_time": 1726950222, + "last_issuance_block_time": 1726950222, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 40, @@ -4774,16 +4758,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726943577, - "last_issuance_block_time": 1726943581, + "first_issuance_block_time": 1726950172, + "last_issuance_block_time": 1726950177, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 19, @@ -4791,8 +4775,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726943560, - "last_issuance_block_time": 1726943573, + "first_issuance_block_time": 1726950155, + "last_issuance_block_time": 1726950168, "supply_normalized": "0.00000019" } ], @@ -4804,8 +4788,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 10000000000, @@ -4813,15 +4797,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1726943523, - "last_issuance_block_time": 1726943534, + "first_issuance_block_time": 1726950117, + "last_issuance_block_time": 1726950130, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4829,14 +4813,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4844,7 +4828,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -4856,7 +4840,7 @@ }, "/v2/assets//balances/
": { "result": { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4875,9 +4859,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4892,7 +4876,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726943802, + "block_time": 1726950421, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4918,9 +4902,9 @@ }, { "tx_index": 55, - "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "block_index": 190, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4935,7 +4919,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726943798, + "block_time": 1726950417, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4961,9 +4945,9 @@ }, { "tx_index": 52, - "tx_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "tx_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "block_index": 186, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -4978,7 +4962,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726943781, + "block_time": 1726950389, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5004,9 +4988,9 @@ }, { "tx_index": 50, - "tx_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "tx_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "block_index": 185, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5021,7 +5005,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726943776, + "block_time": 1726950385, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5047,9 +5031,9 @@ }, { "tx_index": 49, - "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", "block_index": 186, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5064,7 +5048,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726943781, + "block_time": 1726950389, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5095,13 +5079,13 @@ "/v2/assets//matches": { "result": [ { - "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "tx0_index": 49, - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 52, - "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", - "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5115,7 +5099,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726943781, + "block_time": 1726950389, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5135,13 +5119,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "tx0_index": 49, - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 50, - "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", - "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5155,7 +5139,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726943776, + "block_time": 1726950385, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5175,13 +5159,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", "tx0_index": 47, - "tx0_hash": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 48, - "tx1_hash": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", - "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "tx1_hash": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5195,7 +5179,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726943703, + "block_time": 1726950308, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5222,20 +5206,20 @@ "result": [ { "block_index": 192, - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5243,20 +5227,20 @@ }, { "block_index": 125, - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "ad20ce4b786258ea1c1df1c6f730a0b7989626161405060fe9f692ef84bf66f1", + "event": "fa62268a3981b9cfff3d701ad4e086a879507e450c3e676a6fee67ce980309f3", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943534, + "block_time": 1726950130, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5264,20 +5248,20 @@ }, { "block_index": 124, - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134", + "event": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943531, + "block_time": 1726950126, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5285,20 +5269,20 @@ }, { "block_index": 124, - "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", + "event": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943531, + "block_time": 1726950126, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5310,16 +5294,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134", + "event": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943531, + "block_time": 1726950126, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5333,16 +5317,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "event": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -5354,16 +5338,16 @@ }, { "block_index": 192, - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -5375,16 +5359,16 @@ }, { "block_index": 192, - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -5396,16 +5380,16 @@ }, { "block_index": 191, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "event": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943802, + "block_time": 1726950421, "asset_info": { "divisible": true, "asset_longname": null, @@ -5417,16 +5401,16 @@ }, { "block_index": 189, - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943793, + "block_time": 1726950402, "asset_info": { "divisible": true, "asset_longname": null, @@ -5444,20 +5428,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", + "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", "block_index": 153, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726943663, + "block_time": 1726950256, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5479,14 +5463,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "ad20ce4b786258ea1c1df1c6f730a0b7989626161405060fe9f692ef84bf66f1", + "tx_hash": "fa62268a3981b9cfff3d701ad4e086a879507e450c3e676a6fee67ce980309f3", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -5501,20 +5485,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726943534, + "block_time": 1726950130, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134", + "tx_hash": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -5529,20 +5513,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726943531, + "block_time": 1726950126, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", + "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -5557,20 +5541,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726943527, + "block_time": 1726950121, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -5585,7 +5569,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1726943523, + "block_time": 1726950117, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5597,10 +5581,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5608,7 +5592,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "divisible": true, "asset_longname": null, @@ -5621,10 +5605,10 @@ }, { "tx_index": 53, - "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f", + "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d", "block_index": 187, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5632,7 +5616,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943785, + "block_time": 1726950394, "asset_info": { "divisible": true, "asset_longname": null, @@ -5645,10 +5629,10 @@ }, { "tx_index": 42, - "tx_hash": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", + "tx_hash": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", "block_index": 155, - "source": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1:0", - "destination": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c:1", + "source": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f:0", + "destination": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5656,7 +5640,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943670, + "block_time": 1726950266, "asset_info": { "divisible": true, "asset_longname": null, @@ -5669,10 +5653,10 @@ }, { "tx_index": 41, - "tx_hash": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1", + "tx_hash": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f", "block_index": 154, - "source": "74d316ca342326f38281e59ead3dfc971daed967e3bf1bba4ebaf1ebbfaccca3:0", - "destination": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1:0", + "source": "834d6141f50ca8d542f97a2a8763c5e0b903ea69dad914ca7b2314d1b15299c9:0", + "destination": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5680,7 +5664,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943667, + "block_time": 1726950261, "asset_info": { "divisible": true, "asset_longname": null, @@ -5699,18 +5683,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "last_status_tx_hash": null, - "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5720,7 +5704,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726943634, + "block_time": 1726950217, "asset_info": { "divisible": true, "asset_longname": null, @@ -5736,9 +5720,9 @@ }, { "tx_index": 30, - "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", + "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", "block_index": 144, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5747,7 +5731,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5757,7 +5741,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943625, + "block_time": 1726950210, "asset_info": { "divisible": true, "asset_longname": null, @@ -5773,9 +5757,9 @@ }, { "tx_index": 29, - "tx_hash": "fc59b2d70ba6a4019eb86b813223acd00bf3fe1819d6d28e2a2efdbb3fc9b526", + "tx_hash": "0a0a386a108fc77532c20f16f9135923ccb21213e6b57fc920af53fdec07f3a3", "block_index": 142, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5784,7 +5768,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "origin": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5794,7 +5778,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943607, + "block_time": 1726950201, "asset_info": { "divisible": true, "asset_longname": null, @@ -5810,9 +5794,9 @@ }, { "tx_index": 26, - "tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5821,7 +5805,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5831,7 +5815,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -5852,9 +5836,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 30, - "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", + "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", "block_index": 144, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5863,7 +5847,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5873,7 +5857,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943625, + "block_time": 1726950210, "asset_info": { "divisible": true, "asset_longname": null, @@ -5901,7 +5885,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5909,7 +5893,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -5918,7 +5902,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5926,7 +5910,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -5935,7 +5919,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5943,7 +5927,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -5952,7 +5936,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -5967,27 +5951,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", - "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "last_status_tx_hash": null, - "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6002,7 +5986,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726943634, + "block_time": 1726950217, "asset_info": { "divisible": true, "asset_longname": null, @@ -6016,19 +6000,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", + "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6036,7 +6020,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6051,7 +6035,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -6065,19 +6049,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", + "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", "block_index": 140, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6085,7 +6069,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6100,7 +6084,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943598, + "block_time": 1726950194, "asset_info": { "divisible": true, "asset_longname": null, @@ -6121,8 +6105,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "owner": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false, "supply": 0, @@ -6130,8 +6114,8 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1726943679, - "last_issuance_block_time": 1726943679, + "first_issuance_block_time": 1726950274, + "last_issuance_block_time": 1726950274, "supply_normalized": "0.00000000" } ], @@ -6141,10 +6125,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "tx_index": 10, "block_index": 125, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6169,7 +6153,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726943534 + "block_time": 1726950130 } ], "next_cursor": null, @@ -6178,64 +6162,64 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "ad20ce4b786258ea1c1df1c6f730a0b7989626161405060fe9f692ef84bf66f1", + "tx_hash": "fa62268a3981b9cfff3d701ad4e086a879507e450c3e676a6fee67ce980309f3", "tx_index": 13, "block_index": 125, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", - "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943534, + "block_time": 1726950130, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } }, { - "tx_hash": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134", + "tx_hash": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7", "tx_index": 12, "block_index": 124, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", - "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943531, + "block_time": 1726950126, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } }, { - "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", + "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943527, + "block_time": 1726950121, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } @@ -6247,22 +6231,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "679f034e75c76a36b33d31bda7b79526c442566d6836f5c2961bb6e36f25e24d", + "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "fairminter_tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726943527, + "block_time": 1726950121, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } @@ -6275,9 +6259,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6292,7 +6276,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726943802, + "block_time": 1726950421, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6318,9 +6302,9 @@ }, { "tx_index": 55, - "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "block_index": 190, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6335,7 +6319,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726943798, + "block_time": 1726950417, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6361,9 +6345,9 @@ }, { "tx_index": 52, - "tx_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "tx_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "block_index": 186, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6378,7 +6362,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726943781, + "block_time": 1726950389, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6404,9 +6388,9 @@ }, { "tx_index": 50, - "tx_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "tx_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "block_index": 185, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6421,7 +6405,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726943776, + "block_time": 1726950385, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6447,9 +6431,9 @@ }, { "tx_index": 49, - "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", "block_index": 186, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6464,7 +6448,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726943781, + "block_time": 1726950389, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6495,9 +6479,9 @@ "/v2/orders/": { "result": { "tx_index": 57, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6512,7 +6496,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726943802, + "block_time": 1726950421, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6540,13 +6524,13 @@ "/v2/orders//matches": { "result": [ { - "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "tx0_index": 49, - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 52, - "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", - "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6560,7 +6544,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726943781, + "block_time": 1726950389, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6580,13 +6564,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "tx0_index": 49, - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 50, - "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", - "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6600,7 +6584,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726943776, + "block_time": 1726950385, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6627,15 +6611,15 @@ "result": [ { "tx_index": 51, - "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", + "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", "block_index": 185, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "btc_amount": 2000, - "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "status": "valid", "confirmed": true, - "block_time": 1726943776, + "block_time": 1726950385, "btc_amount_normalized": "0.00002000" } ], @@ -6646,9 +6630,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6666,7 +6650,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726943802, + "block_time": 1726950421, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6692,9 +6676,9 @@ }, { "tx_index": 55, - "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "block_index": 190, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6712,7 +6696,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726943798, + "block_time": 1726950417, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6738,9 +6722,9 @@ }, { "tx_index": 52, - "tx_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "tx_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "block_index": 186, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6758,7 +6742,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726943781, + "block_time": 1726950389, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6784,9 +6768,9 @@ }, { "tx_index": 50, - "tx_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "tx_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "block_index": 185, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6804,7 +6788,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726943776, + "block_time": 1726950385, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6830,9 +6814,9 @@ }, { "tx_index": 49, - "tx_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", "block_index": 186, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6850,7 +6834,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726943781, + "block_time": 1726950389, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6881,13 +6865,13 @@ "/v2/orders///matches": { "result": [ { - "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "tx0_index": 49, - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 52, - "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", - "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6904,7 +6888,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726943781, + "block_time": 1726950389, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6924,13 +6908,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "tx0_index": 49, - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 50, - "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", - "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6947,7 +6931,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726943776, + "block_time": 1726950385, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6967,13 +6951,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", "tx0_index": 47, - "tx0_hash": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 48, - "tx1_hash": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", - "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "tx1_hash": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6990,7 +6974,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726943703, + "block_time": 1726950308, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7016,13 +7000,13 @@ "/v2/order_matches": { "result": [ { - "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "tx0_index": 49, - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 52, - "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", - "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7036,7 +7020,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726943781, + "block_time": 1726950389, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7056,13 +7040,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "tx0_index": 49, - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 50, - "tx1_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", - "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7076,7 +7060,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726943776, + "block_time": 1726950385, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7096,13 +7080,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", + "id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", "tx0_index": 47, - "tx0_hash": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_hash": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx1_index": 48, - "tx1_hash": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", - "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "tx1_hash": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7116,7 +7100,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726943703, + "block_time": 1726950308, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7161,66 +7145,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "338720d47c7ab728d1364edded99b5ecf28424429f2e3506bb6c2812aa8f8513", + "tx_hash": "b59307cc2ac4f942129759aae2c01c6787c312068f1f9274b9fca33b37cf2b5b", "block_index": 121, - "source": "bcrt1qxmw2n03dl0jlw8ap4tg5n9htdske39r04u5amh", + "source": "bcrt1qwqs0vxzwhmrrq95fnvdhz0dlywewnjusllcjc7", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1726943518, + "block_time": 1726950113, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "3760de148308b4b87619486b603d3b4e624dfce380efedd710b1e491b7992988", + "tx_hash": "cf3157538196c2ef2157f38ef876e51f522ca4dc1d4741b70aaee62b039ad635", "block_index": 120, - "source": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", + "source": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1726943514, + "block_time": 1726950109, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "b5267ba78738e5b02fb213596fe807b28bcf218bab3cb1baf8d82d5594b9dccb", + "tx_hash": "00b37df4c94335bff4c2621d0e083938367a01ace9ea4e952190a3bb3f35e521", "block_index": 119, - "source": "bcrt1qkjfngjnf7pr6038cynrarc5kh9cuje48yv3wtm", + "source": "bcrt1qtxavwjw8l7zg62dpwpj69pl6d2e55eh7c846rr", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1726943511, + "block_time": 1726950105, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "f1021a619687969d2bb8d9aecfd6e31c57d607b63df712475770c829311688e5", + "tx_hash": "0e233f42a66c3f1584ae4115105af5ee53d7aa4c12ba8c4e96ac321517b65e25", "block_index": 118, - "source": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", + "source": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1726943507, + "block_time": 1726950100, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "0659d434af9b56b1f1a97b3c83cb4d4bd3f4f78be6d848f9567e8237cdeca510", + "tx_hash": "ddae9377ab97695ed0de3b6aa7478a8c6ad78e88f509db7b4b4866b138eff01e", "block_index": 117, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1726943502, + "block_time": 1726950096, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7232,18 +7216,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "last_status_tx_hash": null, - "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7253,7 +7237,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726943634, + "block_time": 1726950217, "asset_info": { "divisible": true, "asset_longname": null, @@ -7269,9 +7253,9 @@ }, { "tx_index": 30, - "tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", + "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", "block_index": 144, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7280,7 +7264,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7290,7 +7274,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943625, + "block_time": 1726950210, "asset_info": { "divisible": true, "asset_longname": null, @@ -7306,9 +7290,9 @@ }, { "tx_index": 29, - "tx_hash": "fc59b2d70ba6a4019eb86b813223acd00bf3fe1819d6d28e2a2efdbb3fc9b526", + "tx_hash": "0a0a386a108fc77532c20f16f9135923ccb21213e6b57fc920af53fdec07f3a3", "block_index": 142, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7317,7 +7301,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "origin": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7327,7 +7311,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943607, + "block_time": 1726950201, "asset_info": { "divisible": true, "asset_longname": null, @@ -7343,9 +7327,9 @@ }, { "tx_index": 26, - "tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7354,7 +7338,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7364,7 +7348,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -7385,9 +7369,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7396,7 +7380,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7406,7 +7390,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -7426,19 +7410,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", + "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7446,7 +7430,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7461,7 +7445,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -7475,19 +7459,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", + "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", "block_index": 140, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7495,7 +7479,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7510,7 +7494,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943598, + "block_time": 1726950194, "asset_info": { "divisible": true, "asset_longname": null, @@ -7529,20 +7513,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", + "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", "block_index": 153, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726943663, + "block_time": 1726950256, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -7563,20 +7547,20 @@ "/v2/dividends/": { "result": { "tx_index": 40, - "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", + "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", "block_index": 153, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726943663, + "block_time": 1726950256, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -7599,12 +7583,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", + "event": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", "tx_index": 40, - "utxo": "74d316ca342326f38281e59ead3dfc971daed967e3bf1bba4ebaf1ebbfaccca3:0", - "utxo_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "utxo": "834d6141f50ca8d542f97a2a8763c5e0b903ea69dad914ca7b2314d1b15299c9:0", + "utxo_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "confirmed": true, - "block_time": 1726943663, + "block_time": 1726950256, "asset_info": { "divisible": true, "asset_longname": null, @@ -7616,16 +7600,16 @@ }, { "block_index": 153, - "address": "bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9", + "address": "bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", + "event": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726943663, + "block_time": 1726950256, "asset_info": { "divisible": true, "asset_longname": null, @@ -7646,27 +7630,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", - "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", + "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", + "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", "transaction_count": 1, - "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", - "block_time": 1726943809 + "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", + "block_time": 1726950429 }, "tx_hash": null, "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "tx_index": 59 }, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 }, { "event_index": 533, @@ -7675,12 +7659,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "status": "valid", "tag": "64657374726f79", - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "tx_index": 59, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -7690,24 +7674,24 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 193, - "event": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "event": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -7717,25 +7701,25 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", "block_index": 193, - "block_time": 1726943809, + "block_time": 1726950429, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "tx_index": 59, - "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", + "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -7755,9 +7739,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 } ], "next_cursor": 530, @@ -7769,15 +7753,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", - "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", + "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", + "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", "transaction_count": 1, - "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", - "block_time": 1726943809 + "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", + "block_time": 1726950429 }, "tx_hash": null, "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 } }, "/v2/events/counts": { @@ -7812,16 +7796,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -7831,78 +7815,78 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", + "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726943798, + "block_time": 1726950417, "asset_info": { "divisible": true, "asset_longname": null, @@ -7912,24 +7896,24 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "block_index": 190, - "block_time": 1726943798 + "block_time": 1726950417 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "event": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "divisible": true, "asset_longname": null, @@ -7939,9 +7923,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "block_time": 1726943789 + "block_time": 1726950398 } ], "next_cursor": 490, @@ -7958,27 +7942,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", - "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "last_status_tx_hash": null, - "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7993,7 +7977,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726943634, + "block_time": 1726950217, "asset_info": { "divisible": true, "asset_longname": null, @@ -8007,19 +7991,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0dd6a281786adeaf21fdf42596c999329bb4a183aae432eb6394ebeaa3e13350", + "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8027,7 +8011,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8042,7 +8026,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943602, + "block_time": 1726950197, "asset_info": { "divisible": true, "asset_longname": null, @@ -8056,19 +8040,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "85a66ca8098ead535c6108fbd728b34e318ee586ba37f85cf6da90ad5e25ed25", + "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", "block_index": 140, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "866c7bf9b2303fab9f3dca146f33c67787e206364fc72a0c9db8269a5d6162f4", + "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8076,7 +8060,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8091,7 +8075,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726943598, + "block_time": 1726950194, "asset_info": { "divisible": true, "asset_longname": null, @@ -8110,10 +8094,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8121,7 +8105,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "divisible": true, "asset_longname": null, @@ -8134,10 +8118,10 @@ }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8145,11 +8129,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -8158,10 +8142,10 @@ }, { "tx_index": 54, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8169,11 +8153,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -8182,10 +8166,10 @@ }, { "tx_index": 53, - "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f", + "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d", "block_index": 187, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -8193,7 +8177,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943785, + "block_time": 1726950394, "asset_info": { "divisible": true, "asset_longname": null, @@ -8206,10 +8190,10 @@ }, { "tx_index": 42, - "tx_hash": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", + "tx_hash": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", "block_index": 155, - "source": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1:0", - "destination": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c:1", + "source": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f:0", + "destination": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8217,7 +8201,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726943670, + "block_time": 1726950266, "asset_info": { "divisible": true, "asset_longname": null, @@ -8236,14 +8220,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", + "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -8258,20 +8242,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943687, + "block_time": 1726950282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "ad5638a61876314ea341c91f638042e00c58a6a150651c1198858bbfa50bcdd3", + "tx_hash": "9a15129044c626aa6de4262f26195a677a41cc8a4b82c649cb7a381658023bdd", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -8286,20 +8270,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726943683, + "block_time": 1726950277, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "920160abffc2681cf411a03e5ddc3c3f7f1156c1ceffaa2304a7f6f82032e82f", + "tx_hash": "3de27df9207dede883d535efe529dd8fc3974cb18d1a62d257e6bcb91aa08a74", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -8314,20 +8298,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943679, + "block_time": 1726950274, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "730d154e7c40e6f269a3c0f15937c64309d932202616ef4c54ec0c6e07ddc29c", + "tx_hash": "9157f7bfaf353b8d1bfda36bbcaf83e7a1ae668161834e9f1b166f1e47b0f4c0", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -8342,20 +8326,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943675, + "block_time": 1726950270, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", + "tx_hash": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", - "issuer": "bcrt1qtu9xdyupe2f0uhr8hdmssvfncag0epfpjmdg2y", + "source": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", + "issuer": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", "transfer": false, "callable": false, "call_date": 0, @@ -8370,7 +8354,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943670, + "block_time": 1726950266, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8381,14 +8365,14 @@ "/v2/issuances/": { "result": { "tx_index": 46, - "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", + "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "transfer": false, "callable": false, "call_date": 0, @@ -8403,7 +8387,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726943687, + "block_time": 1726950282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8412,16 +8396,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "fee_paid_normalized": "0.00600000" } ], @@ -8432,16 +8416,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726943805, + "block_time": 1726950425, "fee_paid_normalized": "0.00600000" } ], @@ -8452,9 +8436,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea", + "tx_hash": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198", "block_index": 138, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8462,14 +8446,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726943590, + "block_time": 1726950185, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "3adb5f6a83dbf36fc41ff713ae0883905bee565d0450041334cb0b35e8d7dc74", + "tx_hash": "ba4be2ba08322daea13f5b8b4710717e27f736da291c8238d4310b7a967668cf", "block_index": 137, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8477,7 +8461,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726943585, + "block_time": 1726950181, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8487,9 +8471,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea", + "tx_hash": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198", "block_index": 138, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8497,17 +8481,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726943590, + "block_time": 1726950185, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", + "tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", "tx_index": 22, "block_index": 135, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8532,13 +8516,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726943577 + "block_time": 1726950172 }, { - "tx_hash": "b3f3a00e287f390e19ce2397075725b2d85aefbde32fdb2b19f27b89a94738cf", + "tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", "tx_index": 18, "block_index": 131, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8563,13 +8547,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726943560 + "block_time": 1726950155 }, { - "tx_hash": "f8863d06dd1c63af927665e2741a68593285bb4a52bbadf58685b17809c50470", + "tx_hash": "e69f3ddbfd1ba8c631b757819d7664ca2bc7041fcd5a75be8e2711eea2cac9f8", "tx_index": 14, "block_index": 130, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8594,13 +8578,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726943556 + "block_time": 1726950151 }, { - "tx_hash": "1b83c5fe466c0ce1e567c6eb86eb6c4c15d025be3d614f98f63a8d1264c62492", + "tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", "tx_index": 10, "block_index": 125, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8625,7 +8609,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726943534 + "block_time": 1726950130 } ], "next_cursor": null, @@ -8639,8 +8623,8 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", - "address": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc" + "txid": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "address": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh" }, { "vout": 2, @@ -8648,8 +8632,8 @@ "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", - "address": "bcrt1qkjfngjnf7pr6038cynrarc5kh9cuje48yv3wtm" + "txid": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", + "address": "bcrt1qtxavwjw8l7zg62dpwpj69pl6d2e55eh7c846rr" } ], "next_cursor": null, @@ -8658,28 +8642,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "027a68bcd86f0da0f8e7c5d476321d09c5a9c00ffc71cf7bfb322f0186496134" + "tx_hash": "facd73ce7e552dab11a369e33253c91a09a63e697ed4542f29c5e0a118eb3a01" }, { - "tx_hash": "cc7990d855f354e057a6e08b954da3db23de867816732e8fc48f06b3fcadb83b" + "tx_hash": "712a9aba1cb503ed1a41fa5c0babfb3e6b649e69cbd2e657530242a61484c913" }, { - "tx_hash": "19c2df8875b48b0feac5ebd32ecd51687724b5f0cd6696c4530be3fe54275942" + "tx_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448" }, { - "tx_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c" + "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d" }, { - "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f" + "tx_hash": "005e41992c61245f5c6c82a7140ca55b6813d522dfdd67fd5bb22b1b144ee77d" }, { - "tx_hash": "9dc5d37ade58fe3fcc4001a7c5a086fc13efa89bbb556610bb78c7d6c2b059a1" + "tx_hash": "e742483b2266e8ade01df73224124c166517189dbb36182c8f2d5ff8960d3f87" }, { - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb" + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" }, { - "tx_hash": "29fa7abdb8f36c6ccf566648eecdf35b25c8832dd3e7d04c05cd68cb89a5b9cf" + "tx_hash": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7" } ], "next_cursor": null, @@ -8687,8 +8671,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 1, - "tx_hash": "5fb7017e22dd99935308749bc42c99dcb2c7f63a000eabcb579f2de68b1a65d5" + "block_index": 2, + "tx_hash": "2d45e6b03b23a3f1ea01231cc3f27bd052b446c1246fefdce01f9faf99e55a4b" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -8699,20 +8683,20 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81" + "txid": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "02a0a9552b82967405920844182c61c4bdf8ed4c6b6f80ce6f49886484a7d6a761" + "result": "03bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb724" }, "/v2/bitcoin/transactions/": { - "result": "020000000001010868d36801b7e9ccefaff9e835632724bef8ff179dae145ee0d64a02571a88970300000000ffffffff020000000000000000226a20efd23af66b243324230f7699e2ab650a7995a09ba6f342c89445eeb929c76651680b0a27010000001600144d58139ca58d4e5278dcc90c123825e920a4c7820247304402207b586af9c20ebe66916002d4457616420fa09a3636aff04d5c858dc611669d6202204c63d1f3a0c0f3f632455c02abd8e28fa98efddf8c513e252280783611cd71eb01210352e612ef317c96dc910d7efc93996e313947873e472d8309212310d61a94612200000000" + "result": "020000000001011c47366e343a9e877ad71973dda9dfd1fe3e5684b34d2050f103aa6932f987c60300000000ffffffff020000000000000000226a20cea231665cabd08a82716fe6f464d520b5b5cf11fa08af64b5a40c8a74d38315680b0a2701000000160014bebd760d2e19686fe41856142fc45e3c18bea249024730440220649b9ca4964671c3eb365c42aea2a7d90717d1d6571f1d5ad3e4b1ac9e8da90b0220646fee8e452cea4dc757229333dd9499c3ea97ea59f96e98f0e3794c76848e440121022098f1d02b56e77ca857c5355d804950681dd648a95db1667bedd171bfe91e7000000000" }, "/v2/bitcoin/estimatesmartfee": { - "result": 68546 + "result": 68517 }, "/v2/bitcoin/getmempoolinfo": { "result": { @@ -8732,26 +8716,26 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "tx_index": 60 } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "memo": null, "quantity": 10000, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "status": "valid", - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "tx_index": 60, "asset_info": { "divisible": true, @@ -8764,19 +8748,19 @@ } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "CREDIT", "params": { - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -8788,19 +8772,19 @@ } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 193, - "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -8812,27 +8796,27 @@ } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726943814.1647968, + "block_time": 1726950434.0695176, "btc_amount": 0, - "data": "020000000000000001000000000000271080c6ffd5588e4548e249935cfdedfb570089a7e433", + "data": "0200000000000000010000000000002710802d892d9d215a3e35d0fffb2b3e7cabdb14d24549", "destination": "", "fee": 10000, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "tx_index": 60, - "utxos_info": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a:1", + "utxos_info": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "memo": null, "asset_info": { "divisible": true, @@ -8854,19 +8838,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "CREDIT", "params": { - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -8884,26 +8868,26 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "tx_index": 60 } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "memo": null, "quantity": 10000, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "status": "valid", - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "tx_index": 60, "asset_info": { "divisible": true, @@ -8916,19 +8900,19 @@ } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "CREDIT", "params": { - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -8940,19 +8924,19 @@ } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 193, - "event": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -8964,27 +8948,27 @@ } }, { - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726943814.1647968, + "block_time": 1726950434.0695176, "btc_amount": 0, - "data": "020000000000000001000000000000271080c6ffd5588e4548e249935cfdedfb570089a7e433", + "data": "0200000000000000010000000000002710802d892d9d215a3e35d0fffb2b3e7cabdb14d24549", "destination": "", "fee": 10000, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", - "tx_hash": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", "tx_index": 60, - "utxos_info": "96cfd30b97a674603d11eaffb6c4c43040999cba8aee5ef495fb4a9a945ced5a:1", + "utxos_info": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "memo": null, "asset_info": { "divisible": true, @@ -9019,15 +9003,15 @@ "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", "block_index": 193, - "block_time": 1726943809, + "block_time": 1726950429, "difficulty": 545259519, - "previous_block_hash": "20b11544d7612641c441b924b671834c9e85987c12d52c9389bfc6509a65244f" + "previous_block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e" }, "tx_hash": null, "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 } ], "next_cursor": 518, @@ -9039,17 +9023,17 @@ "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "005c53eade83d94f8c64e0d908656a24a97b96ab0f79e8fcc2e8b24c1d8a1bae", + "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", "block_index": 193, - "block_time": 1726943809, + "block_time": 1726950429, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "tx_index": 59, - "utxos_info": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf:1", + "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -9069,9 +9053,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 } ], "next_cursor": 519, @@ -9085,16 +9069,16 @@ "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "destination": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "out_index": 0, - "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", "tx_index": 33, - "block_time": 1726943634, + "block_time": 1726950217, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", "block_index": 146, - "block_time": 1726943634 + "block_time": 1726950217 } ], "next_cursor": 237, @@ -9107,15 +9091,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "29d3f4442b291f5e25265497dba3a9b4a0ac3a422d677f92b26df17f8c15ac6d", - "messages_hash": "efc38f5feaf63d096e79b5d21e13f9e16d41a3de0744c7271c19e1eac5e47952", + "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", + "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", "transaction_count": 1, - "txlist_hash": "f579ec87949d401c714701d09d35ef820597b76a232c65bd89937ae8670a062a", - "block_time": 1726943809 + "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", + "block_time": 1726950429 }, "tx_hash": null, "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 } ], "next_cursor": 529, @@ -9128,12 +9112,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "tx_index": 59 }, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 } ], "next_cursor": 528, @@ -9146,15 +9130,15 @@ "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 193, - "event": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "event": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -9164,9 +9148,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 } ], "next_cursor": 525, @@ -9178,16 +9162,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726943805, + "block_time": 1726950425, "asset_info": { "divisible": true, "asset_longname": null, @@ -9197,9 +9181,9 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 } ], "next_cursor": 524, @@ -9213,14 +9197,14 @@ "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "memo": null, "quantity": 10000, - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "status": "valid", - "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f", + "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d", "tx_index": 53, - "block_time": 1726943785, + "block_time": 1726950394, "asset_info": { "divisible": true, "asset_longname": null, @@ -9230,9 +9214,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "5dee560700b95fa8ead577cbac7dca820326ecf5d67107111cf6b885842d1e9f", + "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d", "block_index": 187, - "block_time": 1726943785 + "block_time": 1726950394 } ], "next_cursor": null, @@ -9246,15 +9230,15 @@ "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "status": "valid", - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "tx_index": 54, - "block_time": 1726943789, + "block_time": 1726950398, "asset_info": { "divisible": true, "asset_longname": null, @@ -9264,9 +9248,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "24466a80d858dde0184daa0b3a64d805a8384c461935714dce74148a4e2e79f3", + "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", "block_index": 188, - "block_time": 1726943789 + "block_time": 1726950398 } ], "next_cursor": 495, @@ -9289,20 +9273,20 @@ "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "status": "valid", - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "tx_index": 58, - "block_time": 1726943805, + "block_time": 1726950425, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "aeec8d6ff347b12d528628e0b274c5d5c2ecf1767339f1d217209dd2d83143bb", + "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", "block_index": 192, - "block_time": 1726943805 + "block_time": 1726950425 } ], "next_cursor": null, @@ -9319,15 +9303,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "status": "valid", - "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", + "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", "tx_index": 40, - "block_time": 1726943663, + "block_time": 1726950256, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, @@ -9341,9 +9325,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "5d16896a6558f198c7a29c6347a9cfa9f073f73df5f5c67c6c44183b45db363c", + "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", "block_index": 153, - "block_time": 1726943663 + "block_time": 1726950256 } ], "next_cursor": null, @@ -9364,11 +9348,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 159, - "block_time": 1726943687 + "block_time": 1726950282 }, - "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", + "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", "block_index": 159, - "block_time": 1726943687 + "block_time": 1726950282 } ], "next_cursor": 367, @@ -9391,22 +9375,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "status": "valid", "transfer": false, - "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", + "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", "tx_index": 46, - "block_time": 1726943687, + "block_time": 1726950282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "193a3a0e332ffc2353dbc109536eb2229958318c32bb8726ff649be86929132c", + "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", "block_index": 159, - "block_time": 1726943687 + "block_time": 1726950282 } ], "next_cursor": 374, @@ -9421,12 +9405,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qf4vp88993489y7xueyxpywp9ays2f3uzqfqfg3", + "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", "status": "valid", "tag": "64657374726f79", - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "tx_index": 59, - "block_time": 1726943809, + "block_time": 1726950429, "asset_info": { "divisible": true, "asset_longname": null, @@ -9436,9 +9420,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "ba3c3ed30ed8e1140e5204de72aacdf3d4a964f9e5130e17dd1f4c463bc2deaf", + "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", "block_index": 193, - "block_time": 1726943809 + "block_time": 1726950429 } ], "next_cursor": 157, @@ -9463,11 +9447,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "status": "open", - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "tx_index": 57, - "block_time": 1726943802, + "block_time": 1726950421, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9491,9 +9475,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "8503f163bc7361ab31f81e04bdaaacb7be6c7921350feaf902ba04246160040e", + "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", "block_index": 191, - "block_time": 1726943802 + "block_time": 1726950421 } ], "next_cursor": 502, @@ -9511,20 +9495,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f", + "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", "tx0_index": 49, - "tx1_address": "bcrt1qcmla2kywg4ywyjvntn77m76hqzy60epn0tuzfk", + "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "tx1_index": 52, - "block_time": 1726943781, + "block_time": 1726950389, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9543,9 +9527,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "2a8476712d25f5264608809ceb9fe395a19355e094798d9bc86d7b8b1ed72c5c", + "tx_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", "block_index": 186, - "block_time": 1726943781 + "block_time": 1726950389 } ], "next_cursor": 461, @@ -9558,11 +9542,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8" + "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26" }, - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "block_index": 190, - "block_time": 1726943798 + "block_time": 1726950417 } ], "next_cursor": 476, @@ -9575,11 +9559,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294" + "tx_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec" }, - "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", + "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", "block_index": 185, - "block_time": 1726943776 + "block_time": 1726950385 } ], "next_cursor": null, @@ -9591,13 +9575,13 @@ "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", - "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", + "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", "status": "completed" }, - "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", + "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", "block_index": 185, - "block_time": 1726943776 + "block_time": 1726950385 } ], "next_cursor": 440, @@ -9611,18 +9595,18 @@ "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "order_match_id": "de81c550eb47c7bce4849c5e00199478c639414949d3d2095ac3885afe3b914f_c869382cdaced5f53c8794a6cf0dc0ecce384e858035c121b769a65c3f131294", - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "status": "valid", - "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", + "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", "tx_index": 51, - "block_time": 1726943776, + "block_time": 1726950385, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "39ab063fe272abd025a33a993e914ccefc5975a3abd245bec225daee2cbe9d11", + "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", "block_index": 185, - "block_time": 1726943776 + "block_time": 1726950385 } ], "next_cursor": null, @@ -9635,16 +9619,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "de53e4f671da0071a4b8f3efc43d1d344d83671f73624299e5be0d5f1fcf0ed8", - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "status": "valid", - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "tx_index": 56, - "block_time": 1726943798 + "block_time": 1726950417 }, - "tx_hash": "73c2ab5a25f1f47bb5428555d42f1128f0a8d3eb5c05ff82480d4d4f59af7a7a", + "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", "block_index": 190, - "block_time": 1726943798 + "block_time": 1726950417 } ], "next_cursor": null, @@ -9657,13 +9641,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "block_time": 1726943703 + "order_hash": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "block_time": 1726950308 }, "tx_hash": null, "block_index": 182, - "block_time": 1726943703 + "block_time": 1726950308 } ], "next_cursor": 446, @@ -9676,14 +9660,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "281bb000500b80707e0bb7efdb8842b629c5e4edb2cd99fb7bbf68897b8c80d8_136d0a76594c2c95ebfa9dadf27988569c950a3cba75874d27efc0f2f7f4c172", - "tx0_address": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "tx1_address": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", - "block_time": 1726943703 + "order_match_id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "block_time": 1726950308 }, "tx_hash": null, "block_index": 182, - "block_time": 1726943703 + "block_time": 1726950308 } ], "next_cursor": null, @@ -9701,14 +9685,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", - "origin": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "satoshirate": 1, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "status": 0, - "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", "tx_index": 32, - "block_time": 1726943630, + "block_time": 1726950213, "asset_info": { "divisible": true, "asset_longname": null, @@ -9721,9 +9705,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", "block_index": 145, - "block_time": 1726943630 + "block_time": 1726950213 } ], "next_cursor": 254, @@ -9738,9 +9722,9 @@ "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "status": 0, - "tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", + "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", "asset_info": { "divisible": true, "asset_longname": null, @@ -9750,9 +9734,9 @@ }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", "block_index": 146, - "block_time": 1726943634 + "block_time": 1726950217 } ], "next_cursor": 260, @@ -9766,13 +9750,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mnFNV6wfK94ay8hxrDH4jGrSPTwRBmePWL", + "destination": "myw2gnUjyQk3M8df2PczAdDghPFxkySJAb", "dispense_quantity": 10, - "dispenser_tx_hash": "bb2be0c8573f89e18621a54ee932b71e61a2349ea2d07dcab1f84a0f2d80d98f", - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", - "tx_hash": "8ee82991c0b27326c3967002388a490584097696bdce50c624fb03d2516758db", + "dispenser_tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx_hash": "da3e84b4976d41d317b9af30be69bf3e402f496316d4b7be76dfa6882ef99186", "tx_index": 31, - "block_time": 1726943625, + "block_time": 1726950210, "asset_info": { "divisible": true, "asset_longname": null, @@ -9782,9 +9766,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "8ee82991c0b27326c3967002388a490584097696bdce50c624fb03d2516758db", + "tx_hash": "da3e84b4976d41d317b9af30be69bf3e402f496316d4b7be76dfa6882ef99186", "block_index": 144, - "block_time": 1726943625 + "block_time": 1726950210 } ], "next_cursor": null, @@ -9799,14 +9783,14 @@ "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qkag3004gzwkp36r4u624c34epwpz69rndmxzqc", + "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "411751446349b5ba7279cb9c2539e9701d79babb22086350a6bb57efa64519a1", - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", - "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", "tx_index": 33, - "block_time": 1726943634, + "block_time": 1726950217, "asset_info": { "divisible": true, "asset_longname": null, @@ -9817,9 +9801,9 @@ "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "3314b4c0755ad20b7738bc243567d003d5e0f184eb3a1d42c5d8ec0491042f81", + "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", "block_index": 146, - "block_time": 1726943634 + "block_time": 1726950217 } ], "next_cursor": 240, @@ -9834,19 +9818,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qgkw3l0cumu6cj8jwkgfq8d6nkyjzalz60yzd5f", + "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea", + "tx_hash": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198", "tx_index": 25, "value": 66600.0, - "block_time": 1726943590, + "block_time": 1726950185, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "70c3c50eb1ade60713a417af9791f06d69a30d6a85b506e980b6631e632b9dea", + "tx_hash": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198", "block_index": 138, - "block_time": 1726943590 + "block_time": 1726950185 } ], "next_cursor": 213, @@ -9877,16 +9861,16 @@ "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "start_block": 0, "status": "open", - "tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", + "tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", "tx_index": 22, - "block_time": 1726943577 + "block_time": 1726950172 }, - "tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", + "tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", "block_index": 135, - "block_time": 1726943577 + "block_time": 1726950172 } ], "next_cursor": 161, @@ -9899,11 +9883,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "f8863d06dd1c63af927665e2741a68593285bb4a52bbadf58685b17809c50470" + "tx_hash": "e69f3ddbfd1ba8c631b757819d7664ca2bc7041fcd5a75be8e2711eea2cac9f8" }, "tx_hash": null, "block_index": 130, - "block_time": 1726943556 + "block_time": 1726950151 } ], "next_cursor": 110, @@ -9919,24 +9903,24 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "a1a2f1798d55e2af58bdbe8ef6d2d22579f1cea52b1b0716d4a94c98daa28bc2", + "fairminter_tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", "paid_quantity": 34, - "source": "bcrt1q9vyvg55fq2p5nnzefg25q6ewjwglw8ruqejcxh", + "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", "status": "valid", - "tx_hash": "296a4a2f8facf4a5ccf44ab044c61ea9b9216a3071599a39f70b231bc11801f0", + "tx_hash": "34bec257ccf1f8c374493fc15f7cbb1af6846494d3b097680b0826b82f088d9d", "tx_index": 23, - "block_time": 1726943581, + "block_time": 1726950177, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false } }, - "tx_hash": "296a4a2f8facf4a5ccf44ab044c61ea9b9216a3071599a39f70b231bc11801f0", + "tx_hash": "34bec257ccf1f8c374493fc15f7cbb1af6846494d3b097680b0826b82f088d9d", "block_index": 136, - "block_time": 1726943581 + "block_time": 1726950177 } ], "next_cursor": 190, @@ -9950,28 +9934,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98:1", + "destination": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "status": "valid", - "tx_hash": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", + "tx_hash": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", "tx_index": 38, - "block_time": 1726943654, + "block_time": 1726950248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "db80b4b563214865dcf52ac63219710fd3e438d2a1b629d3d7465a7023a73e98", + "tx_hash": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", "block_index": 151, - "block_time": 1726943654 + "block_time": 1726950248 } ], "next_cursor": 291, @@ -9985,28 +9969,28 @@ "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qfg9cjkk7kh502gn32hn2040ttyg0jcy6cugxu9", + "destination": "bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "cc7990d855f354e057a6e08b954da3db23de867816732e8fc48f06b3fcadb83b:0", + "source": "facd73ce7e552dab11a369e33253c91a09a63e697ed4542f29c5e0a118eb3a01:0", "status": "valid", - "tx_hash": "97881a57024ad6e05e14ae9d17fff8be24276335e8f9afefcce9b70168d36808", + "tx_hash": "c687f93269aa03f150204db384563efed1dfa9dd7319d77a879e3a346e36471c", "tx_index": 37, - "block_time": 1726943651, + "block_time": 1726950243, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q82amxwk85s74encl89wwycn5q08xwsx0vulgl9", + "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "97881a57024ad6e05e14ae9d17fff8be24276335e8f9afefcce9b70168d36808", + "tx_hash": "c687f93269aa03f150204db384563efed1dfa9dd7319d77a879e3a346e36471c", "block_index": 150, - "block_time": 1726943651 + "block_time": 1726950243 } ], "next_cursor": null, @@ -10020,14 +10004,14 @@ "params": { "asset": "XCP", "block_index": 155, - "destination": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c:1", + "destination": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee:1", "msg_index": 1, "quantity": 1500000000, - "source": "9fa1987cc32c1c7ed0d69ac381cc71301104e6bd59d6f9444faa7d7253cde6b1:0", + "source": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f:0", "status": "valid", - "tx_hash": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", + "tx_hash": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", "tx_index": 42, - "block_time": 1726943670, + "block_time": 1726950266, "asset_info": { "divisible": true, "asset_longname": null, @@ -10037,9 +10021,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2c90e037a2664b6d2d6b34e1df6ecccf1e74d0accbd4b2a7afa4fc19939aad1c", + "tx_hash": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", "block_index": 155, - "block_time": 1726943670 + "block_time": 1726950266 } ], "next_cursor": 346, @@ -10054,17 +10038,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qxmw2n03dl0jlw8ap4tg5n9htdske39r04u5amh", + "source": "bcrt1qwqs0vxzwhmrrq95fnvdhz0dlywewnjusllcjc7", "status": "valid", - "tx_hash": "338720d47c7ab728d1364edded99b5ecf28424429f2e3506bb6c2812aa8f8513", + "tx_hash": "b59307cc2ac4f942129759aae2c01c6787c312068f1f9274b9fca33b37cf2b5b", "tx_index": 9, - "block_time": 1726943518, + "block_time": 1726950113, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "338720d47c7ab728d1364edded99b5ecf28424429f2e3506bb6c2812aa8f8513", + "tx_hash": "b59307cc2ac4f942129759aae2c01c6787c312068f1f9274b9fca33b37cf2b5b", "block_index": 121, - "block_time": 1726943518 + "block_time": 1726950113 } ], "next_cursor": 65, From be9dfd9abe883c0075bcb0e41e0e5e3bd2207f39 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 22 Sep 2024 10:47:15 +0000 Subject: [PATCH 25/46] refactor transaction.py phase 3 --- apiary.apib | 3384 +++++++++-------- .../counterpartycore/lib/api/api_server.py | 2 - .../counterpartycore/lib/transaction.py | 422 +- .../lib/transaction_helper/p2sh_encoding.py | 292 +- .../lib/transaction_helper/serializer.py | 163 - .../lib/transaction_helper/utxo_locks.py | 158 + counterparty-core/counterpartycore/server.py | 5 - .../counterpartycore/test/arc4_test.py | 6 - .../test/bytespersigop_test.py | 2 - .../test/estimate_fee_per_kb_test.py | 2 - .../test/p2sh_encoding_test.py | 1 - .../test/regtest/apidoc/apicache.json | 3052 +++++++-------- .../counterpartycore/test/util_test.py | 2 - .../counterpartycore/test/utxolocks_test.py | 6 +- 14 files changed, 3694 insertions(+), 3803 deletions(-) create mode 100644 counterparty-core/counterpartycore/lib/transaction_helper/utxo_locks.py diff --git a/apiary.apib b/apiary.apib index 5fa4c62928..998b75303b 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-09-21 20:27:25.622373. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-09-22 10:23:38.464660. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -179,15 +179,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", "block_index": 193, - "block_time": 1726950429, + "block_time": 1727000592, "difficulty": 545259519, - "previous_block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e" + "previous_block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383" }, "tx_hash": null, "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 } ], "next_cursor": 518, @@ -204,17 +204,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", "block_index": 193, - "block_time": 1726950429, + "block_time": 1727000592, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "tx_index": 59, - "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", + "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -234,9 +234,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 } ], "next_cursor": 519, @@ -255,16 +255,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "destination": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "out_index": 0, - "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", "tx_index": 33, - "block_time": 1726950217, + "block_time": 1727000400, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", "block_index": 146, - "block_time": 1726950217 + "block_time": 1727000400 } ], "next_cursor": 237, @@ -282,15 +282,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", - "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", + "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", + "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", "transaction_count": 1, - "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", - "block_time": 1726950429 + "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", + "block_time": 1727000592 }, "tx_hash": null, "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 } ], "next_cursor": 529, @@ -308,12 +308,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "tx_index": 59 }, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 } ], "next_cursor": 528, @@ -333,15 +333,15 @@ Here is a list of events classified by theme and for each an example response: "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 193, - "event": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "event": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -351,9 +351,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 } ], "next_cursor": 525, @@ -370,16 +370,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -389,9 +389,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 } ], "next_cursor": 524, @@ -410,14 +410,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "memo": null, "quantity": 10000, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "status": "valid", - "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d", + "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50", "tx_index": 53, - "block_time": 1726950394, + "block_time": 1727000567, "asset_info": { "divisible": true, "asset_longname": null, @@ -427,9 +427,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d", + "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50", "block_index": 187, - "block_time": 1726950394 + "block_time": 1727000567 } ], "next_cursor": null, @@ -448,15 +448,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "status": "valid", - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "tx_index": 54, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "divisible": true, "asset_longname": null, @@ -466,9 +466,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "block_time": 1726950398 + "block_time": 1727000571 } ], "next_cursor": 495, @@ -506,20 +506,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "status": "valid", - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, - "block_time": 1726950425, + "block_time": 1727000588, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 } ], "next_cursor": null, @@ -541,15 +541,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": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "status": "valid", - "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", + "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", "tx_index": 40, - "block_time": 1726950256, + "block_time": 1727000430, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -563,9 +563,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": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", + "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", "block_index": 153, - "block_time": 1726950256 + "block_time": 1727000430 } ], "next_cursor": null, @@ -598,11 +598,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": 159, - "block_time": 1726950282 + "block_time": 1727000465 }, - "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", + "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", "block_index": 159, - "block_time": 1726950282 + "block_time": 1727000465 } ], "next_cursor": 367, @@ -630,22 +630,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": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "status": "valid", "transfer": false, - "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", + "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", "tx_index": 46, - "block_time": 1726950282, + "block_time": 1727000465, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", + "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", "block_index": 159, - "block_time": 1726950282 + "block_time": 1727000465 } ], "next_cursor": 374, @@ -665,12 +665,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "status": "valid", "tag": "64657374726f79", - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "tx_index": 59, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -680,9 +680,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 } ], "next_cursor": 157, @@ -714,11 +714,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": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "status": "open", - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "tx_index": 57, - "block_time": 1726950421, + "block_time": 1727000584, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -742,9 +742,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": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "block_time": 1726950421 + "block_time": 1727000584 } ], "next_cursor": 502, @@ -767,20 +767,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": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", "tx0_index": 49, - "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "tx1_index": 52, - "block_time": 1726950389, + "block_time": 1727000563, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -799,9 +799,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": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "tx_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "block_index": 186, - "block_time": 1726950389 + "block_time": 1727000563 } ], "next_cursor": 461, @@ -819,11 +819,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26" + "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81" }, - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "block_index": 190, - "block_time": 1726950417 + "block_time": 1727000580 } ], "next_cursor": 476, @@ -841,11 +841,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec" + "tx_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7" }, - "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", + "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", "block_index": 185, - "block_time": 1726950385 + "block_time": 1727000558 } ], "next_cursor": null, @@ -862,13 +862,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", - "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "status": "completed" }, - "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", + "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", "block_index": 185, - "block_time": 1726950385 + "block_time": 1727000558 } ], "next_cursor": 440, @@ -887,18 +887,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "status": "valid", - "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", + "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", "tx_index": 51, - "block_time": 1726950385, + "block_time": 1727000558, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", + "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", "block_index": 185, - "block_time": 1726950385 + "block_time": 1727000558 } ], "next_cursor": null, @@ -916,16 +916,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "status": "valid", - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "tx_index": 56, - "block_time": 1726950417 + "block_time": 1727000580 }, - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "block_index": 190, - "block_time": 1726950417 + "block_time": 1727000580 } ], "next_cursor": null, @@ -943,13 +943,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "block_time": 1726950308 + "order_hash": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "block_time": 1727000481 }, "tx_hash": null, "block_index": 182, - "block_time": 1726950308 + "block_time": 1727000481 } ], "next_cursor": 446, @@ -967,14 +967,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "block_time": 1726950308 + "order_match_id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "block_time": 1727000481 }, "tx_hash": null, "block_index": 182, - "block_time": 1726950308 + "block_time": 1727000481 } ], "next_cursor": null, @@ -999,14 +999,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": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", - "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "satoshirate": 1, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "status": 0, - "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", "tx_index": 32, - "block_time": 1726950213, + "block_time": 1727000396, "asset_info": { "divisible": true, "asset_longname": null, @@ -1019,9 +1019,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": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", "block_index": 145, - "block_time": 1726950213 + "block_time": 1727000396 } ], "next_cursor": 254, @@ -1041,9 +1041,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "status": 0, - "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", "asset_info": { "divisible": true, "asset_longname": null, @@ -1053,9 +1053,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", "block_index": 146, - "block_time": 1726950217 + "block_time": 1727000400 } ], "next_cursor": 260, @@ -1074,13 +1074,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "myw2gnUjyQk3M8df2PczAdDghPFxkySJAb", + "destination": "n3bwtSMx8SHqqv1MnQA3ciCsFvUSWkfbeo", "dispense_quantity": 10, - "dispenser_tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "tx_hash": "da3e84b4976d41d317b9af30be69bf3e402f496316d4b7be76dfa6882ef99186", + "dispenser_tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx_hash": "4c6a5cc906f2dbfa0d91de293e9e2831b193f4122ff68273a78c85c46c2b5123", "tx_index": 31, - "block_time": 1726950210, + "block_time": 1727000392, "asset_info": { "divisible": true, "asset_longname": null, @@ -1090,9 +1090,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "da3e84b4976d41d317b9af30be69bf3e402f496316d4b7be76dfa6882ef99186", + "tx_hash": "4c6a5cc906f2dbfa0d91de293e9e2831b193f4122ff68273a78c85c46c2b5123", "block_index": 144, - "block_time": 1726950210 + "block_time": 1727000392 } ], "next_cursor": null, @@ -1112,14 +1112,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", + "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", - "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", "tx_index": 33, - "block_time": 1726950217, + "block_time": 1727000400, "asset_info": { "divisible": true, "asset_longname": null, @@ -1130,9 +1130,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", "block_index": 146, - "block_time": 1726950217 + "block_time": 1727000400 } ], "next_cursor": 240, @@ -1154,19 +1154,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": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198", + "tx_hash": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf", "tx_index": 25, "value": 66600.0, - "block_time": 1726950185, + "block_time": 1727000366, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198", + "tx_hash": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf", "block_index": 138, - "block_time": 1726950185 + "block_time": 1727000366 } ], "next_cursor": 213, @@ -1204,16 +1204,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "start_block": 0, "status": "open", - "tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", + "tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", "tx_index": 22, - "block_time": 1726950172 + "block_time": 1727000354 }, - "tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", + "tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", "block_index": 135, - "block_time": 1726950172 + "block_time": 1727000354 } ], "next_cursor": 161, @@ -1231,11 +1231,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "e69f3ddbfd1ba8c631b757819d7664ca2bc7041fcd5a75be8e2711eea2cac9f8" + "tx_hash": "7db72c3a3d73085625f2f30f21a6937c09222727d2b9942e21aec693b24bf08e" }, "tx_hash": null, "block_index": 130, - "block_time": 1726950151 + "block_time": 1727000322 } ], "next_cursor": 110, @@ -1256,24 +1256,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", + "fairminter_tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", "paid_quantity": 34, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "status": "valid", - "tx_hash": "34bec257ccf1f8c374493fc15f7cbb1af6846494d3b097680b0826b82f088d9d", + "tx_hash": "8a9a1f916ad7518fbbdca58817a4ac2b58533c0a9768c4f1ca05778acb75e7d1", "tx_index": 23, - "block_time": 1726950177, + "block_time": 1727000358, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } }, - "tx_hash": "34bec257ccf1f8c374493fc15f7cbb1af6846494d3b097680b0826b82f088d9d", + "tx_hash": "8a9a1f916ad7518fbbdca58817a4ac2b58533c0a9768c4f1ca05778acb75e7d1", "block_index": 136, - "block_time": 1726950177 + "block_time": 1727000358 } ], "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": 151, - "destination": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae:1", + "destination": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "status": "valid", - "tx_hash": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", + "tx_hash": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", "tx_index": 38, - "block_time": 1726950248, + "block_time": 1727000422, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", + "tx_hash": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", "block_index": 151, - "block_time": 1726950248 + "block_time": 1727000422 } ], "next_cursor": 291, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj", + "destination": "bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "facd73ce7e552dab11a369e33253c91a09a63e697ed4542f29c5e0a118eb3a01:0", + "source": "9b353d1cbb0a30108e4f9cc683852d659f4f611c141bab3af77efc10ab93dc4a:0", "status": "valid", - "tx_hash": "c687f93269aa03f150204db384563efed1dfa9dd7319d77a879e3a346e36471c", + "tx_hash": "804df83cded11a27f2118503527164d631474a075cd88df3e7f0d09a972d3cf6", "tx_index": 37, - "block_time": 1726950243, + "block_time": 1727000417, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c687f93269aa03f150204db384563efed1dfa9dd7319d77a879e3a346e36471c", + "tx_hash": "804df83cded11a27f2118503527164d631474a075cd88df3e7f0d09a972d3cf6", "block_index": 150, - "block_time": 1726950243 + "block_time": 1727000417 } ], "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": 155, - "destination": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee:1", + "destination": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3:1", "msg_index": 1, "quantity": 1500000000, - "source": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f:0", + "source": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881:0", "status": "valid", - "tx_hash": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", + "tx_hash": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", "tx_index": 42, - "block_time": 1726950266, + "block_time": 1727000439, "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": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", + "tx_hash": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", "block_index": 155, - "block_time": 1726950266 + "block_time": 1727000439 } ], "next_cursor": 346, @@ -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": "bcrt1qwqs0vxzwhmrrq95fnvdhz0dlywewnjusllcjc7", + "source": "bcrt1qyulh8dt9j6mxay44vsk59ykh3j0sepu4nr8frk", "status": "valid", - "tx_hash": "b59307cc2ac4f942129759aae2c01c6787c312068f1f9274b9fca33b37cf2b5b", + "tx_hash": "adfbd46bafe5d0eb02dc42e71c6ebd831574fbcbc27598f3a574cd28a015cc8b", "tx_index": 9, - "block_time": 1726950113, + "block_time": 1727000284, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "b59307cc2ac4f942129759aae2c01c6787c312068f1f9274b9fca33b37cf2b5b", + "tx_hash": "adfbd46bafe5d0eb02dc42e71c6ebd831574fbcbc27598f3a574cd28a015cc8b", "block_index": 121, - "block_time": 1726950113 + "block_time": 1727000284 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 193, - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", - "block_time": 1726950429, - "previous_block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_time": 1727000592, + "previous_block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", "difficulty": 545259519, - "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", - "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", - "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", + "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", + "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", + "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", - "block_time": 1726950425, - "previous_block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", + "block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", + "block_time": 1727000588, + "previous_block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", "difficulty": 545259519, - "ledger_hash": "dae4aa18c818cf73356ae2538c5a128aab9652e31d3624deab317f635f240de3", - "txlist_hash": "2c6782906fccd6b50403d5f0cde890b85661d684650a67eeea3fbb61d893ea5a", - "messages_hash": "768e34bdb9fdd5c9805b7cc009eb4dc2d616c0eb60b0e69406f3d7a296973085", + "ledger_hash": "15632ba5d9e0895c4d08741144412482f4139debf47f441ab56fb1e57ed8138f", + "txlist_hash": "368c248e7398223aa41a3340c90cdf4dbb04242b72ff24d17c2f0ca3dc12f278", + "messages_hash": "32203dd37a810d45ca8e0e7b7e881a80c4fc0936de0773934100b9e004dec5db", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", - "block_time": 1726950421, - "previous_block_hash": "27e860cc72fbd13d937f5d53894473cdec16612f8b3a5c708a5cf6676b57a478", + "block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", + "block_time": 1727000584, + "previous_block_hash": "52ce8354391192adc1549d6a4e70e552a9bf49e64fbe115795e8c12b930962da", "difficulty": 545259519, - "ledger_hash": "d03e39607e9fd68726675c128d69cfaa1cd44a77ab03dd23287e4de22ce338e3", - "txlist_hash": "a2d3060eb32f38f0ef6849fcc09c56112eceec36516dbc142534648915a0e59b", - "messages_hash": "808eb90f60258406e139d977da28defeaa59b9f188b7a234cd729feba830dd25", + "ledger_hash": "d18e2ab61c10e86d0af7732ffdd5820eb389929a4e407abb1c365a617f8d6b0b", + "txlist_hash": "561be60c6188aaf9b9739b32dd8412cc70dc3617c76e8d632b362b43dee08430", + "messages_hash": "2e4972f8597cc95a484278f9dfa38024b000032151b59686982a1fb01db3ba93", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "27e860cc72fbd13d937f5d53894473cdec16612f8b3a5c708a5cf6676b57a478", - "block_time": 1726950417, - "previous_block_hash": "5aa33299fee53ddd0fb4f86ddb1dbd45d1fdaa8332537a4fdb69892979db6de0", + "block_hash": "52ce8354391192adc1549d6a4e70e552a9bf49e64fbe115795e8c12b930962da", + "block_time": 1727000580, + "previous_block_hash": "54d2df0dc01af39d0d576efb398561deadcc34ad173c7198659cdf1d74b2a381", "difficulty": 545259519, - "ledger_hash": "a4bcdd2aeceb344ca201fadf8783f0124ec2261604874ec80cd2b43000af0774", - "txlist_hash": "a5d93acd26bd4f1fb7d65fd0ec9106b4b157a717b293ecb06ae1d59fa5991917", - "messages_hash": "22fa8a357331aa52a6479b19d56d72967c2dc8b06421543347709ce788c43fa9", + "ledger_hash": "2706a8e0018214c252b27e5fca2d560ee6600592b07c64cbea3f2cce4257a7b5", + "txlist_hash": "d69dfbce2e19c5f8c5d37a160dc91344356c819ce0769d700284e5eeeecf451c", + "messages_hash": "57cfc46c395bb777cdbec3f62168108639ab667937ee3c36d8b89b914e9e0c73", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "5aa33299fee53ddd0fb4f86ddb1dbd45d1fdaa8332537a4fdb69892979db6de0", - "block_time": 1726950402, - "previous_block_hash": "0d5917e665af2adf0e67fa25a3703c9fec72d0d4fead388ec0fd867bb676dd3a", + "block_hash": "54d2df0dc01af39d0d576efb398561deadcc34ad173c7198659cdf1d74b2a381", + "block_time": 1727000575, + "previous_block_hash": "3af24eb207ec7c93df870ce901057933a0a9e906e1569a624ebe4cd15e5e7a5e", "difficulty": 545259519, - "ledger_hash": "9ffe2f005d1d4cba5d039c3c09312f34813be6ce60cec8137b5f3351b2b2f0fc", - "txlist_hash": "534af2b951fb094ca3cbdc5db77d750a7b0ac403cc3cceced1c6993f27896e1c", - "messages_hash": "1ea76d522ee2dc6e8dccdef6d972f84ed3253a08faabd3b8f87f50eedbb8124c", + "ledger_hash": "6de3e17e9fa33f63205fb4aaf5fa1490d686da1a69893e7108947f04a2d24e6d", + "txlist_hash": "a7ce6c6d7eb0535f61853f5a8a642cbaad7c2abfe166ebcc7428169db11547d1", + "messages_hash": "0c694347e9858f45693f03f2e6479294d56ed4a23edb110d3c5c82065de30190", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 193, - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", - "block_time": 1726950429, - "previous_block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_time": 1727000592, + "previous_block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", "difficulty": 545259519, - "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", - "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", - "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", + "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", + "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", + "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c` (str, required) - The index of the block to return + + block_hash: `3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d` (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": 193, - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", - "block_time": 1726950429, - "previous_block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_time": 1727000592, + "previous_block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", "difficulty": 545259519, - "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", - "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", - "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", + "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", + "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", + "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 59, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", - "block_time": 1726950429, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_time": 1727000592, + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", + "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1706,11 +1706,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "dae4aa18c818cf73356ae2538c5a128aab9652e31d3624deab317f635f240de3", - "messages_hash": "768e34bdb9fdd5c9805b7cc009eb4dc2d616c0eb60b0e69406f3d7a296973085", + "ledger_hash": "15632ba5d9e0895c4d08741144412482f4139debf47f441ab56fb1e57ed8138f", + "messages_hash": "32203dd37a810d45ca8e0e7b7e881a80c4fc0936de0773934100b9e004dec5db", "transaction_count": 1, - "txlist_hash": "2c6782906fccd6b50403d5f0cde890b85661d684650a67eeea3fbb61d893ea5a", - "block_time": 1726950425 + "txlist_hash": "368c248e7398223aa41a3340c90cdf4dbb04242b72ff24d17c2f0ca3dc12f278", + "block_time": 1727000588 }, "tx_hash": null }, @@ -1719,43 +1719,43 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58 }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "status": "valid", - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, - "block_time": 1726950425, + "block_time": 1727000588, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -1765,22 +1765,22 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "XCP", "block_index": 192, - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -1790,7 +1790,7 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" } ], "next_cursor": 524, @@ -1873,16 +1873,16 @@ Returns the events of a block filtered by event "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -1892,57 +1892,57 @@ Returns the events of a block filtered by event }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" } ], "next_cursor": null, @@ -2005,16 +2005,16 @@ Returns the credits of a block "result": [ { "block_index": 192, - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,20 +2026,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2047,20 +2047,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2116,16 +2116,16 @@ Returns the debits of a block "result": [ { "block_index": 193, - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "event": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -2165,24 +2165,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "object_id": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", "block_index": 182, "confirmed": true, - "block_time": 1726950308 + "block_time": 1727000481 }, { "type": "order", - "object_id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", + "object_id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", "block_index": 182, "confirmed": true, - "block_time": 1726950308 + "block_time": 1727000481 }, { "type": "order_match", - "object_id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "object_id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", "block_index": 182, "confirmed": true, - "block_time": 1726950308 + "block_time": 1727000481 } ], "next_cursor": null, @@ -2214,13 +2214,13 @@ Returns the cancels of a block "result": [ { "tx_index": 56, - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "block_index": 190, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "status": "valid", "confirmed": true, - "block_time": 1726950417 + "block_time": 1727000580 } ], "next_cursor": null, @@ -2252,15 +2252,15 @@ Returns the destructions of a block "result": [ { "tx_index": 59, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -2300,14 +2300,14 @@ Returns the issuances of a block "result": [ { "tx_index": 46, - "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", + "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -2322,7 +2322,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950282, + "block_time": 1727000465, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2356,10 +2356,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2367,7 +2367,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "divisible": true, "asset_longname": null, @@ -2380,10 +2380,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2391,11 +2391,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2404,10 +2404,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2415,11 +2415,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2457,27 +2457,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", - "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "last_status_tx_hash": null, - "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2492,7 +2492,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726950217, + "block_time": 1727000400, "asset_info": { "divisible": true, "asset_longname": null, @@ -2533,16 +2533,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 58, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "fee_paid_normalized": "0.00600000" } ], @@ -2576,17 +2576,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198", + "tx_hash": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf", "block_index": 138, - "block_hash": "33c0f76ab4ba6d9125e62c88b27cf97b4dc96d0de734bc7b608b573ea4a1ed4e", - "block_time": 1726950185, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "block_hash": "338cfe79e186d045e36821698a45768046de4a7d361843425a0940472ecc6826", + "block_time": 1727000366, + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198:1", + "utxos_info": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2611,25 +2611,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 51, - "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", + "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", "block_index": 185, - "block_hash": "22a6951b71290ec238ef452a688ef8e9c800dd277ca4be3253aed7072d440d06", - "block_time": 1726950385, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "6a70586a2d19f9575864a5b42d32a9e9d19c76574dc8d6dfbc76172ca89682c2", + "block_time": 1727000558, + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "btc_amount": 2000, "fee": 10000, - "data": "0be78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc01b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "data": "0b14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "supported": true, - "utxos_info": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5:0", + "utxos_info": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", - "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "status": "valid" } }, @@ -2644,23 +2644,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "block_index": 190, - "block_hash": "27e860cc72fbd13d937f5d53894473cdec16612f8b3a5c708a5cf6676b57a478", - "block_time": 1726950417, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "52ce8354391192adc1549d6a4e70e552a9bf49e64fbe115795e8c12b930962da", + "block_time": 1727000580, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "data": "46228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "supported": true, - "utxos_info": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd:1", + "utxos_info": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "status": "valid" } }, @@ -2675,17 +2675,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", - "block_time": 1726950429, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_time": 1727000592, + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", + "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2715,17 +2715,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 32, - "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", "block_index": 145, - "block_hash": "29a578dbdeeb8b9ba80c386bfa1cbba4c46fb3b48039039f9211b37c2f044d31", - "block_time": 1726950213, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "block_hash": "13fab7fba22dce8e177cd86ff15069c0e503e342b0b501983100830878cc651f", + "block_time": 1727000396, + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c00000000000000010000000000000001000000000000271000000000000000010080dd4517099b8b4e454678a0633383dc61ed965b29", + "data": "0c00000000000000010000000000000001000000000000271000000000000000010080baac6eaeb065905681d2acec45f4755b0dcda31b", "supported": true, - "utxos_info": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851:1", + "utxos_info": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2737,7 +2737,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "status": "valid", "asset_info": { "divisible": true, @@ -2761,17 +2761,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", "block_index": 146, - "block_hash": "034a31457a21c374ac9398ad3b7ef6d4a67c7ccfd4face71a1394bc5feef88d4", - "block_time": 1726950217, - "source": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", - "destination": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "block_hash": "10cc7c42de9461c9b74a9f215a94b6dd5b5791a145b649905cca55c036839c10", + "block_time": 1727000400, + "source": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", + "destination": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "btc_amount": 10000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387:0", + "utxos_info": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 40, - "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", + "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", "block_index": 153, - "block_hash": "3a6fbe16988afba5aca1ea6a5021c0a35d9332b45e32b1f81c113e786c6c4dec", - "block_time": 1726950256, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "19d21be55eb8771d0c4746adcf2ad32e3b71c4ed19bae4b81a57bb72e89ea449", + "block_time": 1727000430, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85:1", + "utxos_info": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2814,7 +2814,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2839,17 +2839,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 46, - "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", + "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", "block_index": 159, - "block_hash": "29ad8374ff5ab826358851ad64416af0c313a3e47a2d32345337c5e9cb8330ea", - "block_time": 1726950282, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "02be5ca66bd800bca0a4c9affb101d03d793a7c695aceab6c179d00bcd50f6a7", + "block_time": 1727000465, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88:1", + "utxos_info": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2881,17 +2881,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", - "block_time": 1726950421, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", + "block_time": 1727000584, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055:1", + "utxos_info": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2934,17 +2934,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d", + "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50", "block_index": 187, - "block_hash": "3d327b308bcda6020b6605ec19c5b2b97e8ede67a291a7a79c977844044dc21a", - "block_time": 1726950394, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "block_hash": "4098a431cd37f6c34f0c1b3410ef573997eca738bf99359308b687d5b93e0664", + "block_time": 1727000567, + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080bebd760d2e19686fe41856142fc45e3c18bea249", + "data": "020000000000000001000000000000271080ed681fe4daf7ab2ee1a33b873588429301d5bfa8", "supported": true, - "utxos_info": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d:1", + "utxos_info": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2952,7 +2952,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "memo": null, "asset_info": { "divisible": true, @@ -2975,17 +2975,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "block_hash": "0d5917e665af2adf0e67fa25a3703c9fec72d0d4fead388ec0fd867bb676dd3a", - "block_time": 1726950398, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "3af24eb207ec7c93df870ce901057933a0a9e906e1569a624ebe4cd15e5e7a5e", + "block_time": 1727000571, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a2f39be999227f439233f92bfc92175307049033802d892d9d215a3e35d0fffb2b3e7cabdb14d2454980bebd760d2e19686fe41856142fc45e3c18bea249400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380f6e40206dee5dd33c2a2804e47120677f27d08d2802fe54076791a6e2ac138ef00abb24f8185f125ab80ed681fe4daf7ab2ee1a33b873588429301d5bfa8400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4:0", + "utxos_info": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2993,14 +2993,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -3008,7 +3008,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3034,23 +3034,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", - "block_time": 1726950425, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", + "block_time": 1727000588, + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480bebd760d2e19686fe41856142fc45e3c18bea249017377656570206d7920617373657473", + "data": "0480ed681fe4daf7ab2ee1a33b873588429301d5bfa8017377656570206d7920617373657473", "supported": true, - "utxos_info": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199:1", + "utxos_info": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "flags": 1, "memo": "sweep my assets" } @@ -3083,17 +3083,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 59, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", - "block_time": 1726950429, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_time": 1727000592, + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", + "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3116,23 +3116,23 @@ Returns the list of the last ten transactions }, { "tx_index": 58, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", - "block_time": 1726950425, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", + "block_time": 1727000588, + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480bebd760d2e19686fe41856142fc45e3c18bea249017377656570206d7920617373657473", + "data": "0480ed681fe4daf7ab2ee1a33b873588429301d5bfa8017377656570206d7920617373657473", "supported": true, - "utxos_info": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199:1", + "utxos_info": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "flags": 1, "memo": "sweep my assets" } @@ -3150,7 +3150,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000101ec6758f524983df9733199a822e59562e2b2c7724698b0b89af6bbb2adec441b0100000000ffffffff03d00700000000000016001478a3909dd27183d907e4449a5efb8a6eec443bd200000000000000004b6a4948be01b94d96fa6e0283eb7a46b8a57e6ca98673686900ace3453afba3f66252000ace06f908711b530849f60869623afd9af5d9f3ea91ef23c96ffe8df66edcd8636446b4d2b5054ee0fd082701000000160014a2f39be999227f439233f92bfc921753070490330247304402202068b84b1108d9c49124e85d47ecf26fcafb3fe6a2103e7479e144d4ee8124cc0220525fce23d44876ff7ae1b9aee3d1e94c57c4954013e39f067686aa20860c896e0121028099986bc838533585add0380a756004aaf6506170b596a7a1527ab22460410d00000000` (str, required) - Raw transaction in hex format + + rawtransaction: `0200000000010111ac2ad1f93225daf96588a3c4ea558f3b205618869a051ea2f7090092303eb70000000000ffffffff020000000000000000356a335c5dd9bc91a5d86995d0ab15d4be2254fe0c71497e66d8111872c92be92f0646c178ae969acb8c2caeab2baf3af316f3fb7a88f0ca052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde0247304402207d1a215d92b6d36dd09d1545cfeee45ca1f74a9e937eff5027bad4c75bf8f2a402203a1203e1321ccd62633fcfc3a03d2ce39268c0b026be5a4b3f2aae21124bec84012103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96200000000` (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. @@ -3163,57 +3163,73 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "btc_amount": 2000, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": null, + "btc_amount": 0, "fee": 10000, - "data": "0be78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc01b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "ec6758f524983df9733199a822e59562e2b2c7724698b0b89af6bbb2adec441b", - "n": 1, + "hash": "11ac2ad1f93225daf96588a3c4ea558f3b205618869a051ea2f7090092303eb7", + "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false } ], "vout": [ - { - "value": 2000, - "script_pub_key": "001478a3909dd27183d907e4449a5efb8a6eec443bd2" - }, { "value": 0, - "script_pub_key": "6a4948be01b94d96fa6e0283eb7a46b8a57e6ca98673686900ace3453afba3f66252000ace06f908711b530849f60869623afd9af5d9f3ea91ef23c96ffe8df66edcd8636446b4d2b5054e" + "script_pub_key": "6a335c5dd9bc91a5d86995d0ab15d4be2254fe0c71497e66d8111872c92be92f0646c178ae969acb8c2caeab2baf3af316f3fb7a88" }, { - "value": 4949868000, - "script_pub_key": "0014a2f39be999227f439233f92bfc92175307049033" + "value": 4999990000, + "script_pub_key": "0014568120e3f25be7dad0716f132cbcc0eecfac8dde" } ], "vtxinwit": [ - "304402202068b84b1108d9c49124e85d47ecf26fcafb3fe6a2103e7479e144d4ee8124cc0220525fce23d44876ff7ae1b9aee3d1e94c57c4954013e39f067686aa20860c896e01", - "028099986bc838533585add0380a756004aaf6506170b596a7a1527ab22460410d" + "304402207d1a215d92b6d36dd09d1545cfeee45ca1f74a9e937eff5027bad4c75bf8f2a402203a1203e1321ccd62633fcfc3a03d2ce39268c0b026be5a4b3f2aae21124bec8401", + "03dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d962" ], "lock_time": 0, - "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", - "tx_id": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5" + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_id": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7" }, "unpacked_data": { - "message_type": "btcpay", - "message_type_id": 11, + "message_type": "order", + "message_type_id": 10, "message_data": { - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", - "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", - "status": "valid" + "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.00002000" + "btc_amount_normalized": "0.00000000" } } ``` @@ -3223,7 +3239,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94` (str, required) - Transaction hash + + tx_hash: `b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21` (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. @@ -3234,18 +3250,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710802d892d9d215a3e35d0fffb2b3e7cabdb14d24549", + "data": "0200000000000000010000000000002710802fe54076791a6e2ac138ef00abb24f8185f125ab", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "c99952b1d114237bca14d9da69ea03b9e0c563872a7af942d5a80cf541614d83", + "hash": "b2ffbb72adddd8bae637e76ca3d20367a9e2b545df04b069cd783a5cb159f004", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3255,20 +3271,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e6ab7aa5f53bd31977be7b313e0e0b0e22d0d99a4072ca15d63f8eedab121a23418d06d2844458bcca078cce2c353" + "script_pub_key": "6a2ed63dda20b4474132e359445d9983dfd995134ac2e957b57425e6eaf3de5610caa4b43888d3dfed18e5a58a33bf95" }, { "value": 4999955000, - "script_pub_key": "0014bebd760d2e19686fe41856142fc45e3c18bea249" + "script_pub_key": "0014ed681fe4daf7ab2ee1a33b873588429301d5bfa8" } ], "vtxinwit": [ - "3044022043caca504be770b0de99047ffe5e5d1ad869ee2402d30a6281137090df2cda9c0220089c65fa1ec2e1dabc64b0b62b8752a36b78eb7c1c6ae8d94d04e9ee0ecad6e901", - "022098f1d02b56e77ca857c5355d804950681dd648a95db1667bedd171bfe91e70" + "3044022007e03b96e278106bcfa7ff303efdd262596dc409053563efec02b712a660f75002206e026091bd4f2b0f0dbed833bf30961543506f5026ea4800da1f8405edc3d75f01", + "02cd3154911e5d3f0dd8141a848af0f2f71983615dc048911e9fa68b8cf85964a6" ], "lock_time": 0, - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", - "tx_id": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94" + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_id": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3276,7 +3292,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "memo": null, "asset_info": { "divisible": true, @@ -3337,17 +3353,17 @@ Returns a transaction by its index. { "result": { "tx_index": 59, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", - "block_time": 1726950429, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_time": 1727000592, + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", + "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3376,7 +3392,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98` (str, required) - The hash of the transaction + + tx_hash: `2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f` (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. @@ -3388,17 +3404,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 59, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", - "block_time": 1726950429, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_time": 1727000592, + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", + "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3451,47 +3467,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58 }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "status": "valid", - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, - "block_time": 1726950425, + "block_time": 1727000588, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -3501,24 +3517,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "XCP", "block_index": 192, - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -3528,36 +3544,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 } ], "next_cursor": 523, @@ -3570,7 +3586,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199` (str, required) - The hash of the transaction to return + + tx_hash: `9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -3594,47 +3610,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58 }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "status": "valid", - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, - "block_time": 1726950425, + "block_time": 1727000588, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -3644,24 +3660,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "XCP", "block_index": 192, - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -3671,36 +3687,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 } ], "next_cursor": 523, @@ -3713,7 +3729,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4` (str, required) - The hash of the transaction to return + + tx_hash: `2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db` (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 @@ -3732,10 +3748,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "quantity": 10, "status": "valid", @@ -3743,7 +3759,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "divisible": true, "asset_longname": null, @@ -3756,10 +3772,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3767,11 +3783,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -3780,10 +3796,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3791,11 +3807,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -3813,7 +3829,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387` (str, required) - The hash of the transaction to return + + tx_hash: `47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680` (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 @@ -3833,27 +3849,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", - "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "last_status_tx_hash": null, - "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3868,7 +3884,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726950217, + "block_time": 1727000400, "asset_info": { "divisible": true, "asset_longname": null, @@ -3912,16 +3928,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -3931,63 +3947,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 } ], "next_cursor": null, @@ -4000,7 +4016,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199` (str, required) - The hash of the transaction to return + + tx_hash: `9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `535` (str, optional) - The last event index to return + Default: `None` @@ -4022,16 +4038,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -4041,63 +4057,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 } ], "next_cursor": null, @@ -4112,7 +4128,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2,bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr,bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (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 @@ -4136,7 +4152,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4146,7 +4162,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -4157,7 +4173,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4167,7 +4183,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -4178,7 +4194,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4188,7 +4204,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -4199,7 +4215,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4209,7 +4225,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -4220,7 +4236,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4230,7 +4246,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -4247,7 +4263,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2,bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr,bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (str, required) - Comma separated list of addresses to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4266,17 +4282,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 57, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", - "block_time": 1726950421, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", + "block_time": 1727000584, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055:1", + "utxos_info": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4312,23 +4328,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "block_index": 190, - "block_hash": "27e860cc72fbd13d937f5d53894473cdec16612f8b3a5c708a5cf6676b57a478", - "block_time": 1726950417, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "52ce8354391192adc1549d6a4e70e552a9bf49e64fbe115795e8c12b930962da", + "block_time": 1727000580, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "data": "46228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "supported": true, - "utxos_info": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd:1", + "utxos_info": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "status": "valid" } }, @@ -4336,17 +4352,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 55, - "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "block_index": 189, - "block_hash": "5aa33299fee53ddd0fb4f86ddb1dbd45d1fdaa8332537a4fdb69892979db6de0", - "block_time": 1726950402, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "54d2df0dc01af39d0d576efb398561deadcc34ad173c7198659cdf1d74b2a381", + "block_time": 1727000575, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26:1", + "utxos_info": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4382,17 +4398,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "block_hash": "0d5917e665af2adf0e67fa25a3703c9fec72d0d4fead388ec0fd867bb676dd3a", - "block_time": 1726950398, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "3af24eb207ec7c93df870ce901057933a0a9e906e1569a624ebe4cd15e5e7a5e", + "block_time": 1727000571, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a2f39be999227f439233f92bfc92175307049033802d892d9d215a3e35d0fffb2b3e7cabdb14d2454980bebd760d2e19686fe41856142fc45e3c18bea249400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380f6e40206dee5dd33c2a2804e47120677f27d08d2802fe54076791a6e2ac138ef00abb24f8185f125ab80ed681fe4daf7ab2ee1a33b873588429301d5bfa8400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4:0", + "utxos_info": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4400,14 +4416,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -4415,7 +4431,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4434,25 +4450,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 51, - "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", + "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", "block_index": 185, - "block_hash": "22a6951b71290ec238ef452a688ef8e9c800dd277ca4be3253aed7072d440d06", - "block_time": 1726950385, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "6a70586a2d19f9575864a5b42d32a9e9d19c76574dc8d6dfbc76172ca89682c2", + "block_time": 1727000558, + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "btc_amount": 2000, "fee": 10000, - "data": "0be78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc01b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "data": "0b14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "supported": true, - "utxos_info": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5:0", + "utxos_info": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", - "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "status": "valid" } }, @@ -4469,7 +4485,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2,bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr,bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -4505,11 +4521,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "status": "open", - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "tx_index": 57, - "block_time": 1726950421, + "block_time": 1727000584, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4533,24 +4549,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "block_time": 1726950421 + "block_time": 1727000584 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "block_index": 191, - "event": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "event": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1726950421, + "block_time": 1727000584, "asset_info": { "divisible": true, "asset_longname": null, @@ -4560,25 +4576,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "block_time": 1726950421 + "block_time": 1727000584 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", + "block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", "block_index": 191, - "block_time": 1726950421, + "block_time": 1727000584, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "tx_index": 57, - "utxos_info": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055:1", + "utxos_info": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4610,40 +4626,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "block_time": 1726950421 + "block_time": 1727000584 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "status": "valid", - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "tx_index": 56, - "block_time": 1726950417 + "block_time": 1727000580 }, - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "block_index": 190, - "block_time": 1726950417 + "block_time": 1727000580 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726950417, + "block_time": 1727000580, "asset_info": { "divisible": true, "asset_longname": null, @@ -4653,9 +4669,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "block_index": 190, - "block_time": 1726950417 + "block_time": 1727000580 } ], "next_cursor": 506, @@ -4668,7 +4684,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779,bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss,bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477` (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 @@ -4684,17 +4700,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "memo": null, "quantity": 10000, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "status": "valid", - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "tx_index": 60, "asset_info": { "divisible": true, @@ -4707,19 +4723,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "CREDIT", "params": { - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -4731,19 +4747,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 193, - "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -4755,27 +4771,27 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726950434.0695176, + "block_time": 1727000606.3219044, "btc_amount": 0, - "data": "0200000000000000010000000000002710802d892d9d215a3e35d0fffb2b3e7cabdb14d24549", + "data": "0200000000000000010000000000002710802fe54076791a6e2ac138ef00abb24f8185f125ab", "destination": "", "fee": 10000, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "tx_index": 60, - "utxos_info": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94:1", + "utxos_info": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "memo": null, "asset_info": { "divisible": true, @@ -4801,7 +4817,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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 @@ -4821,7 +4837,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4829,14 +4845,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4844,14 +4860,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4866,7 +4882,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4874,7 +4890,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -4891,7 +4907,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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` @@ -4903,7 +4919,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4925,7 +4941,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4975,16 +4991,16 @@ Returns the credits of an address "result": [ { "block_index": 190, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950417, + "block_time": 1727000580, "asset_info": { "divisible": true, "asset_longname": null, @@ -4996,16 +5012,16 @@ Returns the credits of an address }, { "block_index": 182, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", + "event": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950308, + "block_time": 1727000481, "asset_info": { "divisible": true, "asset_longname": null, @@ -5017,20 +5033,20 @@ Returns the credits of an address }, { "block_index": 159, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", + "event": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950282, + "block_time": 1727000465, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5038,20 +5054,20 @@ Returns the credits of an address }, { "block_index": 156, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "9157f7bfaf353b8d1bfda36bbcaf83e7a1ae668161834e9f1b166f1e47b0f4c0", + "event": "694859d37608f9befa94495339565cd43e8955250c937c614bdc234e9fd9f4c6", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950270, + "block_time": 1727000443, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5063,16 +5079,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", + "event": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", "tx_index": 38, - "utxo": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae:1", - "utxo_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "utxo": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86:1", + "utxo_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "confirmed": true, - "block_time": 1726950248, + "block_time": 1727000422, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5089,7 +5105,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5128,16 +5144,16 @@ Returns the debits of an address "result": [ { "block_index": 191, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "event": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950421, + "block_time": 1727000584, "asset_info": { "divisible": true, "asset_longname": null, @@ -5149,16 +5165,16 @@ Returns the debits of an address }, { "block_index": 189, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950402, + "block_time": 1727000575, "asset_info": { "divisible": true, "asset_longname": null, @@ -5170,16 +5186,16 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "event": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "divisible": true, "asset_longname": null, @@ -5191,20 +5207,20 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "event": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5212,16 +5228,16 @@ Returns the debits of an address }, { "block_index": 183, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "event": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950377, + "block_time": 1727000550, "asset_info": { "divisible": true, "asset_longname": null, @@ -5242,7 +5258,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address of the feed + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5277,7 +5293,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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 @@ -5296,9 +5312,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "ba4be2ba08322daea13f5b8b4710717e27f736da291c8238d4310b7a967668cf", + "tx_hash": "175b0e837d4aa88d671cfc863c546cf1e410283c6bcfca4f22737640612a0343", "block_index": 137, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5306,7 +5322,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726950181, + "block_time": 1727000362, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5320,7 +5336,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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 @@ -5339,14 +5355,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "0657f75b12ca7313124e55cfc3cebac21f770a096caa4ec7a60900a01602aea3", + "tx_hash": "5c1b3ec29a6da9391c34eb7e11afb83a79138d107025b4fb81a500f5e1aa466f", "block_index": 112, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1726950075, + "block_time": 1727000247, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5361,7 +5377,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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 @@ -5380,10 +5396,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5391,7 +5407,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "divisible": true, "asset_longname": null, @@ -5404,10 +5420,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5415,11 +5431,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5428,10 +5444,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5439,11 +5455,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5452,10 +5468,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 38, - "tx_hash": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", + "tx_hash": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", "block_index": 151, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae:1", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5463,11 +5479,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950248, + "block_time": 1727000422, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5476,10 +5492,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 35, - "tx_hash": "351ae12754d2a615f37c96873f3e178d77d842607e0522e954ee066b969514be", + "tx_hash": "1aced42e6e980cc930626ed1334e8dbeaf5df4c375d5aa62212aedf53ba3aa51", "block_index": 148, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "005e41992c61245f5c6c82a7140ca55b6813d522dfdd67fd5bb22b1b144ee77d:1", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "46166b488d62f2085d8dbc2af1837c3e9d204d91bf46bf31436e5e207c85d326:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5487,11 +5503,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950236, + "block_time": 1727000409, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5509,7 +5525,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj` (str, required) - The address to return + + address: `bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv` (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 @@ -5528,10 +5544,10 @@ Returns the receives of an address "result": [ { "tx_index": 37, - "tx_hash": "c687f93269aa03f150204db384563efed1dfa9dd7319d77a879e3a346e36471c", + "tx_hash": "804df83cded11a27f2118503527164d631474a075cd88df3e7f0d09a972d3cf6", "block_index": 150, - "source": "facd73ce7e552dab11a369e33253c91a09a63e697ed4542f29c5e0a118eb3a01:0", - "destination": "bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj", + "source": "9b353d1cbb0a30108e4f9cc683852d659f4f611c141bab3af77efc10ab93dc4a:0", + "destination": "bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5539,11 +5555,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950243, + "block_time": 1727000417, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5561,7 +5577,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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` @@ -5581,10 +5597,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5592,11 +5608,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5605,10 +5621,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5616,11 +5632,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5629,10 +5645,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 38, - "tx_hash": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", + "tx_hash": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", "block_index": 151, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae:1", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5640,11 +5656,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950248, + "block_time": 1727000422, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5653,10 +5669,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 35, - "tx_hash": "351ae12754d2a615f37c96873f3e178d77d842607e0522e954ee066b969514be", + "tx_hash": "1aced42e6e980cc930626ed1334e8dbeaf5df4c375d5aa62212aedf53ba3aa51", "block_index": 148, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "005e41992c61245f5c6c82a7140ca55b6813d522dfdd67fd5bb22b1b144ee77d:1", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "46166b488d62f2085d8dbc2af1837c3e9d204d91bf46bf31436e5e207c85d326:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5664,11 +5680,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950236, + "block_time": 1727000409, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5686,7 +5702,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj` (str, required) - The address to return + + address: `bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv` (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` @@ -5706,10 +5722,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 37, - "tx_hash": "c687f93269aa03f150204db384563efed1dfa9dd7319d77a879e3a346e36471c", + "tx_hash": "804df83cded11a27f2118503527164d631474a075cd88df3e7f0d09a972d3cf6", "block_index": 150, - "source": "facd73ce7e552dab11a369e33253c91a09a63e697ed4542f29c5e0a118eb3a01:0", - "destination": "bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj", + "source": "9b353d1cbb0a30108e4f9cc683852d659f4f611c141bab3af77efc10ab93dc4a:0", + "destination": "bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5717,11 +5733,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950243, + "block_time": 1727000417, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5739,7 +5755,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5766,9 +5782,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 30, - "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", + "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", "block_index": 144, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5777,7 +5793,7 @@ Returns the dispensers of an address "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5787,7 +5803,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950210, + "block_time": 1727000392, "asset_info": { "divisible": true, "asset_longname": null, @@ -5803,9 +5819,9 @@ Returns the dispensers of an address }, { "tx_index": 26, - "tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5814,7 +5830,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5824,7 +5840,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -5849,7 +5865,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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` @@ -5862,9 +5878,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", + "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", "block_index": 144, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5873,7 +5889,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5883,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": 1726950210, + "block_time": 1727000392, "asset_info": { "divisible": true, "asset_longname": null, @@ -5905,7 +5921,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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 @@ -5925,19 +5941,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", + "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5945,7 +5961,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5960,7 +5976,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -5974,19 +5990,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", + "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", "block_index": 140, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5994,7 +6010,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6009,7 +6025,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950194, + "block_time": 1727000375, "asset_info": { "divisible": true, "asset_longname": null, @@ -6031,7 +6047,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (str, required) - The address to return + + address: `bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (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 @@ -6051,19 +6067,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", + "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6071,7 +6087,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6086,7 +6102,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -6100,19 +6116,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", + "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", "block_index": 140, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6120,7 +6136,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6135,7 +6151,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950194, + "block_time": 1727000375, "asset_info": { "divisible": true, "asset_longname": null, @@ -6157,7 +6173,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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` @@ -6178,19 +6194,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", + "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6198,7 +6214,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6213,7 +6229,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -6227,19 +6243,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", + "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", "block_index": 140, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6247,7 +6263,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6262,7 +6278,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950194, + "block_time": 1727000375, "asset_info": { "divisible": true, "asset_longname": null, @@ -6284,7 +6300,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (str, required) - The address to return + + address: `bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (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` @@ -6305,19 +6321,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", + "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6325,7 +6341,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6340,7 +6356,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -6354,19 +6370,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", + "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", "block_index": 140, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6374,7 +6390,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6389,7 +6405,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950194, + "block_time": 1727000375, "asset_info": { "divisible": true, "asset_longname": null, @@ -6411,7 +6427,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779` (str, required) - The address to return + + address: `bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss` (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 @@ -6430,16 +6446,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 58, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "fee_paid_normalized": "0.00600000" } ], @@ -6453,7 +6469,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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 @@ -6472,14 +6488,14 @@ Returns the issuances of an address "result": [ { "tx_index": 46, - "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", + "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -6494,20 +6510,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950282, + "block_time": 1727000465, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "9a15129044c626aa6de4262f26195a677a41cc8a4b82c649cb7a381658023bdd", + "tx_hash": "69356c4a943c1bc4c96cf7e1fd1df717562742ba6d014e5404949c9fb8488072", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -6522,20 +6538,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726950277, + "block_time": 1727000461, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "3de27df9207dede883d535efe529dd8fc3974cb18d1a62d257e6bcb91aa08a74", + "tx_hash": "de64c6d5cdcb12d054140d780d7c6780ed87490c27d80ff372e2384e3e898730", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -6550,20 +6566,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950274, + "block_time": 1727000447, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "9157f7bfaf353b8d1bfda36bbcaf83e7a1ae668161834e9f1b166f1e47b0f4c0", + "tx_hash": "694859d37608f9befa94495339565cd43e8955250c937c614bdc234e9fd9f4c6", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -6578,20 +6594,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950270, + "block_time": 1727000443, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "da1ecc1d6cf234a109110be3902414ad2324678c0e9ccfde053c2f792d0f6a5e", + "tx_hash": "910c965acd73fa6a2f08def331a054436285d5cbc447958cb86a2b66d91f25cc", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -6606,7 +6622,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950222, + "block_time": 1727000405, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -6621,7 +6637,7 @@ Returns the issuances of an address Returns the valid assets of an issuer + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The issuer to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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 @@ -6644,8 +6660,8 @@ Returns the valid assets of an issuer "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 10000000000, @@ -6653,16 +6669,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726950270, - "last_issuance_block_time": 1726950277, + "first_issuance_block_time": 1727000443, + "last_issuance_block_time": 1727000461, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 100000000000, @@ -6670,16 +6686,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726950222, - "last_issuance_block_time": 1726950222, + "first_issuance_block_time": 1727000405, + "last_issuance_block_time": 1727000405, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 40, @@ -6687,16 +6703,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726950172, - "last_issuance_block_time": 1726950177, + "first_issuance_block_time": 1727000354, + "last_issuance_block_time": 1727000358, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 19, @@ -6704,16 +6720,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726950155, - "last_issuance_block_time": 1726950168, + "first_issuance_block_time": 1727000326, + "last_issuance_block_time": 1727000349, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 0, @@ -6721,8 +6737,8 @@ Returns the valid assets of an issuer "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1726950134, - "last_issuance_block_time": 1726950151, + "first_issuance_block_time": 1727000305, + "last_issuance_block_time": 1727000322, "supply_normalized": "0.00000000" } ], @@ -6736,7 +6752,7 @@ Returns the valid assets of an issuer Returns the transactions of an address + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -6755,17 +6771,17 @@ Returns the transactions of an address "result": [ { "tx_index": 57, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", - "block_time": 1726950421, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", + "block_time": 1727000584, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055:1", + "utxos_info": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6801,23 +6817,23 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "block_index": 190, - "block_hash": "27e860cc72fbd13d937f5d53894473cdec16612f8b3a5c708a5cf6676b57a478", - "block_time": 1726950417, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "52ce8354391192adc1549d6a4e70e552a9bf49e64fbe115795e8c12b930962da", + "block_time": 1727000580, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "data": "46228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "supported": true, - "utxos_info": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd:1", + "utxos_info": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "status": "valid" } }, @@ -6825,17 +6841,17 @@ Returns the transactions of an address }, { "tx_index": 55, - "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "block_index": 189, - "block_hash": "5aa33299fee53ddd0fb4f86ddb1dbd45d1fdaa8332537a4fdb69892979db6de0", - "block_time": 1726950402, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "54d2df0dc01af39d0d576efb398561deadcc34ad173c7198659cdf1d74b2a381", + "block_time": 1727000575, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26:1", + "utxos_info": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6871,17 +6887,17 @@ Returns the transactions of an address }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "block_hash": "0d5917e665af2adf0e67fa25a3703c9fec72d0d4fead388ec0fd867bb676dd3a", - "block_time": 1726950398, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "3af24eb207ec7c93df870ce901057933a0a9e906e1569a624ebe4cd15e5e7a5e", + "block_time": 1727000571, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a2f39be999227f439233f92bfc92175307049033802d892d9d215a3e35d0fffb2b3e7cabdb14d2454980bebd760d2e19686fe41856142fc45e3c18bea249400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380f6e40206dee5dd33c2a2804e47120677f27d08d2802fe54076791a6e2ac138ef00abb24f8185f125ab80ed681fe4daf7ab2ee1a33b873588429301d5bfa8400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4:0", + "utxos_info": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -6889,14 +6905,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -6904,7 +6920,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -6923,17 +6939,17 @@ Returns the transactions of an address }, { "tx_index": 49, - "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", "block_index": 183, - "block_hash": "4e7a73ffc2fbf5c77ed880774d1e307872db577f80ffb792138702af83acc4db", - "block_time": 1726950377, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "5857b2e31e441dc9251e82211ad84eac5b7171b7d2ed35896316ba3e62d58f47", + "block_time": 1727000550, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0:1", + "utxos_info": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6978,7 +6994,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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 @@ -6997,20 +7013,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 40, - "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", + "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", "block_index": 153, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726950256, + "block_time": 1727000430, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -7035,7 +7051,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7062,9 +7078,9 @@ Returns the orders of an address "result": [ { "tx_index": 57, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7079,7 +7095,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726950421, + "block_time": 1727000584, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7105,9 +7121,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "block_index": 190, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7122,7 +7138,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726950417, + "block_time": 1727000580, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7148,9 +7164,9 @@ Returns the orders of an address }, { "tx_index": 49, - "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", "block_index": 186, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7165,7 +7181,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726950389, + "block_time": 1727000563, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7191,9 +7207,9 @@ Returns the orders of an address }, { "tx_index": 47, - "tx_hash": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", + "tx_hash": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", "block_index": 182, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7208,7 +7224,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1726950308, + "block_time": 1727000481, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7243,7 +7259,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The source of the fairminter to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7261,10 +7277,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", + "tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7289,13 +7305,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726950172 + "block_time": 1727000354 }, { - "tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", + "tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7320,13 +7336,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726950155 + "block_time": 1727000326 }, { - "tx_hash": "e69f3ddbfd1ba8c631b757819d7664ca2bc7041fcd5a75be8e2711eea2cac9f8", + "tx_hash": "7db72c3a3d73085625f2f30f21a6937c09222727d2b9942e21aec693b24bf08e", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7351,13 +7367,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726950151 + "block_time": 1727000322 }, { - "tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7382,7 +7398,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726950130 + "block_time": 1727000301 } ], "next_cursor": null, @@ -7395,7 +7411,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (str, required) - The address of the mints to return + + address: `bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7413,127 +7429,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "34bec257ccf1f8c374493fc15f7cbb1af6846494d3b097680b0826b82f088d9d", + "tx_hash": "8a9a1f916ad7518fbbdca58817a4ac2b58533c0a9768c4f1ca05778acb75e7d1", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "fairminter_tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "fairminter_tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950177, + "block_time": 1727000358, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } }, { - "tx_hash": "db57e70f00a61a0047c98b0ec58ea73359d9350575524094dd8e5bd2912a6bff", + "tx_hash": "f126053dd92ca48dc40a2ff68b8ae8af7cde23b1ab6d6137fe4c6203f590b859", "tx_index": 21, "block_index": 134, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "fairminter_tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "fairminter_tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950168, + "block_time": 1727000349, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } }, { - "tx_hash": "5d803fb3c505bfe22205e2970b56904799390c0defd2234b82e6e0d73731f2b3", + "tx_hash": "b2fadab50e518edbcd06b1c28c0130d8329d273cb39960943f6c905ec4484601", "tx_index": 20, "block_index": 133, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "fairminter_tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "fairminter_tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950164, + "block_time": 1727000345, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } }, { - "tx_hash": "cba0ccae5a7223e0217e916991da9cdb306a21211aba783c1a617f3f678cf2fc", + "tx_hash": "8a0a58a76c9c0795cdf955cd1fdb2ba6489b5a5424e83e6759209f7fc8da7833", "tx_index": 19, "block_index": 132, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "fairminter_tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "fairminter_tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950160, + "block_time": 1727000331, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } }, { - "tx_hash": "b05cca3bc275486fc1ad03760458825512e861deba57984710051915d4975e5a", + "tx_hash": "6d76d3221c43cad887faa8f88631318e23856a5aef2799363fc245a8771dfcf4", "tx_index": 15, "block_index": 127, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "fairminter_tx_hash": "e69f3ddbfd1ba8c631b757819d7664ca2bc7041fcd5a75be8e2711eea2cac9f8", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "fairminter_tx_hash": "7db72c3a3d73085625f2f30f21a6937c09222727d2b9942e21aec693b24bf08e", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950138, + "block_time": 1727000310, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } }, { - "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", + "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950121, + "block_time": 1727000293, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } @@ -7549,7 +7565,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (str, required) - The address of the mints to return + + address: `bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (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` @@ -7568,22 +7584,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", + "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950121, + "block_time": 1727000293, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } @@ -7622,8 +7638,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: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address that will make the bet - + feed_address: `bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address that will make the bet + + feed_address: `bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (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) @@ -7689,7 +7705,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: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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) @@ -7742,9 +7758,9 @@ Composes a transaction to broadcast textual and numerical information to the net ``` { "result": { - "rawtransaction": "02000000000101baa101cbc940a198c493a89141be8f75d0048e0d7a5dc37087907fe9bf8be6620000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff0200000000000000002b6a29411d762b9dc4b64ca7864736f8a3ac4e85bb5eeb17df4a8b3bf104383cee8fd76b601ab179212384033bb1052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "0200000000010115c401b8d98226b74217cefb5032c25436b1b5c03d95952fa806f57bad01126100000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff0200000000000000002b6a293346c767cf647d2aacde83d14e2c9529372189b61fe4dae2a49930b729f4cf90c62df005fa6956043e3bb1052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7768,8 +7784,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: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address that will be sending the payment - + order_match_id: `e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448` (str, required) - The ID of the order match to pay for + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address that will be sending the payment + + order_match_id: `14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea` (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) @@ -7818,13 +7834,13 @@ Composes a transaction to pay for a BTC order match. ``` { "result": { - "rawtransaction": "020000000001013d85bff283f6055716040c2c51141398d7775951f61cf1ef9a12ccbd2da5e3370000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff03b80b00000000000016001478a3909dd27183d907e4449a5efb8a6eec443bd200000000000000004b6a4917b6d73524118ffb4dba108ccebe4e312409d5a0c62af302bd2fc94045cee07f1c04251c685216d77a736875b9adafd3104b683301a939a659438f13b6e712b00f0ef936f95218def2d993052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "02000000000101daf348400d79fd99e9e9ba39e5f589daf7f7e43bcd0432bd39c16204f0464ce600000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff03b80b000000000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde00000000000000004b6a49f131b00aece2c6e0846814cdf1d01bad20fbc28a55edb64fd93618de526eebe90b0d784396f0571e7c6b40121a05f265653f3c285b2705ef404dec40b013214a3d22a53281158e57afd993052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448" + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea" }, "name": "btcpay", - "data": "434e5452505254590be78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "data": "434e5452505254590b14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac7482d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7841,7 +7857,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: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address with the BTC to burn + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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` @@ -7893,9 +7909,9 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss ``` { "result": { - "rawtransaction": "02000000000101fa643da10f023a6f4cdd832b487377afc08378e3a396a2f764a050b94a5b3cf60000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "0200000000010126fff1f579df2d0e9fbcb9b1e7f776838ce7a481ded19268534d0e584288f42c00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "quantity": 1000, "overburn": false }, @@ -7910,8 +7926,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: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7` (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) @@ -7960,13 +7976,13 @@ Composes a transaction to cancel an open order or bet. ``` { "result": { - "rawtransaction": "02000000000101eedbefe4bd636546d57c8e1f4c0eb76bd855239cfa7c77f8b251af49eb9196140000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff0200000000000000002b6a29bb90f36f9b86d1233cfc3bfa0724f1e524d4d32c8824fa115943b30c9b6bc6124ba66fac7e49803b373bb1052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "020000000001013eb1a01d1d6551395769367a9f2bb8898eb5016edb8c8df41bc3627209ef15fc00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff0200000000000000002b6a29d500c7f0889a043d7b84962877949c32746ac86db22c5c112a0aeb978ee58dd489fa6dbbaf158f0a833bb1052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "offer_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055" + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "offer_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7" }, "name": "cancel", - "data": "434e54525052545946b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "data": "434e54525052545946caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7983,7 +7999,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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 @@ -8035,9 +8051,9 @@ Composes a transaction to destroy a quantity of an asset. ``` { "result": { - "rawtransaction": "0200000000010130d7691e00629eb4961825a5c0cd3a09c650b1485d7baf7b6a7bc9093c5e66210000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000226a20e9ef305760432a385b4316e09d8b138f51b4d7c1649ef5a9eca33c059faac5a2a4b3052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "02000000000101aa28b197c723d17de2bef2df47f595f98f623493ec66a5b3672089dffcb3f7dd00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000226a20885bd57eae112fdd7db39d3c1707dda3f29d6129c49db69e01f3a8183175e0c7a4b3052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8068,7 +8084,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: `bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733` (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) @@ -8126,9 +8142,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv ``` { "result": { - "rawtransaction": "0200000000010187137586cf80f0894942be32c20a0d0dda47ae0714b0f873dd7a7951a4080a24020000001600149a874d4ce5bb7cc6fcf889d8d61a3cd667e7c43dffffffff0200000000000000002c6a2a0e1e937628aca7a522cee3b287a42b3bc78b6233d54a79cf73e78bea9e6bcd48c3d7bf613fd4eb1b9ff6474b0a27010000001600149a874d4ce5bb7cc6fcf889d8d61a3cd667e7c43d02000000000000", + "rawtransaction": "0200000000010180e6e6e4a397697db7cde6ec1766b0852b9bee4f96cdf4dd96e98e18c7fbc84702000000160014dca9e37d561861c1f2060057ec37a222d5f5ae38ffffffff0200000000000000002c6a2a12a1cb0b3a347bca215cf1c90c427ab6da126eb992551c4982ff058f11802d849a4024582c5fd3e697b0474b0a2701000000160014dca9e37d561861c1f2060057ec37a222d5f5ae3802000000000000", "params": { - "source": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", + "source": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8164,7 +8180,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: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (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: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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 @@ -8216,16 +8232,16 @@ Composes a transaction to issue a dividend to holders of a given asset. ``` { "result": { - "rawtransaction": "02000000000101e6e36a1100c493467b382a99ec5aee83575997f72471d86c33881f4b296c9df90000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000236a212228e09122064a733b43f540b88cd03dc744b649a35ed92ce17fd05cc8bf71dcd460b3052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "020000000001017d8e59c3272df4941d47b894e7503dcb7aee29a7286dce9df82ebc081b370e5000000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000236a21f356553496497d7b934fe0a108db797f9a05bc37c350d4b2c9202c9c0fe0d704f660b3052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -8256,10 +8272,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: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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` @@ -8317,12 +8333,12 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo ``` { "result": { - "rawtransaction": "0200000000010136d6e6a155dea2dc07c5dbfc215477089050c771975ff25549a50aca2042d9110000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff03220200000000000016001478a3909dd27183d907e4449a5efb8a6eec443bd20000000000000000236a21a5d731112dcfb5e7accd100224da20485a77f4d6b626d7e938f6e22f44d928dc6a24a8052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "020000000001016f87d4afb609faeff0385730e8d3f735faf637ec6648c234938085805595f3e000000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff032202000000000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde0000000000000000236a213ad5656005b5e1507bc5682b156fb094ddc2dc97dd217fcfb33a74b57a9516718924a8052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "transfer_destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "lock": false, "reset": false, @@ -8347,9 +8363,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: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2,bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr,bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (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` @@ -8403,18 +8419,18 @@ Composes a transaction to send multiple payments to multiple addresses. ``` { "result": { - "rawtransaction": "020000000001045d4eb11fe84e3712b4ebd879c01bc40c0527526e763aa02a891e4c9f75e1774a0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffffeac0d9ac05994d37e2be6b545ee86c7af2a01beeda39353990297dbfefd23b7c0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2fffffffff37cb30fbab0598f0be01ca736ce36762364665229cbe0c5e31d0aaf1a143da60000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff5429e8ff1be03db404fed6b06882c88df2efb89a85eacb7c9cb682e7715111790000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff03e8030000000000006951210380c01d0b508801d559f1f62d847e298ff33b1f3f177fea7e447b0a18c04fa5c42103be8259e6629403853ffdfb06bcfd31e67fce4cf395846b885e157e43c250863e2103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453aee803000000000000695121038fc01d0b508801d559d28140766aee3e4c696ebcc26d95b16905f192aea3e1fc210385509144910fea1c1d82b0948f041a1aedd91df4911458077c5d1b2fae3faa662103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453ae61d016a80400000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000002000002000002000000000000", + "rawtransaction": "02000000000104ebbb5a83142a1034aaac4032e1a546cf5a274068dfeeb37875cd03b3700eabb000000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff4e7c7126f386b9de41bcef227b4cdefe1da4e4bb0f376a959e25a892cf219fd000000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff2ceabacbe62a496bc4e8e0f806c23af5d0f6dd6d3bf487cd622229b61a20204d00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff745824b68663dbde5c66294a4cd315eb4c3792f6a2a8c25bea96b6b70d0e978f00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff03e803000000000000695121036ece70a04e5b015c53fb0b91fcfd8082fd1f3eab08a869ae32bb59253ae4bb9821021d9692c24bba1449381a7f71a8f96ef08e14baf6e25b3fcc839b7fbd9dd3e41a2103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253aee8030000000000006951210261ce70a04e5b015c53d87cfc0ec765833c6d654cde6d834a96b7e5e5d42b173f210290485a34afb81297ddc744b30a7920b79c12cf049f53ed43a1d31ad1f1bcc8662103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253ae61d016a804000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000002000002000002000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", 1 ], [ "MYASSETA", - "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", 2 ] ], @@ -8422,7 +8438,7 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e5452505254590300028078a3909dd27183d907e4449a5efb8a6eec443bd280a2f39be999227f439233f92bfc921753070490338f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280568120e3f25be7dad0716f132cbcc0eecfac8dde80f6e40206dee5dd33c2a2804e47120677f27d08d28f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8439,7 +8455,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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 @@ -8494,9 +8510,9 @@ Composes a transaction to place an order on the distributed exchange. ``` { "result": { - "rawtransaction": "02000000000101ccdedd2808c475ca5c88e5449b3c176fe02031ec8e63eecb922aeaf26a5c18b50000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000356a3353ef808f83366b6cf8d9952b5f83c9aa93502e5ec99ae234ba6b25efe0929adacf71a868b12cb91f4cf9dc0f55d288e7704f008eae052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "02000000000101315dc0e7f6960541094341711ab902343d7c36bc88628ff8ca351a9649f85aef00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000356a3363b2cf1d482dc039dee4e210769c4819e87644b84643893ce3dbf7e5f6028cdb0b47bd000dfd5477bc385517d5d332f86c1a0a8eae052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8513,7 +8529,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -8539,8 +8555,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: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (str, required) - The address that will be receiving the asset + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (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 @@ -8597,10 +8613,10 @@ Composes a transaction to send a quantity of an asset to another address. ``` { "result": { - "rawtransaction": "020000000001018d066198354bcccb5ae30b8e22e0dc1c7b7cc82e2f09f5717467887f0be02e130000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000306a2e10f778129d9a05da90bb7b9780c7c24abf81c0eaca62afba7ac192691e47563954763c578ae8b6a863aea692eb7de5af052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "02000000000101729f4c197df6f4a236502146ab1a5258cab4a2beb8edf45e8afba0e82c88df2300000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000306a2e7a73cc3866f3308c247737670a9bb9dd77f0a63633306c262610ce07b025c4a37764ceb6770146df1f5632e859e4e5af052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8616,7 +8632,7 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880a2f39be999227f439233f92bfc92175307049033", + "data": "434e54525052545902000000000000000100000000000003e880f6e40206dee5dd33c2a2804e47120677f27d08d2", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8633,8 +8649,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: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address that will be sending - + destination: `bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address that will be sending + + destination: `bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (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 @@ -8685,15 +8701,15 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti ``` { "result": { - "rawtransaction": "02000000000101d3588bfb2399ce534e9d0709c9163fc54404d4543935cf439037c8359a2a65ba0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000236a217aae0a2a9fd30ec2ced0653034b208a74ec9420f24a2951e2fdb9a888794e54f5760b3052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "02000000000101df20d626cc16ba1c4999c923cf908cecec6c36023462e9d1ef307d4b2a37e97100000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000236a21f5f26402338b4b669a2bd2402474c76df612433dd10bcabf9904a7f38e132a05a660b3052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480a2f39be999227f439233f92bfc9217530704903307ffff", + "data": "434e5452505254590480f6e40206dee5dd33c2a2804e47120677f27d08d207ffff", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8710,8 +8726,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: `bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477` (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` @@ -8761,10 +8777,10 @@ Composes a transaction to send BTC to a dispenser. ``` { "result": { - "rawtransaction": "02000000000101f5f8c62f3372e9b1fbbd14a59ce06876ca5bb083695e2bb5d8e3354c8d7e3af902000000160014a2f39be999227f439233f92bfc92175307049033ffffffff03e803000000000000160014bebd760d2e19686fe41856142fc45e3c18bea24900000000000000000c6a0a82bdbe18eb20c070df0066b8082701000000160014a2f39be999227f439233f92bfc9217530704903302000000000000", + "rawtransaction": "02000000000101e0ce8482c498c33b2168d9e3cf9a33fedb60968a68b6553de6ab68cb48ab42c502000000160014f6e40206dee5dd33c2a2804e47120677f27d08d2ffffffff03e803000000000000160014ed681fe4daf7ab2ee1a33b873588429301d5bfa800000000000000000c6a0a4e4ac9ecf2a1c59d387a66b8082701000000160014f6e40206dee5dd33c2a2804e47120677f27d08d202000000000000", "params": { - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "quantity": 1000 }, "name": "dispense", @@ -8785,7 +8801,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address that will be issuing the asset + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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: `` @@ -8867,9 +8883,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. ``` { "result": { - "rawtransaction": "020000000001018a5d294695a3cad514f9a5355a1878d1b6985d4c2b75246f10b5ef4d1e4654a80000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000316a2f00366867e989fc281223556af269bde9b5862ec32ee8e4ddc59019e2af0a3f6c8ade61f624719c7ad07618314d1780a0af052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "020000000001013abd5789d21497efd4e34bcc7938cffe0dac28ce90b3773ef729b4929f31ab1400000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000316a2f6887c9fee2e9d6bad71ac9157aeff69cf73203356a7e5836755a2cf7ca4a47c18598bfded5d272dc9465942871dc4da0af052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -8906,7 +8922,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: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address that will be minting the asset + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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` @@ -8958,15 +8974,15 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto ``` { "result": { - "rawtransaction": "02000000000101e8ab6caff3cacfcfd3dbadcbad2347735d0bbd4497929b30e82b3da7daac8c610000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000166a148480d79da2451734ec5258d8a4d16bad633ac169dab6052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "020000000001011557e6edacb2424f9b980d8998dde10d2c288c61593f1adbb1e3118f5790fada00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000166a141094e889ea2b96910e0c5e83e31fdaae5d81484bdab6052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -8990,10 +9006,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: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address from which the assets are attached + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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: `f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5:0` (str, optional) - The utxo to attach the assets to + + destination: `caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9043,10 +9059,10 @@ Composes a transaction to attach assets from an address to UTXO. ``` { "result": { - "rawtransaction": "02000000000106205474b852fd4c7ba82f078bdeea2a4d7e53ef4ea71724239b1f900ca093944f0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffffaa4c09c2227b094d2f3ba8dcadfa8b405ded9f775f960cc73026fc39580f5adc0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffffe41bcc599b63d1291193efde4f1c01bff9cc5569fd20d0de50b63ca0f320faae0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff2ebf8d97e45fb132031c0c5216a66d5eb6e0d2ca5dece980c302328d4ba02afc0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff13eccb9a92f0089f539d84322538d0c6f830cbed3ceb15ae0b08cf07d0f0d9980000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff71e1f0347d35e80df8e619a793c159c06ed180d2ef8fc0f04cd5e4c30ec494990000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff04e803000000000000695121025f199d3d069301d062dc703f6b6d6bee8b30d127877cebaf6a3e1e49407bcae021028038e667690d83c9a2cfbb15c033dcf4bdecaef30f7542c751c6b7f34a45bbc42103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453aee803000000000000695121035f199d3d069301d062dc263f2a2c3facdf728077c526a9a02b7f561b483b936b21029b3ced34665a8cd9a092b51f8c659fa1b3e2bcf90c7b498c05ccb7a01b43b52d2103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453aee8030000000000006951210375199d3d069301d062de2a3a2c236ae3e309b23ec674acf51d466e282a0ba6982103f95f8c03506cb4bc90abd67eb954abc3d784de9b3d1e70bb37ff84927d20839c2103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453aee83922fc0600000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106b5b2a300cd9f45e9fda7bd55fe7562178242530b17b22f81ff7fd2aca4c762cd00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffffef0a2588300e8fb8fda9df42f8c674ef493032f617daed6699e7c7cb571a8e2900000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff3597da886302ff1cf6b352404c1eb0954497c87c15a918872e2373408904f4b200000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff4268ca1adfcfd7c71d02cdc28133b4a94c3d6cf064c021831d0a641876830e3200000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff4c3fd0d1e9fd1207d8a7512e79145c7baf1824c64b85ff95077e80fb4012d47b00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff5e90be4b78a0601e9e787268b5bdc9441f0b96d70de955f01e770cf7ec058e4b00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff04e8030000000000006951210388e0801a8eb1ee3020f43c7ad6954d29621f6ed76ed366f6c1efc95e55d1aecd21031361d20e3a1a451d140674a3d3fbe557e2cc447c2987afb03b165bf8436d36322103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253aee8030000000000006951210288e0801a8eb1ee3020a56b7bc1824f3e621e2e8e2b863eaa80eac45b51d2e55521024363960d614b475407042effdcf8f213e3db4e3e2c97e8a86e4604ab436c3d582103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253aee80300000000000069512103a2e0801a8eb1ee3020a2687d93db4d24086a4fc12f803aacb5dfa73f61e4dc6121032005a768507f75656567199be59e9720d5bf280c1cf3ddcc58773dce770805212103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253aee83922fc06000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5:0", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9059,7 +9075,7 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171307a33657038776a777870616a706c79676a643961377532646d6b796777376a687068326b327c663933613765386434633335653364386235326235653639383362303562636137363638653039636135313462646662623165393732333332666336663866353a307c5843507c31303030", + "data": "434e545250525459646263727431713236716a70636c6a74306e61343572336475666a65307871616d383665727737736c703574727c636166363465333535626563336632373133353634363535636430363963663165313432316263376439666533366466323064356436313965346438323664373a317c5843507c31303030", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9076,8 +9092,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: `4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee:1` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to detach the assets to + + utxo: `e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3:1` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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 @@ -9128,10 +9144,10 @@ Composes a transaction to detach assets from UTXO to an address. ``` { "result": { - "rawtransaction": "02000000000101ee686ccfdf3a59108b1e94563148fb751758ca450757a0702214c34bcbc5174e01000000160014e5e7994267229ac88ef1b87c6bb3dd5ea6d8b915ffffffff04e80300000000000069512103d10c408319c158050fc7352fd30cae885c0e6cc47e770da5cb3ff182b089e35e2102ffa9319f5d5598f26968c6da1435aa18b608d02a24a1b90ab5c606f343a4dcf82103e9e0419bbf5a98aa4575404f101dac624c7d6c81a7f307d7f76566c820155e0a53aee80300000000000069512102d10c408319c158050f90602e8458ab8b5c5a60c3787e0ded9b6eb4c6e0c8e6552103b2aa63db504193b029299087513fb14be45fd87e25edbf5fbd951da504a68f332103e9e0419bbf5a98aa4575404f101dac624c7d6c81a7f307d7f76566c820155e0a53aee80300000000000069512102fb0c408319c158050fcb7122d050ffc1672f08da2c740ca1f90dc6b2d1b9d64c2103c89906ab6836f9c75159f1ed2153c82c8e3be11f12988d3bd0fe64c27391e57d2103e9e0419bbf5a98aa4575404f101dac624c7d6c81a7f307d7f76566c820155e0a53aef498082701000000160014e5e7994267229ac88ef1b87c6bb3dd5ea6d8b91502000000000000", + "rawtransaction": "02000000000101e3c0abdcb1b46b89adbb9079210c4c14d9f624a027d8f449248c9b8b82c366e1010000001600147680081eacbc4519f01d1f068efed38d60f8c0a9ffffffff04e80300000000000069512103f844335e103b984283c13015448330b33544964dfae4ff345c79050cffa1001921024803ce6c4c93f971075791716b29c7c3149271b4a720463aeb26332fb1f36b62210210c7a3f106ae95ec77b61dd08bf70b372b9bd9adb606dcef53143fd064020b5253aee80300000000000069512103f844335e103b984283c7614643d130e16f159e4af0bcf62b0c2e4341a8e456d021024640937d1fcda763015dc9746a6f979702c62ae6ae610739e47f6172fab23e49210210c7a3f106ae95ec77b61dd08bf70b372b9bd9adb606dcef53143fd064020b5253aee80300000000000069512103d244335e103b984283d6395447c121fc5535fe53f2b6f7676e4d31359995640e21037031f90d7ca1cd173133a8405f1da4f377a040839e1976588947571788c509e1210210c7a3f106ae95ec77b61dd08bf70b372b9bd9adb606dcef53143fd064020b5253aef4980827010000001600147680081eacbc4519f01d1f068efed38d60f8c0a902000000000000", "params": { - "source": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee:1", - "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3:1", + "destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9144,7 +9160,7 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964346531376335636234626333313432323730613035373037343563613538313737356662343833313536393431653862313035393361646663663663363865653a317c626372743171307a33657038776a777870616a706c79676a643961377532646d6b796777376a687068326b327c5843507c31303030", + "data": "434e54525052545964653136366333383238623962386332343439663464383237613032346636643931343463306332313739393062626164383936626234623164636162633065333a317c6263727431713236716a70636c6a74306e61343572336475666a65307871616d383665727737736c703574727c5843507c31303030", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9199,8 +9215,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 10000000000, @@ -9208,16 +9224,16 @@ Returns the valid assets "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726950270, - "last_issuance_block_time": 1726950277, + "first_issuance_block_time": 1727000443, + "last_issuance_block_time": 1727000461, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", - "owner": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", + "issuer": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", + "owner": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", "divisible": true, "locked": false, "supply": 100000000000, @@ -9225,16 +9241,16 @@ Returns the valid assets "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1726950266, - "last_issuance_block_time": 1726950266, + "first_issuance_block_time": 1727000439, + "last_issuance_block_time": 1727000439, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 100000000000, @@ -9242,16 +9258,16 @@ Returns the valid assets "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726950222, - "last_issuance_block_time": 1726950222, + "first_issuance_block_time": 1727000405, + "last_issuance_block_time": 1727000405, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 40, @@ -9259,16 +9275,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726950172, - "last_issuance_block_time": 1726950177, + "first_issuance_block_time": 1727000354, + "last_issuance_block_time": 1727000358, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 19, @@ -9276,8 +9292,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726950155, - "last_issuance_block_time": 1726950168, + "first_issuance_block_time": 1727000326, + "last_issuance_block_time": 1727000349, "supply_normalized": "0.00000019" } ], @@ -9305,8 +9321,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 10000000000, @@ -9314,8 +9330,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1726950117, - "last_issuance_block_time": 1726950130, + "first_issuance_block_time": 1727000288, + "last_issuance_block_time": 1727000301, "supply_normalized": "100.00000000" } } @@ -9346,7 +9362,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9354,14 +9370,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9369,7 +9385,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -9386,7 +9402,7 @@ Returns the asset balances Returns the balance of an address and asset + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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` @@ -9398,7 +9414,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -9447,9 +9463,9 @@ Returns the orders of an asset "result": [ { "tx_index": 57, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9464,7 +9480,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726950421, + "block_time": 1727000584, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9490,9 +9506,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "block_index": 190, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9507,7 +9523,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726950417, + "block_time": 1727000580, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9533,9 +9549,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "tx_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "block_index": 186, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -9550,7 +9566,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726950389, + "block_time": 1727000563, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9576,9 +9592,9 @@ Returns the orders of an asset }, { "tx_index": 50, - "tx_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "tx_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "block_index": 185, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -9593,7 +9609,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726950385, + "block_time": 1727000558, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9619,9 +9635,9 @@ Returns the orders of an asset }, { "tx_index": 49, - "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", "block_index": 186, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9636,7 +9652,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726950389, + "block_time": 1727000563, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9696,13 +9712,13 @@ Returns the orders of an asset { "result": [ { - "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "tx0_index": 49, - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 52, - "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", - "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -9716,7 +9732,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726950389, + "block_time": 1727000563, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9736,13 +9752,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "tx0_index": 49, - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 50, - "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", - "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -9756,7 +9772,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726950385, + "block_time": 1727000558, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9776,13 +9792,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", "tx0_index": 47, - "tx0_hash": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 48, - "tx1_hash": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", - "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "tx1_hash": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -9796,7 +9812,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726950308, + "block_time": 1727000481, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9876,20 +9892,20 @@ Returns the credits of an asset "result": [ { "block_index": 192, - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -9897,20 +9913,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "fa62268a3981b9cfff3d701ad4e086a879507e450c3e676a6fee67ce980309f3", + "event": "440ae8e372ae940d6481d2627e1995fa192be6b97873113ff7d04d298a8f443e", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950130, + "block_time": 1727000301, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -9918,20 +9934,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7", + "event": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950126, + "block_time": 1727000297, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -9939,20 +9955,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", + "event": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950126, + "block_time": 1727000297, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -9964,16 +9980,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7", + "event": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950126, + "block_time": 1727000297, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -10029,16 +10045,16 @@ Returns the debits of an asset "result": [ { "block_index": 193, - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "event": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -10050,16 +10066,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -10071,16 +10087,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -10092,16 +10108,16 @@ Returns the debits of an asset }, { "block_index": 191, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "event": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950421, + "block_time": 1727000584, "asset_info": { "divisible": true, "asset_longname": null, @@ -10113,16 +10129,16 @@ Returns the debits of an asset }, { "block_index": 189, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950402, + "block_time": 1727000575, "asset_info": { "divisible": true, "asset_longname": null, @@ -10162,20 +10178,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 40, - "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", + "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", "block_index": 153, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726950256, + "block_time": 1727000430, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -10219,14 +10235,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "fa62268a3981b9cfff3d701ad4e086a879507e450c3e676a6fee67ce980309f3", + "tx_hash": "440ae8e372ae940d6481d2627e1995fa192be6b97873113ff7d04d298a8f443e", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -10241,20 +10257,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726950130, + "block_time": 1727000301, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7", + "tx_hash": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -10269,20 +10285,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726950126, + "block_time": 1727000297, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", + "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -10297,20 +10313,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726950121, + "block_time": 1727000293, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -10325,7 +10341,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1726950117, + "block_time": 1727000288, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10359,10 +10375,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10370,7 +10386,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "divisible": true, "asset_longname": null, @@ -10383,10 +10399,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 53, - "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d", + "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50", "block_index": 187, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10394,7 +10410,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950394, + "block_time": 1727000567, "asset_info": { "divisible": true, "asset_longname": null, @@ -10407,10 +10423,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 42, - "tx_hash": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", + "tx_hash": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", "block_index": 155, - "source": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f:0", - "destination": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee:1", + "source": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881:0", + "destination": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10418,7 +10434,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950266, + "block_time": 1727000439, "asset_info": { "divisible": true, "asset_longname": null, @@ -10431,10 +10447,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 41, - "tx_hash": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f", + "tx_hash": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881", "block_index": 154, - "source": "834d6141f50ca8d542f97a2a8763c5e0b903ea69dad914ca7b2314d1b15299c9:0", - "destination": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f:0", + "source": "04f059b15c3a78cd69b004df45b5e2a96703d2a36ce737e6bad8ddad72bbffb2:0", + "destination": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10442,7 +10458,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950261, + "block_time": 1727000434, "asset_info": { "divisible": true, "asset_longname": null, @@ -10491,18 +10507,18 @@ Returns the dispensers of an asset "result": [ { "tx_index": 32, - "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "last_status_tx_hash": null, - "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10512,7 +10528,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726950217, + "block_time": 1727000400, "asset_info": { "divisible": true, "asset_longname": null, @@ -10528,9 +10544,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", + "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", "block_index": 144, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10539,7 +10555,7 @@ Returns the dispensers of an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10549,7 +10565,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950210, + "block_time": 1727000392, "asset_info": { "divisible": true, "asset_longname": null, @@ -10565,9 +10581,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "0a0a386a108fc77532c20f16f9135923ccb21213e6b57fc920af53fdec07f3a3", + "tx_hash": "55b192e3a4561ca9f43c52774fc1a814cbbc8063479cd052a6bb818aec5aeadc", "block_index": 142, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10576,7 +10592,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "origin": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10586,7 +10602,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950201, + "block_time": 1727000383, "asset_info": { "divisible": true, "asset_longname": null, @@ -10602,9 +10618,9 @@ Returns the dispensers of an asset }, { "tx_index": 26, - "tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10613,7 +10629,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10623,7 +10639,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -10648,7 +10664,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - The address to return + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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` @@ -10661,9 +10677,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", + "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", "block_index": 144, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10672,7 +10688,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10682,7 +10698,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950210, + "block_time": 1727000392, "asset_info": { "divisible": true, "asset_longname": null, @@ -10732,7 +10748,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -10740,7 +10756,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -10749,7 +10765,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -10757,7 +10773,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -10766,7 +10782,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -10774,7 +10790,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -10783,7 +10799,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -10820,27 +10836,27 @@ Returns the dispenses of an asset { "tx_index": 33, "dispense_index": 0, - "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", - "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "last_status_tx_hash": null, - "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10855,7 +10871,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726950217, + "block_time": 1727000400, "asset_info": { "divisible": true, "asset_longname": null, @@ -10869,19 +10885,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", + "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10889,7 +10905,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10904,7 +10920,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -10918,19 +10934,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", + "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", "block_index": 140, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10938,7 +10954,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10953,7 +10969,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950194, + "block_time": 1727000375, "asset_info": { "divisible": true, "asset_longname": null, @@ -10996,8 +11012,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 0, @@ -11005,8 +11021,8 @@ Returns asset subassets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1726950274, - "last_issuance_block_time": 1726950274, + "first_issuance_block_time": 1727000447, + "last_issuance_block_time": 1727000447, "supply_normalized": "0.00000000" } ], @@ -11038,10 +11054,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11066,7 +11082,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726950130 + "block_time": 1727000301 } ], "next_cursor": null, @@ -11097,64 +11113,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "fa62268a3981b9cfff3d701ad4e086a879507e450c3e676a6fee67ce980309f3", + "tx_hash": "440ae8e372ae940d6481d2627e1995fa192be6b97873113ff7d04d298a8f443e", "tx_index": 13, "block_index": 125, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", - "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950130, + "block_time": 1727000301, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } }, { - "tx_hash": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7", + "tx_hash": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f", "tx_index": 12, "block_index": 124, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", - "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950126, + "block_time": 1727000297, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } }, { - "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", + "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950121, + "block_time": 1727000293, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } @@ -11170,7 +11186,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h` (str, required) - The address of the mints to return + + address: `bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (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` @@ -11189,22 +11205,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", + "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950121, + "block_time": 1727000293, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } @@ -11248,9 +11264,9 @@ Returns all the orders "result": [ { "tx_index": 57, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11265,7 +11281,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726950421, + "block_time": 1727000584, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11291,9 +11307,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "block_index": 190, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11308,7 +11324,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726950417, + "block_time": 1727000580, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11334,9 +11350,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "tx_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "block_index": 186, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11351,7 +11367,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726950389, + "block_time": 1727000563, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11377,9 +11393,9 @@ Returns all the orders }, { "tx_index": 50, - "tx_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "tx_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "block_index": 185, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11394,7 +11410,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726950385, + "block_time": 1727000558, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11420,9 +11436,9 @@ Returns all the orders }, { "tx_index": 49, - "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", "block_index": 186, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11437,7 +11453,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726950389, + "block_time": 1727000563, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11472,7 +11488,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055` (str, required) - The hash of the transaction that created the order + + order_hash: `caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7` (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. @@ -11484,9 +11500,9 @@ Returns the information of an order { "result": { "tx_index": 57, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11501,7 +11517,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726950421, + "block_time": 1727000584, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11533,7 +11549,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0` (str, required) - The hash of the transaction that created the order + + order_hash: `14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74` (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 @@ -11558,13 +11574,13 @@ Returns the order matches of an order { "result": [ { - "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "tx0_index": 49, - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 52, - "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", - "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11578,7 +11594,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726950389, + "block_time": 1727000563, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11598,13 +11614,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "tx0_index": 49, - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 50, - "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", - "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11618,7 +11634,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726950385, + "block_time": 1727000558, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11648,7 +11664,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0` (str, required) - The hash of the transaction that created the order + + order_hash: `14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74` (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 @@ -11667,15 +11683,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 51, - "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", + "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", "block_index": 185, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "btc_amount": 2000, - "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "status": "valid", "confirmed": true, - "block_time": 1726950385, + "block_time": 1727000558, "btc_amount_normalized": "0.00002000" } ], @@ -11717,9 +11733,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 57, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11737,7 +11753,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726950421, + "block_time": 1727000584, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11763,9 +11779,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "block_index": 190, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11783,7 +11799,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726950417, + "block_time": 1727000580, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11809,9 +11825,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "tx_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "block_index": 186, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11829,7 +11845,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726950389, + "block_time": 1727000563, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11855,9 +11871,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "tx_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "block_index": 185, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11875,7 +11891,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726950385, + "block_time": 1727000558, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11901,9 +11917,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", "block_index": 186, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11921,7 +11937,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726950389, + "block_time": 1727000563, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11982,13 +11998,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "tx0_index": 49, - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 52, - "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", - "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12005,7 +12021,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726950389, + "block_time": 1727000563, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12025,13 +12041,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "tx0_index": 49, - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 50, - "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", - "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12048,7 +12064,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726950385, + "block_time": 1727000558, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12068,13 +12084,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", "tx0_index": 47, - "tx0_hash": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 48, - "tx1_hash": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", - "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "tx1_hash": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12091,7 +12107,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726950308, + "block_time": 1727000481, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12147,13 +12163,13 @@ Returns all the order matches { "result": [ { - "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "tx0_index": 49, - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 52, - "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", - "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12167,7 +12183,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726950389, + "block_time": 1727000563, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12187,13 +12203,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "tx0_index": 49, - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 50, - "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", - "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12207,7 +12223,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726950385, + "block_time": 1727000558, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12227,13 +12243,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", "tx0_index": 47, - "tx0_hash": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 48, - "tx1_hash": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", - "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "tx1_hash": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12247,7 +12263,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726950308, + "block_time": 1727000481, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12415,66 +12431,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "b59307cc2ac4f942129759aae2c01c6787c312068f1f9274b9fca33b37cf2b5b", + "tx_hash": "adfbd46bafe5d0eb02dc42e71c6ebd831574fbcbc27598f3a574cd28a015cc8b", "block_index": 121, - "source": "bcrt1qwqs0vxzwhmrrq95fnvdhz0dlywewnjusllcjc7", + "source": "bcrt1qyulh8dt9j6mxay44vsk59ykh3j0sepu4nr8frk", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1726950113, + "block_time": 1727000284, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "cf3157538196c2ef2157f38ef876e51f522ca4dc1d4741b70aaee62b039ad635", + "tx_hash": "1d6bad2e953fa3de6db966f89158902144fed3f216c81d87ddc6d4b23e8ff89d", "block_index": 120, - "source": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", + "source": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1726950109, + "block_time": 1727000279, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "00b37df4c94335bff4c2621d0e083938367a01ace9ea4e952190a3bb3f35e521", + "tx_hash": "7ee251aac657b6a4b3605cca2cc178ffbec78038d0a964ca464c18982a294201", "block_index": 119, - "source": "bcrt1qtxavwjw8l7zg62dpwpj69pl6d2e55eh7c846rr", + "source": "bcrt1qmrlqq2xhfdhnvnnsry6l8mkv5q9nrdz4nlkvmp", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1726950105, + "block_time": 1727000275, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "0e233f42a66c3f1584ae4115105af5ee53d7aa4c12ba8c4e96ac321517b65e25", + "tx_hash": "8e5aa0e03605f3cfb71386e8827a8dd88135027beba9e6d959f94577fdab79f6", "block_index": 118, - "source": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", + "source": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1726950100, + "block_time": 1727000271, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "ddae9377ab97695ed0de3b6aa7478a8c6ad78e88f509db7b4b4866b138eff01e", + "tx_hash": "0baa93783d18dfbdc8cfe8d0e1291184d0ed5524077e64df275222278c79b627", "block_index": 117, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1726950096, + "block_time": 1727000267, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12517,18 +12533,18 @@ Returns all dispensers "result": [ { "tx_index": 32, - "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "last_status_tx_hash": null, - "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -12538,7 +12554,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726950217, + "block_time": 1727000400, "asset_info": { "divisible": true, "asset_longname": null, @@ -12554,9 +12570,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", + "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", "block_index": 144, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -12565,7 +12581,7 @@ Returns all dispensers "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12575,7 +12591,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950210, + "block_time": 1727000392, "asset_info": { "divisible": true, "asset_longname": null, @@ -12591,9 +12607,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "0a0a386a108fc77532c20f16f9135923ccb21213e6b57fc920af53fdec07f3a3", + "tx_hash": "55b192e3a4561ca9f43c52774fc1a814cbbc8063479cd052a6bb818aec5aeadc", "block_index": 142, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12602,7 +12618,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "origin": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12612,7 +12628,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950201, + "block_time": 1727000383, "asset_info": { "divisible": true, "asset_longname": null, @@ -12628,9 +12644,9 @@ Returns all dispensers }, { "tx_index": 26, - "tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12639,7 +12655,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12649,7 +12665,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -12674,7 +12690,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e` (str, required) - The hash of the dispenser to return + + dispenser_hash: `bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e` (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. @@ -12686,9 +12702,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12697,7 +12713,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12707,7 +12723,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -12729,7 +12745,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e` (str, required) - The hash of the dispenser to return + + dispenser_hash: `bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e` (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 @@ -12749,19 +12765,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", + "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12769,7 +12785,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12784,7 +12800,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -12798,19 +12814,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", + "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", "block_index": 140, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12818,7 +12834,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12833,7 +12849,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950194, + "block_time": 1727000375, "asset_info": { "divisible": true, "asset_longname": null, @@ -12875,20 +12891,20 @@ Returns all the dividends "result": [ { "tx_index": 40, - "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", + "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", "block_index": 153, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726950256, + "block_time": 1727000430, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -12913,7 +12929,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85` (str, required) - The hash of the dividend to return + + dividend_hash: `6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b` (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. @@ -12925,20 +12941,20 @@ Returns a dividend by its hash { "result": { "tx_index": 40, - "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", + "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", "block_index": 153, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726950256, + "block_time": 1727000430, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -12960,7 +12976,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b` (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 @@ -12983,12 +12999,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", + "event": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", "tx_index": 40, - "utxo": "834d6141f50ca8d542f97a2a8763c5e0b903ea69dad914ca7b2314d1b15299c9:0", - "utxo_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "utxo": "04f059b15c3a78cd69b004df45b5e2a96703d2a36ce737e6bad8ddad72bbffb2:0", + "utxo_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "confirmed": true, - "block_time": 1726950256, + "block_time": 1727000430, "asset_info": { "divisible": true, "asset_longname": null, @@ -13000,16 +13016,16 @@ Returns a dividend distribution by its hash }, { "block_index": 153, - "address": "bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj", + "address": "bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", + "event": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950256, + "block_time": 1727000430, "asset_info": { "divisible": true, "asset_longname": null, @@ -13055,27 +13071,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", - "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", + "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", + "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", "transaction_count": 1, - "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", - "block_time": 1726950429 + "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", + "block_time": 1727000592 }, "tx_hash": null, "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "tx_index": 59 }, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 }, { "event_index": 533, @@ -13084,12 +13100,12 @@ Returns all events "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "status": "valid", "tag": "64657374726f79", - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "tx_index": 59, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -13099,24 +13115,24 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 193, - "event": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "event": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -13126,25 +13142,25 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", "block_index": 193, - "block_time": 1726950429, + "block_time": 1727000592, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "tx_index": 59, - "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", + "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -13164,9 +13180,9 @@ Returns all events }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 } ], "next_cursor": 530, @@ -13194,15 +13210,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", - "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", + "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", + "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", "transaction_count": 1, - "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", - "block_time": 1726950429 + "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", + "block_time": 1727000592 }, "tx_hash": null, "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 } } ``` @@ -13280,16 +13296,16 @@ Returns the events filtered by event name "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -13299,78 +13315,78 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726950417, + "block_time": 1727000580, "asset_info": { "divisible": true, "asset_longname": null, @@ -13380,24 +13396,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "block_index": 190, - "block_time": 1726950417 + "block_time": 1727000580 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "event": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "divisible": true, "asset_longname": null, @@ -13407,9 +13423,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "block_time": 1726950398 + "block_time": 1727000571 } ], "next_cursor": 490, @@ -13465,27 +13481,27 @@ Returns all the dispenses { "tx_index": 33, "dispense_index": 0, - "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", - "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "last_status_tx_hash": null, - "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13500,7 +13516,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726950217, + "block_time": 1727000400, "asset_info": { "divisible": true, "asset_longname": null, @@ -13514,19 +13530,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", + "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13534,7 +13550,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13549,7 +13565,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -13563,19 +13579,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", + "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", "block_index": 140, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13583,7 +13599,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13598,7 +13614,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950194, + "block_time": 1727000375, "asset_info": { "divisible": true, "asset_longname": null, @@ -13640,10 +13656,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "quantity": 10, "status": "valid", @@ -13651,7 +13667,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "divisible": true, "asset_longname": null, @@ -13664,10 +13680,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13675,11 +13691,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -13688,10 +13704,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13699,11 +13715,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -13712,10 +13728,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 53, - "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d", + "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50", "block_index": 187, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -13723,7 +13739,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950394, + "block_time": 1727000567, "asset_info": { "divisible": true, "asset_longname": null, @@ -13736,10 +13752,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 42, - "tx_hash": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", + "tx_hash": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", "block_index": 155, - "source": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f:0", - "destination": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee:1", + "source": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881:0", + "destination": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -13747,7 +13763,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950266, + "block_time": 1727000439, "asset_info": { "divisible": true, "asset_longname": null, @@ -13789,14 +13805,14 @@ Returns all the issuances "result": [ { "tx_index": 46, - "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", + "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -13811,20 +13827,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950282, + "block_time": 1727000465, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "9a15129044c626aa6de4262f26195a677a41cc8a4b82c649cb7a381658023bdd", + "tx_hash": "69356c4a943c1bc4c96cf7e1fd1df717562742ba6d014e5404949c9fb8488072", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -13839,20 +13855,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726950277, + "block_time": 1727000461, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "3de27df9207dede883d535efe529dd8fc3974cb18d1a62d257e6bcb91aa08a74", + "tx_hash": "de64c6d5cdcb12d054140d780d7c6780ed87490c27d80ff372e2384e3e898730", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -13867,20 +13883,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950274, + "block_time": 1727000447, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "9157f7bfaf353b8d1bfda36bbcaf83e7a1ae668161834e9f1b166f1e47b0f4c0", + "tx_hash": "694859d37608f9befa94495339565cd43e8955250c937c614bdc234e9fd9f4c6", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -13895,20 +13911,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950270, + "block_time": 1727000443, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", + "tx_hash": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", - "issuer": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", + "source": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", + "issuer": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", "transfer": false, "callable": false, "call_date": 0, @@ -13923,7 +13939,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950266, + "block_time": 1727000439, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -13938,7 +13954,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88` (str, required) - The hash of the transaction to return + + tx_hash: `a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346` (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. @@ -13950,14 +13966,14 @@ Returns the issuances of a block { "result": { "tx_index": 46, - "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", + "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -13972,7 +13988,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950282, + "block_time": 1727000465, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14004,16 +14020,16 @@ Returns all sweeps "result": [ { "tx_index": 58, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "fee_paid_normalized": "0.00600000" } ], @@ -14027,7 +14043,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199` (str, required) - The hash of the transaction to return + + tx_hash: `9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea` (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. @@ -14040,16 +14056,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 58, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "fee_paid_normalized": "0.00600000" } ], @@ -14083,9 +14099,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198", + "tx_hash": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf", "block_index": 138, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14093,14 +14109,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726950185, + "block_time": 1727000366, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "ba4be2ba08322daea13f5b8b4710717e27f736da291c8238d4310b7a967668cf", + "tx_hash": "175b0e837d4aa88d671cfc863c546cf1e410283c6bcfca4f22737640612a0343", "block_index": 137, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14108,7 +14124,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726950181, + "block_time": 1727000362, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14122,7 +14138,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198` (str, required) - The hash of the transaction to return + + tx_hash: `437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf` (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. @@ -14134,9 +14150,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198", + "tx_hash": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf", "block_index": 138, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14144,7 +14160,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726950185, + "block_time": 1727000366, "fee_fraction_int_normalized": "0.00000000" } } @@ -14174,10 +14190,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", + "tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14202,13 +14218,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726950172 + "block_time": 1727000354 }, { - "tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", + "tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14233,13 +14249,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726950155 + "block_time": 1727000326 }, { - "tx_hash": "e69f3ddbfd1ba8c631b757819d7664ca2bc7041fcd5a75be8e2711eea2cac9f8", + "tx_hash": "7db72c3a3d73085625f2f30f21a6937c09222727d2b9942e21aec693b24bf08e", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14264,13 +14280,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726950151 + "block_time": 1727000322 }, { - "tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14295,7 +14311,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726950130 + "block_time": 1727000301 } ], "next_cursor": null, @@ -14338,7 +14354,7 @@ Returns the mints by fairminter Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh,bcrt1qtxavwjw8l7zg62dpwpj69pl6d2e55eh7c846rr` (str, required) - The addresses to search for + + addresses: `bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733,bcrt1qmrlqq2xhfdhnvnnsry6l8mkv5q9nrdz4nlkvmp` (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. @@ -14357,8 +14373,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", - "address": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh" + "txid": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "address": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733" }, { "vout": 2, @@ -14366,8 +14382,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", - "address": "bcrt1qtxavwjw8l7zg62dpwpj69pl6d2e55eh7c846rr" + "txid": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", + "address": "bcrt1qmrlqq2xhfdhnvnnsry6l8mkv5q9nrdz4nlkvmp" } ], "next_cursor": null, @@ -14380,7 +14396,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779` (str, required) - The address to search for + + address: `bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss` (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 @@ -14396,28 +14412,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "facd73ce7e552dab11a369e33253c91a09a63e697ed4542f29c5e0a118eb3a01" + "tx_hash": "d073bfba516a4c628b5c56105186ff577ace257af1912aa559d9761b7b225d25" }, { - "tx_hash": "712a9aba1cb503ed1a41fa5c0babfb3e6b649e69cbd2e657530242a61484c913" + "tx_hash": "46166b488d62f2085d8dbc2af1837c3e9d204d91bf46bf31436e5e207c85d326" }, { - "tx_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448" + "tx_hash": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f" }, { - "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d" + "tx_hash": "9b353d1cbb0a30108e4f9cc683852d659f4f611c141bab3af77efc10ab93dc4a" }, { - "tx_hash": "005e41992c61245f5c6c82a7140ca55b6813d522dfdd67fd5bb22b1b144ee77d" + "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50" }, { - "tx_hash": "e742483b2266e8ade01df73224124c166517189dbb36182c8f2d5ff8960d3f87" + "tx_hash": "6a012a0815fc9d29a651e9f6af04443ca67779f542d86bcb97bc981b09842497" }, { - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" + "tx_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea" }, { - "tx_hash": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7" + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" } ], "next_cursor": null, @@ -14430,7 +14446,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc` (str, required) - The address to search for. + + address: `bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t` (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. @@ -14443,8 +14459,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 2, - "tx_hash": "2d45e6b03b23a3f1ea01231cc3f27bd052b446c1246fefdce01f9faf99e55a4b" + "block_index": 4, + "tx_hash": "d5e3e6a38642c35108060cab17f3bf9e9141c313f26df13b7f4a971bf2ea1472" } } ``` @@ -14454,7 +14470,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh` (str, required) - The address to search for + + address: `bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733` (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 @@ -14475,7 +14491,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387" + "txid": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680" } ], "next_cursor": null, @@ -14488,7 +14504,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2` (str, required) - Address to get pubkey for. + + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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. @@ -14500,7 +14516,7 @@ Get pubkey for an address. ``` { - "result": "03bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb724" + "result": "03dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d962" } ``` @@ -14509,7 +14525,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98` (str, required) - The transaction hash + + tx_hash: `2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f` (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. @@ -14521,7 +14537,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001011c47366e343a9e877ad71973dda9dfd1fe3e5684b34d2050f103aa6932f987c60300000000ffffffff020000000000000000226a20cea231665cabd08a82716fe6f464d520b5b5cf11fa08af64b5a40c8a74d38315680b0a2701000000160014bebd760d2e19686fe41856142fc45e3c18bea249024730440220649b9ca4964671c3eb365c42aea2a7d90717d1d6571f1d5ad3e4b1ac9e8da90b0220646fee8e452cea4dc757229333dd9499c3ea97ea59f96e98f0e3794c76848e440121022098f1d02b56e77ca857c5355d804950681dd648a95db1667bedd171bfe91e7000000000" + "result": "02000000000101f63c2d979ad0f0e7f38dd85c074a4731d6647152038511f2271ad1de3cf84d800300000000ffffffff020000000000000000226a20e06ea3ecf0f626c5841e5657c55445f9fb235327f993aaea1b320caf3bc7a6d6680b0a2701000000160014ed681fe4daf7ab2ee1a33b873588429301d5bfa80247304402206ea2865ecb9d902c8106db025b32cb485439db6daf31772806f9cf11815a10be02205e0347b8940a72eb394678316f05345062d84c91bbb221f48b584436951395df012102cd3154911e5d3f0dd8141a848af0f2f71983615dc048911e9fa68b8cf85964a600000000" } ``` @@ -14614,26 +14630,26 @@ Returns all mempool events { "result": [ { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "tx_index": 60 } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "memo": null, "quantity": 10000, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "status": "valid", - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "tx_index": 60, "asset_info": { "divisible": true, @@ -14646,19 +14662,19 @@ Returns all mempool events } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "CREDIT", "params": { - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -14670,19 +14686,19 @@ Returns all mempool events } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 193, - "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -14694,27 +14710,27 @@ Returns all mempool events } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726950434.0695176, + "block_time": 1727000606.3219044, "btc_amount": 0, - "data": "0200000000000000010000000000002710802d892d9d215a3e35d0fffb2b3e7cabdb14d24549", + "data": "0200000000000000010000000000002710802fe54076791a6e2ac138ef00abb24f8185f125ab", "destination": "", "fee": 10000, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "tx_index": 60, - "utxos_info": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94:1", + "utxos_info": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "memo": null, "asset_info": { "divisible": true, @@ -14758,19 +14774,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "CREDIT", "params": { - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -14792,7 +14808,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94` (str, required) - The hash of the transaction to return + + tx_hash: `b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21` (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 @@ -14812,26 +14828,26 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "tx_index": 60 } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "memo": null, "quantity": 10000, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "status": "valid", - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "tx_index": 60, "asset_info": { "divisible": true, @@ -14844,19 +14860,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "CREDIT", "params": { - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -14868,19 +14884,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 193, - "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -14892,27 +14908,27 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726950434.0695176, + "block_time": 1727000606.3219044, "btc_amount": 0, - "data": "0200000000000000010000000000002710802d892d9d215a3e35d0fffb2b3e7cabdb14d24549", + "data": "0200000000000000010000000000002710802fe54076791a6e2ac138ef00abb24f8185f125ab", "destination": "", "fee": 10000, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "tx_index": 60, - "utxos_info": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94:1", + "utxos_info": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "memo": null, "asset_info": { "divisible": true, diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 4b7c07e069..8972655e40 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -17,7 +17,6 @@ exceptions, ledger, sentry, - transaction, util, ) from counterpartycore.lib.api import api_watcher, queries @@ -382,7 +381,6 @@ def run_api_server(args, interruped_value, server_ready_value): logger.info("Starting API Server...") app = Flask(config.APP_NAME) - transaction.initialise() with app.app_context(): # Initialise the API access log init_api_access_log(app) diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index 887148dfb0..a96a0e8233 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -6,16 +6,9 @@ import binascii import decimal -import hashlib import inspect -import io import logging import sys -import threading - -import bitcoin as bitcoinlib -import cachetools -from bitcoin.core import CTransaction from counterpartycore.lib import ( arc4, # noqa: F401 # TODO: need for test: clean that up @@ -30,6 +23,7 @@ from counterpartycore.lib.backend import addrindexrs from counterpartycore.lib.messages import dispense # noqa: F401 from counterpartycore.lib.transaction_helper import p2sh_encoding, serializer +from counterpartycore.lib.transaction_helper.utxo_locks import UTXOLocks, sort_unspent_txouts logger = logging.getLogger(config.LOGGER_NAME) @@ -50,167 +44,9 @@ D = decimal.Decimal -# FILE AS SINGLETON API -# -# We eventually neet to rip this out and just instantiate the TransactionService -# when we explcitly build up a dependency tree. - -TRANSACTION_SERVICE_SINGLETON = None - MAX_INPUTS_SET = 100 -def initialise(force=False): - global TRANSACTION_SERVICE_SINGLETON # noqa: PLW0603 - - if not force and TRANSACTION_SERVICE_SINGLETON: - return TRANSACTION_SERVICE_SINGLETON - - utxo_locks = None - if config.UTXO_LOCKS_MAX_ADDRESSES > 0: - utxo_locks = util.DictCache(size=config.UTXO_LOCKS_MAX_ADDRESSES) - - TRANSACTION_SERVICE_SINGLETON = TransactionService( - backend=backend, - prefix=config.PREFIX, - ps2h_dust_return_pubkey=config.P2SH_DUST_RETURN_PUBKEY, - utxo_locks_max_age=config.UTXO_LOCKS_MAX_AGE, - utxo_locks_max_addresses=config.UTXO_LOCKS_MAX_ADDRESSES, - default_regular_dust_size=config.DEFAULT_REGULAR_DUST_SIZE, - default_multisig_dust_size=config.DEFAULT_MULTISIG_DUST_SIZE, - estimate_fee_mode=config.ESTIMATE_FEE_MODE, - op_return_max_size=config.OP_RETURN_MAX_SIZE, - utxo_locks=utxo_locks, - utxo_p2sh_encoding_locks=ThreadSafeTTLCache(10000, 180), - utxo_p2sh_encoding_locks_cache=ThreadSafeTTLCache(1000, 600), - ) - - -def construct( - db, - tx_info, - encoding="auto", - fee_per_kb=config.DEFAULT_FEE_PER_KB, - estimate_fee_per_kb=None, - estimate_fee_per_kb_nblocks=config.ESTIMATE_FEE_CONF_TARGET, - regular_dust_size=config.DEFAULT_REGULAR_DUST_SIZE, - multisig_dust_size=config.DEFAULT_MULTISIG_DUST_SIZE, - op_return_value=config.DEFAULT_OP_RETURN_VALUE, - exact_fee=None, - fee_provided=0, - provided_pubkeys=None, - dust_return_pubkey=None, - allow_unconfirmed_inputs=False, - unspent_tx_hash=None, - inputs_set=None, - disable_utxo_locks=False, - extended_tx_info=False, - old_style_api=None, - segwit=False, - p2sh_source_multisig_pubkeys=None, - p2sh_source_multisig_pubkeys_required=None, - p2sh_pretx_txid=None, - exclude_utxos=None, - op_return_max_size=config.OP_RETURN_MAX_SIZE, -): - if TRANSACTION_SERVICE_SINGLETON is None: - raise Exception("Transaction not initialized") - - return construct_transaction( - db, - tx_info, - TRANSACTION_SERVICE_SINGLETON, - encoding, - fee_per_kb, - estimate_fee_per_kb, - estimate_fee_per_kb_nblocks, - regular_dust_size, - multisig_dust_size, - op_return_value, - exact_fee, - fee_provided, - provided_pubkeys, - dust_return_pubkey, - allow_unconfirmed_inputs, - unspent_tx_hash, - inputs_set, - disable_utxo_locks, - extended_tx_info, - old_style_api, - segwit, - p2sh_source_multisig_pubkeys, - p2sh_source_multisig_pubkeys_required, - p2sh_pretx_txid, - exclude_utxos, - op_return_max_size, - ) - - -class BaseThreadSafeCache: - def __init__(self, *args, **kwargs): - # Note: reading is thread safe out of the box - self.lock = threading.Lock() - self.__cache = self.create_cache(*args, **kwargs) - - def create_cache(self, *args, **kwargs): - raise NotImplementedError - - def get(self, key, default=None): - return self.__cache.get(key, default) - - def pop(self, key, default=None): - with self.lock: - return self.__cache.pop(key, default) - - def delete(self, key): - with self.lock: - try: - del self.__cache[key] - except KeyError: - pass - - def _get_cache(self): - return self.__cache - - def set(self, key, value): - with self.lock: - try: - self.__cache[key] = value - except KeyError: - pass - - def keys(self): - return self.__cache.keys() - - def __len__(self): - return len(self.__cache) - - def __iter__(self): - return iter(self.__cache) - - def __contains__(self, key): - return key in self.__cache - - -class ThreadSafeTTLCache(BaseThreadSafeCache): - def create_cache(self, *args, **kwargs): - return cachetools.TTLCache(*args, **kwargs) - - -def sort_unspent_txouts(unspent, dust_size=config.DEFAULT_REGULAR_DUST_SIZE): - # Filter out all dust amounts to avoid bloating the resultant transaction - unspent = list(filter(lambda x: x["value"] > dust_size, unspent)) - # Sort by amount, using the largest UTXOs available - if config.REGTEST: - # REGTEST has a lot of coinbase inputs that can't be spent due to maturity - # this doesn't usually happens on mainnet or testnet because most fednodes aren't mining - unspent = sorted(unspent, key=lambda x: (x["confirmations"], x["value"]), reverse=True) - else: - unspent = sorted(unspent, key=lambda x: x["value"], reverse=True) - - return unspent - - def construct_coin_selection( encoding, data_array, @@ -230,7 +66,6 @@ def construct_coin_selection( multisig_dust_size, disable_utxo_locks, exclude_utxos, - lock_utxos_instance, ): # Array of UTXOs, as retrieved by listunspent function from bitcoind if inputs_set: @@ -252,7 +87,7 @@ def construct_coin_selection( f"Insufficient {config.BTC} at address {source}: no unspent outputs." ) - unspent = lock_utxos_instance.filter_unspents(source, unspent, exclude_utxos) + unspent = UTXOLocks().filter_unspents(source, unspent, exclude_utxos) if encoding == "multisig": dust = multisig_dust_size @@ -346,7 +181,7 @@ def construct_coin_selection( raise exceptions.BalanceError(error_message) if not disable_utxo_locks: - lock_utxos_instance.lock_utxos(source, inputs) + UTXOLocks().lock_utxos(source, inputs) # ensure inputs have scriptPubKey # this is not provided by indexd @@ -355,34 +190,6 @@ def construct_coin_selection( return inputs, change_quantity, btc_in, final_fee -def select_any_coin_from_source( - source, - lock_utxos_instance, - allow_unconfirmed_inputs=True, - disable_utxo_locks=False, - exclude_utxos=None, -): - """Get the first (biggest) input from the source address""" - - # Array of UTXOs, as retrieved by listunspent function from bitcoind - unspent = backend.addrindexrs.get_unspent_txouts(source, unconfirmed=allow_unconfirmed_inputs) - - unspent = lock_utxos_instance.filter_unspents(source, unspent, exclude_utxos) - - # sort - unspent = sort_unspent_txouts(unspent, dust_size=config.DEFAULT_REGULAR_DUST_SIZE) - - # use the first input - input = unspent[0] - if input is None: - return None - - if not disable_utxo_locks: - lock_utxos_instance.lock_utxos(source, [input]) - - return input - - def pubkeyhash_to_pubkey(pubkeyhash, provided_pubkeys=None): # Search provided pubkeys. if provided_pubkeys: @@ -509,7 +316,6 @@ def prepare_inputs( multisig_dust_size, disable_utxo_locks, exclude_utxos, - utxo_locks_instance, ): btc_in = 0 final_fee = 0 @@ -556,7 +362,6 @@ def prepare_inputs( multisig_dust_size, disable_utxo_locks, exclude_utxos, - utxo_locks_instance, ) btc_in = n_btc_in final_fee = n_final_fee @@ -670,105 +475,7 @@ def prepare_data_output( return data_value, data_array, dust_return_pubkey -def serialize_p2sh( - inputs, - source, - source_address, - destination_outputs, - data_output, - change_output, - dust_return_pubkey, - p2sh_source_multisig_pubkeys, - p2sh_source_multisig_pubkeys_required, - p2sh_pretx_txid, - segwit, - exclude_utxos, - utxo_locks_instance, -): - pretx_txid = None - unsigned_pretx_hex = None - unsigned_tx_hex = None - - assert not (segwit and p2sh_pretx_txid) # shouldn't do old style with segwit enabled - - if p2sh_pretx_txid: - pretx_txid = ( - p2sh_pretx_txid - if isinstance(p2sh_pretx_txid, bytes) - else binascii.unhexlify(p2sh_pretx_txid) - ) - unsigned_pretx = None - else: - destination_value_sum = sum([value for (_destination, value) in destination_outputs]) - source_value = destination_value_sum - - if change_output: - # add the difference between source and destination to the change - change_value = change_output[1] + (destination_value_sum - source_value) - change_output = (change_output[0], change_value) - - unsigned_pretx = serializer.serialise_p2sh_pretx( - inputs, - source=source_address, - source_value=source_value, - data_output=data_output, - change_output=change_output, - pubkey=dust_return_pubkey, - multisig_pubkeys=p2sh_source_multisig_pubkeys, - multisig_pubkeys_required=p2sh_source_multisig_pubkeys_required, - ) - unsigned_pretx_hex = binascii.hexlify(unsigned_pretx).decode("utf-8") - - # with segwit we already know the txid and can return both - if segwit: - # pretx_txid = hashlib.sha256(unsigned_pretx).digest() # this should be segwit txid - ptx = CTransaction.stream_deserialize( - io.BytesIO(unsigned_pretx) - ) # could be a non-segwit tx anyways - txid_ba = bytearray(ptx.GetTxid()) - txid_ba.reverse() - pretx_txid = bytes(txid_ba) # gonna leave the malleability problem to upstream - logger.debug(f"pretx_txid {pretx_txid}") - - if unsigned_pretx: - # we set a long lock on this, don't want other TXs to spend from it - utxo_locks_instance.lock_p2sh_utxos(unsigned_pretx) - - # only generate the data TX if we have the pretx txId - if pretx_txid: - source_input = None - if script.is_p2sh(source): - source_input = select_any_coin_from_source( - source, utxo_locks_instance, exclude_utxos=exclude_utxos - ) - if not source_input: - raise exceptions.TransactionError( - "Unable to select source input for p2sh source address" - ) - - unsigned_datatx = serializer.serialise_p2sh_datatx( - pretx_txid, - source=source_address, - source_input=source_input, - destination_outputs=destination_outputs, - data_output=data_output, - pubkey=dust_return_pubkey, - multisig_pubkeys=p2sh_source_multisig_pubkeys, - multisig_pubkeys_required=p2sh_source_multisig_pubkeys_required, - ) - unsigned_datatx_hex = binascii.hexlify(unsigned_datatx).decode("utf-8") - - # let the rest of the code work it's magic on the data tx - unsigned_tx_hex = unsigned_datatx_hex - return pretx_txid, unsigned_pretx_hex, unsigned_tx_hex - else: - # we're just gonna return the pretx, it doesn't require any of the further checks - return pretx_txid, unsigned_pretx_hex, None - - -def check_transaction_sanity( - db, source, tx_info, unsigned_tx_hex, encoding, inputs, utxo_locks_instance -): +def check_transaction_sanity(db, source, tx_info, unsigned_tx_hex, encoding, inputs): (desired_source, desired_destination_outputs, desired_data) = tx_info desired_source = script.make_canonical(desired_source) desired_destination = ( @@ -812,17 +519,16 @@ def check_transaction_sanity( desired = (desired_source, desired_destination, desired_data) parsed = (parsed_source, parsed_destination, parsed_data) if desired != parsed: - utxo_locks_instance.unlock_utxos(source, inputs) + UTXOLocks().unlock_utxos(source, inputs) raise exceptions.TransactionError( f"Constructed transaction does not parse correctly: {desired} ≠ {parsed}" ) -def construct_transaction( +def construct( db, tx_info, - utxo_locks_instance, encoding="auto", fee_per_kb=config.DEFAULT_FEE_PER_KB, estimate_fee_per_kb=None, @@ -955,7 +661,6 @@ def construct_transaction( multisig_dust_size, disable_utxo_locks, exclude_utxos, - utxo_locks_instance, ) """Finish""" @@ -970,7 +675,7 @@ def construct_transaction( pretx_txid = None if encoding == "p2sh": - pretx_txid, unsigned_pretx_hex, unsigned_tx_hex = serialize_p2sh( + pretx_txid, unsigned_pretx_hex, unsigned_tx_hex = p2sh_encoding.serialize_p2sh( inputs, source, source_address, @@ -983,7 +688,6 @@ def construct_transaction( p2sh_pretx_txid, segwit, exclude_utxos, - utxo_locks_instance, ) else: # Serialise inputs and outputs. @@ -1000,9 +704,7 @@ def construct_transaction( """Sanity Check""" if (encoding == "p2sh" and pretx_txid) or encoding != "p2sh": - check_transaction_sanity( - db, source, tx_info, unsigned_tx_hex, encoding, inputs, utxo_locks_instance - ) + check_transaction_sanity(db, source, tx_info, unsigned_tx_hex, encoding, inputs) if extended_tx_info: return { @@ -1020,99 +722,6 @@ def construct_transaction( return return_result([unsigned_tx_hex], old_style_api=old_style_api) -# set higher than the max number of UTXOs we should expect to -# manage in an aging cache for any one source address, at any one period -# UTXO_P2SH_ENCODING_LOCKS is TTLCache for UTXOs that are used for chaining p2sh encoding -# instead of a simple (txid, vout) key we use [(vin.prevout.hash, vin.prevout.n) for vin tx1.vin] -# we cache the make_outkey_vin to avoid having to fetch raw txs too often - - -class TransactionService: - def __init__( - self, - backend, - prefix, - utxo_locks_max_age=3.0, - utxo_locks_max_addresses=1000, - utxo_locks_per_address_maxsize=5000, - default_regular_dust_size=config.DEFAULT_REGULAR_DUST_SIZE, - default_multisig_dust_size=config.DEFAULT_MULTISIG_DUST_SIZE, - estimate_fee_mode=config.ESTIMATE_FEE_MODE, - op_return_max_size=config.OP_RETURN_MAX_SIZE, - utxo_p2sh_encoding_locks=None, - utxo_p2sh_encoding_locks_cache=None, - utxo_locks=None, - ps2h_dust_return_pubkey=None, - ): - self.logger = logging.getLogger( - config.LOGGER_NAME - ) # has to be config.LOGGER_NAME or integration tests fail - self.backend = backend - - self.utxo_p2sh_encoding_locks = utxo_p2sh_encoding_locks or ThreadSafeTTLCache(10000, 180) - self.utxo_p2sh_encoding_locks_cache = utxo_p2sh_encoding_locks_cache or ThreadSafeTTLCache( - 1000, 600 - ) - self.utxo_locks = utxo_locks - - self.utxo_locks_max_age = utxo_locks_max_age - self.utxo_locks_max_addresses = utxo_locks_max_addresses - self.utxo_locks_per_address_maxsize = utxo_locks_per_address_maxsize - - self.default_regular_dust_size = default_regular_dust_size - self.default_multisig_dust_size = default_multisig_dust_size - self.estimate_fee_mode = estimate_fee_mode - - self.prefix = prefix - self.op_return_max_size = op_return_max_size - self.ps2h_dust_return_pubkey = ps2h_dust_return_pubkey or config.P2SH_DUST_RETURN_PUBKEY - - def make_outkey_vin_txid(self, txid, vout): - if (txid, vout) not in self.utxo_p2sh_encoding_locks_cache: - txhex = self.backend.bitcoind.getrawtransaction(txid, verbose=False) - self.utxo_p2sh_encoding_locks_cache.set((txid, vout), make_outkey_vin(txhex, vout)) - - return self.utxo_p2sh_encoding_locks_cache.get((txid, vout)) - - def filter_unspents(self, source, unspent, exclude_utxos): - filter_unspents_utxo_locks = [] - if self.utxo_locks is not None and source in self.utxo_locks: - filter_unspents_utxo_locks = self.utxo_locks[source].keys() - filter_unspents_p2sh_locks = self.utxo_p2sh_encoding_locks.keys() # filter out any locked UTXOs to prevent creating transactions that spend the same UTXO when they're created at the same time - filtered_unspent = [] - for output in unspent: - if ( - make_outkey(output) not in filter_unspents_utxo_locks - and self.make_outkey_vin_txid(output["txid"], output["vout"]) - not in filter_unspents_p2sh_locks - and ( - not exclude_utxos - or not isinstance(exclude_utxos, str) - or f"{output['txid']}:{output['vout']}" not in exclude_utxos.split(",") - ) - ): - filtered_unspent.append(output) - return filtered_unspent - - def lock_utxos(self, source, inputs): - # Lock the source's inputs (UTXOs) chosen for this transaction - if self.utxo_locks is not None: - if source not in self.utxo_locks: - self.utxo_locks[source] = ThreadSafeTTLCache( - self.utxo_locks_per_address_maxsize, self.utxo_locks_max_age - ) - for input in inputs: - self.utxo_locks[source].set(make_outkey(input), input) - - def lock_p2sh_utxos(self, unsigned_pretx): - self.utxo_p2sh_encoding_locks.set(make_outkey_vin(unsigned_pretx, 0), True) - - def unlock_utxos(self, source, inputs): - if self.utxo_locks is not None and inputs: - for input in inputs: - self.utxo_locks[source].pop(make_outkey(input), None) - - def print_coin(coin): return f"amount: {coin['amount']:.8f}; txid: {coin['txid']}; vout: {coin['vout']}; confirmations: {coin.get('confirmations', '?')}" # simplify and make deterministic @@ -1123,21 +732,6 @@ def chunks(l, n): # noqa: E741 yield l[i : i + n] -def make_outkey(output): - return f"{output['txid']}{output['vout']}" - - -def make_outkey_vin(txhex, vout): - txbin = binascii.unhexlify(txhex) if isinstance(txhex, str) else txhex - assert isinstance(vout, int) - - tx = bitcoinlib.core.CTransaction.deserialize(txbin) - outkey = [(vin.prevout.hash, vin.prevout.n) for vin in tx.vin] - outkey = hashlib.sha256((f"{outkey}{vout}").encode("ascii")).digest() - - return outkey - - def return_result(tx_hexes, old_style_api): tx_hexes = list(filter(None, tx_hexes)) # filter out None diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/p2sh_encoding.py b/counterparty-core/counterpartycore/lib/transaction_helper/p2sh_encoding.py index 73c5cbdf72..91c124d31f 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/p2sh_encoding.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/p2sh_encoding.py @@ -3,13 +3,22 @@ """ import binascii +import io import logging import struct import bitcoin as bitcoinlib +from bitcoin.core import CTransaction from bitcoin.core.script import CScript -from counterpartycore.lib import config, exceptions, script +from counterpartycore.lib import arc4, backend, config, exceptions, script +from counterpartycore.lib.transaction_helper.serializer import ( + OP_RETURN, + get_script, + op_push, + var_int, +) +from counterpartycore.lib.transaction_helper.utxo_locks import UTXOLocks, sort_unspent_txouts logger = logging.getLogger(config.LOGGER_NAME) @@ -301,3 +310,284 @@ def make_standard_p2sh_multisig_script(multisig_pubkeys, multisig_pubkeys_requir bitcoinlib.core.script.OP_CHECKMULTISIG, ] return multisig_script + + +def select_any_coin_from_source( + source, + allow_unconfirmed_inputs=True, + disable_utxo_locks=False, + exclude_utxos=None, +): + """Get the first (biggest) input from the source address""" + + # Array of UTXOs, as retrieved by listunspent function from bitcoind + unspent = backend.addrindexrs.get_unspent_txouts(source, unconfirmed=allow_unconfirmed_inputs) + + unspent = UTXOLocks().filter_unspents(source, unspent, exclude_utxos) + + # sort + unspent = sort_unspent_txouts(unspent, dust_size=config.DEFAULT_REGULAR_DUST_SIZE) + + # use the first input + input = unspent[0] + if input is None: + return None + + if not disable_utxo_locks: + UTXOLocks().lock_utxos(source, [input]) + + return input + + +def serialise_p2sh_pretx( + inputs, + source, + source_value, + data_output, + change_output=None, + pubkey=None, + multisig_pubkeys=None, + multisig_pubkeys_required=None, +): + assert data_output # we don't do this unless there's data + + data_array, data_value = data_output + + s = (1).to_bytes(4, byteorder="little") # Version + + # Number of inputs. + s += var_int(int(len(inputs))) + + # List of Inputs. + for i in range(len(inputs)): + txin = inputs[i] + s += binascii.unhexlify(bytes(txin["txid"], "utf-8"))[::-1] # TxOutHash + s += txin["vout"].to_bytes(4, byteorder="little") # TxOutIndex + + tx_script = binascii.unhexlify(bytes(txin["script_pub_key"], "utf-8")) + s += var_int(int(len(tx_script))) # Script length + s += tx_script # Script + s += b"\xff" * 4 # Sequence + + # Number of outputs. + n = len(data_array) + if change_output: + n += 1 + + # encode number of outputs + s += var_int(n) + + # P2SH for data encodeded inputs + for n, data_chunk in enumerate(data_array): + data_chunk = config.PREFIX + data_chunk # prefix the data_chunk # noqa: PLW2901 + + # get the scripts + script_sig, redeem_script, output_script = make_p2sh_encoding_redeemscript( + data_chunk, n, pubkey, multisig_pubkeys, multisig_pubkeys_required + ) + + # if data_value is an array, then every output fee is specified in it + if type(data_value) == list: # noqa: E721 + s += data_value[n].to_bytes(8, byteorder="little") # Value + else: + s += data_value.to_bytes(8, byteorder="little") # Value + s += var_int(int(len(output_script))) # Script length + s += output_script # Script + + # Change output. + if change_output: + change_address, change_value = change_output + tx_script, witness_script = get_script(change_address) + + s += change_value.to_bytes(8, byteorder="little") # Value + s += var_int(int(len(tx_script))) # Script length + s += tx_script # Script + + s += (0).to_bytes(4, byteorder="little") # LockTime + + return s + + +def serialize_p2sh( + inputs, + source, + source_address, + destination_outputs, + data_output, + change_output, + dust_return_pubkey, + p2sh_source_multisig_pubkeys, + p2sh_source_multisig_pubkeys_required, + p2sh_pretx_txid, + segwit, + exclude_utxos, +): + pretx_txid = None + unsigned_pretx_hex = None + unsigned_tx_hex = None + + assert not (segwit and p2sh_pretx_txid) # shouldn't do old style with segwit enabled + + if p2sh_pretx_txid: + pretx_txid = ( + p2sh_pretx_txid + if isinstance(p2sh_pretx_txid, bytes) + else binascii.unhexlify(p2sh_pretx_txid) + ) + unsigned_pretx = None + else: + destination_value_sum = sum([value for (_destination, value) in destination_outputs]) + source_value = destination_value_sum + + if change_output: + # add the difference between source and destination to the change + change_value = change_output[1] + (destination_value_sum - source_value) + change_output = (change_output[0], change_value) + + unsigned_pretx = serialise_p2sh_pretx( + inputs, + source=source_address, + source_value=source_value, + data_output=data_output, + change_output=change_output, + pubkey=dust_return_pubkey, + multisig_pubkeys=p2sh_source_multisig_pubkeys, + multisig_pubkeys_required=p2sh_source_multisig_pubkeys_required, + ) + unsigned_pretx_hex = binascii.hexlify(unsigned_pretx).decode("utf-8") + + # with segwit we already know the txid and can return both + if segwit: + # pretx_txid = hashlib.sha256(unsigned_pretx).digest() # this should be segwit txid + ptx = CTransaction.stream_deserialize( + io.BytesIO(unsigned_pretx) + ) # could be a non-segwit tx anyways + txid_ba = bytearray(ptx.GetTxid()) + txid_ba.reverse() + pretx_txid = bytes(txid_ba) # gonna leave the malleability problem to upstream + logger.debug(f"pretx_txid {pretx_txid}") + + if unsigned_pretx: + # we set a long lock on this, don't want other TXs to spend from it + UTXOLocks().lock_p2sh_utxos(unsigned_pretx) + + # only generate the data TX if we have the pretx txId + if pretx_txid: + source_input = None + if script.is_p2sh(source): + source_input = select_any_coin_from_source(source, exclude_utxos=exclude_utxos) + if not source_input: + raise exceptions.TransactionError( + "Unable to select source input for p2sh source address" + ) + + unsigned_datatx = serialise_p2sh_datatx( + pretx_txid, + source=source_address, + source_input=source_input, + destination_outputs=destination_outputs, + data_output=data_output, + pubkey=dust_return_pubkey, + multisig_pubkeys=p2sh_source_multisig_pubkeys, + multisig_pubkeys_required=p2sh_source_multisig_pubkeys_required, + ) + unsigned_datatx_hex = binascii.hexlify(unsigned_datatx).decode("utf-8") + + # let the rest of the code work it's magic on the data tx + unsigned_tx_hex = unsigned_datatx_hex + return pretx_txid, unsigned_pretx_hex, unsigned_tx_hex + else: + # we're just gonna return the pretx, it doesn't require any of the further checks + return pretx_txid, unsigned_pretx_hex, None + + +def serialise_p2sh_datatx( + txid, + source, + source_input, + destination_outputs, + data_output, + pubkey=None, + multisig_pubkeys=None, + multisig_pubkeys_required=None, +): + assert data_output # we don't do this unless there's data + + txhash = bitcoinlib.core.lx(bitcoinlib.core.b2x(txid)) # reverse txId + data_array, value = data_output + + # version + s = (1).to_bytes(4, byteorder="little") + + # number of inputs is the length of data_array (+1 if a source_input exists) + number_of_inputs = len(data_array) + if source_input is not None: + number_of_inputs += 1 + s += var_int(number_of_inputs) + + # Handle a source input here for a P2SH source + if source_input is not None: + s += binascii.unhexlify(bytes(source_input["txid"], "utf-8"))[::-1] # TxOutHash + s += source_input["vout"].to_bytes(4, byteorder="little") # TxOutIndex + + # since pubkey is not returned from indexd, add it from bitcoind + source_inputs = script.ensure_script_pub_key_for_inputs([source_input]) + source_input = source_inputs[0] + tx_script = binascii.unhexlify(bytes(source_input["script_pub_key"], "utf-8")) + s += var_int(int(len(tx_script))) # Script length + s += tx_script # Script + s += b"\xff" * 4 # Sequence + + # list of inputs + for n, data_chunk in enumerate(data_array): + data_chunk = config.PREFIX + data_chunk # prefix the data_chunk # noqa: PLW2901 + + # get the scripts + script_sig, redeem_script, output_script = make_p2sh_encoding_redeemscript( + data_chunk, n, pubkey, multisig_pubkeys, multisig_pubkeys_required + ) + # substituteScript = script_sig + output_script + + s += txhash # TxOutHash + s += (n).to_bytes(4, byteorder="little") # TxOutIndex (assumes 0-based) + + # s += var_int(len(substituteScript)) # Script length + # s += substituteScript # Script + + s += var_int(len(script_sig)) # + len(output_script)) # Script length + s += script_sig # Script + # s += output_script # Script + + s += b"\xff" * 4 # Sequence + + # number of outputs, always 1 for the opreturn + n = 1 + n += len(destination_outputs) + + # encode output length + s += var_int(n) + + # destination outputs + for destination, value in destination_outputs: + tx_script, witness_script = get_script(destination) + + s += value.to_bytes(8, byteorder="little") # Value + s += var_int(int(len(tx_script))) # Script length + s += tx_script # Script + + # opreturn to signal P2SH encoding + key = arc4.init_arc4(txid) + data_chunk = config.PREFIX + b"P2SH" + data_chunk = key.encrypt(data_chunk) + tx_script = OP_RETURN # OP_RETURN + tx_script += op_push(len(data_chunk)) # Push bytes of data chunk + tx_script += data_chunk # Data + + # add opreturn + s += (0).to_bytes(8, byteorder="little") # Value + s += var_int(int(len(tx_script))) # Script length + s += tx_script # Script + + s += (0).to_bytes(4, byteorder="little") # LockTime + + return s diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/serializer.py b/counterparty-core/counterpartycore/lib/transaction_helper/serializer.py index 459af974f3..4ea97e5c6d 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/serializer.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/serializer.py @@ -9,11 +9,9 @@ import hashlib import logging -import bitcoin as bitcoinlib from bitcoin.bech32 import CBech32Data from counterpartycore.lib import arc4, backend, config, exceptions, script # noqa: F401 -from counterpartycore.lib.transaction_helper import p2sh_encoding logger = logging.getLogger(config.LOGGER_NAME) @@ -340,164 +338,3 @@ def serialise( s += (0).to_bytes(4, byteorder="little") # LockTime return s - - -def serialise_p2sh_pretx( - inputs, - source, - source_value, - data_output, - change_output=None, - pubkey=None, - multisig_pubkeys=None, - multisig_pubkeys_required=None, -): - assert data_output # we don't do this unless there's data - - data_array, data_value = data_output - - s = (1).to_bytes(4, byteorder="little") # Version - - # Number of inputs. - s += var_int(int(len(inputs))) - - # List of Inputs. - for i in range(len(inputs)): - txin = inputs[i] - s += binascii.unhexlify(bytes(txin["txid"], "utf-8"))[::-1] # TxOutHash - s += txin["vout"].to_bytes(4, byteorder="little") # TxOutIndex - - tx_script = binascii.unhexlify(bytes(txin["script_pub_key"], "utf-8")) - s += var_int(int(len(tx_script))) # Script length - s += tx_script # Script - s += b"\xff" * 4 # Sequence - - # Number of outputs. - n = len(data_array) - if change_output: - n += 1 - - # encode number of outputs - s += var_int(n) - - # P2SH for data encodeded inputs - for n, data_chunk in enumerate(data_array): - data_chunk = config.PREFIX + data_chunk # prefix the data_chunk # noqa: PLW2901 - - # get the scripts - script_sig, redeem_script, output_script = p2sh_encoding.make_p2sh_encoding_redeemscript( - data_chunk, n, pubkey, multisig_pubkeys, multisig_pubkeys_required - ) - - # if data_value is an array, then every output fee is specified in it - if type(data_value) == list: # noqa: E721 - s += data_value[n].to_bytes(8, byteorder="little") # Value - else: - s += data_value.to_bytes(8, byteorder="little") # Value - s += var_int(int(len(output_script))) # Script length - s += output_script # Script - - # Change output. - if change_output: - change_address, change_value = change_output - tx_script, witness_script = get_script(change_address) - - s += change_value.to_bytes(8, byteorder="little") # Value - s += var_int(int(len(tx_script))) # Script length - s += tx_script # Script - - s += (0).to_bytes(4, byteorder="little") # LockTime - - return s - - -def serialise_p2sh_datatx( - txid, - source, - source_input, - destination_outputs, - data_output, - pubkey=None, - multisig_pubkeys=None, - multisig_pubkeys_required=None, -): - assert data_output # we don't do this unless there's data - - txhash = bitcoinlib.core.lx(bitcoinlib.core.b2x(txid)) # reverse txId - data_array, value = data_output - - # version - s = (1).to_bytes(4, byteorder="little") - - # number of inputs is the length of data_array (+1 if a source_input exists) - number_of_inputs = len(data_array) - if source_input is not None: - number_of_inputs += 1 - s += var_int(number_of_inputs) - - # Handle a source input here for a P2SH source - if source_input is not None: - s += binascii.unhexlify(bytes(source_input["txid"], "utf-8"))[::-1] # TxOutHash - s += source_input["vout"].to_bytes(4, byteorder="little") # TxOutIndex - - # since pubkey is not returned from indexd, add it from bitcoind - source_inputs = script.ensure_script_pub_key_for_inputs([source_input]) - source_input = source_inputs[0] - tx_script = binascii.unhexlify(bytes(source_input["script_pub_key"], "utf-8")) - s += var_int(int(len(tx_script))) # Script length - s += tx_script # Script - s += b"\xff" * 4 # Sequence - - # list of inputs - for n, data_chunk in enumerate(data_array): - data_chunk = config.PREFIX + data_chunk # prefix the data_chunk # noqa: PLW2901 - - # get the scripts - script_sig, redeem_script, output_script = p2sh_encoding.make_p2sh_encoding_redeemscript( - data_chunk, n, pubkey, multisig_pubkeys, multisig_pubkeys_required - ) - # substituteScript = script_sig + output_script - - s += txhash # TxOutHash - s += (n).to_bytes(4, byteorder="little") # TxOutIndex (assumes 0-based) - - # s += var_int(len(substituteScript)) # Script length - # s += substituteScript # Script - - s += var_int(len(script_sig)) # + len(output_script)) # Script length - s += script_sig # Script - # s += output_script # Script - - s += b"\xff" * 4 # Sequence - - # number of outputs, always 1 for the opreturn - n = 1 - n += len(destination_outputs) - - # encode output length - s += var_int(n) - - # destination outputs - for destination, value in destination_outputs: - tx_script, witness_script = get_script(destination) - - s += value.to_bytes(8, byteorder="little") # Value - s += var_int(int(len(tx_script))) # Script length - s += tx_script # Script - - # opreturn to signal P2SH encoding - key = arc4.init_arc4(txid) - data_chunk = config.PREFIX + b"P2SH" - data_chunk = key.encrypt(data_chunk) - tx_script = OP_RETURN # OP_RETURN - tx_script += op_push(len(data_chunk)) # Push bytes of data chunk - tx_script += data_chunk # Data - - # add opreturn - s += (0).to_bytes(8, byteorder="little") # Value - s += var_int(int(len(tx_script))) # Script length - s += tx_script # Script - - s += (0).to_bytes(4, byteorder="little") # LockTime - - return s diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/utxo_locks.py b/counterparty-core/counterpartycore/lib/transaction_helper/utxo_locks.py new file mode 100644 index 0000000000..832dcd4c26 --- /dev/null +++ b/counterparty-core/counterpartycore/lib/transaction_helper/utxo_locks.py @@ -0,0 +1,158 @@ +import binascii +import hashlib +import threading + +import bitcoin as bitcoinlib +import cachetools + +from counterpartycore.lib import backend, config, util + + +class BaseThreadSafeCache: + def __init__(self, *args, **kwargs): + # Note: reading is thread safe out of the box + self.lock = threading.Lock() + self.__cache = self.create_cache(*args, **kwargs) + + def create_cache(self, *args, **kwargs): + raise NotImplementedError + + def get(self, key, default=None): + return self.__cache.get(key, default) + + def pop(self, key, default=None): + with self.lock: + return self.__cache.pop(key, default) + + def delete(self, key): + with self.lock: + try: + del self.__cache[key] + except KeyError: + pass + + def _get_cache(self): + return self.__cache + + def set(self, key, value): + with self.lock: + try: + self.__cache[key] = value + except KeyError: + pass + + def keys(self): + return self.__cache.keys() + + def __len__(self): + return len(self.__cache) + + def __iter__(self): + return iter(self.__cache) + + def __contains__(self, key): + return key in self.__cache + + +class ThreadSafeTTLCache(BaseThreadSafeCache): + def create_cache(self, *args, **kwargs): + return cachetools.TTLCache(*args, **kwargs) + + +def make_outkey_vin(txhex, vout): + txbin = binascii.unhexlify(txhex) if isinstance(txhex, str) else txhex + assert isinstance(vout, int) + + tx = bitcoinlib.core.CTransaction.deserialize(txbin) + outkey = [(vin.prevout.hash, vin.prevout.n) for vin in tx.vin] + outkey = hashlib.sha256((f"{outkey}{vout}").encode("ascii")).digest() + + return outkey + + +def make_outkey(output): + return f"{output['txid']}{output['vout']}" + + +class UTXOLocks(metaclass=util.SingletonMeta): + # set higher than the max number of UTXOs we should expect to + # manage in an aging cache for any one source address, at any one period + # UTXO_P2SH_ENCODING_LOCKS is TTLCache for UTXOs that are used for chaining p2sh encoding + # instead of a simple (txid, vout) key we use [(vin.prevout.hash, vin.prevout.n) for vin tx1.vin] + # we cache the make_outkey_vin to avoid having to fetch raw txs too often + + def __init__(self, utxo_locks_max_addresses=None): + self.init(utxo_locks_max_addresses) + + def init(self, utxo_locks_max_addresses=None): + # config + self.utxo_p2sh_encoding_locks = ThreadSafeTTLCache(10000, 180) + self.utxo_p2sh_encoding_locks_cache = ThreadSafeTTLCache(1000, 600) + self.utxo_locks_max_age = config.UTXO_LOCKS_MAX_AGE + self.utxo_locks_max_addresses = utxo_locks_max_addresses or config.UTXO_LOCKS_MAX_ADDRESSES + self.utxo_locks_per_address_maxsize = 5000 + + self.utxo_locks = None + if self.utxo_locks_max_addresses > 0: + self.utxo_locks = util.DictCache(self.utxo_locks_max_addresses) + print("UTXOLocks initialized") + print(self.utxo_locks, self.utxo_locks_max_addresses) + + def make_outkey_vin_txid(self, txid, vout): + if (txid, vout) not in self.utxo_p2sh_encoding_locks_cache: + txhex = backend.bitcoind.getrawtransaction(txid, verbose=False) + self.utxo_p2sh_encoding_locks_cache.set((txid, vout), make_outkey_vin(txhex, vout)) + + return self.utxo_p2sh_encoding_locks_cache.get((txid, vout)) + + def filter_unspents(self, source, unspent, exclude_utxos): + filter_unspents_utxo_locks = [] + if self.utxo_locks is not None and source in self.utxo_locks: + filter_unspents_utxo_locks = self.utxo_locks[source].keys() + filter_unspents_p2sh_locks = self.utxo_p2sh_encoding_locks.keys() # filter out any locked UTXOs to prevent creating transactions that spend the same UTXO when they're created at the same time + filtered_unspent = [] + for output in unspent: + if ( + make_outkey(output) not in filter_unspents_utxo_locks + and self.make_outkey_vin_txid(output["txid"], output["vout"]) + not in filter_unspents_p2sh_locks + and ( + not exclude_utxos + or not isinstance(exclude_utxos, str) + or f"{output['txid']}:{output['vout']}" not in exclude_utxos.split(",") + ) + ): + filtered_unspent.append(output) + return filtered_unspent + + def lock_utxos(self, source, inputs): + # Lock the source's inputs (UTXOs) chosen for this transaction + if self.utxo_locks is not None: + if source not in self.utxo_locks: + self.utxo_locks[source] = ThreadSafeTTLCache( + self.utxo_locks_per_address_maxsize, self.utxo_locks_max_age + ) + for input in inputs: + self.utxo_locks[source].set(make_outkey(input), input) + + def lock_p2sh_utxos(self, unsigned_pretx): + self.utxo_p2sh_encoding_locks.set(make_outkey_vin(unsigned_pretx, 0), True) + + def unlock_utxos(self, source, inputs): + if self.utxo_locks is not None and inputs: + for input in inputs: + self.utxo_locks[source].pop(make_outkey(input), None) + + +def sort_unspent_txouts(unspent, dust_size=config.DEFAULT_REGULAR_DUST_SIZE): + # Filter out all dust amounts to avoid bloating the resultant transaction + unspent = list(filter(lambda x: x["value"] > dust_size, unspent)) + # Sort by amount, using the largest UTXOs available + if config.REGTEST: + # REGTEST has a lot of coinbase inputs that can't be spent due to maturity + # this doesn't usually happens on mainnet or testnet because most fednodes aren't mining + unspent = sorted(unspent, key=lambda x: (x["confirmations"], x["value"]), reverse=True) + else: + unspent = sorted(unspent, key=lambda x: x["value"], reverse=True) + + return unspent diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index 3e754d0660..5379a5e007 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -25,7 +25,6 @@ exceptions, follow, log, - transaction, util, ) from counterpartycore.lib.api import api_server as api_v2 @@ -695,10 +694,6 @@ def start_all(args): # Backend. connect_to_backend() - # Reset UTXO_LOCKS. This previously was done in - # initilise_config - transaction.initialise() - # API Status Poller. api_status_poller = api_v1.APIStatusPoller() api_status_poller.daemon = True diff --git a/counterparty-core/counterpartycore/test/arc4_test.py b/counterparty-core/counterpartycore/test/arc4_test.py index ba0d7e09c7..5e7d1e8089 100644 --- a/counterparty-core/counterpartycore/test/arc4_test.py +++ b/counterparty-core/counterpartycore/test/arc4_test.py @@ -124,9 +124,6 @@ def test_transaction_arc4_mocked(server_db): by default init_arc4 should be mocked in the test suite to always use `'00' * 32` as seed. """ - # TODO, use explicit backend mock - transaction.initialise() - v = int(100 * 1e8) tx_info = send.compose(server_db, ADDR[0], ADDR[1], "XCP", v) send1hex = transaction.construct(db=server_db, tx_info=tx_info, regular_dust_size=5430) @@ -144,9 +141,6 @@ def test_transaction_arc4_unmocked(server_db): but with DISABLE_ARC4_MOCKING=True it should be disabled and actually produce different results """ - # TODO, use explicit backend mock - transaction.initialise() - with util_test.ConfigContext(DISABLE_ARC4_MOCKING=True): v = int(100 * 1e8) tx_info = send.compose(server_db, ADDR[0], ADDR[1], "XCP", v) diff --git a/counterparty-core/counterpartycore/test/bytespersigop_test.py b/counterparty-core/counterpartycore/test/bytespersigop_test.py index 70fe8a794b..57b0976254 100644 --- a/counterparty-core/counterpartycore/test/bytespersigop_test.py +++ b/counterparty-core/counterpartycore/test/bytespersigop_test.py @@ -22,8 +22,6 @@ def test_bytespersigop(server_db): with util_test.MockProtocolChangesContext(short_tx_type_id=False): assert util.enabled("bytespersigop") == False # noqa: E712 - transaction.initialise() - # ADDR[0], bytespersigop=False, desc 41 bytes, opreturn txhex, _data = transaction.compose_transaction( server_db, diff --git a/counterparty-core/counterpartycore/test/estimate_fee_per_kb_test.py b/counterparty-core/counterpartycore/test/estimate_fee_per_kb_test.py index 5ba81381ff..943049d7f7 100644 --- a/counterparty-core/counterpartycore/test/estimate_fee_per_kb_test.py +++ b/counterparty-core/counterpartycore/test/estimate_fee_per_kb_test.py @@ -40,8 +40,6 @@ def _fee_per_kb(conf_target, mode): ) with util_test.ConfigContext(ESTIMATE_FEE_PER_KB=True): - transaction.initialise() - txhex, _data = transaction.compose_transaction( server_db, "send", diff --git a/counterparty-core/counterpartycore/test/p2sh_encoding_test.py b/counterparty-core/counterpartycore/test/p2sh_encoding_test.py index 4df2d021fb..f7d28a2d87 100644 --- a/counterparty-core/counterpartycore/test/p2sh_encoding_test.py +++ b/counterparty-core/counterpartycore/test/p2sh_encoding_test.py @@ -76,7 +76,6 @@ def test_p2sh_encoding(server_db): for utxo in backend.addrindexrs.get_unspent_txouts(source) ) - transaction.initialise() fee = 20000 fee_per_kb = 50000 result, _data = transaction.compose_transaction( diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index c93c380552..c9c67e8e35 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": 193, - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", - "block_time": 1726950429, - "previous_block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_time": 1727000592, + "previous_block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", "difficulty": 545259519, - "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", - "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", - "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", + "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", + "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", + "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", - "block_time": 1726950425, - "previous_block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", + "block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", + "block_time": 1727000588, + "previous_block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", "difficulty": 545259519, - "ledger_hash": "dae4aa18c818cf73356ae2538c5a128aab9652e31d3624deab317f635f240de3", - "txlist_hash": "2c6782906fccd6b50403d5f0cde890b85661d684650a67eeea3fbb61d893ea5a", - "messages_hash": "768e34bdb9fdd5c9805b7cc009eb4dc2d616c0eb60b0e69406f3d7a296973085", + "ledger_hash": "15632ba5d9e0895c4d08741144412482f4139debf47f441ab56fb1e57ed8138f", + "txlist_hash": "368c248e7398223aa41a3340c90cdf4dbb04242b72ff24d17c2f0ca3dc12f278", + "messages_hash": "32203dd37a810d45ca8e0e7b7e881a80c4fc0936de0773934100b9e004dec5db", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", - "block_time": 1726950421, - "previous_block_hash": "27e860cc72fbd13d937f5d53894473cdec16612f8b3a5c708a5cf6676b57a478", + "block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", + "block_time": 1727000584, + "previous_block_hash": "52ce8354391192adc1549d6a4e70e552a9bf49e64fbe115795e8c12b930962da", "difficulty": 545259519, - "ledger_hash": "d03e39607e9fd68726675c128d69cfaa1cd44a77ab03dd23287e4de22ce338e3", - "txlist_hash": "a2d3060eb32f38f0ef6849fcc09c56112eceec36516dbc142534648915a0e59b", - "messages_hash": "808eb90f60258406e139d977da28defeaa59b9f188b7a234cd729feba830dd25", + "ledger_hash": "d18e2ab61c10e86d0af7732ffdd5820eb389929a4e407abb1c365a617f8d6b0b", + "txlist_hash": "561be60c6188aaf9b9739b32dd8412cc70dc3617c76e8d632b362b43dee08430", + "messages_hash": "2e4972f8597cc95a484278f9dfa38024b000032151b59686982a1fb01db3ba93", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "27e860cc72fbd13d937f5d53894473cdec16612f8b3a5c708a5cf6676b57a478", - "block_time": 1726950417, - "previous_block_hash": "5aa33299fee53ddd0fb4f86ddb1dbd45d1fdaa8332537a4fdb69892979db6de0", + "block_hash": "52ce8354391192adc1549d6a4e70e552a9bf49e64fbe115795e8c12b930962da", + "block_time": 1727000580, + "previous_block_hash": "54d2df0dc01af39d0d576efb398561deadcc34ad173c7198659cdf1d74b2a381", "difficulty": 545259519, - "ledger_hash": "a4bcdd2aeceb344ca201fadf8783f0124ec2261604874ec80cd2b43000af0774", - "txlist_hash": "a5d93acd26bd4f1fb7d65fd0ec9106b4b157a717b293ecb06ae1d59fa5991917", - "messages_hash": "22fa8a357331aa52a6479b19d56d72967c2dc8b06421543347709ce788c43fa9", + "ledger_hash": "2706a8e0018214c252b27e5fca2d560ee6600592b07c64cbea3f2cce4257a7b5", + "txlist_hash": "d69dfbce2e19c5f8c5d37a160dc91344356c819ce0769d700284e5eeeecf451c", + "messages_hash": "57cfc46c395bb777cdbec3f62168108639ab667937ee3c36d8b89b914e9e0c73", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "5aa33299fee53ddd0fb4f86ddb1dbd45d1fdaa8332537a4fdb69892979db6de0", - "block_time": 1726950402, - "previous_block_hash": "0d5917e665af2adf0e67fa25a3703c9fec72d0d4fead388ec0fd867bb676dd3a", + "block_hash": "54d2df0dc01af39d0d576efb398561deadcc34ad173c7198659cdf1d74b2a381", + "block_time": 1727000575, + "previous_block_hash": "3af24eb207ec7c93df870ce901057933a0a9e906e1569a624ebe4cd15e5e7a5e", "difficulty": 545259519, - "ledger_hash": "9ffe2f005d1d4cba5d039c3c09312f34813be6ce60cec8137b5f3351b2b2f0fc", - "txlist_hash": "534af2b951fb094ca3cbdc5db77d750a7b0ac403cc3cceced1c6993f27896e1c", - "messages_hash": "1ea76d522ee2dc6e8dccdef6d972f84ed3253a08faabd3b8f87f50eedbb8124c", + "ledger_hash": "6de3e17e9fa33f63205fb4aaf5fa1490d686da1a69893e7108947f04a2d24e6d", + "txlist_hash": "a7ce6c6d7eb0535f61853f5a8a642cbaad7c2abfe166ebcc7428169db11547d1", + "messages_hash": "0c694347e9858f45693f03f2e6479294d56ed4a23edb110d3c5c82065de30190", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", - "block_time": 1726950429, - "previous_block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_time": 1727000592, + "previous_block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", "difficulty": 545259519, - "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", - "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", - "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", + "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", + "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", + "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", - "block_time": 1726950429, - "previous_block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_time": 1727000592, + "previous_block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", "difficulty": 545259519, - "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", - "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", - "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", + "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", + "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", + "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", - "block_time": 1726950429, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_time": 1727000592, + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", + "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -139,11 +139,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "dae4aa18c818cf73356ae2538c5a128aab9652e31d3624deab317f635f240de3", - "messages_hash": "768e34bdb9fdd5c9805b7cc009eb4dc2d616c0eb60b0e69406f3d7a296973085", + "ledger_hash": "15632ba5d9e0895c4d08741144412482f4139debf47f441ab56fb1e57ed8138f", + "messages_hash": "32203dd37a810d45ca8e0e7b7e881a80c4fc0936de0773934100b9e004dec5db", "transaction_count": 1, - "txlist_hash": "2c6782906fccd6b50403d5f0cde890b85661d684650a67eeea3fbb61d893ea5a", - "block_time": 1726950425 + "txlist_hash": "368c248e7398223aa41a3340c90cdf4dbb04242b72ff24d17c2f0ca3dc12f278", + "block_time": 1727000588 }, "tx_hash": null }, @@ -152,43 +152,43 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58 }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "status": "valid", - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, - "block_time": 1726950425, + "block_time": 1727000588, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -198,22 +198,22 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "XCP", "block_index": 192, - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -223,7 +223,7 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" } ], "next_cursor": 524, @@ -261,16 +261,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -280,57 +280,57 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" } ], "next_cursor": null, @@ -340,16 +340,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -361,20 +361,20 @@ }, { "block_index": 192, - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -382,20 +382,20 @@ }, { "block_index": 192, - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -409,16 +409,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "event": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -436,24 +436,24 @@ "result": [ { "type": "order", - "object_id": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "object_id": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", "block_index": 182, "confirmed": true, - "block_time": 1726950308 + "block_time": 1727000481 }, { "type": "order", - "object_id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", + "object_id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", "block_index": 182, "confirmed": true, - "block_time": 1726950308 + "block_time": 1727000481 }, { "type": "order_match", - "object_id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "object_id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", "block_index": 182, "confirmed": true, - "block_time": 1726950308 + "block_time": 1727000481 } ], "next_cursor": null, @@ -463,13 +463,13 @@ "result": [ { "tx_index": 56, - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "block_index": 190, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "status": "valid", "confirmed": true, - "block_time": 1726950417 + "block_time": 1727000580 } ], "next_cursor": null, @@ -479,15 +479,15 @@ "result": [ { "tx_index": 59, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -505,14 +505,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", + "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -527,7 +527,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950282, + "block_time": 1727000465, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -539,10 +539,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "quantity": 10, "status": "valid", @@ -550,7 +550,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "divisible": true, "asset_longname": null, @@ -563,10 +563,10 @@ }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -574,11 +574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -587,10 +587,10 @@ }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -598,11 +598,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -618,27 +618,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", - "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "last_status_tx_hash": null, - "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -653,7 +653,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726950217, + "block_time": 1727000400, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,16 +672,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "fee_paid_normalized": "0.00600000" } ], @@ -692,17 +692,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", - "block_time": 1726950429, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_time": 1727000592, + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", + "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -725,23 +725,23 @@ }, { "tx_index": 58, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e", - "block_time": 1726950425, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", + "block_time": 1727000588, + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480bebd760d2e19686fe41856142fc45e3c18bea249017377656570206d7920617373657473", + "data": "0480ed681fe4daf7ab2ee1a33b873588429301d5bfa8017377656570206d7920617373657473", "supported": true, - "utxos_info": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199:1", + "utxos_info": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "flags": 1, "memo": "sweep my assets" } @@ -754,73 +754,89 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "btc_amount": 2000, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": null, + "btc_amount": 0, "fee": 10000, - "data": "0be78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc01b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "ec6758f524983df9733199a822e59562e2b2c7724698b0b89af6bbb2adec441b", - "n": 1, + "hash": "11ac2ad1f93225daf96588a3c4ea558f3b205618869a051ea2f7090092303eb7", + "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false } ], "vout": [ - { - "value": 2000, - "script_pub_key": "001478a3909dd27183d907e4449a5efb8a6eec443bd2" - }, { "value": 0, - "script_pub_key": "6a4948be01b94d96fa6e0283eb7a46b8a57e6ca98673686900ace3453afba3f66252000ace06f908711b530849f60869623afd9af5d9f3ea91ef23c96ffe8df66edcd8636446b4d2b5054e" + "script_pub_key": "6a335c5dd9bc91a5d86995d0ab15d4be2254fe0c71497e66d8111872c92be92f0646c178ae969acb8c2caeab2baf3af316f3fb7a88" }, { - "value": 4949868000, - "script_pub_key": "0014a2f39be999227f439233f92bfc92175307049033" + "value": 4999990000, + "script_pub_key": "0014568120e3f25be7dad0716f132cbcc0eecfac8dde" } ], "vtxinwit": [ - "304402202068b84b1108d9c49124e85d47ecf26fcafb3fe6a2103e7479e144d4ee8124cc0220525fce23d44876ff7ae1b9aee3d1e94c57c4954013e39f067686aa20860c896e01", - "028099986bc838533585add0380a756004aaf6506170b596a7a1527ab22460410d" + "304402207d1a215d92b6d36dd09d1545cfeee45ca1f74a9e937eff5027bad4c75bf8f2a402203a1203e1321ccd62633fcfc3a03d2ce39268c0b026be5a4b3f2aae21124bec8401", + "03dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d962" ], "lock_time": 0, - "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", - "tx_id": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5" + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_id": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7" }, "unpacked_data": { - "message_type": "btcpay", - "message_type_id": 11, + "message_type": "order", + "message_type_id": 10, "message_data": { - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", - "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", - "status": "valid" + "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.00002000" + "btc_amount_normalized": "0.00000000" } }, "/v2/transactions//info": { "result": { - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710802d892d9d215a3e35d0fffb2b3e7cabdb14d24549", + "data": "0200000000000000010000000000002710802fe54076791a6e2ac138ef00abb24f8185f125ab", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "c99952b1d114237bca14d9da69ea03b9e0c563872a7af942d5a80cf541614d83", + "hash": "b2ffbb72adddd8bae637e76ca3d20367a9e2b545df04b069cd783a5cb159f004", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -830,20 +846,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e6ab7aa5f53bd31977be7b313e0e0b0e22d0d99a4072ca15d63f8eedab121a23418d06d2844458bcca078cce2c353" + "script_pub_key": "6a2ed63dda20b4474132e359445d9983dfd995134ac2e957b57425e6eaf3de5610caa4b43888d3dfed18e5a58a33bf95" }, { "value": 4999955000, - "script_pub_key": "0014bebd760d2e19686fe41856142fc45e3c18bea249" + "script_pub_key": "0014ed681fe4daf7ab2ee1a33b873588429301d5bfa8" } ], "vtxinwit": [ - "3044022043caca504be770b0de99047ffe5e5d1ad869ee2402d30a6281137090df2cda9c0220089c65fa1ec2e1dabc64b0b62b8752a36b78eb7c1c6ae8d94d04e9ee0ecad6e901", - "022098f1d02b56e77ca857c5355d804950681dd648a95db1667bedd171bfe91e70" + "3044022007e03b96e278106bcfa7ff303efdd262596dc409053563efec02b712a660f75002206e026091bd4f2b0f0dbed833bf30961543506f5026ea4800da1f8405edc3d75f01", + "02cd3154911e5d3f0dd8141a848af0f2f71983615dc048911e9fa68b8cf85964a6" ], "lock_time": 0, - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", - "tx_id": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94" + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_id": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21" }, "unpacked_data": { "message_type": "enhanced_send", @@ -851,7 +867,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "memo": null, "asset_info": { "divisible": true, @@ -878,17 +894,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", - "block_time": 1726950429, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_time": 1727000592, + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", + "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -913,17 +929,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", - "block_time": 1726950429, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_time": 1727000592, + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", + "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -952,47 +968,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58 }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "status": "valid", - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, - "block_time": 1726950425, + "block_time": 1727000588, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -1002,24 +1018,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "XCP", "block_index": 192, - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -1029,36 +1045,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 } ], "next_cursor": 523, @@ -1071,47 +1087,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58 }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "status": "valid", - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, - "block_time": 1726950425, + "block_time": 1727000588, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -1121,24 +1137,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "XCP", "block_index": 192, - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -1148,36 +1164,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 } ], "next_cursor": 523, @@ -1187,10 +1203,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "quantity": 10, "status": "valid", @@ -1198,7 +1214,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "divisible": true, "asset_longname": null, @@ -1211,10 +1227,10 @@ }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1222,11 +1238,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -1235,10 +1251,10 @@ }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1246,11 +1262,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -1266,27 +1282,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", - "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "last_status_tx_hash": null, - "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -1301,7 +1317,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726950217, + "block_time": 1727000400, "asset_info": { "divisible": true, "asset_longname": null, @@ -1322,16 +1338,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -1341,63 +1357,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 } ], "next_cursor": null, @@ -1409,16 +1425,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -1428,63 +1444,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 } ], "next_cursor": null, @@ -1497,7 +1513,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1507,7 +1523,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -1518,7 +1534,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1528,7 +1544,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -1539,7 +1555,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1549,7 +1565,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -1560,7 +1576,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1570,7 +1586,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -1581,7 +1597,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1591,7 +1607,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -1605,17 +1621,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", - "block_time": 1726950421, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", + "block_time": 1727000584, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055:1", + "utxos_info": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1651,23 +1667,23 @@ }, { "tx_index": 56, - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "block_index": 190, - "block_hash": "27e860cc72fbd13d937f5d53894473cdec16612f8b3a5c708a5cf6676b57a478", - "block_time": 1726950417, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "52ce8354391192adc1549d6a4e70e552a9bf49e64fbe115795e8c12b930962da", + "block_time": 1727000580, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "data": "46228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "supported": true, - "utxos_info": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd:1", + "utxos_info": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "status": "valid" } }, @@ -1675,17 +1691,17 @@ }, { "tx_index": 55, - "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "block_index": 189, - "block_hash": "5aa33299fee53ddd0fb4f86ddb1dbd45d1fdaa8332537a4fdb69892979db6de0", - "block_time": 1726950402, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "54d2df0dc01af39d0d576efb398561deadcc34ad173c7198659cdf1d74b2a381", + "block_time": 1727000575, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26:1", + "utxos_info": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1721,17 +1737,17 @@ }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "block_hash": "0d5917e665af2adf0e67fa25a3703c9fec72d0d4fead388ec0fd867bb676dd3a", - "block_time": 1726950398, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "3af24eb207ec7c93df870ce901057933a0a9e906e1569a624ebe4cd15e5e7a5e", + "block_time": 1727000571, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a2f39be999227f439233f92bfc92175307049033802d892d9d215a3e35d0fffb2b3e7cabdb14d2454980bebd760d2e19686fe41856142fc45e3c18bea249400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380f6e40206dee5dd33c2a2804e47120677f27d08d2802fe54076791a6e2ac138ef00abb24f8185f125ab80ed681fe4daf7ab2ee1a33b873588429301d5bfa8400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4:0", + "utxos_info": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1739,14 +1755,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -1754,7 +1770,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1773,25 +1789,25 @@ }, { "tx_index": 51, - "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", + "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", "block_index": 185, - "block_hash": "22a6951b71290ec238ef452a688ef8e9c800dd277ca4be3253aed7072d440d06", - "block_time": 1726950385, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "6a70586a2d19f9575864a5b42d32a9e9d19c76574dc8d6dfbc76172ca89682c2", + "block_time": 1727000558, + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "btc_amount": 2000, "fee": 10000, - "data": "0be78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc01b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "data": "0b14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "supported": true, - "utxos_info": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5:0", + "utxos_info": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", - "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "status": "valid" } }, @@ -1820,11 +1836,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "status": "open", - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "tx_index": 57, - "block_time": 1726950421, + "block_time": 1727000584, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1848,24 +1864,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "block_time": 1726950421 + "block_time": 1727000584 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "block_index": 191, - "event": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "event": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1726950421, + "block_time": 1727000584, "asset_info": { "divisible": true, "asset_longname": null, @@ -1875,25 +1891,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "block_time": 1726950421 + "block_time": 1727000584 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", + "block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", "block_index": 191, - "block_time": 1726950421, + "block_time": 1727000584, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "tx_index": 57, - "utxos_info": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055:1", + "utxos_info": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1925,40 +1941,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "block_time": 1726950421 + "block_time": 1727000584 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "status": "valid", - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "tx_index": 56, - "block_time": 1726950417 + "block_time": 1727000580 }, - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "block_index": 190, - "block_time": 1726950417 + "block_time": 1727000580 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726950417, + "block_time": 1727000580, "asset_info": { "divisible": true, "asset_longname": null, @@ -1968,9 +1984,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "block_index": 190, - "block_time": 1726950417 + "block_time": 1727000580 } ], "next_cursor": 506, @@ -1979,17 +1995,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "memo": null, "quantity": 10000, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "status": "valid", - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "tx_index": 60, "asset_info": { "divisible": true, @@ -2002,19 +2018,19 @@ } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "CREDIT", "params": { - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,19 +2042,19 @@ } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 193, - "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -2050,27 +2066,27 @@ } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726950434.0695176, + "block_time": 1727000606.3219044, "btc_amount": 0, - "data": "0200000000000000010000000000002710802d892d9d215a3e35d0fffb2b3e7cabdb14d24549", + "data": "0200000000000000010000000000002710802fe54076791a6e2ac138ef00abb24f8185f125ab", "destination": "", "fee": 10000, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "tx_index": 60, - "utxos_info": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94:1", + "utxos_info": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "memo": null, "asset_info": { "divisible": true, @@ -2092,7 +2108,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2100,14 +2116,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2115,14 +2131,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2137,7 +2153,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2145,7 +2161,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2157,7 +2173,7 @@ }, "/v2/addresses/
/balances/": { "result": { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2176,16 +2192,16 @@ "result": [ { "block_index": 190, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950417, + "block_time": 1727000580, "asset_info": { "divisible": true, "asset_longname": null, @@ -2197,16 +2213,16 @@ }, { "block_index": 182, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", + "event": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950308, + "block_time": 1727000481, "asset_info": { "divisible": true, "asset_longname": null, @@ -2218,20 +2234,20 @@ }, { "block_index": 159, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", + "event": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950282, + "block_time": 1727000465, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2239,20 +2255,20 @@ }, { "block_index": 156, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "9157f7bfaf353b8d1bfda36bbcaf83e7a1ae668161834e9f1b166f1e47b0f4c0", + "event": "694859d37608f9befa94495339565cd43e8955250c937c614bdc234e9fd9f4c6", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950270, + "block_time": 1727000443, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2264,16 +2280,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", + "event": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", "tx_index": 38, - "utxo": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae:1", - "utxo_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "utxo": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86:1", + "utxo_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "confirmed": true, - "block_time": 1726950248, + "block_time": 1727000422, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2287,16 +2303,16 @@ "result": [ { "block_index": 191, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "event": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950421, + "block_time": 1727000584, "asset_info": { "divisible": true, "asset_longname": null, @@ -2308,16 +2324,16 @@ }, { "block_index": 189, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950402, + "block_time": 1727000575, "asset_info": { "divisible": true, "asset_longname": null, @@ -2329,16 +2345,16 @@ }, { "block_index": 188, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "event": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "divisible": true, "asset_longname": null, @@ -2350,20 +2366,20 @@ }, { "block_index": 188, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "event": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2371,16 +2387,16 @@ }, { "block_index": 183, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "event": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950377, + "block_time": 1727000550, "asset_info": { "divisible": true, "asset_longname": null, @@ -2403,9 +2419,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "ba4be2ba08322daea13f5b8b4710717e27f736da291c8238d4310b7a967668cf", + "tx_hash": "175b0e837d4aa88d671cfc863c546cf1e410283c6bcfca4f22737640612a0343", "block_index": 137, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2413,7 +2429,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726950181, + "block_time": 1727000362, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2424,14 +2440,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "0657f75b12ca7313124e55cfc3cebac21f770a096caa4ec7a60900a01602aea3", + "tx_hash": "5c1b3ec29a6da9391c34eb7e11afb83a79138d107025b4fb81a500f5e1aa466f", "block_index": 112, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1726950075, + "block_time": 1727000247, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2443,10 +2459,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2454,7 +2470,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "divisible": true, "asset_longname": null, @@ -2467,10 +2483,10 @@ }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2478,11 +2494,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2491,10 +2507,10 @@ }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2502,11 +2518,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2515,10 +2531,10 @@ }, { "tx_index": 38, - "tx_hash": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", + "tx_hash": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", "block_index": 151, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae:1", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2526,11 +2542,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950248, + "block_time": 1727000422, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2539,10 +2555,10 @@ }, { "tx_index": 35, - "tx_hash": "351ae12754d2a615f37c96873f3e178d77d842607e0522e954ee066b969514be", + "tx_hash": "1aced42e6e980cc930626ed1334e8dbeaf5df4c375d5aa62212aedf53ba3aa51", "block_index": 148, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "005e41992c61245f5c6c82a7140ca55b6813d522dfdd67fd5bb22b1b144ee77d:1", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "46166b488d62f2085d8dbc2af1837c3e9d204d91bf46bf31436e5e207c85d326:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2550,11 +2566,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950236, + "block_time": 1727000409, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2569,10 +2585,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "c687f93269aa03f150204db384563efed1dfa9dd7319d77a879e3a346e36471c", + "tx_hash": "804df83cded11a27f2118503527164d631474a075cd88df3e7f0d09a972d3cf6", "block_index": 150, - "source": "facd73ce7e552dab11a369e33253c91a09a63e697ed4542f29c5e0a118eb3a01:0", - "destination": "bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj", + "source": "9b353d1cbb0a30108e4f9cc683852d659f4f611c141bab3af77efc10ab93dc4a:0", + "destination": "bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2580,11 +2596,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950243, + "block_time": 1727000417, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2599,10 +2615,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2610,11 +2626,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2623,10 +2639,10 @@ }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2634,11 +2650,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2647,10 +2663,10 @@ }, { "tx_index": 38, - "tx_hash": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", + "tx_hash": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", "block_index": 151, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae:1", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2658,11 +2674,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950248, + "block_time": 1727000422, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2671,10 +2687,10 @@ }, { "tx_index": 35, - "tx_hash": "351ae12754d2a615f37c96873f3e178d77d842607e0522e954ee066b969514be", + "tx_hash": "1aced42e6e980cc930626ed1334e8dbeaf5df4c375d5aa62212aedf53ba3aa51", "block_index": 148, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "005e41992c61245f5c6c82a7140ca55b6813d522dfdd67fd5bb22b1b144ee77d:1", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "46166b488d62f2085d8dbc2af1837c3e9d204d91bf46bf31436e5e207c85d326:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2682,11 +2698,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950236, + "block_time": 1727000409, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2701,10 +2717,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "c687f93269aa03f150204db384563efed1dfa9dd7319d77a879e3a346e36471c", + "tx_hash": "804df83cded11a27f2118503527164d631474a075cd88df3e7f0d09a972d3cf6", "block_index": 150, - "source": "facd73ce7e552dab11a369e33253c91a09a63e697ed4542f29c5e0a118eb3a01:0", - "destination": "bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj", + "source": "9b353d1cbb0a30108e4f9cc683852d659f4f611c141bab3af77efc10ab93dc4a:0", + "destination": "bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2712,11 +2728,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950243, + "block_time": 1727000417, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -2731,9 +2747,9 @@ "result": [ { "tx_index": 30, - "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", + "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", "block_index": 144, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2742,7 +2758,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2752,7 +2768,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950210, + "block_time": 1727000392, "asset_info": { "divisible": true, "asset_longname": null, @@ -2768,9 +2784,9 @@ }, { "tx_index": 26, - "tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2779,7 +2795,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2789,7 +2805,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -2810,9 +2826,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 30, - "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", + "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", "block_index": 144, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2821,7 +2837,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2831,7 +2847,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950210, + "block_time": 1727000392, "asset_info": { "divisible": true, "asset_longname": null, @@ -2851,19 +2867,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", + "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2871,7 +2887,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2886,7 +2902,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -2900,19 +2916,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", + "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", "block_index": 140, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2920,7 +2936,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2935,7 +2951,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950194, + "block_time": 1727000375, "asset_info": { "divisible": true, "asset_longname": null, @@ -2955,19 +2971,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", + "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2975,7 +2991,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2990,7 +3006,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -3004,19 +3020,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", + "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", "block_index": 140, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3024,7 +3040,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3039,7 +3055,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950194, + "block_time": 1727000375, "asset_info": { "divisible": true, "asset_longname": null, @@ -3059,19 +3075,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", + "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3079,7 +3095,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3094,7 +3110,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -3108,19 +3124,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", + "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", "block_index": 140, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3128,7 +3144,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3143,7 +3159,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950194, + "block_time": 1727000375, "asset_info": { "divisible": true, "asset_longname": null, @@ -3163,19 +3179,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", + "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3183,7 +3199,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3198,7 +3214,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -3212,19 +3228,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", + "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", "block_index": 140, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3232,7 +3248,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3247,7 +3263,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950194, + "block_time": 1727000375, "asset_info": { "divisible": true, "asset_longname": null, @@ -3266,16 +3282,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "fee_paid_normalized": "0.00600000" } ], @@ -3286,14 +3302,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", + "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -3308,20 +3324,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950282, + "block_time": 1727000465, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "9a15129044c626aa6de4262f26195a677a41cc8a4b82c649cb7a381658023bdd", + "tx_hash": "69356c4a943c1bc4c96cf7e1fd1df717562742ba6d014e5404949c9fb8488072", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -3336,20 +3352,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726950277, + "block_time": 1727000461, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "3de27df9207dede883d535efe529dd8fc3974cb18d1a62d257e6bcb91aa08a74", + "tx_hash": "de64c6d5cdcb12d054140d780d7c6780ed87490c27d80ff372e2384e3e898730", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -3364,20 +3380,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950274, + "block_time": 1727000447, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "9157f7bfaf353b8d1bfda36bbcaf83e7a1ae668161834e9f1b166f1e47b0f4c0", + "tx_hash": "694859d37608f9befa94495339565cd43e8955250c937c614bdc234e9fd9f4c6", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -3392,20 +3408,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950270, + "block_time": 1727000443, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "da1ecc1d6cf234a109110be3902414ad2324678c0e9ccfde053c2f792d0f6a5e", + "tx_hash": "910c965acd73fa6a2f08def331a054436285d5cbc447958cb86a2b66d91f25cc", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -3420,7 +3436,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950222, + "block_time": 1727000405, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -3434,8 +3450,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 10000000000, @@ -3443,16 +3459,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726950270, - "last_issuance_block_time": 1726950277, + "first_issuance_block_time": 1727000443, + "last_issuance_block_time": 1727000461, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 100000000000, @@ -3460,16 +3476,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726950222, - "last_issuance_block_time": 1726950222, + "first_issuance_block_time": 1727000405, + "last_issuance_block_time": 1727000405, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 40, @@ -3477,16 +3493,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726950172, - "last_issuance_block_time": 1726950177, + "first_issuance_block_time": 1727000354, + "last_issuance_block_time": 1727000358, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 19, @@ -3494,16 +3510,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726950155, - "last_issuance_block_time": 1726950168, + "first_issuance_block_time": 1727000326, + "last_issuance_block_time": 1727000349, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 0, @@ -3511,8 +3527,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1726950134, - "last_issuance_block_time": 1726950151, + "first_issuance_block_time": 1727000305, + "last_issuance_block_time": 1727000322, "supply_normalized": "0.00000000" } ], @@ -3523,17 +3539,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "block_hash": "21be7e7db81fd99163595b3c26a0e1b7d8b50ae837cd339fc3602693702ebc38", - "block_time": 1726950421, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", + "block_time": 1727000584, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055:1", + "utxos_info": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3569,23 +3585,23 @@ }, { "tx_index": 56, - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "block_index": 190, - "block_hash": "27e860cc72fbd13d937f5d53894473cdec16612f8b3a5c708a5cf6676b57a478", - "block_time": 1726950417, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "52ce8354391192adc1549d6a4e70e552a9bf49e64fbe115795e8c12b930962da", + "block_time": 1727000580, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "data": "46228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "supported": true, - "utxos_info": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd:1", + "utxos_info": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "status": "valid" } }, @@ -3593,17 +3609,17 @@ }, { "tx_index": 55, - "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "block_index": 189, - "block_hash": "5aa33299fee53ddd0fb4f86ddb1dbd45d1fdaa8332537a4fdb69892979db6de0", - "block_time": 1726950402, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "54d2df0dc01af39d0d576efb398561deadcc34ad173c7198659cdf1d74b2a381", + "block_time": 1727000575, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26:1", + "utxos_info": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3639,17 +3655,17 @@ }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "block_hash": "0d5917e665af2adf0e67fa25a3703c9fec72d0d4fead388ec0fd867bb676dd3a", - "block_time": 1726950398, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "3af24eb207ec7c93df870ce901057933a0a9e906e1569a624ebe4cd15e5e7a5e", + "block_time": 1727000571, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a2f39be999227f439233f92bfc92175307049033802d892d9d215a3e35d0fffb2b3e7cabdb14d2454980bebd760d2e19686fe41856142fc45e3c18bea249400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380f6e40206dee5dd33c2a2804e47120677f27d08d2802fe54076791a6e2ac138ef00abb24f8185f125ab80ed681fe4daf7ab2ee1a33b873588429301d5bfa8400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4:0", + "utxos_info": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3657,14 +3673,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -3672,7 +3688,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3691,17 +3707,17 @@ }, { "tx_index": 49, - "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", "block_index": 183, - "block_hash": "4e7a73ffc2fbf5c77ed880774d1e307872db577f80ffb792138702af83acc4db", - "block_time": 1726950377, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "block_hash": "5857b2e31e441dc9251e82211ad84eac5b7171b7d2ed35896316ba3e62d58f47", + "block_time": 1727000550, + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0:1", + "utxos_info": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3743,20 +3759,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", + "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", "block_index": 153, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726950256, + "block_time": 1727000430, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -3778,9 +3794,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3795,7 +3811,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726950421, + "block_time": 1727000584, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3821,9 +3837,9 @@ }, { "tx_index": 55, - "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "block_index": 190, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3838,7 +3854,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726950417, + "block_time": 1727000580, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3864,9 +3880,9 @@ }, { "tx_index": 49, - "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", "block_index": 186, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3881,7 +3897,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726950389, + "block_time": 1727000563, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3907,9 +3923,9 @@ }, { "tx_index": 47, - "tx_hash": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", + "tx_hash": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", "block_index": 182, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3924,7 +3940,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1726950308, + "block_time": 1727000481, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3955,10 +3971,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", + "tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -3983,13 +3999,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726950172 + "block_time": 1727000354 }, { - "tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", + "tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4014,13 +4030,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726950155 + "block_time": 1727000326 }, { - "tx_hash": "e69f3ddbfd1ba8c631b757819d7664ca2bc7041fcd5a75be8e2711eea2cac9f8", + "tx_hash": "7db72c3a3d73085625f2f30f21a6937c09222727d2b9942e21aec693b24bf08e", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4045,13 +4061,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726950151 + "block_time": 1727000322 }, { - "tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4076,7 +4092,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726950130 + "block_time": 1727000301 } ], "next_cursor": null, @@ -4085,127 +4101,127 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "34bec257ccf1f8c374493fc15f7cbb1af6846494d3b097680b0826b82f088d9d", + "tx_hash": "8a9a1f916ad7518fbbdca58817a4ac2b58533c0a9768c4f1ca05778acb75e7d1", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "fairminter_tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "fairminter_tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950177, + "block_time": 1727000358, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } }, { - "tx_hash": "db57e70f00a61a0047c98b0ec58ea73359d9350575524094dd8e5bd2912a6bff", + "tx_hash": "f126053dd92ca48dc40a2ff68b8ae8af7cde23b1ab6d6137fe4c6203f590b859", "tx_index": 21, "block_index": 134, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "fairminter_tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "fairminter_tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950168, + "block_time": 1727000349, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } }, { - "tx_hash": "5d803fb3c505bfe22205e2970b56904799390c0defd2234b82e6e0d73731f2b3", + "tx_hash": "b2fadab50e518edbcd06b1c28c0130d8329d273cb39960943f6c905ec4484601", "tx_index": 20, "block_index": 133, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "fairminter_tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "fairminter_tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950164, + "block_time": 1727000345, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } }, { - "tx_hash": "cba0ccae5a7223e0217e916991da9cdb306a21211aba783c1a617f3f678cf2fc", + "tx_hash": "8a0a58a76c9c0795cdf955cd1fdb2ba6489b5a5424e83e6759209f7fc8da7833", "tx_index": 19, "block_index": 132, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "fairminter_tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "fairminter_tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950160, + "block_time": 1727000331, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } }, { - "tx_hash": "b05cca3bc275486fc1ad03760458825512e861deba57984710051915d4975e5a", + "tx_hash": "6d76d3221c43cad887faa8f88631318e23856a5aef2799363fc245a8771dfcf4", "tx_index": 15, "block_index": 127, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "fairminter_tx_hash": "e69f3ddbfd1ba8c631b757819d7664ca2bc7041fcd5a75be8e2711eea2cac9f8", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "fairminter_tx_hash": "7db72c3a3d73085625f2f30f21a6937c09222727d2b9942e21aec693b24bf08e", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950138, + "block_time": 1727000310, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } }, { - "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", + "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950121, + "block_time": 1727000293, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } @@ -4217,22 +4233,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", + "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950121, + "block_time": 1727000293, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } @@ -4246,9 +4262,9 @@ }, "/v2/addresses/
/compose/broadcast": { "result": { - "rawtransaction": "02000000000101baa101cbc940a198c493a89141be8f75d0048e0d7a5dc37087907fe9bf8be6620000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff0200000000000000002b6a29411d762b9dc4b64ca7864736f8a3ac4e85bb5eeb17df4a8b3bf104383cee8fd76b601ab179212384033bb1052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "0200000000010115c401b8d98226b74217cefb5032c25436b1b5c03d95952fa806f57bad01126100000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff0200000000000000002b6a293346c767cf647d2aacde83d14e2c9529372189b61fe4dae2a49930b729f4cf90c62df005fa6956043e3bb1052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4267,13 +4283,13 @@ }, "/v2/addresses/
/compose/btcpay": { "result": { - "rawtransaction": "020000000001013d85bff283f6055716040c2c51141398d7775951f61cf1ef9a12ccbd2da5e3370000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff03b80b00000000000016001478a3909dd27183d907e4449a5efb8a6eec443bd200000000000000004b6a4917b6d73524118ffb4dba108ccebe4e312409d5a0c62af302bd2fc94045cee07f1c04251c685216d77a736875b9adafd3104b683301a939a659438f13b6e712b00f0ef936f95218def2d993052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "02000000000101daf348400d79fd99e9e9ba39e5f589daf7f7e43bcd0432bd39c16204f0464ce600000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff03b80b000000000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde00000000000000004b6a49f131b00aece2c6e0846814cdf1d01bad20fbc28a55edb64fd93618de526eebe90b0d784396f0571e7c6b40121a05f265653f3c285b2705ef404dec40b013214a3d22a53281158e57afd993052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448" + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea" }, "name": "btcpay", - "data": "434e5452505254590be78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "data": "434e5452505254590b14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac7482d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4285,9 +4301,9 @@ }, "/v2/addresses/
/compose/burn": { "result": { - "rawtransaction": "02000000000101fa643da10f023a6f4cdd832b487377afc08378e3a396a2f764a050b94a5b3cf60000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "0200000000010126fff1f579df2d0e9fbcb9b1e7f776838ce7a481ded19268534d0e584288f42c00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "quantity": 1000, "overburn": false }, @@ -4297,13 +4313,13 @@ }, "/v2/addresses/
/compose/cancel": { "result": { - "rawtransaction": "02000000000101eedbefe4bd636546d57c8e1f4c0eb76bd855239cfa7c77f8b251af49eb9196140000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff0200000000000000002b6a29bb90f36f9b86d1233cfc3bfa0724f1e524d4d32c8824fa115943b30c9b6bc6124ba66fac7e49803b373bb1052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "020000000001013eb1a01d1d6551395769367a9f2bb8898eb5016edb8c8df41bc3627209ef15fc00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff0200000000000000002b6a29d500c7f0889a043d7b84962877949c32746ac86db22c5c112a0aeb978ee58dd489fa6dbbaf158f0a833bb1052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "offer_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055" + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "offer_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7" }, "name": "cancel", - "data": "434e54525052545946b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "data": "434e54525052545946caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4315,9 +4331,9 @@ }, "/v2/addresses/
/compose/destroy": { "result": { - "rawtransaction": "0200000000010130d7691e00629eb4961825a5c0cd3a09c650b1485d7baf7b6a7bc9093c5e66210000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000226a20e9ef305760432a385b4316e09d8b138f51b4d7c1649ef5a9eca33c059faac5a2a4b3052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "02000000000101aa28b197c723d17de2bef2df47f595f98f623493ec66a5b3672089dffcb3f7dd00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000226a20885bd57eae112fdd7db39d3c1707dda3f29d6129c49db69e01f3a8183175e0c7a4b3052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4343,9 +4359,9 @@ }, "/v2/addresses/
/compose/dispenser": { "result": { - "rawtransaction": "0200000000010187137586cf80f0894942be32c20a0d0dda47ae0714b0f873dd7a7951a4080a24020000001600149a874d4ce5bb7cc6fcf889d8d61a3cd667e7c43dffffffff0200000000000000002c6a2a0e1e937628aca7a522cee3b287a42b3bc78b6233d54a79cf73e78bea9e6bcd48c3d7bf613fd4eb1b9ff6474b0a27010000001600149a874d4ce5bb7cc6fcf889d8d61a3cd667e7c43d02000000000000", + "rawtransaction": "0200000000010180e6e6e4a397697db7cde6ec1766b0852b9bee4f96cdf4dd96e98e18c7fbc84702000000160014dca9e37d561861c1f2060057ec37a222d5f5ae38ffffffff0200000000000000002c6a2a12a1cb0b3a347bca215cf1c90c427ab6da126eb992551c4982ff058f11802d849a4024582c5fd3e697b0474b0a2701000000160014dca9e37d561861c1f2060057ec37a222d5f5ae3802000000000000", "params": { - "source": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", + "source": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4376,16 +4392,16 @@ }, "/v2/addresses/
/compose/dividend": { "result": { - "rawtransaction": "02000000000101e6e36a1100c493467b382a99ec5aee83575997f72471d86c33881f4b296c9df90000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000236a212228e09122064a733b43f540b88cd03dc744b649a35ed92ce17fd05cc8bf71dcd460b3052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "020000000001017d8e59c3272df4941d47b894e7503dcb7aee29a7286dce9df82ebc081b370e5000000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000236a21f356553496497d7b934fe0a108db797f9a05bc37c350d4b2c9202c9c0fe0d704f660b3052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -4411,12 +4427,12 @@ }, "/v2/addresses/
/compose/issuance": { "result": { - "rawtransaction": "0200000000010136d6e6a155dea2dc07c5dbfc215477089050c771975ff25549a50aca2042d9110000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff03220200000000000016001478a3909dd27183d907e4449a5efb8a6eec443bd20000000000000000236a21a5d731112dcfb5e7accd100224da20485a77f4d6b626d7e938f6e22f44d928dc6a24a8052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "020000000001016f87d4afb609faeff0385730e8d3f735faf637ec6648c234938085805595f3e000000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff032202000000000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde0000000000000000236a213ad5656005b5e1507bc5682b156fb094ddc2dc97dd217fcfb33a74b57a9516718924a8052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "transfer_destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "lock": false, "reset": false, @@ -4436,18 +4452,18 @@ }, "/v2/addresses/
/compose/mpma": { "result": { - "rawtransaction": "020000000001045d4eb11fe84e3712b4ebd879c01bc40c0527526e763aa02a891e4c9f75e1774a0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffffeac0d9ac05994d37e2be6b545ee86c7af2a01beeda39353990297dbfefd23b7c0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2fffffffff37cb30fbab0598f0be01ca736ce36762364665229cbe0c5e31d0aaf1a143da60000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff5429e8ff1be03db404fed6b06882c88df2efb89a85eacb7c9cb682e7715111790000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff03e8030000000000006951210380c01d0b508801d559f1f62d847e298ff33b1f3f177fea7e447b0a18c04fa5c42103be8259e6629403853ffdfb06bcfd31e67fce4cf395846b885e157e43c250863e2103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453aee803000000000000695121038fc01d0b508801d559d28140766aee3e4c696ebcc26d95b16905f192aea3e1fc210385509144910fea1c1d82b0948f041a1aedd91df4911458077c5d1b2fae3faa662103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453ae61d016a80400000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000002000002000002000000000000", + "rawtransaction": "02000000000104ebbb5a83142a1034aaac4032e1a546cf5a274068dfeeb37875cd03b3700eabb000000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff4e7c7126f386b9de41bcef227b4cdefe1da4e4bb0f376a959e25a892cf219fd000000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff2ceabacbe62a496bc4e8e0f806c23af5d0f6dd6d3bf487cd622229b61a20204d00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff745824b68663dbde5c66294a4cd315eb4c3792f6a2a8c25bea96b6b70d0e978f00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff03e803000000000000695121036ece70a04e5b015c53fb0b91fcfd8082fd1f3eab08a869ae32bb59253ae4bb9821021d9692c24bba1449381a7f71a8f96ef08e14baf6e25b3fcc839b7fbd9dd3e41a2103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253aee8030000000000006951210261ce70a04e5b015c53d87cfc0ec765833c6d654cde6d834a96b7e5e5d42b173f210290485a34afb81297ddc744b30a7920b79c12cf049f53ed43a1d31ad1f1bcc8662103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253ae61d016a804000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000002000002000002000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", 1 ], [ "MYASSETA", - "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", 2 ] ], @@ -4455,7 +4471,7 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e5452505254590300028078a3909dd27183d907e4449a5efb8a6eec443bd280a2f39be999227f439233f92bfc921753070490338f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280568120e3f25be7dad0716f132cbcc0eecfac8dde80f6e40206dee5dd33c2a2804e47120677f27d08d28f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4467,9 +4483,9 @@ }, "/v2/addresses/
/compose/order": { "result": { - "rawtransaction": "02000000000101ccdedd2808c475ca5c88e5449b3c176fe02031ec8e63eecb922aeaf26a5c18b50000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000356a3353ef808f83366b6cf8d9952b5f83c9aa93502e5ec99ae234ba6b25efe0929adacf71a868b12cb91f4cf9dc0f55d288e7704f008eae052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "02000000000101315dc0e7f6960541094341711ab902343d7c36bc88628ff8ca351a9649f85aef00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000356a3363b2cf1d482dc039dee4e210769c4819e87644b84643893ce3dbf7e5f6028cdb0b47bd000dfd5477bc385517d5d332f86c1a0a8eae052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4486,7 +4502,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -4507,10 +4523,10 @@ }, "/v2/addresses/
/compose/send": { "result": { - "rawtransaction": "020000000001018d066198354bcccb5ae30b8e22e0dc1c7b7cc82e2f09f5717467887f0be02e130000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000306a2e10f778129d9a05da90bb7b9780c7c24abf81c0eaca62afba7ac192691e47563954763c578ae8b6a863aea692eb7de5af052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "02000000000101729f4c197df6f4a236502146ab1a5258cab4a2beb8edf45e8afba0e82c88df2300000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000306a2e7a73cc3866f3308c247737670a9bb9dd77f0a63633306c262610ce07b025c4a37764ceb6770146df1f5632e859e4e5af052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4526,7 +4542,7 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880a2f39be999227f439233f92bfc92175307049033", + "data": "434e54525052545902000000000000000100000000000003e880f6e40206dee5dd33c2a2804e47120677f27d08d2", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4538,15 +4554,15 @@ }, "/v2/addresses/
/compose/sweep": { "result": { - "rawtransaction": "02000000000101d3588bfb2399ce534e9d0709c9163fc54404d4543935cf439037c8359a2a65ba0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000236a217aae0a2a9fd30ec2ced0653034b208a74ec9420f24a2951e2fdb9a888794e54f5760b3052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "02000000000101df20d626cc16ba1c4999c923cf908cecec6c36023462e9d1ef307d4b2a37e97100000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000236a21f5f26402338b4b669a2bd2402474c76df612433dd10bcabf9904a7f38e132a05a660b3052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480a2f39be999227f439233f92bfc9217530704903307ffff", + "data": "434e5452505254590480f6e40206dee5dd33c2a2804e47120677f27d08d207ffff", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4558,10 +4574,10 @@ }, "/v2/addresses/
/compose/dispense": { "result": { - "rawtransaction": "02000000000101f5f8c62f3372e9b1fbbd14a59ce06876ca5bb083695e2bb5d8e3354c8d7e3af902000000160014a2f39be999227f439233f92bfc92175307049033ffffffff03e803000000000000160014bebd760d2e19686fe41856142fc45e3c18bea24900000000000000000c6a0a82bdbe18eb20c070df0066b8082701000000160014a2f39be999227f439233f92bfc9217530704903302000000000000", + "rawtransaction": "02000000000101e0ce8482c498c33b2168d9e3cf9a33fedb60968a68b6553de6ab68cb48ab42c502000000160014f6e40206dee5dd33c2a2804e47120677f27d08d2ffffffff03e803000000000000160014ed681fe4daf7ab2ee1a33b873588429301d5bfa800000000000000000c6a0a4e4ac9ecf2a1c59d387a66b8082701000000160014f6e40206dee5dd33c2a2804e47120677f27d08d202000000000000", "params": { - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "quantity": 1000 }, "name": "dispense", @@ -4577,9 +4593,9 @@ }, "/v2/addresses/
/compose/fairminter": { "result": { - "rawtransaction": "020000000001018a5d294695a3cad514f9a5355a1878d1b6985d4c2b75246f10b5ef4d1e4654a80000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000316a2f00366867e989fc281223556af269bde9b5862ec32ee8e4ddc59019e2af0a3f6c8ade61f624719c7ad07618314d1780a0af052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "020000000001013abd5789d21497efd4e34bcc7938cffe0dac28ce90b3773ef729b4929f31ab1400000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000316a2f6887c9fee2e9d6bad71ac9157aeff69cf73203356a7e5836755a2cf7ca4a47c18598bfded5d272dc9465942871dc4da0af052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4611,15 +4627,15 @@ }, "/v2/addresses/
/compose/fairmint": { "result": { - "rawtransaction": "02000000000101e8ab6caff3cacfcfd3dbadcbad2347735d0bbd4497929b30e82b3da7daac8c610000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff020000000000000000166a148480d79da2451734ec5258d8a4d16bad633ac169dab6052a0100000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000000000000", + "rawtransaction": "020000000001011557e6edacb2424f9b980d8998dde10d2c288c61593f1adbb1e3118f5790fada00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000166a141094e889ea2b96910e0c5e83e31fdaae5d81484bdab6052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -4638,10 +4654,10 @@ }, "/v2/addresses/
/compose/attach": { "result": { - "rawtransaction": "02000000000106205474b852fd4c7ba82f078bdeea2a4d7e53ef4ea71724239b1f900ca093944f0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffffaa4c09c2227b094d2f3ba8dcadfa8b405ded9f775f960cc73026fc39580f5adc0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffffe41bcc599b63d1291193efde4f1c01bff9cc5569fd20d0de50b63ca0f320faae0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff2ebf8d97e45fb132031c0c5216a66d5eb6e0d2ca5dece980c302328d4ba02afc0000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff13eccb9a92f0089f539d84322538d0c6f830cbed3ceb15ae0b08cf07d0f0d9980000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff71e1f0347d35e80df8e619a793c159c06ed180d2ef8fc0f04cd5e4c30ec494990000000016001478a3909dd27183d907e4449a5efb8a6eec443bd2ffffffff04e803000000000000695121025f199d3d069301d062dc703f6b6d6bee8b30d127877cebaf6a3e1e49407bcae021028038e667690d83c9a2cfbb15c033dcf4bdecaef30f7542c751c6b7f34a45bbc42103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453aee803000000000000695121035f199d3d069301d062dc263f2a2c3facdf728077c526a9a02b7f561b483b936b21029b3ced34665a8cd9a092b51f8c659fa1b3e2bcf90c7b498c05ccb7a01b43b52d2103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453aee8030000000000006951210375199d3d069301d062de2a3a2c236ae3e309b23ec674acf51d466e282a0ba6982103f95f8c03506cb4bc90abd67eb954abc3d784de9b3d1e70bb37ff84927d20839c2103bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb72453aee83922fc0600000016001478a3909dd27183d907e4449a5efb8a6eec443bd202000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106b5b2a300cd9f45e9fda7bd55fe7562178242530b17b22f81ff7fd2aca4c762cd00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffffef0a2588300e8fb8fda9df42f8c674ef493032f617daed6699e7c7cb571a8e2900000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff3597da886302ff1cf6b352404c1eb0954497c87c15a918872e2373408904f4b200000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff4268ca1adfcfd7c71d02cdc28133b4a94c3d6cf064c021831d0a641876830e3200000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff4c3fd0d1e9fd1207d8a7512e79145c7baf1824c64b85ff95077e80fb4012d47b00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff5e90be4b78a0601e9e787268b5bdc9441f0b96d70de955f01e770cf7ec058e4b00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff04e8030000000000006951210388e0801a8eb1ee3020f43c7ad6954d29621f6ed76ed366f6c1efc95e55d1aecd21031361d20e3a1a451d140674a3d3fbe557e2cc447c2987afb03b165bf8436d36322103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253aee8030000000000006951210288e0801a8eb1ee3020a56b7bc1824f3e621e2e8e2b863eaa80eac45b51d2e55521024363960d614b475407042effdcf8f213e3db4e3e2c97e8a86e4604ab436c3d582103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253aee80300000000000069512103a2e0801a8eb1ee3020a2687d93db4d24086a4fc12f803aacb5dfa73f61e4dc6121032005a768507f75656567199be59e9720d5bf280c1cf3ddcc58773dce770805212103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253aee83922fc06000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5:0", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4654,7 +4670,7 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171307a33657038776a777870616a706c79676a643961377532646d6b796777376a687068326b327c663933613765386434633335653364386235326235653639383362303562636137363638653039636135313462646662623165393732333332666336663866353a307c5843507c31303030", + "data": "434e545250525459646263727431713236716a70636c6a74306e61343572336475666a65307871616d383665727737736c703574727c636166363465333535626563336632373133353634363535636430363963663165313432316263376439666533366466323064356436313965346438323664373a317c5843507c31303030", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4666,10 +4682,10 @@ }, "/v2/utxos//compose/detach": { "result": { - "rawtransaction": "02000000000101ee686ccfdf3a59108b1e94563148fb751758ca450757a0702214c34bcbc5174e01000000160014e5e7994267229ac88ef1b87c6bb3dd5ea6d8b915ffffffff04e80300000000000069512103d10c408319c158050fc7352fd30cae885c0e6cc47e770da5cb3ff182b089e35e2102ffa9319f5d5598f26968c6da1435aa18b608d02a24a1b90ab5c606f343a4dcf82103e9e0419bbf5a98aa4575404f101dac624c7d6c81a7f307d7f76566c820155e0a53aee80300000000000069512102d10c408319c158050f90602e8458ab8b5c5a60c3787e0ded9b6eb4c6e0c8e6552103b2aa63db504193b029299087513fb14be45fd87e25edbf5fbd951da504a68f332103e9e0419bbf5a98aa4575404f101dac624c7d6c81a7f307d7f76566c820155e0a53aee80300000000000069512102fb0c408319c158050fcb7122d050ffc1672f08da2c740ca1f90dc6b2d1b9d64c2103c89906ab6836f9c75159f1ed2153c82c8e3be11f12988d3bd0fe64c27391e57d2103e9e0419bbf5a98aa4575404f101dac624c7d6c81a7f307d7f76566c820155e0a53aef498082701000000160014e5e7994267229ac88ef1b87c6bb3dd5ea6d8b91502000000000000", + "rawtransaction": "02000000000101e3c0abdcb1b46b89adbb9079210c4c14d9f624a027d8f449248c9b8b82c366e1010000001600147680081eacbc4519f01d1f068efed38d60f8c0a9ffffffff04e80300000000000069512103f844335e103b984283c13015448330b33544964dfae4ff345c79050cffa1001921024803ce6c4c93f971075791716b29c7c3149271b4a720463aeb26332fb1f36b62210210c7a3f106ae95ec77b61dd08bf70b372b9bd9adb606dcef53143fd064020b5253aee80300000000000069512103f844335e103b984283c7614643d130e16f159e4af0bcf62b0c2e4341a8e456d021024640937d1fcda763015dc9746a6f979702c62ae6ae610739e47f6172fab23e49210210c7a3f106ae95ec77b61dd08bf70b372b9bd9adb606dcef53143fd064020b5253aee80300000000000069512103d244335e103b984283d6395447c121fc5535fe53f2b6f7676e4d31359995640e21037031f90d7ca1cd173133a8405f1da4f377a040839e1976588947571788c509e1210210c7a3f106ae95ec77b61dd08bf70b372b9bd9adb606dcef53143fd064020b5253aef4980827010000001600147680081eacbc4519f01d1f068efed38d60f8c0a902000000000000", "params": { - "source": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee:1", - "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3:1", + "destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4682,7 +4698,7 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964346531376335636234626333313432323730613035373037343563613538313737356662343833313536393431653862313035393361646663663663363865653a317c626372743171307a33657038776a777870616a706c79676a643961377532646d6b796777376a687068326b327c5843507c31303030", + "data": "434e54525052545964653136366333383238623962386332343439663464383237613032346636643931343463306332313739393062626164383936626234623164636162633065333a317c6263727431713236716a70636c6a74306e61343572336475666a65307871616d383665727737736c703574727c5843507c31303030", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4698,8 +4714,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 10000000000, @@ -4707,16 +4723,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1726950270, - "last_issuance_block_time": 1726950277, + "first_issuance_block_time": 1727000443, + "last_issuance_block_time": 1727000461, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", - "owner": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", + "issuer": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", + "owner": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", "divisible": true, "locked": false, "supply": 100000000000, @@ -4724,16 +4740,16 @@ "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1726950266, - "last_issuance_block_time": 1726950266, + "first_issuance_block_time": 1727000439, + "last_issuance_block_time": 1727000439, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 100000000000, @@ -4741,16 +4757,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1726950222, - "last_issuance_block_time": 1726950222, + "first_issuance_block_time": 1727000405, + "last_issuance_block_time": 1727000405, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 40, @@ -4758,16 +4774,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1726950172, - "last_issuance_block_time": 1726950177, + "first_issuance_block_time": 1727000354, + "last_issuance_block_time": 1727000358, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 19, @@ -4775,8 +4791,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1726950155, - "last_issuance_block_time": 1726950168, + "first_issuance_block_time": 1727000326, + "last_issuance_block_time": 1727000349, "supply_normalized": "0.00000019" } ], @@ -4788,8 +4804,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 10000000000, @@ -4797,15 +4813,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1726950117, - "last_issuance_block_time": 1726950130, + "first_issuance_block_time": 1727000288, + "last_issuance_block_time": 1727000301, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4813,14 +4829,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4828,7 +4844,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -4840,7 +4856,7 @@ }, "/v2/assets//balances/
": { "result": { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4859,9 +4875,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4876,7 +4892,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726950421, + "block_time": 1727000584, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4902,9 +4918,9 @@ }, { "tx_index": 55, - "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "block_index": 190, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4919,7 +4935,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726950417, + "block_time": 1727000580, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4945,9 +4961,9 @@ }, { "tx_index": 52, - "tx_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "tx_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "block_index": 186, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -4962,7 +4978,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726950389, + "block_time": 1727000563, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4988,9 +5004,9 @@ }, { "tx_index": 50, - "tx_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "tx_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "block_index": 185, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5005,7 +5021,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726950385, + "block_time": 1727000558, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5031,9 +5047,9 @@ }, { "tx_index": 49, - "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", "block_index": 186, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5048,7 +5064,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726950389, + "block_time": 1727000563, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5079,13 +5095,13 @@ "/v2/assets//matches": { "result": [ { - "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "tx0_index": 49, - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 52, - "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", - "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5099,7 +5115,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726950389, + "block_time": 1727000563, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5119,13 +5135,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "tx0_index": 49, - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 50, - "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", - "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5139,7 +5155,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726950385, + "block_time": 1727000558, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5159,13 +5175,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", "tx0_index": 47, - "tx0_hash": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 48, - "tx1_hash": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", - "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "tx1_hash": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5179,7 +5195,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726950308, + "block_time": 1727000481, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5206,20 +5222,20 @@ "result": [ { "block_index": 192, - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5227,20 +5243,20 @@ }, { "block_index": 125, - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "fa62268a3981b9cfff3d701ad4e086a879507e450c3e676a6fee67ce980309f3", + "event": "440ae8e372ae940d6481d2627e1995fa192be6b97873113ff7d04d298a8f443e", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950130, + "block_time": 1727000301, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5248,20 +5264,20 @@ }, { "block_index": 124, - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7", + "event": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950126, + "block_time": 1727000297, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5269,20 +5285,20 @@ }, { "block_index": 124, - "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", + "event": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950126, + "block_time": 1727000297, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5294,16 +5310,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7", + "event": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950126, + "block_time": 1727000297, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5317,16 +5333,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "event": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -5338,16 +5354,16 @@ }, { "block_index": 192, - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -5359,16 +5375,16 @@ }, { "block_index": 192, - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -5380,16 +5396,16 @@ }, { "block_index": 191, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "event": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950421, + "block_time": 1727000584, "asset_info": { "divisible": true, "asset_longname": null, @@ -5401,16 +5417,16 @@ }, { "block_index": 189, - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950402, + "block_time": 1727000575, "asset_info": { "divisible": true, "asset_longname": null, @@ -5428,20 +5444,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", + "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", "block_index": 153, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726950256, + "block_time": 1727000430, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5463,14 +5479,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "fa62268a3981b9cfff3d701ad4e086a879507e450c3e676a6fee67ce980309f3", + "tx_hash": "440ae8e372ae940d6481d2627e1995fa192be6b97873113ff7d04d298a8f443e", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -5485,20 +5501,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726950130, + "block_time": 1727000301, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7", + "tx_hash": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -5513,20 +5529,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726950126, + "block_time": 1727000297, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", + "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -5541,20 +5557,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1726950121, + "block_time": 1727000293, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -5569,7 +5585,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1726950117, + "block_time": 1727000288, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5581,10 +5597,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5592,7 +5608,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "divisible": true, "asset_longname": null, @@ -5605,10 +5621,10 @@ }, { "tx_index": 53, - "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d", + "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50", "block_index": 187, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5616,7 +5632,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950394, + "block_time": 1727000567, "asset_info": { "divisible": true, "asset_longname": null, @@ -5629,10 +5645,10 @@ }, { "tx_index": 42, - "tx_hash": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", + "tx_hash": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", "block_index": 155, - "source": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f:0", - "destination": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee:1", + "source": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881:0", + "destination": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5640,7 +5656,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950266, + "block_time": 1727000439, "asset_info": { "divisible": true, "asset_longname": null, @@ -5653,10 +5669,10 @@ }, { "tx_index": 41, - "tx_hash": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f", + "tx_hash": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881", "block_index": 154, - "source": "834d6141f50ca8d542f97a2a8763c5e0b903ea69dad914ca7b2314d1b15299c9:0", - "destination": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f:0", + "source": "04f059b15c3a78cd69b004df45b5e2a96703d2a36ce737e6bad8ddad72bbffb2:0", + "destination": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5664,7 +5680,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950261, + "block_time": 1727000434, "asset_info": { "divisible": true, "asset_longname": null, @@ -5683,18 +5699,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "last_status_tx_hash": null, - "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5704,7 +5720,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726950217, + "block_time": 1727000400, "asset_info": { "divisible": true, "asset_longname": null, @@ -5720,9 +5736,9 @@ }, { "tx_index": 30, - "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", + "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", "block_index": 144, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5731,7 +5747,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5741,7 +5757,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950210, + "block_time": 1727000392, "asset_info": { "divisible": true, "asset_longname": null, @@ -5757,9 +5773,9 @@ }, { "tx_index": 29, - "tx_hash": "0a0a386a108fc77532c20f16f9135923ccb21213e6b57fc920af53fdec07f3a3", + "tx_hash": "55b192e3a4561ca9f43c52774fc1a814cbbc8063479cd052a6bb818aec5aeadc", "block_index": 142, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5768,7 +5784,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "origin": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5778,7 +5794,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950201, + "block_time": 1727000383, "asset_info": { "divisible": true, "asset_longname": null, @@ -5794,9 +5810,9 @@ }, { "tx_index": 26, - "tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5805,7 +5821,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5815,7 +5831,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -5836,9 +5852,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 30, - "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", + "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", "block_index": 144, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5847,7 +5863,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5857,7 +5873,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950210, + "block_time": 1727000392, "asset_info": { "divisible": true, "asset_longname": null, @@ -5885,7 +5901,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5893,7 +5909,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -5902,7 +5918,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5910,7 +5926,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -5919,7 +5935,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5927,7 +5943,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -5936,7 +5952,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -5951,27 +5967,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", - "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "last_status_tx_hash": null, - "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5986,7 +6002,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726950217, + "block_time": 1727000400, "asset_info": { "divisible": true, "asset_longname": null, @@ -6000,19 +6016,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", + "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6020,7 +6036,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6035,7 +6051,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -6049,19 +6065,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", + "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", "block_index": 140, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6069,7 +6085,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6084,7 +6100,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950194, + "block_time": 1727000375, "asset_info": { "divisible": true, "asset_longname": null, @@ -6105,8 +6121,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "owner": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false, "supply": 0, @@ -6114,8 +6130,8 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1726950274, - "last_issuance_block_time": 1726950274, + "first_issuance_block_time": 1727000447, + "last_issuance_block_time": 1727000447, "supply_normalized": "0.00000000" } ], @@ -6125,10 +6141,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6153,7 +6169,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726950130 + "block_time": 1727000301 } ], "next_cursor": null, @@ -6162,64 +6178,64 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "fa62268a3981b9cfff3d701ad4e086a879507e450c3e676a6fee67ce980309f3", + "tx_hash": "440ae8e372ae940d6481d2627e1995fa192be6b97873113ff7d04d298a8f443e", "tx_index": 13, "block_index": 125, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", - "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950130, + "block_time": 1727000301, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } }, { - "tx_hash": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7", + "tx_hash": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f", "tx_index": 12, "block_index": 124, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", - "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950126, + "block_time": 1727000297, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } }, { - "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", + "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950121, + "block_time": 1727000293, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } @@ -6231,22 +6247,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "9990a31318db9b839dea9f7f318d65cd1f5d5fc8528f5de67da025bbf7163e30", + "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "fairminter_tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1726950121, + "block_time": 1727000293, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } @@ -6259,9 +6275,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6276,7 +6292,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726950421, + "block_time": 1727000584, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6302,9 +6318,9 @@ }, { "tx_index": 55, - "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "block_index": 190, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6319,7 +6335,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1726950417, + "block_time": 1727000580, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6345,9 +6361,9 @@ }, { "tx_index": 52, - "tx_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "tx_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "block_index": 186, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6362,7 +6378,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726950389, + "block_time": 1727000563, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6388,9 +6404,9 @@ }, { "tx_index": 50, - "tx_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "tx_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "block_index": 185, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6405,7 +6421,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1726950385, + "block_time": 1727000558, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6431,9 +6447,9 @@ }, { "tx_index": 49, - "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", "block_index": 186, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6448,7 +6464,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726950389, + "block_time": 1727000563, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6479,9 +6495,9 @@ "/v2/orders/": { "result": { "tx_index": 57, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6496,7 +6512,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1726950421, + "block_time": 1727000584, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6524,13 +6540,13 @@ "/v2/orders//matches": { "result": [ { - "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "tx0_index": 49, - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 52, - "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", - "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6544,7 +6560,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726950389, + "block_time": 1727000563, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6564,13 +6580,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "tx0_index": 49, - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 50, - "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", - "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6584,7 +6600,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726950385, + "block_time": 1727000558, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6611,15 +6627,15 @@ "result": [ { "tx_index": 51, - "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", + "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", "block_index": 185, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "btc_amount": 2000, - "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "status": "valid", "confirmed": true, - "block_time": 1726950385, + "block_time": 1727000558, "btc_amount_normalized": "0.00002000" } ], @@ -6630,9 +6646,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6650,7 +6666,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726950421, + "block_time": 1727000584, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6676,9 +6692,9 @@ }, { "tx_index": 55, - "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "block_index": 190, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6696,7 +6712,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726950417, + "block_time": 1727000580, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6722,9 +6738,9 @@ }, { "tx_index": 52, - "tx_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "tx_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "block_index": 186, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6742,7 +6758,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726950389, + "block_time": 1727000563, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6768,9 +6784,9 @@ }, { "tx_index": 50, - "tx_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "tx_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "block_index": 185, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6788,7 +6804,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1726950385, + "block_time": 1727000558, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6814,9 +6830,9 @@ }, { "tx_index": 49, - "tx_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", "block_index": 186, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6834,7 +6850,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726950389, + "block_time": 1727000563, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6865,13 +6881,13 @@ "/v2/orders///matches": { "result": [ { - "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "tx0_index": 49, - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 52, - "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", - "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6888,7 +6904,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726950389, + "block_time": 1727000563, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6908,13 +6924,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "tx0_index": 49, - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 50, - "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", - "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6931,7 +6947,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726950385, + "block_time": 1727000558, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6951,13 +6967,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", "tx0_index": 47, - "tx0_hash": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 48, - "tx1_hash": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", - "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "tx1_hash": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6974,7 +6990,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1726950308, + "block_time": 1727000481, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7000,13 +7016,13 @@ "/v2/order_matches": { "result": [ { - "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "tx0_index": 49, - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 52, - "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", - "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7020,7 +7036,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1726950389, + "block_time": 1727000563, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7040,13 +7056,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "tx0_index": 49, - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 50, - "tx1_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", - "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7060,7 +7076,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1726950385, + "block_time": 1727000558, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7080,13 +7096,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", + "id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", "tx0_index": 47, - "tx0_hash": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_hash": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx1_index": 48, - "tx1_hash": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", - "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "tx1_hash": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7100,7 +7116,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1726950308, + "block_time": 1727000481, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7145,66 +7161,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "b59307cc2ac4f942129759aae2c01c6787c312068f1f9274b9fca33b37cf2b5b", + "tx_hash": "adfbd46bafe5d0eb02dc42e71c6ebd831574fbcbc27598f3a574cd28a015cc8b", "block_index": 121, - "source": "bcrt1qwqs0vxzwhmrrq95fnvdhz0dlywewnjusllcjc7", + "source": "bcrt1qyulh8dt9j6mxay44vsk59ykh3j0sepu4nr8frk", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1726950113, + "block_time": 1727000284, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "cf3157538196c2ef2157f38ef876e51f522ca4dc1d4741b70aaee62b039ad635", + "tx_hash": "1d6bad2e953fa3de6db966f89158902144fed3f216c81d87ddc6d4b23e8ff89d", "block_index": 120, - "source": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", + "source": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1726950109, + "block_time": 1727000279, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "00b37df4c94335bff4c2621d0e083938367a01ace9ea4e952190a3bb3f35e521", + "tx_hash": "7ee251aac657b6a4b3605cca2cc178ffbec78038d0a964ca464c18982a294201", "block_index": 119, - "source": "bcrt1qtxavwjw8l7zg62dpwpj69pl6d2e55eh7c846rr", + "source": "bcrt1qmrlqq2xhfdhnvnnsry6l8mkv5q9nrdz4nlkvmp", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1726950105, + "block_time": 1727000275, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "0e233f42a66c3f1584ae4115105af5ee53d7aa4c12ba8c4e96ac321517b65e25", + "tx_hash": "8e5aa0e03605f3cfb71386e8827a8dd88135027beba9e6d959f94577fdab79f6", "block_index": 118, - "source": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", + "source": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1726950100, + "block_time": 1727000271, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "ddae9377ab97695ed0de3b6aa7478a8c6ad78e88f509db7b4b4866b138eff01e", + "tx_hash": "0baa93783d18dfbdc8cfe8d0e1291184d0ed5524077e64df275222278c79b627", "block_index": 117, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1726950096, + "block_time": 1727000267, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7216,18 +7232,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "last_status_tx_hash": null, - "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7237,7 +7253,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1726950217, + "block_time": 1727000400, "asset_info": { "divisible": true, "asset_longname": null, @@ -7253,9 +7269,9 @@ }, { "tx_index": 30, - "tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", + "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", "block_index": 144, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7264,7 +7280,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7274,7 +7290,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950210, + "block_time": 1727000392, "asset_info": { "divisible": true, "asset_longname": null, @@ -7290,9 +7306,9 @@ }, { "tx_index": 29, - "tx_hash": "0a0a386a108fc77532c20f16f9135923ccb21213e6b57fc920af53fdec07f3a3", + "tx_hash": "55b192e3a4561ca9f43c52774fc1a814cbbc8063479cd052a6bb818aec5aeadc", "block_index": 142, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7301,7 +7317,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "origin": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7311,7 +7327,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950201, + "block_time": 1727000383, "asset_info": { "divisible": true, "asset_longname": null, @@ -7327,9 +7343,9 @@ }, { "tx_index": 26, - "tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7338,7 +7354,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7348,7 +7364,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -7369,9 +7385,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7380,7 +7396,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7390,7 +7406,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -7410,19 +7426,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", + "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7430,7 +7446,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7445,7 +7461,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -7459,19 +7475,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", + "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", "block_index": 140, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7479,7 +7495,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7494,7 +7510,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950194, + "block_time": 1727000375, "asset_info": { "divisible": true, "asset_longname": null, @@ -7513,20 +7529,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", + "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", "block_index": 153, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726950256, + "block_time": 1727000430, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -7547,20 +7563,20 @@ "/v2/dividends/": { "result": { "tx_index": 40, - "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", + "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", "block_index": 153, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1726950256, + "block_time": 1727000430, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -7583,12 +7599,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", + "event": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", "tx_index": 40, - "utxo": "834d6141f50ca8d542f97a2a8763c5e0b903ea69dad914ca7b2314d1b15299c9:0", - "utxo_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "utxo": "04f059b15c3a78cd69b004df45b5e2a96703d2a36ce737e6bad8ddad72bbffb2:0", + "utxo_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "confirmed": true, - "block_time": 1726950256, + "block_time": 1727000430, "asset_info": { "divisible": true, "asset_longname": null, @@ -7600,16 +7616,16 @@ }, { "block_index": 153, - "address": "bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj", + "address": "bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", + "event": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1726950256, + "block_time": 1727000430, "asset_info": { "divisible": true, "asset_longname": null, @@ -7630,27 +7646,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", - "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", + "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", + "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", "transaction_count": 1, - "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", - "block_time": 1726950429 + "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", + "block_time": 1727000592 }, "tx_hash": null, "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "tx_index": 59 }, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 }, { "event_index": 533, @@ -7659,12 +7675,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "status": "valid", "tag": "64657374726f79", - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "tx_index": 59, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -7674,24 +7690,24 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 193, - "event": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "event": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -7701,25 +7717,25 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", "block_index": 193, - "block_time": 1726950429, + "block_time": 1727000592, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "tx_index": 59, - "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", + "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -7739,9 +7755,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 } ], "next_cursor": 530, @@ -7753,15 +7769,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", - "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", + "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", + "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", "transaction_count": 1, - "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", - "block_time": 1726950429 + "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", + "block_time": 1727000592 }, "tx_hash": null, "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 } }, "/v2/events/counts": { @@ -7796,16 +7812,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -7815,78 +7831,78 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", + "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1726950417, + "block_time": 1727000580, "asset_info": { "divisible": true, "asset_longname": null, @@ -7896,24 +7912,24 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "block_index": 190, - "block_time": 1726950417 + "block_time": 1727000580 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "event": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "divisible": true, "asset_longname": null, @@ -7923,9 +7939,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "block_time": 1726950398 + "block_time": 1727000571 } ], "next_cursor": 490, @@ -7942,27 +7958,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", - "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "last_status_tx_hash": null, - "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7977,7 +7993,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1726950217, + "block_time": 1727000400, "asset_info": { "divisible": true, "asset_longname": null, @@ -7991,19 +8007,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "ee841fbc496a150adc98fa9764bd20a5b98823cdbafb590139129278cd86629a", + "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8011,7 +8027,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8026,7 +8042,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950197, + "block_time": 1727000379, "asset_info": { "divisible": true, "asset_longname": null, @@ -8040,19 +8056,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "674102d2018ffcc656a5b5742a7164acf190920274ac09529f228efe3393bf7c", + "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", "block_index": 140, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "55787adc3b8d51120d1998ba6e5274e764be770154df11fe237d47ba727b361e", + "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8060,7 +8076,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8075,7 +8091,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1726950194, + "block_time": 1727000375, "asset_info": { "divisible": true, "asset_longname": null, @@ -8094,10 +8110,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8105,7 +8121,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "divisible": true, "asset_longname": null, @@ -8118,10 +8134,10 @@ }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8129,11 +8145,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -8142,10 +8158,10 @@ }, { "tx_index": 54, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8153,11 +8169,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -8166,10 +8182,10 @@ }, { "tx_index": 53, - "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d", + "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50", "block_index": 187, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -8177,7 +8193,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950394, + "block_time": 1727000567, "asset_info": { "divisible": true, "asset_longname": null, @@ -8190,10 +8206,10 @@ }, { "tx_index": 42, - "tx_hash": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", + "tx_hash": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", "block_index": 155, - "source": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f:0", - "destination": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee:1", + "source": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881:0", + "destination": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8201,7 +8217,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1726950266, + "block_time": 1727000439, "asset_info": { "divisible": true, "asset_longname": null, @@ -8220,14 +8236,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", + "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -8242,20 +8258,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950282, + "block_time": 1727000465, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "9a15129044c626aa6de4262f26195a677a41cc8a4b82c649cb7a381658023bdd", + "tx_hash": "69356c4a943c1bc4c96cf7e1fd1df717562742ba6d014e5404949c9fb8488072", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -8270,20 +8286,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1726950277, + "block_time": 1727000461, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "3de27df9207dede883d535efe529dd8fc3974cb18d1a62d257e6bcb91aa08a74", + "tx_hash": "de64c6d5cdcb12d054140d780d7c6780ed87490c27d80ff372e2384e3e898730", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -8298,20 +8314,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950274, + "block_time": 1727000447, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "9157f7bfaf353b8d1bfda36bbcaf83e7a1ae668161834e9f1b166f1e47b0f4c0", + "tx_hash": "694859d37608f9befa94495339565cd43e8955250c937c614bdc234e9fd9f4c6", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -8326,20 +8342,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950270, + "block_time": 1727000443, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", + "tx_hash": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", - "issuer": "bcrt1quhnejsn8y2dv3rh3hp7xhv7at6nd3wg4xjhqsc", + "source": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", + "issuer": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", "transfer": false, "callable": false, "call_date": 0, @@ -8354,7 +8370,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950266, + "block_time": 1727000439, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8365,14 +8381,14 @@ "/v2/issuances/": { "result": { "tx_index": 46, - "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", + "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "transfer": false, "callable": false, "call_date": 0, @@ -8387,7 +8403,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1726950282, + "block_time": 1727000465, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8396,16 +8412,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "fee_paid_normalized": "0.00600000" } ], @@ -8416,16 +8432,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1726950425, + "block_time": 1727000588, "fee_paid_normalized": "0.00600000" } ], @@ -8436,9 +8452,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198", + "tx_hash": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf", "block_index": 138, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8446,14 +8462,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726950185, + "block_time": 1727000366, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "ba4be2ba08322daea13f5b8b4710717e27f736da291c8238d4310b7a967668cf", + "tx_hash": "175b0e837d4aa88d671cfc863c546cf1e410283c6bcfca4f22737640612a0343", "block_index": 137, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8461,7 +8477,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726950181, + "block_time": 1727000362, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8471,9 +8487,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198", + "tx_hash": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf", "block_index": 138, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8481,17 +8497,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1726950185, + "block_time": 1727000366, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", + "tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8516,13 +8532,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726950172 + "block_time": 1727000354 }, { - "tx_hash": "f773e4590cdc8241d7c02475df2abbfc3e7b9d60ace80cfbb153df733d424cb2", + "tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8547,13 +8563,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726950155 + "block_time": 1727000326 }, { - "tx_hash": "e69f3ddbfd1ba8c631b757819d7664ca2bc7041fcd5a75be8e2711eea2cac9f8", + "tx_hash": "7db72c3a3d73085625f2f30f21a6937c09222727d2b9942e21aec693b24bf08e", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8578,13 +8594,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726950151 + "block_time": 1727000322 }, { - "tx_hash": "10ea8a0afed9ec518a5a36830647c5ca28b324daa7ec23d1ecde7d1e69323a70", + "tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8609,7 +8625,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1726950130 + "block_time": 1727000301 } ], "next_cursor": null, @@ -8623,8 +8639,8 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", - "address": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh" + "txid": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "address": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733" }, { "vout": 2, @@ -8632,8 +8648,8 @@ "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", - "address": "bcrt1qtxavwjw8l7zg62dpwpj69pl6d2e55eh7c846rr" + "txid": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", + "address": "bcrt1qmrlqq2xhfdhnvnnsry6l8mkv5q9nrdz4nlkvmp" } ], "next_cursor": null, @@ -8642,28 +8658,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "facd73ce7e552dab11a369e33253c91a09a63e697ed4542f29c5e0a118eb3a01" + "tx_hash": "d073bfba516a4c628b5c56105186ff577ace257af1912aa559d9761b7b225d25" }, { - "tx_hash": "712a9aba1cb503ed1a41fa5c0babfb3e6b649e69cbd2e657530242a61484c913" + "tx_hash": "46166b488d62f2085d8dbc2af1837c3e9d204d91bf46bf31436e5e207c85d326" }, { - "tx_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448" + "tx_hash": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f" }, { - "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d" + "tx_hash": "9b353d1cbb0a30108e4f9cc683852d659f4f611c141bab3af77efc10ab93dc4a" }, { - "tx_hash": "005e41992c61245f5c6c82a7140ca55b6813d522dfdd67fd5bb22b1b144ee77d" + "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50" }, { - "tx_hash": "e742483b2266e8ade01df73224124c166517189dbb36182c8f2d5ff8960d3f87" + "tx_hash": "6a012a0815fc9d29a651e9f6af04443ca67779f542d86bcb97bc981b09842497" }, { - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199" + "tx_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea" }, { - "tx_hash": "4ced2afcef74e22b94885f61d640ac8888f3f601ecebd144dbf5e56f22406ef7" + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" } ], "next_cursor": null, @@ -8671,8 +8687,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 2, - "tx_hash": "2d45e6b03b23a3f1ea01231cc3f27bd052b446c1246fefdce01f9faf99e55a4b" + "block_index": 4, + "tx_hash": "d5e3e6a38642c35108060cab17f3bf9e9141c313f26df13b7f4a971bf2ea1472" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -8683,17 +8699,17 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387" + "txid": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "03bfdf6ab35a3bcdcd6e8b889816500d3795cc32a99859e68961f5939b01ffb724" + "result": "03dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d962" }, "/v2/bitcoin/transactions/": { - "result": "020000000001011c47366e343a9e877ad71973dda9dfd1fe3e5684b34d2050f103aa6932f987c60300000000ffffffff020000000000000000226a20cea231665cabd08a82716fe6f464d520b5b5cf11fa08af64b5a40c8a74d38315680b0a2701000000160014bebd760d2e19686fe41856142fc45e3c18bea249024730440220649b9ca4964671c3eb365c42aea2a7d90717d1d6571f1d5ad3e4b1ac9e8da90b0220646fee8e452cea4dc757229333dd9499c3ea97ea59f96e98f0e3794c76848e440121022098f1d02b56e77ca857c5355d804950681dd648a95db1667bedd171bfe91e7000000000" + "result": "02000000000101f63c2d979ad0f0e7f38dd85c074a4731d6647152038511f2271ad1de3cf84d800300000000ffffffff020000000000000000226a20e06ea3ecf0f626c5841e5657c55445f9fb235327f993aaea1b320caf3bc7a6d6680b0a2701000000160014ed681fe4daf7ab2ee1a33b873588429301d5bfa80247304402206ea2865ecb9d902c8106db025b32cb485439db6daf31772806f9cf11815a10be02205e0347b8940a72eb394678316f05345062d84c91bbb221f48b584436951395df012102cd3154911e5d3f0dd8141a848af0f2f71983615dc048911e9fa68b8cf85964a600000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 68517 @@ -8716,26 +8732,26 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "tx_index": 60 } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "memo": null, "quantity": 10000, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "status": "valid", - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "tx_index": 60, "asset_info": { "divisible": true, @@ -8748,19 +8764,19 @@ } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "CREDIT", "params": { - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -8772,19 +8788,19 @@ } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 193, - "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -8796,27 +8812,27 @@ } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726950434.0695176, + "block_time": 1727000606.3219044, "btc_amount": 0, - "data": "0200000000000000010000000000002710802d892d9d215a3e35d0fffb2b3e7cabdb14d24549", + "data": "0200000000000000010000000000002710802fe54076791a6e2ac138ef00abb24f8185f125ab", "destination": "", "fee": 10000, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "tx_index": 60, - "utxos_info": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94:1", + "utxos_info": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "memo": null, "asset_info": { "divisible": true, @@ -8838,19 +8854,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "CREDIT", "params": { - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -8868,26 +8884,26 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "tx_index": 60 } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "memo": null, "quantity": 10000, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "status": "valid", - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "tx_index": 60, "asset_info": { "divisible": true, @@ -8900,19 +8916,19 @@ } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "CREDIT", "params": { - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -8924,19 +8940,19 @@ } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 193, - "event": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -8948,27 +8964,27 @@ } }, { - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1726950434.0695176, + "block_time": 1727000606.3219044, "btc_amount": 0, - "data": "0200000000000000010000000000002710802d892d9d215a3e35d0fffb2b3e7cabdb14d24549", + "data": "0200000000000000010000000000002710802fe54076791a6e2ac138ef00abb24f8185f125ab", "destination": "", "fee": 10000, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", - "tx_hash": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", "tx_index": 60, - "utxos_info": "e90460a24eccbb5081fcadc519dd3a80ee919adbb0195bba214597e95a7cdf94:1", + "utxos_info": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "memo": null, "asset_info": { "divisible": true, @@ -9003,15 +9019,15 @@ "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", "block_index": 193, - "block_time": 1726950429, + "block_time": 1727000592, "difficulty": 545259519, - "previous_block_hash": "5377165a0880d53ad173e3c10117760b17ebb154e9ec02c2429cf811a5c7878e" + "previous_block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383" }, "tx_hash": null, "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 } ], "next_cursor": 518, @@ -9023,17 +9039,17 @@ "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "473bdaafcb3e0e6034d0d9ec27da92e4b0b8ccb1e9e134bfff5d0e2923a71b7c", + "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", "block_index": 193, - "block_time": 1726950429, + "block_time": 1727000592, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "tx_index": 59, - "utxos_info": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98:1", + "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -9053,9 +9069,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 } ], "next_cursor": 519, @@ -9069,16 +9085,16 @@ "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "destination": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "out_index": 0, - "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", "tx_index": 33, - "block_time": 1726950217, + "block_time": 1727000400, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", "block_index": 146, - "block_time": 1726950217 + "block_time": 1727000400 } ], "next_cursor": 237, @@ -9091,15 +9107,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "63a6c629a7931bf4ab95199c14d72b7107f4b67fe1016fd7ef86c46cda08f525", - "messages_hash": "23842303434d08be147fa466bf64d349514dfe974632337ad9fa811889fd80b9", + "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", + "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", "transaction_count": 1, - "txlist_hash": "f5c69e96eafa7a1001b041ef560463cbfce7d7e02b0a1b444b6a16ccbbfd5d89", - "block_time": 1726950429 + "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", + "block_time": 1727000592 }, "tx_hash": null, "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 } ], "next_cursor": 529, @@ -9112,12 +9128,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "tx_index": 59 }, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 } ], "next_cursor": 528, @@ -9130,15 +9146,15 @@ "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 193, - "event": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "event": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -9148,9 +9164,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 } ], "next_cursor": 525, @@ -9162,16 +9178,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1726950425, + "block_time": 1727000588, "asset_info": { "divisible": true, "asset_longname": null, @@ -9181,9 +9197,9 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 } ], "next_cursor": 524, @@ -9197,14 +9213,14 @@ "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "memo": null, "quantity": 10000, - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "status": "valid", - "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d", + "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50", "tx_index": 53, - "block_time": 1726950394, + "block_time": 1727000567, "asset_info": { "divisible": true, "asset_longname": null, @@ -9214,9 +9230,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "2f2a275f2575cdfaf4b75ac1ce536b9e2db124de976957d1af7bd10319a5ca5d", + "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50", "block_index": 187, - "block_time": 1726950394 + "block_time": 1727000567 } ], "next_cursor": null, @@ -9230,15 +9246,15 @@ "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "status": "valid", - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "tx_index": 54, - "block_time": 1726950398, + "block_time": 1727000571, "asset_info": { "divisible": true, "asset_longname": null, @@ -9248,9 +9264,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "c41c35e53f1085213addb1e4536f40de562d2173c06c2d84ad1d5b39222378f4", + "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", "block_index": 188, - "block_time": 1726950398 + "block_time": 1727000571 } ], "next_cursor": 495, @@ -9273,20 +9289,20 @@ "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "status": "valid", - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "tx_index": 58, - "block_time": 1726950425, + "block_time": 1727000588, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "5592cfe7615af21968458eadb208585ec074acdef378ac947409a7390b491199", + "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", "block_index": 192, - "block_time": 1726950425 + "block_time": 1727000588 } ], "next_cursor": null, @@ -9303,15 +9319,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "status": "valid", - "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", + "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", "tx_index": 40, - "block_time": 1726950256, + "block_time": 1727000430, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, @@ -9325,9 +9341,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "cccec4da49d1a3328017341c39fac2ae50ad5a4e22a54c0ae27551c7b6a9bd85", + "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", "block_index": 153, - "block_time": 1726950256 + "block_time": 1727000430 } ], "next_cursor": null, @@ -9348,11 +9364,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 159, - "block_time": 1726950282 + "block_time": 1727000465 }, - "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", + "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", "block_index": 159, - "block_time": 1726950282 + "block_time": 1727000465 } ], "next_cursor": 367, @@ -9375,22 +9391,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "status": "valid", "transfer": false, - "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", + "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", "tx_index": 46, - "block_time": 1726950282, + "block_time": 1727000465, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "9272039e373fbe1c5b5b826d9dacb5dd3614beee9afc35f106c162a4f2ecec88", + "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", "block_index": 159, - "block_time": 1726950282 + "block_time": 1727000465 } ], "next_cursor": 374, @@ -9405,12 +9421,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qh67hvrfwr95xleqc2c2zl3z78svtagjfdvlday", + "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", "status": "valid", "tag": "64657374726f79", - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "tx_index": 59, - "block_time": 1726950429, + "block_time": 1727000592, "asset_info": { "divisible": true, "asset_longname": null, @@ -9420,9 +9436,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "e24261fc938f783e7ddacf601c58e58a1b7c2367aab61c521efc8cba6048db98", + "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", "block_index": 193, - "block_time": 1726950429 + "block_time": 1727000592 } ], "next_cursor": 157, @@ -9447,11 +9463,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "status": "open", - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "tx_index": 57, - "block_time": 1726950421, + "block_time": 1727000584, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9475,9 +9491,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "b662398699fb4a0310f85da9cb71bbc80bb91b674e2a7f7a54f99f688f08f055", + "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", "block_index": 191, - "block_time": 1726950421 + "block_time": 1727000584 } ], "next_cursor": 502, @@ -9495,20 +9511,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0", + "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", "tx0_index": 49, - "tx1_address": "bcrt1q9kyjm8fptglrt58llv4nul9tmv2dy32fcmw779", + "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "tx1_index": 52, - "block_time": 1726950389, + "block_time": 1727000563, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9527,9 +9543,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "f18a6458ec42b6ffb621a67ed5c17c36aa768f14d0087e3ae0e74f0830d93448", + "tx_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", "block_index": 186, - "block_time": 1726950389 + "block_time": 1727000563 } ], "next_cursor": 461, @@ -9542,11 +9558,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26" + "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81" }, - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "block_index": 190, - "block_time": 1726950417 + "block_time": 1727000580 } ], "next_cursor": 476, @@ -9559,11 +9575,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec" + "tx_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7" }, - "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", + "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", "block_index": 185, - "block_time": 1726950385 + "block_time": 1727000558 } ], "next_cursor": null, @@ -9575,13 +9591,13 @@ "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", - "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", + "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", "status": "completed" }, - "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", + "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", "block_index": 185, - "block_time": 1726950385 + "block_time": 1727000558 } ], "next_cursor": 440, @@ -9595,18 +9611,18 @@ "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "order_match_id": "e78b6cd1adc54c627555204a7126ddf5cc047b1340fea47403c86a1c80470bc0_1b44ecadb2bbf69ab8b0984672c7b2e26295e522a8993173f93d9824f55867ec", - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "status": "valid", - "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", + "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", "tx_index": 51, - "block_time": 1726950385, + "block_time": 1727000558, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "f93a7e8d4c35e3d8b52b5e6983b05bca7668e09ca514bdfbb1e972332fc6f8f5", + "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", "block_index": 185, - "block_time": 1726950385 + "block_time": 1727000558 } ], "next_cursor": null, @@ -9619,16 +9635,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "b6256205e1c61ba42dd9ad6871dadc772e31facaec3a5b2d8d221c60f1fbfc26", - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "status": "valid", - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "tx_index": 56, - "block_time": 1726950417 + "block_time": 1727000580 }, - "tx_hash": "cd7f56c0f08e130bc2dfbfadceec890e3be23830c8f7824ab57c466eb1d269fd", + "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", "block_index": 190, - "block_time": 1726950417 + "block_time": 1727000580 } ], "next_cursor": null, @@ -9641,13 +9657,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "block_time": 1726950308 + "order_hash": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "block_time": 1727000481 }, "tx_hash": null, "block_index": 182, - "block_time": 1726950308 + "block_time": 1727000481 } ], "next_cursor": 446, @@ -9660,14 +9676,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "e4cf7100c7e91a2c52abb813ac1fc16ab410f9d46d76c49cf05cb3ee83754888_6ff8c85d0471568ece5040d63f699350c321a01d71daf0f6059dd5c4c4019f4d", - "tx0_address": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "tx1_address": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", - "block_time": 1726950308 + "order_match_id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "block_time": 1727000481 }, "tx_hash": null, "block_index": 182, - "block_time": 1726950308 + "block_time": 1727000481 } ], "next_cursor": null, @@ -9685,14 +9701,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", - "origin": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "satoshirate": 1, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "status": 0, - "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", "tx_index": 32, - "block_time": 1726950213, + "block_time": 1727000396, "asset_info": { "divisible": true, "asset_longname": null, @@ -9705,9 +9721,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", "block_index": 145, - "block_time": 1726950213 + "block_time": 1727000396 } ], "next_cursor": 254, @@ -9722,9 +9738,9 @@ "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "status": 0, - "tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", + "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", "asset_info": { "divisible": true, "asset_longname": null, @@ -9734,9 +9750,9 @@ }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", "block_index": 146, - "block_time": 1726950217 + "block_time": 1727000400 } ], "next_cursor": 260, @@ -9750,13 +9766,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "myw2gnUjyQk3M8df2PczAdDghPFxkySJAb", + "destination": "n3bwtSMx8SHqqv1MnQA3ciCsFvUSWkfbeo", "dispense_quantity": 10, - "dispenser_tx_hash": "4aef4b2cfe62258d0d0baa1b587dca3ff62ce9f1e220dcda0e2afc785991e4d8", - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", - "tx_hash": "da3e84b4976d41d317b9af30be69bf3e402f496316d4b7be76dfa6882ef99186", + "dispenser_tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx_hash": "4c6a5cc906f2dbfa0d91de293e9e2831b193f4122ff68273a78c85c46c2b5123", "tx_index": 31, - "block_time": 1726950210, + "block_time": 1727000392, "asset_info": { "divisible": true, "asset_longname": null, @@ -9766,9 +9782,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "da3e84b4976d41d317b9af30be69bf3e402f496316d4b7be76dfa6882ef99186", + "tx_hash": "4c6a5cc906f2dbfa0d91de293e9e2831b193f4122ff68273a78c85c46c2b5123", "block_index": 144, - "block_time": 1726950210 + "block_time": 1727000392 } ], "next_cursor": null, @@ -9783,14 +9799,14 @@ "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qn2r56n89hd7vdl8c38vdvx3u6en703pamf2lgh", + "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "6bcf78b7127f71971f15fa8a59692e822cb8dd9a0eeb37c97fe40113fc928851", - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", - "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", "tx_index": 33, - "block_time": 1726950217, + "block_time": 1727000400, "asset_info": { "divisible": true, "asset_longname": null, @@ -9801,9 +9817,9 @@ "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "240a08a451797add73f8b01407ae47da0d0d0ac232be424989f080cf86751387", + "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", "block_index": 146, - "block_time": 1726950217 + "block_time": 1727000400 } ], "next_cursor": 240, @@ -9818,19 +9834,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qm4z3wzvm3d8y23nc5p3n8q7uv8kevkefk54d2h", + "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198", + "tx_hash": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf", "tx_index": 25, "value": 66600.0, - "block_time": 1726950185, + "block_time": 1727000366, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "499f4bc62f161e1a8d876263aa7b1a5d6633b04b86e914aade540ba251375198", + "tx_hash": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf", "block_index": 138, - "block_time": 1726950185 + "block_time": 1727000366 } ], "next_cursor": 213, @@ -9861,16 +9877,16 @@ "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "start_block": 0, "status": "open", - "tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", + "tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", "tx_index": 22, - "block_time": 1726950172 + "block_time": 1727000354 }, - "tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", + "tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", "block_index": 135, - "block_time": 1726950172 + "block_time": 1727000354 } ], "next_cursor": 161, @@ -9883,11 +9899,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "e69f3ddbfd1ba8c631b757819d7664ca2bc7041fcd5a75be8e2711eea2cac9f8" + "tx_hash": "7db72c3a3d73085625f2f30f21a6937c09222727d2b9942e21aec693b24bf08e" }, "tx_hash": null, "block_index": 130, - "block_time": 1726950151 + "block_time": 1727000322 } ], "next_cursor": 110, @@ -9903,24 +9919,24 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "8673e4373d50ca2ce83017ee98bd6ef0d0d20ae81e537f54b430df38c6bc172d", + "fairminter_tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", "paid_quantity": 34, - "source": "bcrt1q5teeh6veyfl58y3nly4leysh2vrsfypn4z2p7h", + "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", "status": "valid", - "tx_hash": "34bec257ccf1f8c374493fc15f7cbb1af6846494d3b097680b0826b82f088d9d", + "tx_hash": "8a9a1f916ad7518fbbdca58817a4ac2b58533c0a9768c4f1ca05778acb75e7d1", "tx_index": 23, - "block_time": 1726950177, + "block_time": 1727000358, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false } }, - "tx_hash": "34bec257ccf1f8c374493fc15f7cbb1af6846494d3b097680b0826b82f088d9d", + "tx_hash": "8a9a1f916ad7518fbbdca58817a4ac2b58533c0a9768c4f1ca05778acb75e7d1", "block_index": 136, - "block_time": 1726950177 + "block_time": 1727000358 } ], "next_cursor": 190, @@ -9934,28 +9950,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae:1", + "destination": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "status": "valid", - "tx_hash": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", + "tx_hash": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", "tx_index": 38, - "block_time": 1726950248, + "block_time": 1727000422, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "2bd8ebce63bdb40be9a384aeaed3b28d260bcd84679b61ea8dd5e233f5d27aae", + "tx_hash": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", "block_index": 151, - "block_time": 1726950248 + "block_time": 1727000422 } ], "next_cursor": 291, @@ -9969,28 +9985,28 @@ "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qjtaw0zshvxcpkp63ek9dueqz0hgqkgxxgx7fuj", + "destination": "bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "facd73ce7e552dab11a369e33253c91a09a63e697ed4542f29c5e0a118eb3a01:0", + "source": "9b353d1cbb0a30108e4f9cc683852d659f4f611c141bab3af77efc10ab93dc4a:0", "status": "valid", - "tx_hash": "c687f93269aa03f150204db384563efed1dfa9dd7319d77a879e3a346e36471c", + "tx_hash": "804df83cded11a27f2118503527164d631474a075cd88df3e7f0d09a972d3cf6", "tx_index": 37, - "block_time": 1726950243, + "block_time": 1727000417, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0z3ep8wjwxpajplygjd9a7u2dmkygw7jhph2k2", + "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c687f93269aa03f150204db384563efed1dfa9dd7319d77a879e3a346e36471c", + "tx_hash": "804df83cded11a27f2118503527164d631474a075cd88df3e7f0d09a972d3cf6", "block_index": 150, - "block_time": 1726950243 + "block_time": 1727000417 } ], "next_cursor": null, @@ -10004,14 +10020,14 @@ "params": { "asset": "XCP", "block_index": 155, - "destination": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee:1", + "destination": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3:1", "msg_index": 1, "quantity": 1500000000, - "source": "163c20b3bb4f0e8a127d2398d6a1fe9d182e9bf75be3f3af24aa8cbd4651f78f:0", + "source": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881:0", "status": "valid", - "tx_hash": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", + "tx_hash": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", "tx_index": 42, - "block_time": 1726950266, + "block_time": 1727000439, "asset_info": { "divisible": true, "asset_longname": null, @@ -10021,9 +10037,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "4e17c5cb4bc3142270a0570745ca581775fb483156941e8b10593adfcf6c68ee", + "tx_hash": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", "block_index": 155, - "block_time": 1726950266 + "block_time": 1727000439 } ], "next_cursor": 346, @@ -10038,17 +10054,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qwqs0vxzwhmrrq95fnvdhz0dlywewnjusllcjc7", + "source": "bcrt1qyulh8dt9j6mxay44vsk59ykh3j0sepu4nr8frk", "status": "valid", - "tx_hash": "b59307cc2ac4f942129759aae2c01c6787c312068f1f9274b9fca33b37cf2b5b", + "tx_hash": "adfbd46bafe5d0eb02dc42e71c6ebd831574fbcbc27598f3a574cd28a015cc8b", "tx_index": 9, - "block_time": 1726950113, + "block_time": 1727000284, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "b59307cc2ac4f942129759aae2c01c6787c312068f1f9274b9fca33b37cf2b5b", + "tx_hash": "adfbd46bafe5d0eb02dc42e71c6ebd831574fbcbc27598f3a574cd28a015cc8b", "block_index": 121, - "block_time": 1726950113 + "block_time": 1727000284 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/util_test.py b/counterparty-core/counterpartycore/test/util_test.py index db085d4343..20f3456043 100644 --- a/counterparty-core/counterpartycore/test/util_test.py +++ b/counterparty-core/counterpartycore/test/util_test.py @@ -633,8 +633,6 @@ def run_scenario(scenario): raw_transactions = [] - transaction.initialise(force=True) - for tx in scenario: if tx[0] != "create_next_block": mock_protocol_changes = tx[3] if len(tx) == 4 else {} diff --git a/counterparty-core/counterpartycore/test/utxolocks_test.py b/counterparty-core/counterpartycore/test/utxolocks_test.py index db4e36fc65..33e1b8d384 100644 --- a/counterparty-core/counterpartycore/test/utxolocks_test.py +++ b/counterparty-core/counterpartycore/test/utxolocks_test.py @@ -27,7 +27,7 @@ def construct_tx(db, source, destination, disable_utxo_locks=False, inputs_set=N def test_utxolocks(server_db): - transaction.initialise(force=True) # reset UTXO_LOCKS + transaction.UTXOLocks().init(utxo_locks_max_addresses=10) # reset UTXO_LOCKS """it shouldn't use the same UTXO""" tx1hex = construct_tx( @@ -50,7 +50,7 @@ def test_utxolocks(server_db): def test_utxolocks_custom_input(server_db): - transaction.initialise(force=True) # reset UTXO_LOCKS + transaction.UTXOLocks().init(utxo_locks_max_addresses=10) # reset UTXO_LOCKS """it should use the same UTXO""" inputs_set = [ @@ -91,7 +91,7 @@ def test_utxolocks_custom_input(server_db): def test_disable_utxolocks(server_db): - transaction.initialise(force=True) # reset UTXO_LOCKS + transaction.UTXOLocks().init(utxo_locks_max_addresses=10) # reset UTXO_LOCKS """with `disable_utxo_locks=True` it should use the same UTXO""" tx1hex = construct_tx( From 5434abb7ddcd12d5b6bd5bfe69552b16a3f7af2a Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 22 Sep 2024 19:20:48 +0000 Subject: [PATCH 26/46] Refactor transaction.py phase 4 --- apiary.apib | 3762 +++++++++-------- .../counterpartycore/lib/api/api_v1.py | 37 +- .../counterpartycore/lib/api/compose.py | 74 +- .../counterpartycore/lib/transaction.py | 151 +- .../counterpartycore/test/arc4_test.py | 4 +- .../test/bytespersigop_test.py | 22 +- .../test/estimate_fee_per_kb_test.py | 8 +- .../test/fixtures/api_v2_fixtures.json | 900 ++-- .../fixtures/contract_vectors/transaction.py | 800 ++++ .../counterpartycore/test/fixtures/vectors.py | 577 +-- .../test/p2sh_encoding_test.py | 31 +- .../test/regtest/apidoc/apicache.json | 3106 +++++++------- .../test/regtest/testscenarios.py | 2 +- .../counterpartycore/test/util_test.py | 1 + .../counterpartycore/test/utxolocks_test.py | 12 +- 15 files changed, 5058 insertions(+), 4429 deletions(-) create mode 100644 counterparty-core/counterpartycore/test/fixtures/contract_vectors/transaction.py diff --git a/apiary.apib b/apiary.apib index 998b75303b..f34459c7bf 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-09-22 10:23:38.464660. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-09-22 19:02:43.111130. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -179,15 +179,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", "block_index": 193, - "block_time": 1727000592, + "block_time": 1727031747, "difficulty": 545259519, - "previous_block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383" + "previous_block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736" }, "tx_hash": null, "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 } ], "next_cursor": 518, @@ -204,17 +204,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", "block_index": 193, - "block_time": 1727000592, + "block_time": 1727031747, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "tx_index": 59, - "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", + "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -234,9 +234,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 } ], "next_cursor": 519, @@ -255,16 +255,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "destination": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "out_index": 0, - "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", "tx_index": 33, - "block_time": 1727000400, + "block_time": 1727031536, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", "block_index": 146, - "block_time": 1727000400 + "block_time": 1727031536 } ], "next_cursor": 237, @@ -282,15 +282,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", - "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", + "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", + "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", "transaction_count": 1, - "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", - "block_time": 1727000592 + "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", + "block_time": 1727031747 }, "tx_hash": null, "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 } ], "next_cursor": 529, @@ -308,12 +308,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "tx_index": 59 }, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 } ], "next_cursor": 528, @@ -333,15 +333,15 @@ Here is a list of events classified by theme and for each an example response: "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 193, - "event": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "event": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -351,9 +351,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 } ], "next_cursor": 525, @@ -370,16 +370,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -389,9 +389,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 } ], "next_cursor": 524, @@ -410,14 +410,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "memo": null, "quantity": 10000, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "status": "valid", - "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50", + "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763", "tx_index": 53, - "block_time": 1727000567, + "block_time": 1727031711, "asset_info": { "divisible": true, "asset_longname": null, @@ -427,9 +427,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50", + "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763", "block_index": 187, - "block_time": 1727000567 + "block_time": 1727031711 } ], "next_cursor": null, @@ -448,15 +448,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "status": "valid", - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "tx_index": 54, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "divisible": true, "asset_longname": null, @@ -466,9 +466,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "block_time": 1727000571 + "block_time": 1727031716 } ], "next_cursor": 495, @@ -506,20 +506,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "status": "valid", - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, - "block_time": 1727000588, + "block_time": 1727031743, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 } ], "next_cursor": null, @@ -541,15 +541,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": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "status": "valid", - "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", + "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", "tx_index": 40, - "block_time": 1727000430, + "block_time": 1727031565, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -563,9 +563,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": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", + "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", "block_index": 153, - "block_time": 1727000430 + "block_time": 1727031565 } ], "next_cursor": null, @@ -598,11 +598,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": 159, - "block_time": 1727000465 + "block_time": 1727031601 }, - "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", + "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", "block_index": 159, - "block_time": 1727000465 + "block_time": 1727031601 } ], "next_cursor": 367, @@ -630,22 +630,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": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "status": "valid", "transfer": false, - "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", + "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", "tx_index": 46, - "block_time": 1727000465, + "block_time": 1727031601, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", + "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", "block_index": 159, - "block_time": 1727000465 + "block_time": 1727031601 } ], "next_cursor": 374, @@ -665,12 +665,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "status": "valid", "tag": "64657374726f79", - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "tx_index": 59, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -680,9 +680,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 } ], "next_cursor": 157, @@ -714,11 +714,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": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "status": "open", - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "tx_index": 57, - "block_time": 1727000584, + "block_time": 1727031738, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -742,9 +742,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": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "block_time": 1727000584 + "block_time": 1727031738 } ], "next_cursor": 502, @@ -767,20 +767,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": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", "tx0_index": 49, - "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "tx1_index": 52, - "block_time": 1727000563, + "block_time": 1727031707, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -799,9 +799,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": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "tx_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "block_index": 186, - "block_time": 1727000563 + "block_time": 1727031707 } ], "next_cursor": 461, @@ -819,11 +819,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81" + "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a" }, - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "block_index": 190, - "block_time": 1727000580 + "block_time": 1727031724 } ], "next_cursor": 476, @@ -841,11 +841,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7" + "tx_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4" }, - "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", + "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", "block_index": 185, - "block_time": 1727000558 + "block_time": 1727031703 } ], "next_cursor": null, @@ -862,13 +862,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", - "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "status": "completed" }, - "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", + "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", "block_index": 185, - "block_time": 1727000558 + "block_time": 1727031703 } ], "next_cursor": 440, @@ -887,18 +887,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "status": "valid", - "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", + "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", "tx_index": 51, - "block_time": 1727000558, + "block_time": 1727031703, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", + "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", "block_index": 185, - "block_time": 1727000558 + "block_time": 1727031703 } ], "next_cursor": null, @@ -916,16 +916,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "status": "valid", - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "tx_index": 56, - "block_time": 1727000580 + "block_time": 1727031724 }, - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "block_index": 190, - "block_time": 1727000580 + "block_time": 1727031724 } ], "next_cursor": null, @@ -943,13 +943,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "block_time": 1727000481 + "order_hash": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "block_time": 1727031616 }, "tx_hash": null, "block_index": 182, - "block_time": 1727000481 + "block_time": 1727031616 } ], "next_cursor": 446, @@ -967,14 +967,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "block_time": 1727000481 + "order_match_id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "block_time": 1727031616 }, "tx_hash": null, "block_index": 182, - "block_time": 1727000481 + "block_time": 1727031616 } ], "next_cursor": null, @@ -999,14 +999,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": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", - "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "satoshirate": 1, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "status": 0, - "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", "tx_index": 32, - "block_time": 1727000396, + "block_time": 1727031531, "asset_info": { "divisible": true, "asset_longname": null, @@ -1019,9 +1019,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": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", "block_index": 145, - "block_time": 1727000396 + "block_time": 1727031531 } ], "next_cursor": 254, @@ -1041,9 +1041,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "status": 0, - "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", "asset_info": { "divisible": true, "asset_longname": null, @@ -1053,9 +1053,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", "block_index": 146, - "block_time": 1727000400 + "block_time": 1727031536 } ], "next_cursor": 260, @@ -1074,13 +1074,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "n3bwtSMx8SHqqv1MnQA3ciCsFvUSWkfbeo", + "destination": "n2FYo3mrzKRadxtnoovPfHyBikXVxXta5Y", "dispense_quantity": 10, - "dispenser_tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "tx_hash": "4c6a5cc906f2dbfa0d91de293e9e2831b193f4122ff68273a78c85c46c2b5123", + "dispenser_tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx_hash": "12cff7ed44f7f2a7e9a0fca9448cafbb92641815b36160fff5a0181d181bf0d0", "tx_index": 31, - "block_time": 1727000392, + "block_time": 1727031527, "asset_info": { "divisible": true, "asset_longname": null, @@ -1090,9 +1090,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "4c6a5cc906f2dbfa0d91de293e9e2831b193f4122ff68273a78c85c46c2b5123", + "tx_hash": "12cff7ed44f7f2a7e9a0fca9448cafbb92641815b36160fff5a0181d181bf0d0", "block_index": 144, - "block_time": 1727000392 + "block_time": 1727031527 } ], "next_cursor": null, @@ -1112,14 +1112,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", + "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", - "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", "tx_index": 33, - "block_time": 1727000400, + "block_time": 1727031536, "asset_info": { "divisible": true, "asset_longname": null, @@ -1130,9 +1130,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", "block_index": 146, - "block_time": 1727000400 + "block_time": 1727031536 } ], "next_cursor": 240, @@ -1154,19 +1154,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": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf", + "tx_hash": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06", "tx_index": 25, "value": 66600.0, - "block_time": 1727000366, + "block_time": 1727031502, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf", + "tx_hash": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06", "block_index": 138, - "block_time": 1727000366 + "block_time": 1727031502 } ], "next_cursor": 213, @@ -1204,16 +1204,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "start_block": 0, "status": "open", - "tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", + "tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", "tx_index": 22, - "block_time": 1727000354 + "block_time": 1727031489 }, - "tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", + "tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", "block_index": 135, - "block_time": 1727000354 + "block_time": 1727031489 } ], "next_cursor": 161, @@ -1231,11 +1231,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "7db72c3a3d73085625f2f30f21a6937c09222727d2b9942e21aec693b24bf08e" + "tx_hash": "f0dfc17c191520c1e2ba90abccbcc857553adf8a4e40722685a17b81ff2f781a" }, "tx_hash": null, "block_index": 130, - "block_time": 1727000322 + "block_time": 1727031468 } ], "next_cursor": 110, @@ -1256,24 +1256,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", + "fairminter_tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", "paid_quantity": 34, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "status": "valid", - "tx_hash": "8a9a1f916ad7518fbbdca58817a4ac2b58533c0a9768c4f1ca05778acb75e7d1", + "tx_hash": "ede174d6ebd168d04cfbc10891f9d7eb903c0d105cd7455db87566871ceb66a4", "tx_index": 23, - "block_time": 1727000358, + "block_time": 1727031494, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } }, - "tx_hash": "8a9a1f916ad7518fbbdca58817a4ac2b58533c0a9768c4f1ca05778acb75e7d1", + "tx_hash": "ede174d6ebd168d04cfbc10891f9d7eb903c0d105cd7455db87566871ceb66a4", "block_index": 136, - "block_time": 1727000358 + "block_time": 1727031494 } ], "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": 151, - "destination": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86:1", + "destination": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "status": "valid", - "tx_hash": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", + "tx_hash": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", "tx_index": 38, - "block_time": 1727000422, + "block_time": 1727031557, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", + "tx_hash": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", "block_index": 151, - "block_time": 1727000422 + "block_time": 1727031557 } ], "next_cursor": 291, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv", + "destination": "bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "9b353d1cbb0a30108e4f9cc683852d659f4f611c141bab3af77efc10ab93dc4a:0", + "source": "eabb3b7be615850b99b1401f3f242c8fa8e18d2d0ba58915a003fa589718cf11:0", "status": "valid", - "tx_hash": "804df83cded11a27f2118503527164d631474a075cd88df3e7f0d09a972d3cf6", + "tx_hash": "b24c9eeabf64bf130cf647b5b044590691cd4d002ece233465f257abf436ad6c", "tx_index": 37, - "block_time": 1727000417, + "block_time": 1727031553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "804df83cded11a27f2118503527164d631474a075cd88df3e7f0d09a972d3cf6", + "tx_hash": "b24c9eeabf64bf130cf647b5b044590691cd4d002ece233465f257abf436ad6c", "block_index": 150, - "block_time": 1727000417 + "block_time": 1727031553 } ], "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": 155, - "destination": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3:1", + "destination": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a:1", "msg_index": 1, "quantity": 1500000000, - "source": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881:0", + "source": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1:0", "status": "valid", - "tx_hash": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", + "tx_hash": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", "tx_index": 42, - "block_time": 1727000439, + "block_time": 1727031574, "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": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", + "tx_hash": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", "block_index": 155, - "block_time": 1727000439 + "block_time": 1727031574 } ], "next_cursor": 346, @@ -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": "bcrt1qyulh8dt9j6mxay44vsk59ykh3j0sepu4nr8frk", + "source": "bcrt1qyqvw64v3g6jjw0hkydjnz03emknd689c9m445j", "status": "valid", - "tx_hash": "adfbd46bafe5d0eb02dc42e71c6ebd831574fbcbc27598f3a574cd28a015cc8b", + "tx_hash": "6428abb0788142a72920efd1a8b5dcdde89c7f503ca062322bcd573acac0e136", "tx_index": 9, - "block_time": 1727000284, + "block_time": 1727031432, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "adfbd46bafe5d0eb02dc42e71c6ebd831574fbcbc27598f3a574cd28a015cc8b", + "tx_hash": "6428abb0788142a72920efd1a8b5dcdde89c7f503ca062322bcd573acac0e136", "block_index": 121, - "block_time": 1727000284 + "block_time": 1727031432 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 193, - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", - "block_time": 1727000592, - "previous_block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_time": 1727031747, + "previous_block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", "difficulty": 545259519, - "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", - "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", - "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", + "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", + "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", + "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", - "block_time": 1727000588, - "previous_block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", + "block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", + "block_time": 1727031743, + "previous_block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", "difficulty": 545259519, - "ledger_hash": "15632ba5d9e0895c4d08741144412482f4139debf47f441ab56fb1e57ed8138f", - "txlist_hash": "368c248e7398223aa41a3340c90cdf4dbb04242b72ff24d17c2f0ca3dc12f278", - "messages_hash": "32203dd37a810d45ca8e0e7b7e881a80c4fc0936de0773934100b9e004dec5db", + "ledger_hash": "fa0b578aced75a2921d789d45e44adfd47e5d88461643b2ce6ea1ceb910adad1", + "txlist_hash": "2c7de06f03054aca49c6c2f06ddc5ec8bd61983af282e627ed9f50585bd202d8", + "messages_hash": "090feaaedca28407d3331bc3fe26eebf0530ca50ebd9e2da53bf8540c21f8a62", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", - "block_time": 1727000584, - "previous_block_hash": "52ce8354391192adc1549d6a4e70e552a9bf49e64fbe115795e8c12b930962da", + "block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", + "block_time": 1727031738, + "previous_block_hash": "1e1af2aaab6cfea61a31d3c2cda9e566643cab68018f3b8071bf25da826b9a80", "difficulty": 545259519, - "ledger_hash": "d18e2ab61c10e86d0af7732ffdd5820eb389929a4e407abb1c365a617f8d6b0b", - "txlist_hash": "561be60c6188aaf9b9739b32dd8412cc70dc3617c76e8d632b362b43dee08430", - "messages_hash": "2e4972f8597cc95a484278f9dfa38024b000032151b59686982a1fb01db3ba93", + "ledger_hash": "819df0c3e08eb202c13f42015c631ff2930b5d88e353a12cb0dd87a665b3161f", + "txlist_hash": "a7a675b242b6d548ce6ec2e153192f4585eded5175a62fd9e05fdf51c56cf8c1", + "messages_hash": "eb0766f796663bf744df95fd3479e7fd22221c5d7c916d4fa8db0b30f36fb871", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "52ce8354391192adc1549d6a4e70e552a9bf49e64fbe115795e8c12b930962da", - "block_time": 1727000580, - "previous_block_hash": "54d2df0dc01af39d0d576efb398561deadcc34ad173c7198659cdf1d74b2a381", + "block_hash": "1e1af2aaab6cfea61a31d3c2cda9e566643cab68018f3b8071bf25da826b9a80", + "block_time": 1727031724, + "previous_block_hash": "4b4c3d089292ec004e7c2f38f68a929bba6d7c6e6101db9616fe21b785fae411", "difficulty": 545259519, - "ledger_hash": "2706a8e0018214c252b27e5fca2d560ee6600592b07c64cbea3f2cce4257a7b5", - "txlist_hash": "d69dfbce2e19c5f8c5d37a160dc91344356c819ce0769d700284e5eeeecf451c", - "messages_hash": "57cfc46c395bb777cdbec3f62168108639ab667937ee3c36d8b89b914e9e0c73", + "ledger_hash": "0099ef580927aaadd3a4cdd5697bf92e1a50a1fd8e2d3170753ce6630c24d405", + "txlist_hash": "86415c7a3a453a12483a9aae337e80e414bcbff7c90b489516acb9d140b6b861", + "messages_hash": "683adc9e8b2cc2d071e0c233d29de6e5bd98870cb12cc2b80ca5c5180df7ba76", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "54d2df0dc01af39d0d576efb398561deadcc34ad173c7198659cdf1d74b2a381", - "block_time": 1727000575, - "previous_block_hash": "3af24eb207ec7c93df870ce901057933a0a9e906e1569a624ebe4cd15e5e7a5e", + "block_hash": "4b4c3d089292ec004e7c2f38f68a929bba6d7c6e6101db9616fe21b785fae411", + "block_time": 1727031720, + "previous_block_hash": "7aebb16eecf937a615a0835e17c17a727757a47eff751dbe07bf38199690cf08", "difficulty": 545259519, - "ledger_hash": "6de3e17e9fa33f63205fb4aaf5fa1490d686da1a69893e7108947f04a2d24e6d", - "txlist_hash": "a7ce6c6d7eb0535f61853f5a8a642cbaad7c2abfe166ebcc7428169db11547d1", - "messages_hash": "0c694347e9858f45693f03f2e6479294d56ed4a23edb110d3c5c82065de30190", + "ledger_hash": "0b26ae6a4101f8ee1171c73abb8eb127ce3858e0636eb007e197d874f6585c14", + "txlist_hash": "774182af21312f5df376340be52610f164eb091908d4fc958181a876965bbb3a", + "messages_hash": "48c2cfa20f6d110df351d1f08373fc78ec72329ff9baa5ed0e3e0c895348c7ef", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 193, - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", - "block_time": 1727000592, - "previous_block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_time": 1727031747, + "previous_block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", "difficulty": 545259519, - "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", - "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", - "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", + "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", + "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", + "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d` (str, required) - The index of the block to return + + block_hash: `64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c` (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": 193, - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", - "block_time": 1727000592, - "previous_block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_time": 1727031747, + "previous_block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", "difficulty": 545259519, - "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", - "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", - "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", + "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", + "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", + "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 59, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", - "block_time": 1727000592, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_time": 1727031747, + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", + "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1706,11 +1706,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "15632ba5d9e0895c4d08741144412482f4139debf47f441ab56fb1e57ed8138f", - "messages_hash": "32203dd37a810d45ca8e0e7b7e881a80c4fc0936de0773934100b9e004dec5db", + "ledger_hash": "fa0b578aced75a2921d789d45e44adfd47e5d88461643b2ce6ea1ceb910adad1", + "messages_hash": "090feaaedca28407d3331bc3fe26eebf0530ca50ebd9e2da53bf8540c21f8a62", "transaction_count": 1, - "txlist_hash": "368c248e7398223aa41a3340c90cdf4dbb04242b72ff24d17c2f0ca3dc12f278", - "block_time": 1727000588 + "txlist_hash": "2c7de06f03054aca49c6c2f06ddc5ec8bd61983af282e627ed9f50585bd202d8", + "block_time": 1727031743 }, "tx_hash": null }, @@ -1719,43 +1719,43 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58 }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "status": "valid", - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, - "block_time": 1727000588, + "block_time": 1727031743, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -1765,22 +1765,22 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "XCP", "block_index": 192, - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -1790,7 +1790,7 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" } ], "next_cursor": 524, @@ -1873,16 +1873,16 @@ Returns the events of a block filtered by event "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -1892,57 +1892,57 @@ Returns the events of a block filtered by event }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" } ], "next_cursor": null, @@ -2005,16 +2005,16 @@ Returns the credits of a block "result": [ { "block_index": 192, - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,20 +2026,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2047,20 +2047,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2116,16 +2116,16 @@ Returns the debits of a block "result": [ { "block_index": 193, - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "event": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -2165,24 +2165,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "object_id": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", "block_index": 182, "confirmed": true, - "block_time": 1727000481 + "block_time": 1727031616 }, { "type": "order", - "object_id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", + "object_id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", "block_index": 182, "confirmed": true, - "block_time": 1727000481 + "block_time": 1727031616 }, { "type": "order_match", - "object_id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "object_id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", "block_index": 182, "confirmed": true, - "block_time": 1727000481 + "block_time": 1727031616 } ], "next_cursor": null, @@ -2214,13 +2214,13 @@ Returns the cancels of a block "result": [ { "tx_index": 56, - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "block_index": 190, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "status": "valid", "confirmed": true, - "block_time": 1727000580 + "block_time": 1727031724 } ], "next_cursor": null, @@ -2252,15 +2252,15 @@ Returns the destructions of a block "result": [ { "tx_index": 59, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -2300,14 +2300,14 @@ Returns the issuances of a block "result": [ { "tx_index": 46, - "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", + "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -2322,7 +2322,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000465, + "block_time": 1727031601, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2356,10 +2356,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2367,7 +2367,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "divisible": true, "asset_longname": null, @@ -2380,10 +2380,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2391,11 +2391,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2404,10 +2404,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2415,11 +2415,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2457,27 +2457,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", - "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "last_status_tx_hash": null, - "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2492,7 +2492,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727000400, + "block_time": 1727031536, "asset_info": { "divisible": true, "asset_longname": null, @@ -2533,16 +2533,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 58, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "fee_paid_normalized": "0.00600000" } ], @@ -2576,17 +2576,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf", + "tx_hash": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06", "block_index": 138, - "block_hash": "338cfe79e186d045e36821698a45768046de4a7d361843425a0940472ecc6826", - "block_time": 1727000366, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "block_hash": "5f982af3c65034ce60720bc0971b614787c8a1c1a66de3dd342bdfac501c9ad3", + "block_time": 1727031502, + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf:1", + "utxos_info": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2611,25 +2611,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 51, - "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", + "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", "block_index": 185, - "block_hash": "6a70586a2d19f9575864a5b42d32a9e9d19c76574dc8d6dfbc76172ca89682c2", - "block_time": 1727000558, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "1f5af0e7cec205944b080b4ab1df4487aa0f0dc1b8acf9bfe09a4004e1f6afc7", + "block_time": 1727031703, + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "btc_amount": 2000, "fee": 10000, - "data": "0b14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "data": "0bbb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874aca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "supported": true, - "utxos_info": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0:0", + "utxos_info": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", - "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", - "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "status": "valid" } }, @@ -2644,23 +2644,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "block_index": 190, - "block_hash": "52ce8354391192adc1549d6a4e70e552a9bf49e64fbe115795e8c12b930962da", - "block_time": 1727000580, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "1e1af2aaab6cfea61a31d3c2cda9e566643cab68018f3b8071bf25da826b9a80", + "block_time": 1727031724, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "data": "4695e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "supported": true, - "utxos_info": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f:1", + "utxos_info": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "status": "valid" } }, @@ -2675,17 +2675,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", - "block_time": 1727000592, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_time": 1727031747, + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", + "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2715,17 +2715,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 32, - "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", "block_index": 145, - "block_hash": "13fab7fba22dce8e177cd86ff15069c0e503e342b0b501983100830878cc651f", - "block_time": 1727000396, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "block_hash": "610ad86374eefe1f302e145fa36877414dec80a0bc70bd581be537bedf11db58", + "block_time": 1727031531, + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c00000000000000010000000000000001000000000000271000000000000000010080baac6eaeb065905681d2acec45f4755b0dcda31b", + "data": "0c000000000000000100000000000000010000000000002710000000000000000100809f7bc8991f02bb53759fc277a064da3bf9e483a4", "supported": true, - "utxos_info": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3:1", + "utxos_info": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2737,7 +2737,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "status": "valid", "asset_info": { "divisible": true, @@ -2761,17 +2761,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", "block_index": 146, - "block_hash": "10cc7c42de9461c9b74a9f215a94b6dd5b5791a145b649905cca55c036839c10", - "block_time": 1727000400, - "source": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", - "destination": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "block_hash": "26f4c4e5dc2f9d5f8d6e0cbb28c316837e22df1669d9fb1db405a9f284e28acd", + "block_time": 1727031536, + "source": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", + "destination": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "btc_amount": 10000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680:0", + "utxos_info": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 40, - "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", + "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", "block_index": 153, - "block_hash": "19d21be55eb8771d0c4746adcf2ad32e3b71c4ed19bae4b81a57bb72e89ea449", - "block_time": 1727000430, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "240a225bd3522f5d2457a60d7771510b2f9745533de15df215e9286896d2ec5a", + "block_time": 1727031565, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b:1", + "utxos_info": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2814,7 +2814,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2839,17 +2839,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 46, - "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", + "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", "block_index": 159, - "block_hash": "02be5ca66bd800bca0a4c9affb101d03d793a7c695aceab6c179d00bcd50f6a7", - "block_time": 1727000465, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "3fe53a626d7a77a7513f68b74ef29127b643d2e57dc4f8bd5b803a0b79aa1979", + "block_time": 1727031601, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346:1", + "utxos_info": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2881,17 +2881,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", - "block_time": 1727000584, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", + "block_time": 1727031738, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1", + "utxos_info": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2934,17 +2934,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50", + "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763", "block_index": 187, - "block_hash": "4098a431cd37f6c34f0c1b3410ef573997eca738bf99359308b687d5b93e0664", - "block_time": 1727000567, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "block_hash": "5c5d1defe448fd0cfb311a0b63d84e55a56bb835621669e3693e241acac2b51a", + "block_time": 1727031711, + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080ed681fe4daf7ab2ee1a33b873588429301d5bfa8", + "data": "020000000000000001000000000000271080fcd4fef91bbb7752401bda00950d4c9047d04028", "supported": true, - "utxos_info": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50:1", + "utxos_info": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2952,7 +2952,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "memo": null, "asset_info": { "divisible": true, @@ -2975,17 +2975,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "block_hash": "3af24eb207ec7c93df870ce901057933a0a9e906e1569a624ebe4cd15e5e7a5e", - "block_time": 1727000571, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "7aebb16eecf937a615a0835e17c17a727757a47eff751dbe07bf38199690cf08", + "block_time": 1727031716, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f6e40206dee5dd33c2a2804e47120677f27d08d2802fe54076791a6e2ac138ef00abb24f8185f125ab80ed681fe4daf7ab2ee1a33b873588429301d5bfa8400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a4ca4c30f02016b9d3311b06228bced4605a672d806dfffb33ff9bf38009f5261067fd1af98dadcc3c80fcd4fef91bbb7752401bda00950d4c9047d04028400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db:0", + "utxos_info": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2993,14 +2993,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -3008,7 +3008,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3034,23 +3034,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", - "block_time": 1727000588, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", + "block_time": 1727031743, + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480ed681fe4daf7ab2ee1a33b873588429301d5bfa8017377656570206d7920617373657473", + "data": "0480fcd4fef91bbb7752401bda00950d4c9047d04028017377656570206d7920617373657473", "supported": true, - "utxos_info": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea:1", + "utxos_info": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "flags": 1, "memo": "sweep my assets" } @@ -3083,17 +3083,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 59, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", - "block_time": 1727000592, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_time": 1727031747, + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", + "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3116,23 +3116,23 @@ Returns the list of the last ten transactions }, { "tx_index": 58, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", - "block_time": 1727000588, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", + "block_time": 1727031743, + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480ed681fe4daf7ab2ee1a33b873588429301d5bfa8017377656570206d7920617373657473", + "data": "0480fcd4fef91bbb7752401bda00950d4c9047d04028017377656570206d7920617373657473", "supported": true, - "utxos_info": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea:1", + "utxos_info": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "flags": 1, "memo": "sweep my assets" } @@ -3150,7 +3150,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `0200000000010111ac2ad1f93225daf96588a3c4ea558f3b205618869a051ea2f7090092303eb70000000000ffffffff020000000000000000356a335c5dd9bc91a5d86995d0ab15d4be2254fe0c71497e66d8111872c92be92f0646c178ae969acb8c2caeab2baf3af316f3fb7a88f0ca052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde0247304402207d1a215d92b6d36dd09d1545cfeee45ca1f74a9e937eff5027bad4c75bf8f2a402203a1203e1321ccd62633fcfc3a03d2ce39268c0b026be5a4b3f2aae21124bec84012103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96200000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001019d5f93e8240a3eb6d45a6a38f32109200b3304bace7538254a8505103ff1c8660000000000ffffffff0200000000000000002b6a293d9ec3ff5bde53950f82911ac15d6fa531e7c349a0a07a8e1ad2c0abfbc8b3ea7cefd68ca7a6280e2bf0ca052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c0247304402204b12834ecdeec860345887155b44f9d78ff4a637d4323c347b6e0c1d0df3865702207e546a79aa5d4ea6a4e9b8fb06f1277b48cb93ba78ab305d6c9a9095ea64e76a01210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13200000000` (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. @@ -3163,18 +3163,18 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "4695e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "11ac2ad1f93225daf96588a3c4ea558f3b205618869a051ea2f7090092303eb7", + "hash": "9d5f93e8240a3eb6d45a6a38f32109200b3304bace7538254a8505103ff1c866", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3184,49 +3184,27 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a335c5dd9bc91a5d86995d0ab15d4be2254fe0c71497e66d8111872c92be92f0646c178ae969acb8c2caeab2baf3af316f3fb7a88" + "script_pub_key": "6a293d9ec3ff5bde53950f82911ac15d6fa531e7c349a0a07a8e1ad2c0abfbc8b3ea7cefd68ca7a6280e2b" }, { "value": 4999990000, - "script_pub_key": "0014568120e3f25be7dad0716f132cbcc0eecfac8dde" + "script_pub_key": "0014ab1ca0986fe508fb370b5937169762b6328c900c" } ], "vtxinwit": [ - "304402207d1a215d92b6d36dd09d1545cfeee45ca1f74a9e937eff5027bad4c75bf8f2a402203a1203e1321ccd62633fcfc3a03d2ce39268c0b026be5a4b3f2aae21124bec8401", - "03dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d962" + "304402204b12834ecdeec860345887155b44f9d78ff4a637d4323c347b6e0c1d0df3865702207e546a79aa5d4ea6a4e9b8fb06f1277b48cb93ba78ab305d6c9a9095ea64e76a01", + "0303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b132" ], "lock_time": 0, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", - "tx_id": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7" + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_id": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84" }, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, + "message_type": "cancel", + "message_type_id": 70, "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" + "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "status": "valid" } }, "btc_amount_normalized": "0.00000000" @@ -3239,7 +3217,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21` (str, required) - Transaction hash + + tx_hash: `1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4` (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. @@ -3250,18 +3228,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710802fe54076791a6e2ac138ef00abb24f8185f125ab", + "data": "0200000000000000010000000000002710806dfffb33ff9bf38009f5261067fd1af98dadcc3c", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "b2ffbb72adddd8bae637e76ca3d20367a9e2b545df04b069cd783a5cb159f004", + "hash": "033829dd00ce92492643b8d140f4f5e0e40880eb1d304c5ef75052b518910fdb", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3271,20 +3249,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2ed63dda20b4474132e359445d9983dfd995134ac2e957b57425e6eaf3de5610caa4b43888d3dfed18e5a58a33bf95" + "script_pub_key": "6a2e86c1932312faa583fe5f71bdf0c7db3e42b4ce0034d8c1a4e0081e1920d840e4601e56ea066ca5f270b671ee4f60" }, { "value": 4999955000, - "script_pub_key": "0014ed681fe4daf7ab2ee1a33b873588429301d5bfa8" + "script_pub_key": "0014fcd4fef91bbb7752401bda00950d4c9047d04028" } ], "vtxinwit": [ - "3044022007e03b96e278106bcfa7ff303efdd262596dc409053563efec02b712a660f75002206e026091bd4f2b0f0dbed833bf30961543506f5026ea4800da1f8405edc3d75f01", - "02cd3154911e5d3f0dd8141a848af0f2f71983615dc048911e9fa68b8cf85964a6" + "304402201b2685911b529dddd19a94a0444d789c65d7538076984cd0f5e5764fd2fdaea70220305e38b12b39c8fd2199e37ed0b6c8a45faabcdf92fe527cf74115dd817bd60601", + "02d0179aa601d1b2caddcfe88c73ca7bf71949d02e3645f85bd050b7b64868f248" ], "lock_time": 0, - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", - "tx_id": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21" + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_id": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3292,7 +3270,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "memo": null, "asset_info": { "divisible": true, @@ -3353,17 +3331,17 @@ Returns a transaction by its index. { "result": { "tx_index": 59, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", - "block_time": 1727000592, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_time": 1727031747, + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", + "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3392,7 +3370,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f` (str, required) - The hash of the transaction + + tx_hash: `50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e` (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. @@ -3404,17 +3382,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 59, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", - "block_time": 1727000592, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_time": 1727031747, + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", + "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3467,47 +3445,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58 }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "status": "valid", - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, - "block_time": 1727000588, + "block_time": 1727031743, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -3517,24 +3495,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "XCP", "block_index": 192, - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -3544,36 +3522,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 } ], "next_cursor": 523, @@ -3586,7 +3564,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea` (str, required) - The hash of the transaction to return + + tx_hash: `2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -3610,47 +3588,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58 }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "status": "valid", - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, - "block_time": 1727000588, + "block_time": 1727031743, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -3660,24 +3638,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "XCP", "block_index": 192, - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -3687,36 +3665,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 } ], "next_cursor": 523, @@ -3729,7 +3707,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db` (str, required) - The hash of the transaction to return + + tx_hash: `43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6` (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 @@ -3748,10 +3726,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "quantity": 10, "status": "valid", @@ -3759,7 +3737,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "divisible": true, "asset_longname": null, @@ -3772,10 +3750,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3783,11 +3761,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -3796,10 +3774,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3807,11 +3785,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -3829,7 +3807,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680` (str, required) - The hash of the transaction to return + + tx_hash: `c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c` (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 @@ -3849,27 +3827,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", - "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "last_status_tx_hash": null, - "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3884,7 +3862,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727000400, + "block_time": 1727031536, "asset_info": { "divisible": true, "asset_longname": null, @@ -3928,16 +3906,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -3947,63 +3925,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 } ], "next_cursor": null, @@ -4016,7 +3994,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea` (str, required) - The hash of the transaction to return + + tx_hash: `2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `535` (str, optional) - The last event index to return + Default: `None` @@ -4038,16 +4016,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -4057,63 +4035,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 } ], "next_cursor": null, @@ -4128,7 +4106,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr,bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj,bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (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 @@ -4152,7 +4130,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4162,7 +4140,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -4173,7 +4151,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4183,7 +4161,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -4194,7 +4172,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4204,7 +4182,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -4215,7 +4193,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4225,7 +4203,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -4236,7 +4214,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4246,7 +4224,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -4263,7 +4241,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr,bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj,bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (str, required) - Comma separated list of addresses to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4282,17 +4260,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 57, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", - "block_time": 1727000584, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", + "block_time": 1727031738, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1", + "utxos_info": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4328,23 +4306,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "block_index": 190, - "block_hash": "52ce8354391192adc1549d6a4e70e552a9bf49e64fbe115795e8c12b930962da", - "block_time": 1727000580, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "1e1af2aaab6cfea61a31d3c2cda9e566643cab68018f3b8071bf25da826b9a80", + "block_time": 1727031724, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "data": "4695e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "supported": true, - "utxos_info": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f:1", + "utxos_info": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "status": "valid" } }, @@ -4352,17 +4330,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 55, - "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "block_index": 189, - "block_hash": "54d2df0dc01af39d0d576efb398561deadcc34ad173c7198659cdf1d74b2a381", - "block_time": 1727000575, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "4b4c3d089292ec004e7c2f38f68a929bba6d7c6e6101db9616fe21b785fae411", + "block_time": 1727031720, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81:1", + "utxos_info": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4398,17 +4376,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "block_hash": "3af24eb207ec7c93df870ce901057933a0a9e906e1569a624ebe4cd15e5e7a5e", - "block_time": 1727000571, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "7aebb16eecf937a615a0835e17c17a727757a47eff751dbe07bf38199690cf08", + "block_time": 1727031716, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f6e40206dee5dd33c2a2804e47120677f27d08d2802fe54076791a6e2ac138ef00abb24f8185f125ab80ed681fe4daf7ab2ee1a33b873588429301d5bfa8400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a4ca4c30f02016b9d3311b06228bced4605a672d806dfffb33ff9bf38009f5261067fd1af98dadcc3c80fcd4fef91bbb7752401bda00950d4c9047d04028400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db:0", + "utxos_info": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4416,14 +4394,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -4431,7 +4409,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4450,25 +4428,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 51, - "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", + "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", "block_index": 185, - "block_hash": "6a70586a2d19f9575864a5b42d32a9e9d19c76574dc8d6dfbc76172ca89682c2", - "block_time": 1727000558, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "1f5af0e7cec205944b080b4ab1df4487aa0f0dc1b8acf9bfe09a4004e1f6afc7", + "block_time": 1727031703, + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "btc_amount": 2000, "fee": 10000, - "data": "0b14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "data": "0bbb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874aca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "supported": true, - "utxos_info": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0:0", + "utxos_info": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", - "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", - "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "status": "valid" } }, @@ -4485,7 +4463,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr,bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj,bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -4521,11 +4499,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "status": "open", - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "tx_index": 57, - "block_time": 1727000584, + "block_time": 1727031738, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4549,24 +4527,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "block_time": 1727000584 + "block_time": 1727031738 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "block_index": 191, - "event": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "event": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727000584, + "block_time": 1727031738, "asset_info": { "divisible": true, "asset_longname": null, @@ -4576,25 +4554,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "block_time": 1727000584 + "block_time": 1727031738 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", + "block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", "block_index": 191, - "block_time": 1727000584, + "block_time": 1727031738, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "tx_index": 57, - "utxos_info": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1", + "utxos_info": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4626,40 +4604,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "block_time": 1727000584 + "block_time": 1727031738 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "status": "valid", - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "tx_index": 56, - "block_time": 1727000580 + "block_time": 1727031724 }, - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "block_index": 190, - "block_time": 1727000580 + "block_time": 1727031724 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727000580, + "block_time": 1727031724, "asset_info": { "divisible": true, "asset_longname": null, @@ -4669,9 +4647,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "block_index": 190, - "block_time": 1727000580 + "block_time": 1727031724 } ], "next_cursor": 506, @@ -4684,7 +4662,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss,bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m,bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt` (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 @@ -4700,17 +4678,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "memo": null, "quantity": 10000, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "status": "valid", - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "tx_index": 60, "asset_info": { "divisible": true, @@ -4723,19 +4701,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "CREDIT", "params": { - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -4747,19 +4725,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 193, - "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -4771,27 +4749,27 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727000606.3219044, + "block_time": 1727031751.6192584, "btc_amount": 0, - "data": "0200000000000000010000000000002710802fe54076791a6e2ac138ef00abb24f8185f125ab", + "data": "0200000000000000010000000000002710806dfffb33ff9bf38009f5261067fd1af98dadcc3c", "destination": "", "fee": 10000, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "tx_index": 60, - "utxos_info": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21:1", + "utxos_info": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "memo": null, "asset_info": { "divisible": true, @@ -4817,7 +4795,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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 @@ -4837,7 +4815,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4845,14 +4823,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4860,14 +4838,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4882,7 +4860,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4890,7 +4868,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -4907,7 +4885,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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` @@ -4919,7 +4897,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4941,7 +4919,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4991,16 +4969,16 @@ Returns the credits of an address "result": [ { "block_index": 190, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000580, + "block_time": 1727031724, "asset_info": { "divisible": true, "asset_longname": null, @@ -5012,16 +4990,16 @@ Returns the credits of an address }, { "block_index": 182, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", + "event": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000481, + "block_time": 1727031616, "asset_info": { "divisible": true, "asset_longname": null, @@ -5033,20 +5011,20 @@ Returns the credits of an address }, { "block_index": 159, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", + "event": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000465, + "block_time": 1727031601, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5054,20 +5032,20 @@ Returns the credits of an address }, { "block_index": 156, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "694859d37608f9befa94495339565cd43e8955250c937c614bdc234e9fd9f4c6", + "event": "78d87a84a548e802140107907dab0b844c078356f9fcce558b74909d159796a6", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000443, + "block_time": 1727031579, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5079,16 +5057,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", + "event": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", "tx_index": 38, - "utxo": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86:1", - "utxo_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "utxo": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450:1", + "utxo_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "confirmed": true, - "block_time": 1727000422, + "block_time": 1727031557, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5105,7 +5083,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5144,16 +5122,16 @@ Returns the debits of an address "result": [ { "block_index": 191, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "event": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000584, + "block_time": 1727031738, "asset_info": { "divisible": true, "asset_longname": null, @@ -5165,16 +5143,16 @@ Returns the debits of an address }, { "block_index": 189, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000575, + "block_time": 1727031720, "asset_info": { "divisible": true, "asset_longname": null, @@ -5186,16 +5164,16 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "event": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "divisible": true, "asset_longname": null, @@ -5207,20 +5185,20 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "event": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5228,16 +5206,16 @@ Returns the debits of an address }, { "block_index": 183, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "event": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000550, + "block_time": 1727031685, "asset_info": { "divisible": true, "asset_longname": null, @@ -5258,7 +5236,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address of the feed + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5293,7 +5271,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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 @@ -5312,9 +5290,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "175b0e837d4aa88d671cfc863c546cf1e410283c6bcfca4f22737640612a0343", + "tx_hash": "70bbbef4d727695c9dfe5767a7984c541fa63ee857b8a6f9d4fd484e7e9bb559", "block_index": 137, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5322,7 +5300,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727000362, + "block_time": 1727031498, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5336,7 +5314,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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 @@ -5355,14 +5333,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "5c1b3ec29a6da9391c34eb7e11afb83a79138d107025b4fb81a500f5e1aa466f", + "tx_hash": "c3ef7038264f09a6f51fb5f6471cfc4b095d6356440d83546aafcd77da3327bc", "block_index": 112, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1727000247, + "block_time": 1727031394, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5377,7 +5355,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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 @@ -5396,10 +5374,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5407,7 +5385,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "divisible": true, "asset_longname": null, @@ -5420,10 +5398,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5431,11 +5409,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5444,10 +5422,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5455,11 +5433,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5468,10 +5446,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 38, - "tx_hash": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", + "tx_hash": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", "block_index": 151, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86:1", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5479,11 +5457,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000422, + "block_time": 1727031557, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5492,10 +5470,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 35, - "tx_hash": "1aced42e6e980cc930626ed1334e8dbeaf5df4c375d5aa62212aedf53ba3aa51", + "tx_hash": "c2895e011f9b472f28337f45d9c4e55b74d73cbb0a4b6fad43b9bbff93937d9e", "block_index": 148, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "46166b488d62f2085d8dbc2af1837c3e9d204d91bf46bf31436e5e207c85d326:1", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "c7f128443db9a77d1633ed327ba6bff1a7df40904a0bcc0aeef69925fc748a83:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5503,11 +5481,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000409, + "block_time": 1727031544, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5525,7 +5503,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv` (str, required) - The address to return + + address: `bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0` (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 @@ -5544,10 +5522,10 @@ Returns the receives of an address "result": [ { "tx_index": 37, - "tx_hash": "804df83cded11a27f2118503527164d631474a075cd88df3e7f0d09a972d3cf6", + "tx_hash": "b24c9eeabf64bf130cf647b5b044590691cd4d002ece233465f257abf436ad6c", "block_index": 150, - "source": "9b353d1cbb0a30108e4f9cc683852d659f4f611c141bab3af77efc10ab93dc4a:0", - "destination": "bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv", + "source": "eabb3b7be615850b99b1401f3f242c8fa8e18d2d0ba58915a003fa589718cf11:0", + "destination": "bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5555,11 +5533,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000417, + "block_time": 1727031553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5577,7 +5555,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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` @@ -5597,10 +5575,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5608,11 +5586,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5621,10 +5599,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5632,11 +5610,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5645,10 +5623,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 38, - "tx_hash": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", + "tx_hash": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", "block_index": 151, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86:1", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5656,11 +5634,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000422, + "block_time": 1727031557, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5669,10 +5647,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 35, - "tx_hash": "1aced42e6e980cc930626ed1334e8dbeaf5df4c375d5aa62212aedf53ba3aa51", + "tx_hash": "c2895e011f9b472f28337f45d9c4e55b74d73cbb0a4b6fad43b9bbff93937d9e", "block_index": 148, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "46166b488d62f2085d8dbc2af1837c3e9d204d91bf46bf31436e5e207c85d326:1", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "c7f128443db9a77d1633ed327ba6bff1a7df40904a0bcc0aeef69925fc748a83:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5680,11 +5658,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000409, + "block_time": 1727031544, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5702,7 +5680,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv` (str, required) - The address to return + + address: `bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0` (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` @@ -5722,10 +5700,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 37, - "tx_hash": "804df83cded11a27f2118503527164d631474a075cd88df3e7f0d09a972d3cf6", + "tx_hash": "b24c9eeabf64bf130cf647b5b044590691cd4d002ece233465f257abf436ad6c", "block_index": 150, - "source": "9b353d1cbb0a30108e4f9cc683852d659f4f611c141bab3af77efc10ab93dc4a:0", - "destination": "bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv", + "source": "eabb3b7be615850b99b1401f3f242c8fa8e18d2d0ba58915a003fa589718cf11:0", + "destination": "bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5733,11 +5711,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000417, + "block_time": 1727031553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5755,7 +5733,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5782,9 +5760,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 30, - "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", + "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", "block_index": 144, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5793,7 +5771,7 @@ Returns the dispensers of an address "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5803,7 +5781,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000392, + "block_time": 1727031527, "asset_info": { "divisible": true, "asset_longname": null, @@ -5819,9 +5797,9 @@ Returns the dispensers of an address }, { "tx_index": 26, - "tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5830,7 +5808,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5840,7 +5818,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -5865,7 +5843,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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 +5856,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", + "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", "block_index": 144, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5889,7 +5867,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5899,7 +5877,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000392, + "block_time": 1727031527, "asset_info": { "divisible": true, "asset_longname": null, @@ -5921,7 +5899,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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 +5919,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", + "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5961,7 +5939,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5976,7 +5954,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -5990,19 +5968,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", + "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", "block_index": 140, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6010,7 +5988,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6025,7 +6003,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000375, + "block_time": 1727031510, "asset_info": { "divisible": true, "asset_longname": null, @@ -6047,7 +6025,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (str, required) - The address to return + + address: `bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (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 @@ -6067,19 +6045,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", + "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6087,7 +6065,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6102,7 +6080,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -6116,19 +6094,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", + "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", "block_index": 140, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6136,7 +6114,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6151,7 +6129,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000375, + "block_time": 1727031510, "asset_info": { "divisible": true, "asset_longname": null, @@ -6173,7 +6151,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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` @@ -6194,19 +6172,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", + "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6214,7 +6192,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6229,7 +6207,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -6243,19 +6221,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", + "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", "block_index": 140, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6263,7 +6241,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6278,7 +6256,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000375, + "block_time": 1727031510, "asset_info": { "divisible": true, "asset_longname": null, @@ -6300,7 +6278,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (str, required) - The address to return + + address: `bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (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` @@ -6321,19 +6299,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", + "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6341,7 +6319,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6356,7 +6334,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -6370,19 +6348,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", + "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", "block_index": 140, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6390,7 +6368,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6405,7 +6383,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000375, + "block_time": 1727031510, "asset_info": { "divisible": true, "asset_longname": null, @@ -6427,7 +6405,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss` (str, required) - The address to return + + address: `bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m` (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 @@ -6446,16 +6424,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 58, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "fee_paid_normalized": "0.00600000" } ], @@ -6469,7 +6447,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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 @@ -6488,14 +6466,14 @@ Returns the issuances of an address "result": [ { "tx_index": 46, - "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", + "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -6510,20 +6488,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000465, + "block_time": 1727031601, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "69356c4a943c1bc4c96cf7e1fd1df717562742ba6d014e5404949c9fb8488072", + "tx_hash": "45b68c9ba64fa212a14541b0a2a12205e850ae06f24d5b225f0a5627c23d19e8", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -6538,20 +6516,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727000461, + "block_time": 1727031596, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "de64c6d5cdcb12d054140d780d7c6780ed87490c27d80ff372e2384e3e898730", + "tx_hash": "f90297d83b71b86f758f716ba6985c3656c2219501bf5577ac2d96103c22be8b", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -6566,20 +6544,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000447, + "block_time": 1727031593, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "694859d37608f9befa94495339565cd43e8955250c937c614bdc234e9fd9f4c6", + "tx_hash": "78d87a84a548e802140107907dab0b844c078356f9fcce558b74909d159796a6", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -6594,20 +6572,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000443, + "block_time": 1727031579, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "910c965acd73fa6a2f08def331a054436285d5cbc447958cb86a2b66d91f25cc", + "tx_hash": "7eba76181dde66ebc3fdfe33bdf17e5f00aff28437f82870fbc8bf86beccb827", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -6622,7 +6600,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000405, + "block_time": 1727031540, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -6637,7 +6615,7 @@ Returns the issuances of an address Returns the valid assets of an issuer + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The issuer to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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 @@ -6660,8 +6638,8 @@ Returns the valid assets of an issuer "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 10000000000, @@ -6669,16 +6647,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727000443, - "last_issuance_block_time": 1727000461, + "first_issuance_block_time": 1727031579, + "last_issuance_block_time": 1727031596, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 100000000000, @@ -6686,16 +6664,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727000405, - "last_issuance_block_time": 1727000405, + "first_issuance_block_time": 1727031540, + "last_issuance_block_time": 1727031540, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 40, @@ -6703,16 +6681,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727000354, - "last_issuance_block_time": 1727000358, + "first_issuance_block_time": 1727031489, + "last_issuance_block_time": 1727031494, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 19, @@ -6720,16 +6698,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727000326, - "last_issuance_block_time": 1727000349, + "first_issuance_block_time": 1727031472, + "last_issuance_block_time": 1727031485, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 0, @@ -6737,8 +6715,8 @@ Returns the valid assets of an issuer "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1727000305, - "last_issuance_block_time": 1727000322, + "first_issuance_block_time": 1727031452, + "last_issuance_block_time": 1727031468, "supply_normalized": "0.00000000" } ], @@ -6752,7 +6730,7 @@ Returns the valid assets of an issuer Returns the transactions of an address + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -6771,17 +6749,17 @@ Returns the transactions of an address "result": [ { "tx_index": 57, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", - "block_time": 1727000584, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", + "block_time": 1727031738, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1", + "utxos_info": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6817,23 +6795,23 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "block_index": 190, - "block_hash": "52ce8354391192adc1549d6a4e70e552a9bf49e64fbe115795e8c12b930962da", - "block_time": 1727000580, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "1e1af2aaab6cfea61a31d3c2cda9e566643cab68018f3b8071bf25da826b9a80", + "block_time": 1727031724, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "data": "4695e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "supported": true, - "utxos_info": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f:1", + "utxos_info": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "status": "valid" } }, @@ -6841,17 +6819,17 @@ Returns the transactions of an address }, { "tx_index": 55, - "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "block_index": 189, - "block_hash": "54d2df0dc01af39d0d576efb398561deadcc34ad173c7198659cdf1d74b2a381", - "block_time": 1727000575, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "4b4c3d089292ec004e7c2f38f68a929bba6d7c6e6101db9616fe21b785fae411", + "block_time": 1727031720, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81:1", + "utxos_info": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6887,17 +6865,17 @@ Returns the transactions of an address }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "block_hash": "3af24eb207ec7c93df870ce901057933a0a9e906e1569a624ebe4cd15e5e7a5e", - "block_time": 1727000571, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "7aebb16eecf937a615a0835e17c17a727757a47eff751dbe07bf38199690cf08", + "block_time": 1727031716, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f6e40206dee5dd33c2a2804e47120677f27d08d2802fe54076791a6e2ac138ef00abb24f8185f125ab80ed681fe4daf7ab2ee1a33b873588429301d5bfa8400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a4ca4c30f02016b9d3311b06228bced4605a672d806dfffb33ff9bf38009f5261067fd1af98dadcc3c80fcd4fef91bbb7752401bda00950d4c9047d04028400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db:0", + "utxos_info": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -6905,14 +6883,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -6920,7 +6898,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -6939,17 +6917,17 @@ Returns the transactions of an address }, { "tx_index": 49, - "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", "block_index": 183, - "block_hash": "5857b2e31e441dc9251e82211ad84eac5b7171b7d2ed35896316ba3e62d58f47", - "block_time": 1727000550, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "5736c35ad7443bd127e2c39121e8accb8483b3fc3458ab2bb197a41f504e1b78", + "block_time": 1727031685, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74:1", + "utxos_info": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6994,7 +6972,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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 @@ -7013,20 +6991,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 40, - "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", + "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", "block_index": 153, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727000430, + "block_time": 1727031565, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -7051,7 +7029,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7078,9 +7056,9 @@ Returns the orders of an address "result": [ { "tx_index": 57, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7095,7 +7073,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727000584, + "block_time": 1727031738, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7121,9 +7099,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "block_index": 190, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7138,7 +7116,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727000580, + "block_time": 1727031724, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7164,9 +7142,9 @@ Returns the orders of an address }, { "tx_index": 49, - "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", "block_index": 186, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7181,7 +7159,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727000563, + "block_time": 1727031707, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7207,9 +7185,9 @@ Returns the orders of an address }, { "tx_index": 47, - "tx_hash": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", + "tx_hash": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", "block_index": 182, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7224,7 +7202,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727000481, + "block_time": 1727031616, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7259,7 +7237,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The source of the fairminter to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7277,10 +7255,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", + "tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", "tx_index": 22, "block_index": 135, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7305,13 +7283,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727000354 + "block_time": 1727031489 }, { - "tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", + "tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", "tx_index": 18, "block_index": 131, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7336,13 +7314,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727000326 + "block_time": 1727031472 }, { - "tx_hash": "7db72c3a3d73085625f2f30f21a6937c09222727d2b9942e21aec693b24bf08e", + "tx_hash": "f0dfc17c191520c1e2ba90abccbcc857553adf8a4e40722685a17b81ff2f781a", "tx_index": 14, "block_index": 130, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7367,13 +7345,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727000322 + "block_time": 1727031468 }, { - "tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "tx_index": 10, "block_index": 125, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7398,7 +7376,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727000301 + "block_time": 1727031448 } ], "next_cursor": null, @@ -7411,7 +7389,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (str, required) - The address of the mints to return + + address: `bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7429,127 +7407,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "8a9a1f916ad7518fbbdca58817a4ac2b58533c0a9768c4f1ca05778acb75e7d1", + "tx_hash": "ede174d6ebd168d04cfbc10891f9d7eb903c0d105cd7455db87566871ceb66a4", "tx_index": 23, "block_index": 136, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "fairminter_tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "fairminter_tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000358, + "block_time": 1727031494, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } }, { - "tx_hash": "f126053dd92ca48dc40a2ff68b8ae8af7cde23b1ab6d6137fe4c6203f590b859", + "tx_hash": "1ff72b43cf288d1d3e4e8f3b13df6f687a3b931b5dd479680fd537de7ab91619", "tx_index": 21, "block_index": 134, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "fairminter_tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "fairminter_tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000349, + "block_time": 1727031485, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } }, { - "tx_hash": "b2fadab50e518edbcd06b1c28c0130d8329d273cb39960943f6c905ec4484601", + "tx_hash": "173860b830f570665ce7176cc62cd77ea47e884cad47be8f881c860357a8fb56", "tx_index": 20, "block_index": 133, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "fairminter_tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "fairminter_tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000345, + "block_time": 1727031481, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } }, { - "tx_hash": "8a0a58a76c9c0795cdf955cd1fdb2ba6489b5a5424e83e6759209f7fc8da7833", + "tx_hash": "8db623e33495f11477f4c1321919da808fa5cdf7a552030355a5a5c9caf913c4", "tx_index": 19, "block_index": 132, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "fairminter_tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "fairminter_tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000331, + "block_time": 1727031477, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } }, { - "tx_hash": "6d76d3221c43cad887faa8f88631318e23856a5aef2799363fc245a8771dfcf4", + "tx_hash": "88164f5131f58c578d835121f2d081c1b2452f1074c8c4ab1beb574d190e440c", "tx_index": 15, "block_index": 127, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "fairminter_tx_hash": "7db72c3a3d73085625f2f30f21a6937c09222727d2b9942e21aec693b24bf08e", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "fairminter_tx_hash": "f0dfc17c191520c1e2ba90abccbcc857553adf8a4e40722685a17b81ff2f781a", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000310, + "block_time": 1727031457, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } }, { - "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", + "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000293, + "block_time": 1727031440, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } @@ -7565,7 +7543,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (str, required) - The address of the mints to return + + address: `bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (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` @@ -7584,22 +7562,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", + "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000293, + "block_time": 1727031440, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } @@ -7633,13 +7611,13 @@ By default the default value of the `encoding` parameter detailed above is `auto - Sign the transaction following the `Bitcoinjs-lib on javascript, signing a P2SH redeeming transaction` section - **NOTE**: Don't leave pretxs hanging without transmitting the second transaction as this pollutes the UTXO set and risks making bitcoin harder to run on low spec nodes. -### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] +### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a bet against a feed. + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address that will make the bet - + feed_address: `bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address that will make the bet + + feed_address: `bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (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) @@ -7671,22 +7649,26 @@ Composes a transaction to issue a bet against a feed. + Default: `None` + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs + Default: `False` - + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee - + Default: `False` + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction + Default: `None` + segwit (bool, optional) - Use segwit + Default: `False` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` - + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex - + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created + Default: `None` - + return_only_data (bool, optional) - Return only the data part of the transaction - + Default: `False` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) + + Default: `False` + + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + + Default: `False` + + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction + + Default: `False` + + extended_tx_info (bool, optional) - (API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee + + Default: `False` + + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -7700,12 +7682,12 @@ Composes a transaction to issue a bet against a feed. } ``` -### Compose Broadcast [GET /v2/addresses/{address}/compose/broadcast{?timestamp}{&value}{&fee_fraction}{&text}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] +### Compose Broadcast [GET /v2/addresses/{address}/compose/broadcast{?timestamp}{&value}{&fee_fraction}{&text}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to broadcast textual and numerical information to the network. + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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) @@ -7732,22 +7714,26 @@ Composes a transaction to broadcast textual and numerical information to the net + Default: `None` + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs + Default: `False` - + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee - + Default: `False` + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction + Default: `None` + segwit (bool, optional) - Use segwit + Default: `False` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` - + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex - + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created + Default: `None` - + return_only_data (bool, optional) - Return only the data part of the transaction - + Default: `False` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) + + Default: `False` + + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + + Default: `False` + + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction + + Default: `False` + + extended_tx_info (bool, optional) - (API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee + + Default: `False` + + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -7758,9 +7744,8 @@ Composes a transaction to broadcast textual and numerical information to the net ``` { "result": { - "rawtransaction": "0200000000010115c401b8d98226b74217cefb5032c25436b1b5c03d95952fa806f57bad01126100000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff0200000000000000002b6a293346c767cf647d2aacde83d14e2c9529372189b61fe4dae2a49930b729f4cf90c62df005fa6956043e3bb1052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7768,6 +7753,11 @@ Composes a transaction to broadcast textual and numerical information to the net }, "name": "broadcast", "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999983419, + "btc_fee": 16581, + "rawtransaction": "0200000000010168580864de321070d26e22e5619e6235efa1ed8e5673a9fd1a9252056396d98400000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff0200000000000000002b6a29252e87bed754730f6a92caca98637de939fded0640ef6f6e0c13d09e4fbc58ccbc079dd19f40db6a043bb1052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7779,13 +7769,13 @@ Composes a transaction to broadcast textual and numerical information to the net } ``` -### Compose BTCPay [GET /v2/addresses/{address}/compose/btcpay{?order_match_id}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] +### Compose BTCPay [GET /v2/addresses/{address}/compose/btcpay{?order_match_id}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to pay for a BTC order match. + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address that will be sending the payment - + order_match_id: `14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea` (str, required) - The ID of the order match to pay for + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address that will be sending the payment + + order_match_id: `bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f` (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) @@ -7808,22 +7798,26 @@ Composes a transaction to pay for a BTC order match. + Default: `None` + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs + Default: `False` - + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee - + Default: `False` + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction + Default: `None` + segwit (bool, optional) - Use segwit + Default: `False` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` - + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex - + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created + Default: `None` - + return_only_data (bool, optional) - Return only the data part of the transaction - + Default: `False` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) + + Default: `False` + + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + + Default: `False` + + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction + + Default: `False` + + extended_tx_info (bool, optional) - (API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee + + Default: `False` + + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -7834,13 +7828,17 @@ Composes a transaction to pay for a BTC order match. ``` { "result": { - "rawtransaction": "02000000000101daf348400d79fd99e9e9ba39e5f589daf7f7e43bcd0432bd39c16204f0464ce600000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff03b80b000000000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde00000000000000004b6a49f131b00aece2c6e0846814cdf1d01bad20fbc28a55edb64fd93618de526eebe90b0d784396f0571e7c6b40121a05f265653f3c285b2705ef404dec40b013214a3d22a53281158e57afd993052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea" + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f" }, "name": "btcpay", - "data": "434e5452505254590b14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac7482d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "data": "434e5452505254590bbb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "btc_in": 5000000000, + "btc_out": 3000, + "btc_change": 4999975897, + "btc_fee": 21103, + "rawtransaction": "0200000000010152c499e6be8f463ed370997da9a6af073e4f103d6d79b0fca4cf7056b979e65400000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff03b80b000000000000160014ab1ca0986fe508fb370b5937169762b6328c900c00000000000000004b6a494a8ba6c4ab2690f363a9ca8790f3d3f1a5515dbd8c63dc770a469f83cf2f9ca4d710d17171a56f7375c2217e0455bfa4d41d70c1171a56cc2a0041da909987ea41b7c0d83da5293d70d993052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7852,12 +7850,12 @@ Composes a transaction to pay for a BTC order match. } ``` -### Compose Burn [GET /v2/addresses/{address}/compose/burn{?quantity}{&overburn}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] +### Compose Burn [GET /v2/addresses/{address}/compose/burn{?quantity}{&overburn}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, possible between blocks 278310 and 283810; on testnet it is still available). + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address with the BTC to burn + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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` @@ -7883,22 +7881,26 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss + Default: `None` + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs + Default: `False` - + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee - + Default: `False` + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction + Default: `None` + segwit (bool, optional) - Use segwit + Default: `False` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` - + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex - + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created + Default: `None` - + return_only_data (bool, optional) - Return only the data part of the transaction - + Default: `False` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) + + Default: `False` + + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + + Default: `False` + + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction + + Default: `False` + + extended_tx_info (bool, optional) - (API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee + + Default: `False` + + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -7909,25 +7911,29 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss ``` { "result": { - "rawtransaction": "0200000000010126fff1f579df2d0e9fbcb9b1e7f776838ce7a481ded19268534d0e584288f42c00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "quantity": 1000, "overburn": false }, "name": "burn", - "data": null + "data": null, + "btc_in": 5000000000, + "btc_out": 1000, + "btc_change": 4999983584, + "btc_fee": 15416, + "rawtransaction": "020000000001015335f23ce3fede2504cb86ff4184ab95d163e4a7a0e656afb9430fd1357f0cc600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000" } } ``` -### Compose Cancel [GET /v2/addresses/{address}/compose/cancel{?offer_hash}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] +### Compose Cancel [GET /v2/addresses/{address}/compose/cancel{?offer_hash}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to cancel an open order or bet. + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d` (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) @@ -7950,22 +7956,26 @@ Composes a transaction to cancel an open order or bet. + Default: `None` + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs + Default: `False` - + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee - + Default: `False` + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction + Default: `None` + segwit (bool, optional) - Use segwit + Default: `False` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` - + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex - + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created + Default: `None` - + return_only_data (bool, optional) - Return only the data part of the transaction - + Default: `False` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) + + Default: `False` + + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + + Default: `False` + + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction + + Default: `False` + + extended_tx_info (bool, optional) - (API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee + + Default: `False` + + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -7976,13 +7986,17 @@ Composes a transaction to cancel an open order or bet. ``` { "result": { - "rawtransaction": "020000000001013eb1a01d1d6551395769367a9f2bb8898eb5016edb8c8df41bc3627209ef15fc00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff0200000000000000002b6a29d500c7f0889a043d7b84962877949c32746ac86db22c5c112a0aeb978ee58dd489fa6dbbaf158f0a833bb1052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "offer_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7" + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "offer_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d" }, "name": "cancel", - "data": "434e54525052545946caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "data": "434e5452505254594671b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999983419, + "btc_fee": 16581, + "rawtransaction": "020000000001015db7fd7ae00f3185285f83d16e80b67dfc80998416eecad872f0e23ee8a6ce6600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff0200000000000000002b6a294d4e6f4d174cb1aac2eb1dcb8f2649bb3674fa53e2d245ea491e9982391aa6988c4bb3a7a5f6c7c2913bb1052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7994,12 +8008,12 @@ Composes a transaction to cancel an open order or bet. } ``` -### Compose Destroy [GET /v2/addresses/{address}/compose/destroy{?asset}{&quantity}{&tag}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] +### Compose Destroy [GET /v2/addresses/{address}/compose/destroy{?asset}{&quantity}{&tag}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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 @@ -8025,22 +8039,26 @@ Composes a transaction to destroy a quantity of an asset. + Default: `None` + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs + Default: `False` - + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee - + Default: `False` + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction + Default: `None` + segwit (bool, optional) - Use segwit + Default: `False` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` - + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex - + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created + Default: `None` - + return_only_data (bool, optional) - Return only the data part of the transaction - + Default: `False` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) + + Default: `False` + + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + + Default: `False` + + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction + + Default: `False` + + extended_tx_info (bool, optional) - (API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee + + Default: `False` + + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8051,9 +8069,8 @@ Composes a transaction to destroy a quantity of an asset. ``` { "result": { - "rawtransaction": "02000000000101aa28b197c723d17de2bef2df47f595f98f623493ec66a5b3672089dffcb3f7dd00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000226a20885bd57eae112fdd7db39d3c1707dda3f29d6129c49db69e01f3a8183175e0c7a4b3052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8068,6 +8085,11 @@ Composes a transaction to destroy a quantity of an asset. }, "name": "destroy", "data": "434e5452505254596e000000000000000100000000000003e822627567732122", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999984036, + "btc_fee": 15964, + "rawtransaction": "02000000000101243012e92ee26aa15a782cb2bbe197c8969a68efba5fa5ffdf8c6629803a1ae800000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000226a20bc7d36e6a6cc85dde26f0bba137fbd3da0f8c9580b38588624e2df93b37eae96a4b3052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8079,12 +8101,12 @@ Composes a transaction to destroy a quantity of an asset. } ``` -### Compose Dispenser [GET /v2/addresses/{address}/compose/dispenser{?asset}{&give_quantity}{&escrow_quantity}{&mainchainrate}{&status}{&open_address}{&oracle_address}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] +### Compose Dispenser [GET /v2/addresses/{address}/compose/dispenser{?asset}{&give_quantity}{&escrow_quantity}{&mainchainrate}{&status}{&open_address}{&oracle_address}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to opens or closes a dispenser for a given asset at a given rate of main chain asset (BTC). Escrowed quantity on open must be equal or greater than give_quantity. It is suggested that you escrow multiples of give_quantity to ease dispenser operation. + Parameters - + address: `bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8` (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) @@ -8116,22 +8138,26 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv + Default: `None` + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs + Default: `False` - + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee - + Default: `False` + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction + Default: `None` + segwit (bool, optional) - Use segwit + Default: `False` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` - + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex - + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created + Default: `None` - + return_only_data (bool, optional) - Return only the data part of the transaction - + Default: `False` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) + + Default: `False` + + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + + Default: `False` + + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction + + Default: `False` + + extended_tx_info (bool, optional) - (API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee + + Default: `False` + + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8142,9 +8168,8 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv ``` { "result": { - "rawtransaction": "0200000000010180e6e6e4a397697db7cde6ec1766b0852b9bee4f96cdf4dd96e98e18c7fbc84702000000160014dca9e37d561861c1f2060057ec37a222d5f5ae38ffffffff0200000000000000002c6a2a12a1cb0b3a347bca215cf1c90c427ab6da126eb992551c4982ff058f11802d849a4024582c5fd3e697b0474b0a2701000000160014dca9e37d561861c1f2060057ec37a222d5f5ae3802000000000000", "params": { - "source": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", + "source": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8164,6 +8189,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_out": 0, + "btc_change": 4949953351, + "btc_fee": 16649, + "rawtransaction": "020000000001016ca177f459b6c36294fcb4155e83d07122353ab8388ce92973f4e652be3e91c8020000001600140c5f6b2015e1824e0d2b841e238a8fe8e4fe23edffffffff0200000000000000002c6a2a30263885add80b04f339f88a69df0d27f6167813e3f323cfaa236dde5a4a7910ed88bf0a12549501f797474b0a27010000001600140c5f6b2015e1824e0d2b841e238a8fe8e4fe23ed02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8175,12 +8205,12 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv } ``` -### Compose Dividend [GET /v2/addresses/{address}/compose/dividend{?quantity_per_unit}{&asset}{÷nd_asset}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] +### Compose Dividend [GET /v2/addresses/{address}/compose/dividend{?quantity_per_unit}{&asset}{÷nd_asset}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a dividend to holders of a given asset. + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (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: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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 @@ -8206,22 +8236,26 @@ Composes a transaction to issue a dividend to holders of a given asset. + Default: `None` + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs + Default: `False` - + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee - + Default: `False` + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction + Default: `None` + segwit (bool, optional) - Use segwit + Default: `False` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` - + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex - + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created + Default: `None` - + return_only_data (bool, optional) - Return only the data part of the transaction - + Default: `False` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) + + Default: `False` + + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + + Default: `False` + + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction + + Default: `False` + + extended_tx_info (bool, optional) - (API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee + + Default: `False` + + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8232,16 +8266,15 @@ Composes a transaction to issue a dividend to holders of a given asset. ``` { "result": { - "rawtransaction": "020000000001017d8e59c3272df4941d47b894e7503dcb7aee29a7286dce9df82ebc081b370e5000000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000236a21f356553496497d7b934fe0a108db797f9a05bc37c350d4b2c9202c9c0fe0d704f660b3052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -8256,6 +8289,11 @@ Composes a transaction to issue a dividend to holders of a given asset. }, "name": "dividend", "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999983968, + "btc_fee": 16032, + "rawtransaction": "020000000001011cc4f1ec2e36e31211a9399c62df1ab5fd8af892bd5626698abb7f1a824b1a7f00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000236a2152815ea75b3585636dbbcf7e9879494aa1a009d8c27727374d4c47efdeaa5a79f160b3052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8267,15 +8305,15 @@ Composes a transaction to issue a dividend to holders of a given asset. } ``` -### Compose Issuance [GET /v2/addresses/{address}/compose/issuance{?asset}{&quantity}{&transfer_destination}{&divisible}{&lock}{&reset}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] +### Compose Issuance [GET /v2/addresses/{address}/compose/issuance{?asset}{&quantity}{&transfer_destination}{&divisible}{&lock}{&reset}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to Issue a new asset, issue more of an existing asset, lock an asset, reset existing supply, or transfer the ownership of an asset. + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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` @@ -8307,22 +8345,26 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo + Default: `None` + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs + Default: `False` - + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee - + Default: `False` + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction + Default: `None` + segwit (bool, optional) - Use segwit + Default: `False` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` - + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex - + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created + Default: `None` - + return_only_data (bool, optional) - Return only the data part of the transaction - + Default: `False` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) + + Default: `False` + + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + + Default: `False` + + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction + + Default: `False` + + extended_tx_info (bool, optional) - (API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee + + Default: `False` + + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8333,12 +8375,11 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo ``` { "result": { - "rawtransaction": "020000000001016f87d4afb609faeff0385730e8d3f735faf637ec6648c234938085805595f3e000000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff032202000000000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde0000000000000000236a213ad5656005b5e1507bc5682b156fb094ddc2dc97dd217fcfb33a74b57a9516718924a8052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "transfer_destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "lock": false, "reset": false, @@ -8347,6 +8388,11 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo }, "name": "issuance", "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", + "btc_in": 5000000000, + "btc_out": 546, + "btc_change": 4999981092, + "btc_fee": 18362, + "rawtransaction": "0200000000010103fb4050d4f193e360ad8b027709d53abcbf04a2a1010df3ee4085ce05adde2300000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff032202000000000000160014ab1ca0986fe508fb370b5937169762b6328c900c0000000000000000236a2143df507de8f5a7bf1c9ffa5df39c3d425c98c75defe11495764bf5df144c0c238524a8052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8358,14 +8404,14 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo } ``` -### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] +### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to send multiple payments to multiple addresses. + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr,bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj,bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (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` @@ -8393,22 +8439,26 @@ Composes a transaction to send multiple payments to multiple addresses. + Default: `None` + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs + Default: `False` - + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee - + Default: `False` + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction + Default: `None` + segwit (bool, optional) - Use segwit + Default: `False` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` - + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex - + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created + Default: `None` - + return_only_data (bool, optional) - Return only the data part of the transaction - + Default: `False` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) + + Default: `False` + + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + + Default: `False` + + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction + + Default: `False` + + extended_tx_info (bool, optional) - (API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee + + Default: `False` + + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8419,18 +8469,17 @@ Composes a transaction to send multiple payments to multiple addresses. ``` { "result": { - "rawtransaction": "02000000000104ebbb5a83142a1034aaac4032e1a546cf5a274068dfeeb37875cd03b3700eabb000000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff4e7c7126f386b9de41bcef227b4cdefe1da4e4bb0f376a959e25a892cf219fd000000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff2ceabacbe62a496bc4e8e0f806c23af5d0f6dd6d3bf487cd622229b61a20204d00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff745824b68663dbde5c66294a4cd315eb4c3792f6a2a8c25bea96b6b70d0e978f00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff03e803000000000000695121036ece70a04e5b015c53fb0b91fcfd8082fd1f3eab08a869ae32bb59253ae4bb9821021d9692c24bba1449381a7f71a8f96ef08e14baf6e25b3fcc839b7fbd9dd3e41a2103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253aee8030000000000006951210261ce70a04e5b015c53d87cfc0ec765833c6d654cde6d834a96b7e5e5d42b173f210290485a34afb81297ddc744b30a7920b79c12cf049f53ed43a1d31ad1f1bcc8662103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253ae61d016a804000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000002000002000002000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", 1 ], [ "MYASSETA", - "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", 2 ] ], @@ -8438,7 +8487,12 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280568120e3f25be7dad0716f132cbcc0eecfac8dde80f6e40206dee5dd33c2a2804e47120677f27d08d28f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280ab1ca0986fe508fb370b5937169762b6328c900c80a4ca4c30f02016b9d3311b06228bced4605a672d8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "btc_in": 20000000000, + "btc_out": 2000, + "btc_change": 19999936609, + "btc_fee": 61391, + "rawtransaction": "020000000001046b414523590473e17a060f79d51b143092f0a49fd3c1574cb5c7e8816ffec29600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff6515d67199a23e30ea3e0687743ea61a94b4838a57ecfa86cbd1ab147c003d5800000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff0baa4e42d99e36bd02f37362ccd7959c2714d3addfe4dff113f283be2716734000000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff895f4db1d0bf555d6a70322996020954d8656732fd6e0b7f9129f8b74973cc2b00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff03e803000000000000695121028e1967a49cd0af70d220be6d0499ca4522b167d980b1434a20661459283e699221031daf2ff3356e312c9fea05b6a89292fed1383db83105e08839624392d5a9cce7210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253aee80300000000000069512102811967a49cd0af70d203c900f65eb2c4985e82d17793d398a050833b9e0ce5bb21028da3e757ff2201dcbffcb465998994dc5af6ebd86b62cd071b2a26feb9c6e067210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253ae61d016a804000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8450,12 +8504,12 @@ Composes a transaction to send multiple payments to multiple addresses. } ``` -### Compose Order [GET /v2/addresses/{address}/compose/order{?give_asset}{&give_quantity}{&get_asset}{&get_quantity}{&expiration}{&fee_required}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] +### Compose Order [GET /v2/addresses/{address}/compose/order{?give_asset}{&give_quantity}{&get_asset}{&get_quantity}{&expiration}{&fee_required}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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 @@ -8484,22 +8538,26 @@ Composes a transaction to place an order on the distributed exchange. + Default: `None` + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs + Default: `False` - + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee - + Default: `False` + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction + Default: `None` + segwit (bool, optional) - Use segwit + Default: `False` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` - + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex - + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created + Default: `None` - + return_only_data (bool, optional) - Return only the data part of the transaction - + Default: `False` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) + + Default: `False` + + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + + Default: `False` + + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction + + Default: `False` + + extended_tx_info (bool, optional) - (API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee + + Default: `False` + + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8510,9 +8568,8 @@ Composes a transaction to place an order on the distributed exchange. ``` { "result": { - "rawtransaction": "02000000000101315dc0e7f6960541094341711ab902343d7c36bc88628ff8ca351a9649f85aef00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000356a3363b2cf1d482dc039dee4e210769c4819e87644b84643893ce3dbf7e5f6028cdb0b47bd000dfd5477bc385517d5d332f86c1a0a8eae052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8529,7 +8586,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -8539,6 +8596,11 @@ Composes a transaction to place an order on the distributed exchange. }, "name": "order", "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999982734, + "btc_fee": 17266, + "rawtransaction": "02000000000101b11ecb7d27a67136cf85b41c0f1746dd57d2d3a7dc6f554bc5130e8e6df7169c00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000356a3319a3789259879ad196f221e476cd6b47f56525ba5f07aad19e73110a5418e71eb4f883438237b5ca0614a9721c1168c74ebf718eae052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8550,13 +8612,13 @@ Composes a transaction to place an order on the distributed exchange. } ``` -### Compose Send [GET /v2/addresses/{address}/compose/send{?destination}{&asset}{&quantity}{&memo}{&memo_is_hex}{&use_enhanced_send}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] +### Compose Send [GET /v2/addresses/{address}/compose/send{?destination}{&asset}{&quantity}{&memo}{&memo_is_hex}{&use_enhanced_send}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to send a quantity of an asset to another address. + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (str, required) - The address that will be receiving the asset + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (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 @@ -8587,22 +8649,26 @@ Composes a transaction to send a quantity of an asset to another address. + Default: `None` + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs + Default: `False` - + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee - + Default: `False` + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction + Default: `None` + segwit (bool, optional) - Use segwit + Default: `False` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` - + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex - + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created + Default: `None` - + return_only_data (bool, optional) - Return only the data part of the transaction - + Default: `False` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) + + Default: `False` + + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + + Default: `False` + + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction + + Default: `False` + + extended_tx_info (bool, optional) - (API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee + + Default: `False` + + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8613,10 +8679,9 @@ Composes a transaction to send a quantity of an asset to another address. ``` { "result": { - "rawtransaction": "02000000000101729f4c197df6f4a236502146ab1a5258cab4a2beb8edf45e8afba0e82c88df2300000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000306a2e7a73cc3866f3308c247737670a9bb9dd77f0a63633306c262610ce07b025c4a37764ceb6770146df1f5632e859e4e5af052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8632,7 +8697,12 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880f6e40206dee5dd33c2a2804e47120677f27d08d2", + "data": "434e54525052545902000000000000000100000000000003e880a4ca4c30f02016b9d3311b06228bced4605a672d", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999983077, + "btc_fee": 16923, + "rawtransaction": "0200000000010158fd1f796df7fea46698bc263a2bd7d424a85d2816510bbdf826be021fab04b400000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000306a2eb06e3c72eb8372859fd223c26c9d6538ae59c8ef14c9d7e98aeb1dd484f73a501c37c81e4d761d5eb3cc7b4cc11ae5af052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8644,13 +8714,13 @@ Composes a transaction to send a quantity of an asset to another address. } ``` -### Compose Sweep [GET /v2/addresses/{address}/compose/sweep{?destination}{&flags}{&memo}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] +### Compose Sweep [GET /v2/addresses/{address}/compose/sweep{?destination}{&flags}{&memo}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to Sends all assets and/or transfer ownerships to a destination address. + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address that will be sending - + destination: `bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address that will be sending + + destination: `bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (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 @@ -8675,22 +8745,26 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti + Default: `None` + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs + Default: `False` - + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee - + Default: `False` + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction + Default: `None` + segwit (bool, optional) - Use segwit + Default: `False` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` - + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex - + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created + Default: `None` - + return_only_data (bool, optional) - Return only the data part of the transaction - + Default: `False` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) + + Default: `False` + + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + + Default: `False` + + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction + + Default: `False` + + extended_tx_info (bool, optional) - (API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee + + Default: `False` + + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8701,15 +8775,19 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti ``` { "result": { - "rawtransaction": "02000000000101df20d626cc16ba1c4999c923cf908cecec6c36023462e9d1ef307d4b2a37e97100000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000236a21f5f26402338b4b669a2bd2402474c76df612433dd10bcabf9904a7f38e132a05a660b3052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480f6e40206dee5dd33c2a2804e47120677f27d08d207ffff", + "data": "434e5452505254590480a4ca4c30f02016b9d3311b06228bced4605a672d07ffff", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999983968, + "btc_fee": 16032, + "rawtransaction": "02000000000101e28bddd16c488955c1574a8b910920bed71e94cb3424549cfada1dffbf92f4a600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000236a21c6f0014bed1dbb0c63e5c6f4ab9b62aaf1cf8f29b6e1347e7e1b6f9c483a599eaf60b3052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8721,13 +8799,13 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti } ``` -### Compose Dispense [GET /v2/addresses/{address}/compose/dispense{?dispenser}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] +### Compose Dispense [GET /v2/addresses/{address}/compose/dispense{?dispenser}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to send BTC to a dispenser. + Parameters - + address: `bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt` (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` @@ -8751,22 +8829,26 @@ Composes a transaction to send BTC to a dispenser. + Default: `None` + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs + Default: `False` - + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee - + Default: `False` + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction + Default: `None` + segwit (bool, optional) - Use segwit + Default: `False` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` - + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex - + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created + Default: `None` - + return_only_data (bool, optional) - Return only the data part of the transaction - + Default: `False` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) + + Default: `False` + + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + + Default: `False` + + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction + + Default: `False` + + extended_tx_info (bool, optional) - (API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee + + Default: `False` + + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8777,14 +8859,18 @@ Composes a transaction to send BTC to a dispenser. ``` { "result": { - "rawtransaction": "02000000000101e0ce8482c498c33b2168d9e3cf9a33fedb60968a68b6553de6ab68cb48ab42c502000000160014f6e40206dee5dd33c2a2804e47120677f27d08d2ffffffff03e803000000000000160014ed681fe4daf7ab2ee1a33b873588429301d5bfa800000000000000000c6a0a4e4ac9ecf2a1c59d387a66b8082701000000160014f6e40206dee5dd33c2a2804e47120677f27d08d202000000000000", "params": { - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "quantity": 1000 }, "name": "dispense", "data": "434e5452505254590d00", + "btc_in": 4949868000, + "btc_out": 1000, + "btc_change": 4949850214, + "btc_fee": 16786, + "rawtransaction": "020000000001014965c1a1198d4641adae38c943e3eb0a22e72ee50bc76254283cee7633bc6ca902000000160014a4ca4c30f02016b9d3311b06228bced4605a672dffffffff03e803000000000000160014fcd4fef91bbb7752401bda00950d4c9047d0402800000000000000000c6a0a184253a54004e9393cb266b8082701000000160014a4ca4c30f02016b9d3311b06228bced4605a672d02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8796,12 +8882,12 @@ Composes a transaction to send BTC to a dispenser. } ``` -### Compose Fairminter [GET /v2/addresses/{address}/compose/fairminter{?asset}{&asset_parent}{&price}{&quantity_by_price}{&max_mint_per_tx}{&hard_cap}{&premint_quantity}{&start_block}{&end_block}{&soft_cap}{&soft_cap_deadline_block}{&minted_asset_commission}{&burn_payment}{&lock_description}{&lock_quantity}{&divisible}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] +### Compose Fairminter [GET /v2/addresses/{address}/compose/fairminter{?asset}{&asset_parent}{&price}{&quantity_by_price}{&max_mint_per_tx}{&hard_cap}{&premint_quantity}{&start_block}{&end_block}{&soft_cap}{&soft_cap_deadline_block}{&minted_asset_commission}{&burn_payment}{&lock_description}{&lock_quantity}{&divisible}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address that will be issuing the asset + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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: `` @@ -8857,22 +8943,26 @@ Composes a transaction to issue a new asset using the FairMinter protocol. + Default: `None` + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs + Default: `False` - + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee - + Default: `False` + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction + Default: `None` + segwit (bool, optional) - Use segwit + Default: `False` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` - + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex - + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created + Default: `None` - + return_only_data (bool, optional) - Return only the data part of the transaction - + Default: `False` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) + + Default: `False` + + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + + Default: `False` + + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction + + Default: `False` + + extended_tx_info (bool, optional) - (API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee + + Default: `False` + + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8883,9 +8973,8 @@ Composes a transaction to issue a new asset using the FairMinter protocol. ``` { "result": { - "rawtransaction": "020000000001013abd5789d21497efd4e34bcc7938cffe0dac28ce90b3773ef729b4929f31ab1400000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000316a2f6887c9fee2e9d6bad71ac9157aeff69cf73203356a7e5836755a2cf7ca4a47c18598bfded5d272dc9465942871dc4da0af052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -8906,6 +8995,11 @@ Composes a transaction to issue a new asset using the FairMinter protocol. }, "name": "fairminter", "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999983008, + "btc_fee": 16992, + "rawtransaction": "020000000001019e7e0c7349c31042c37817864ed04394eac047ee9791b172aa8a14fdf4c19a3200000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000316a2fac7eeb583600812eb6b1631a16d1b0a7a79a75c30ea39c7e1a59e3bb4504cc2552cc44343fccc2fd7d3bf2b05dc63ca0af052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8917,12 +9011,12 @@ Composes a transaction to issue a new asset using the FairMinter protocol. } ``` -### Compose Fairmint [GET /v2/addresses/{address}/compose/fairmint{?asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] +### Compose Fairmint [GET /v2/addresses/{address}/compose/fairmint{?asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to mint a quantity of an asset using the FairMinter protocol. + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address that will be minting the asset + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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` @@ -8948,22 +9042,26 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto + Default: `None` + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs + Default: `False` - + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee - + Default: `False` + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction + Default: `None` + segwit (bool, optional) - Use segwit + Default: `False` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` - + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex - + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created + Default: `None` - + return_only_data (bool, optional) - Return only the data part of the transaction - + Default: `False` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) + + Default: `False` + + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + + Default: `False` + + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction + + Default: `False` + + extended_tx_info (bool, optional) - (API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee + + Default: `False` + + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8974,15 +9072,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto ``` { "result": { - "rawtransaction": "020000000001011557e6edacb2424f9b980d8998dde10d2c288c61593f1adbb1e3118f5790fada00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000166a141094e889ea2b96910e0c5e83e31fdaae5d81484bdab6052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -8990,6 +9087,11 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto }, "name": "fairmint", "data": "434e5452505254595b464149524d494e54437c31", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999984858, + "btc_fee": 15142, + "rawtransaction": "02000000000101513e585d94693e2e265a99bfab48141b717dfd8dc5193ae57381d547ca8fdff100000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000166a147fee4a8479e15755f753a1cdf924b8686d02c8aadab6052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9001,15 +9103,15 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto } ``` -### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] +### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address from which the assets are attached + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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: `caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1` (str, optional) - The utxo to attach the assets to + + destination: `e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9033,22 +9135,26 @@ Composes a transaction to attach assets from an address to UTXO. + Default: `None` + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs + Default: `False` - + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee - + Default: `False` + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction + Default: `None` + segwit (bool, optional) - Use segwit + Default: `False` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` - + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex - + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created + Default: `None` - + return_only_data (bool, optional) - Return only the data part of the transaction - + Default: `False` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) + + Default: `False` + + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + + Default: `False` + + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction + + Default: `False` + + extended_tx_info (bool, optional) - (API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee + + Default: `False` + + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9059,10 +9165,9 @@ Composes a transaction to attach assets from an address to UTXO. ``` { "result": { - "rawtransaction": "02000000000106b5b2a300cd9f45e9fda7bd55fe7562178242530b17b22f81ff7fd2aca4c762cd00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffffef0a2588300e8fb8fda9df42f8c674ef493032f617daed6699e7c7cb571a8e2900000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff3597da886302ff1cf6b352404c1eb0954497c87c15a918872e2373408904f4b200000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff4268ca1adfcfd7c71d02cdc28133b4a94c3d6cf064c021831d0a641876830e3200000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff4c3fd0d1e9fd1207d8a7512e79145c7baf1824c64b85ff95077e80fb4012d47b00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff5e90be4b78a0601e9e787268b5bdc9441f0b96d70de955f01e770cf7ec058e4b00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff04e8030000000000006951210388e0801a8eb1ee3020f43c7ad6954d29621f6ed76ed366f6c1efc95e55d1aecd21031361d20e3a1a451d140674a3d3fbe557e2cc447c2987afb03b165bf8436d36322103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253aee8030000000000006951210288e0801a8eb1ee3020a56b7bc1824f3e621e2e8e2b863eaa80eac45b51d2e55521024363960d614b475407042effdcf8f213e3db4e3e2c97e8a86e4604ab436c3d582103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253aee80300000000000069512103a2e0801a8eb1ee3020a2687d93db4d24086a4fc12f803aacb5dfa73f61e4dc6121032005a768507f75656567199be59e9720d5bf280c1cf3ddcc58773dce770805212103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253aee83922fc06000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9075,7 +9180,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713236716a70636c6a74306e61343572336475666a65307871616d383665727737736c703574727c636166363465333535626563336632373133353634363535636430363963663165313432316263376439666533366466323064356436313965346438323664373a317c5843507c31303030", + "data": "434e545250525459646263727431713476773270787230753579306b64637474796d3364396d7a6b636567657971767a6c766a646a7c653461663864363533376631363536383430666638306231653865643432383061373333653434313563333739386632313862656438616634396337326138343a317c5843507c31303030", + "btc_in": 30000000000, + "btc_out": 3000, + "btc_change": 29999905256, + "btc_fee": 91744, + "rawtransaction": "0200000000010619b635802d062e0f54a0efad67febe746729b3a19c63be03b892f9d66f30e70600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffffaba7e0a56b0cf395747c347a0af12e121a0a8e9f109cd9d78140cf79ccd8e32b00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff36b4a050a5ef3a4860409e9a7d5cd38863eb73f175b0889fa20deb5ba828db3200000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffffad6296b39c4da592264107716b06741fd5f6b6f664432fe3e22765000887fbad00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff11c4a709f74556931b448f065eb8221414d357d1eec183199f6c5e8ea70a2e3e00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff99421d7eb985e931b30f5f4ed605cedfad817c6a114c92125ac753ccf364c78600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff04e80300000000000069512102e19b774312551ce9ad05c7ad52649b8cc1bf8bbaed53b3f8237c4e12a4ae0dc72102e19bfbce5819425ee7375de33c47f748b619ef29b6067a8e7bd57a6ff1e62892210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253aee80300000000000069512103e19b774312551ce9ad5496f946219cc8c3f1c8b8fb4df9f83478521aaaae5a912102a7d7b2c25c4e4856a9680fb33811b900f805b16ee400759626807d3df0e1290a210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253aee80300000000000069512103cb9b774312551ce9ad53c4f6142a9b81ad8aacf4ac1bf1f856493722cfca6ed4210395ef82a36b7d7b339d5c3e865b228e39c063835fdc6210f21ee11b09c9821ef2210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253aee83922fc06000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9087,13 +9197,13 @@ Composes a transaction to attach assets from an address to UTXO. } ``` -### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?destination}{&asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&inputs_set}{&verbose}{&show_unconfirmed}] +### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?destination}{&asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3:1` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to detach the assets to + + utxo: `21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a:1` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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 @@ -9118,22 +9228,26 @@ Composes a transaction to detach assets from UTXO to an address. + Default: `None` + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs + Default: `False` - + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee - + Default: `False` + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction + Default: `None` + segwit (bool, optional) - Use segwit + Default: `False` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` - + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex - + Default: `False` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created + Default: `None` - + return_only_data (bool, optional) - Return only the data part of the transaction - + Default: `False` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) + + Default: `False` + + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + + Default: `False` + + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction + + Default: `False` + + extended_tx_info (bool, optional) - (API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee + + Default: `False` + + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9144,10 +9258,9 @@ Composes a transaction to detach assets from UTXO to an address. ``` { "result": { - "rawtransaction": "02000000000101e3c0abdcb1b46b89adbb9079210c4c14d9f624a027d8f449248c9b8b82c366e1010000001600147680081eacbc4519f01d1f068efed38d60f8c0a9ffffffff04e80300000000000069512103f844335e103b984283c13015448330b33544964dfae4ff345c79050cffa1001921024803ce6c4c93f971075791716b29c7c3149271b4a720463aeb26332fb1f36b62210210c7a3f106ae95ec77b61dd08bf70b372b9bd9adb606dcef53143fd064020b5253aee80300000000000069512103f844335e103b984283c7614643d130e16f159e4af0bcf62b0c2e4341a8e456d021024640937d1fcda763015dc9746a6f979702c62ae6ae610739e47f6172fab23e49210210c7a3f106ae95ec77b61dd08bf70b372b9bd9adb606dcef53143fd064020b5253aee80300000000000069512103d244335e103b984283d6395447c121fc5535fe53f2b6f7676e4d31359995640e21037031f90d7ca1cd173133a8405f1da4f377a040839e1976588947571788c509e1210210c7a3f106ae95ec77b61dd08bf70b372b9bd9adb606dcef53143fd064020b5253aef4980827010000001600147680081eacbc4519f01d1f068efed38d60f8c0a902000000000000", "params": { - "source": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3:1", - "destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a:1", + "destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9160,7 +9273,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964653136366333383238623962386332343439663464383237613032346636643931343463306332313739393062626164383936626234623164636162633065333a317c6263727431713236716a70636c6a74306e61343572336475666a65307871616d383665727737736c703574727c5843507c31303030", + "data": "434e54525052545964323161393730363531303137313234303438306234303362643834363637333434313264633262363839326630643065666666613364333165613261383137613a317c6263727431713476773270787230753579306b64637474796d3364396d7a6b636567657971767a6c766a646a7c5843507c31303030", + "btc_in": 4949874900, + "btc_out": 3000, + "btc_change": 4949842164, + "btc_fee": 29736, + "rawtransaction": "020000000001017a812aea313dfaff0e0d2f89b6c22d41346746d83b400b48401217106570a9210100000016001420582a98a28bc63ae45a15b698c57e26fa1be207ffffffff04e80300000000000069512102bf70627fbbd9cc3fc3554a55fd6784c5c5dc1c67645ca0da21af49f034ba20342102738249874b5b409468101cc4006c6585fa1ed00d843437ab5ddbf5814ea3788d2103f746dcb4e4f134685e58226c4d3c6e8be7ab705636aac838644a8adba0b8d0b653aee80300000000000069512103bf70627fbbd9cc3fc3021c57ad3bd2c792d11c603451a09477fc0fbc35a9204d210335c619930b1d46d76a5a189b553d7592b111d551846b2bf05a8ef78251b46f672103f746dcb4e4f134685e58226c4d3c6e8be7ab705636aac838644a8adba0b8d0b653aee803000000000000695121029570627fbbd9cc3fc34b1412f63ad989abaa7d2b645ba1d8159f7dc804d8142e210343b12be3736f76a25f2328f0315e01e6c87ce635bd06519b39eb90e728c519b12103f746dcb4e4f134685e58226c4d3c6e8be7ab705636aac838644a8adba0b8d0b653aef49808270100000016001420582a98a28bc63ae45a15b698c57e26fa1be20702000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9215,8 +9333,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 10000000000, @@ -9224,16 +9342,16 @@ Returns the valid assets "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727000443, - "last_issuance_block_time": 1727000461, + "first_issuance_block_time": 1727031579, + "last_issuance_block_time": 1727031596, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", - "owner": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", + "issuer": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", + "owner": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", "divisible": true, "locked": false, "supply": 100000000000, @@ -9241,16 +9359,16 @@ Returns the valid assets "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1727000439, - "last_issuance_block_time": 1727000439, + "first_issuance_block_time": 1727031574, + "last_issuance_block_time": 1727031574, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 100000000000, @@ -9258,16 +9376,16 @@ Returns the valid assets "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727000405, - "last_issuance_block_time": 1727000405, + "first_issuance_block_time": 1727031540, + "last_issuance_block_time": 1727031540, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 40, @@ -9275,16 +9393,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727000354, - "last_issuance_block_time": 1727000358, + "first_issuance_block_time": 1727031489, + "last_issuance_block_time": 1727031494, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 19, @@ -9292,8 +9410,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727000326, - "last_issuance_block_time": 1727000349, + "first_issuance_block_time": 1727031472, + "last_issuance_block_time": 1727031485, "supply_normalized": "0.00000019" } ], @@ -9321,8 +9439,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 10000000000, @@ -9330,8 +9448,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1727000288, - "last_issuance_block_time": 1727000301, + "first_issuance_block_time": 1727031435, + "last_issuance_block_time": 1727031448, "supply_normalized": "100.00000000" } } @@ -9362,7 +9480,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9370,14 +9488,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9385,7 +9503,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -9402,7 +9520,7 @@ Returns the asset balances Returns the balance of an address and asset + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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` @@ -9414,7 +9532,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -9463,9 +9581,9 @@ Returns the orders of an asset "result": [ { "tx_index": 57, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9480,7 +9598,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727000584, + "block_time": 1727031738, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9506,9 +9624,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "block_index": 190, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9523,7 +9641,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727000580, + "block_time": 1727031724, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9549,9 +9667,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "tx_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "block_index": 186, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -9566,7 +9684,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727000563, + "block_time": 1727031707, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9592,9 +9710,9 @@ Returns the orders of an asset }, { "tx_index": 50, - "tx_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "tx_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "block_index": 185, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -9609,7 +9727,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727000558, + "block_time": 1727031703, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9635,9 +9753,9 @@ Returns the orders of an asset }, { "tx_index": 49, - "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", "block_index": 186, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9652,7 +9770,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727000563, + "block_time": 1727031707, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9712,13 +9830,13 @@ Returns the orders of an asset { "result": [ { - "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "tx0_index": 49, - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 52, - "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", - "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -9732,7 +9850,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727000563, + "block_time": 1727031707, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9752,13 +9870,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "tx0_index": 49, - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 50, - "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", - "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -9772,7 +9890,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727000558, + "block_time": 1727031703, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9792,13 +9910,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", "tx0_index": 47, - "tx0_hash": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 48, - "tx1_hash": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", - "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "tx1_hash": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -9812,7 +9930,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727000481, + "block_time": 1727031616, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9892,20 +10010,20 @@ Returns the credits of an asset "result": [ { "block_index": 192, - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -9913,20 +10031,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "440ae8e372ae940d6481d2627e1995fa192be6b97873113ff7d04d298a8f443e", + "event": "233dc7165588f359608bc62642e47111d3bfbf33f36cce0c33ba1a62b65c49d3", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000301, + "block_time": 1727031448, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -9934,20 +10052,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f", + "event": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000297, + "block_time": 1727031444, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -9955,20 +10073,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", + "event": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000297, + "block_time": 1727031444, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -9980,16 +10098,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f", + "event": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000297, + "block_time": 1727031444, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -10045,16 +10163,16 @@ Returns the debits of an asset "result": [ { "block_index": 193, - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "event": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -10066,16 +10184,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -10087,16 +10205,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -10108,16 +10226,16 @@ Returns the debits of an asset }, { "block_index": 191, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "event": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000584, + "block_time": 1727031738, "asset_info": { "divisible": true, "asset_longname": null, @@ -10129,16 +10247,16 @@ Returns the debits of an asset }, { "block_index": 189, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000575, + "block_time": 1727031720, "asset_info": { "divisible": true, "asset_longname": null, @@ -10178,20 +10296,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 40, - "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", + "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", "block_index": 153, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727000430, + "block_time": 1727031565, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -10235,14 +10353,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "440ae8e372ae940d6481d2627e1995fa192be6b97873113ff7d04d298a8f443e", + "tx_hash": "233dc7165588f359608bc62642e47111d3bfbf33f36cce0c33ba1a62b65c49d3", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -10257,20 +10375,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727000301, + "block_time": 1727031448, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f", + "tx_hash": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -10285,20 +10403,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727000297, + "block_time": 1727031444, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", + "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -10313,20 +10431,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727000293, + "block_time": 1727031440, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -10341,7 +10459,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1727000288, + "block_time": 1727031435, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10375,10 +10493,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10386,7 +10504,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "divisible": true, "asset_longname": null, @@ -10399,10 +10517,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 53, - "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50", + "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763", "block_index": 187, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10410,7 +10528,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000567, + "block_time": 1727031711, "asset_info": { "divisible": true, "asset_longname": null, @@ -10423,10 +10541,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 42, - "tx_hash": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", + "tx_hash": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", "block_index": 155, - "source": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881:0", - "destination": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3:1", + "source": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1:0", + "destination": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10434,7 +10552,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000439, + "block_time": 1727031574, "asset_info": { "divisible": true, "asset_longname": null, @@ -10447,10 +10565,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 41, - "tx_hash": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881", + "tx_hash": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1", "block_index": 154, - "source": "04f059b15c3a78cd69b004df45b5e2a96703d2a36ce737e6bad8ddad72bbffb2:0", - "destination": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881:0", + "source": "db0f9118b55250f75e4c301deb8008e4e0f5f440d1b843264992ce00dd293803:0", + "destination": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10458,7 +10576,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000434, + "block_time": 1727031570, "asset_info": { "divisible": true, "asset_longname": null, @@ -10507,18 +10625,18 @@ Returns the dispensers of an asset "result": [ { "tx_index": 32, - "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "last_status_tx_hash": null, - "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10528,7 +10646,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727000400, + "block_time": 1727031536, "asset_info": { "divisible": true, "asset_longname": null, @@ -10544,9 +10662,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", + "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", "block_index": 144, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10555,7 +10673,7 @@ Returns the dispensers of an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10565,7 +10683,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000392, + "block_time": 1727031527, "asset_info": { "divisible": true, "asset_longname": null, @@ -10581,9 +10699,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "55b192e3a4561ca9f43c52774fc1a814cbbc8063479cd052a6bb818aec5aeadc", + "tx_hash": "d3bbef12243451e8ad3a4da485b4b206a0fa90300424e3639deb554c3b73301a", "block_index": 142, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10592,7 +10710,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "origin": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10602,7 +10720,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000383, + "block_time": 1727031518, "asset_info": { "divisible": true, "asset_longname": null, @@ -10618,9 +10736,9 @@ Returns the dispensers of an asset }, { "tx_index": 26, - "tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10629,7 +10747,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10639,7 +10757,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -10664,7 +10782,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - The address to return + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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` @@ -10677,9 +10795,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", + "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", "block_index": 144, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10688,7 +10806,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10698,7 +10816,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000392, + "block_time": 1727031527, "asset_info": { "divisible": true, "asset_longname": null, @@ -10748,7 +10866,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -10756,7 +10874,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -10765,7 +10883,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -10773,7 +10891,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -10782,7 +10900,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -10790,7 +10908,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -10799,7 +10917,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -10836,27 +10954,27 @@ Returns the dispenses of an asset { "tx_index": 33, "dispense_index": 0, - "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", - "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "last_status_tx_hash": null, - "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10871,7 +10989,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727000400, + "block_time": 1727031536, "asset_info": { "divisible": true, "asset_longname": null, @@ -10885,19 +11003,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", + "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10905,7 +11023,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10920,7 +11038,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -10934,19 +11052,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", + "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", "block_index": 140, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10954,7 +11072,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10969,7 +11087,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000375, + "block_time": 1727031510, "asset_info": { "divisible": true, "asset_longname": null, @@ -11012,8 +11130,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 0, @@ -11021,8 +11139,8 @@ Returns asset subassets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1727000447, - "last_issuance_block_time": 1727000447, + "first_issuance_block_time": 1727031593, + "last_issuance_block_time": 1727031593, "supply_normalized": "0.00000000" } ], @@ -11054,10 +11172,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "tx_index": 10, "block_index": 125, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11082,7 +11200,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727000301 + "block_time": 1727031448 } ], "next_cursor": null, @@ -11113,64 +11231,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "440ae8e372ae940d6481d2627e1995fa192be6b97873113ff7d04d298a8f443e", + "tx_hash": "233dc7165588f359608bc62642e47111d3bfbf33f36cce0c33ba1a62b65c49d3", "tx_index": 13, "block_index": 125, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", - "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000301, + "block_time": 1727031448, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } }, { - "tx_hash": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f", + "tx_hash": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144", "tx_index": 12, "block_index": 124, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", - "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000297, + "block_time": 1727031444, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } }, { - "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", + "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000293, + "block_time": 1727031440, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } @@ -11186,7 +11304,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt` (str, required) - The address of the mints to return + + address: `bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (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` @@ -11205,22 +11323,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", + "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000293, + "block_time": 1727031440, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } @@ -11264,9 +11382,9 @@ Returns all the orders "result": [ { "tx_index": 57, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11281,7 +11399,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727000584, + "block_time": 1727031738, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11307,9 +11425,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "block_index": 190, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11324,7 +11442,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727000580, + "block_time": 1727031724, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11350,9 +11468,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "tx_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "block_index": 186, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11367,7 +11485,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727000563, + "block_time": 1727031707, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11393,9 +11511,9 @@ Returns all the orders }, { "tx_index": 50, - "tx_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "tx_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "block_index": 185, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11410,7 +11528,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727000558, + "block_time": 1727031703, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11436,9 +11554,9 @@ Returns all the orders }, { "tx_index": 49, - "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", "block_index": 186, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11453,7 +11571,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727000563, + "block_time": 1727031707, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11488,7 +11606,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7` (str, required) - The hash of the transaction that created the order + + order_hash: `71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d` (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. @@ -11500,9 +11618,9 @@ Returns the information of an order { "result": { "tx_index": 57, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11517,7 +11635,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727000584, + "block_time": 1727031738, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11549,7 +11667,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74` (str, required) - The hash of the transaction that created the order + + order_hash: `bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a` (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 @@ -11574,13 +11692,13 @@ Returns the order matches of an order { "result": [ { - "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "tx0_index": 49, - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 52, - "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", - "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11594,7 +11712,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727000563, + "block_time": 1727031707, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11614,13 +11732,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "tx0_index": 49, - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 50, - "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", - "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11634,7 +11752,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727000558, + "block_time": 1727031703, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11664,7 +11782,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74` (str, required) - The hash of the transaction that created the order + + order_hash: `bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a` (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 @@ -11683,15 +11801,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 51, - "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", + "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", "block_index": 185, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "btc_amount": 2000, - "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "status": "valid", "confirmed": true, - "block_time": 1727000558, + "block_time": 1727031703, "btc_amount_normalized": "0.00002000" } ], @@ -11733,9 +11851,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 57, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11753,7 +11871,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727000584, + "block_time": 1727031738, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11779,9 +11897,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "block_index": 190, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11799,7 +11917,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727000580, + "block_time": 1727031724, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11825,9 +11943,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "tx_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "block_index": 186, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11845,7 +11963,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727000563, + "block_time": 1727031707, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11871,9 +11989,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "tx_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "block_index": 185, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11891,7 +12009,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727000558, + "block_time": 1727031703, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11917,9 +12035,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", "block_index": 186, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11937,7 +12055,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727000563, + "block_time": 1727031707, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11998,13 +12116,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "tx0_index": 49, - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 52, - "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", - "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12021,7 +12139,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727000563, + "block_time": 1727031707, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12041,13 +12159,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "tx0_index": 49, - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 50, - "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", - "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12064,7 +12182,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727000558, + "block_time": 1727031703, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12084,13 +12202,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", "tx0_index": 47, - "tx0_hash": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 48, - "tx1_hash": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", - "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "tx1_hash": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12107,7 +12225,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727000481, + "block_time": 1727031616, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12163,13 +12281,13 @@ Returns all the order matches { "result": [ { - "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "tx0_index": 49, - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 52, - "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", - "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12183,7 +12301,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727000563, + "block_time": 1727031707, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12203,13 +12321,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "tx0_index": 49, - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 50, - "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", - "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12223,7 +12341,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727000558, + "block_time": 1727031703, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12243,13 +12361,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", "tx0_index": 47, - "tx0_hash": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 48, - "tx1_hash": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", - "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "tx1_hash": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12263,7 +12381,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727000481, + "block_time": 1727031616, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12431,66 +12549,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "adfbd46bafe5d0eb02dc42e71c6ebd831574fbcbc27598f3a574cd28a015cc8b", + "tx_hash": "6428abb0788142a72920efd1a8b5dcdde89c7f503ca062322bcd573acac0e136", "block_index": 121, - "source": "bcrt1qyulh8dt9j6mxay44vsk59ykh3j0sepu4nr8frk", + "source": "bcrt1qyqvw64v3g6jjw0hkydjnz03emknd689c9m445j", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1727000284, + "block_time": 1727031432, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "1d6bad2e953fa3de6db966f89158902144fed3f216c81d87ddc6d4b23e8ff89d", + "tx_hash": "44f44f9f98d05d9ff88e87c42eebe0b002a603f79c116708ea623c2f8c5cb313", "block_index": 120, - "source": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", + "source": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1727000279, + "block_time": 1727031428, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "7ee251aac657b6a4b3605cca2cc178ffbec78038d0a964ca464c18982a294201", + "tx_hash": "1e79447843eb5dc9086921e2ded16a84c3271e35d5fe01b149623a4276548de1", "block_index": 119, - "source": "bcrt1qmrlqq2xhfdhnvnnsry6l8mkv5q9nrdz4nlkvmp", + "source": "bcrt1qtfj6sgngh8qduq9cl5kqdxwjvjdtfprgxr0re6", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1727000275, + "block_time": 1727031423, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "8e5aa0e03605f3cfb71386e8827a8dd88135027beba9e6d959f94577fdab79f6", + "tx_hash": "8619c6ed6633efdb103fc7b72e015e8d9ef017415f20f8778c96116c9766c4ed", "block_index": 118, - "source": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", + "source": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1727000271, + "block_time": 1727031419, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "0baa93783d18dfbdc8cfe8d0e1291184d0ed5524077e64df275222278c79b627", + "tx_hash": "d96a0715d3e1a34ea51ca28ce1b475e299ee9a2fd28e2d7955e84b61c541ebd5", "block_index": 117, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1727000267, + "block_time": 1727031415, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12533,18 +12651,18 @@ Returns all dispensers "result": [ { "tx_index": 32, - "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "last_status_tx_hash": null, - "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -12554,7 +12672,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727000400, + "block_time": 1727031536, "asset_info": { "divisible": true, "asset_longname": null, @@ -12570,9 +12688,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", + "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", "block_index": 144, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -12581,7 +12699,7 @@ Returns all dispensers "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12591,7 +12709,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000392, + "block_time": 1727031527, "asset_info": { "divisible": true, "asset_longname": null, @@ -12607,9 +12725,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "55b192e3a4561ca9f43c52774fc1a814cbbc8063479cd052a6bb818aec5aeadc", + "tx_hash": "d3bbef12243451e8ad3a4da485b4b206a0fa90300424e3639deb554c3b73301a", "block_index": 142, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12618,7 +12736,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "origin": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12628,7 +12746,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000383, + "block_time": 1727031518, "asset_info": { "divisible": true, "asset_longname": null, @@ -12644,9 +12762,9 @@ Returns all dispensers }, { "tx_index": 26, - "tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12655,7 +12773,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12665,7 +12783,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -12690,7 +12808,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e` (str, required) - The hash of the dispenser to return + + dispenser_hash: `2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6` (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. @@ -12702,9 +12820,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12713,7 +12831,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12723,7 +12841,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -12745,7 +12863,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e` (str, required) - The hash of the dispenser to return + + dispenser_hash: `2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6` (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 @@ -12765,19 +12883,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", + "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12785,7 +12903,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12800,7 +12918,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -12814,19 +12932,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", + "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", "block_index": 140, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12834,7 +12952,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12849,7 +12967,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000375, + "block_time": 1727031510, "asset_info": { "divisible": true, "asset_longname": null, @@ -12891,20 +13009,20 @@ Returns all the dividends "result": [ { "tx_index": 40, - "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", + "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", "block_index": 153, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727000430, + "block_time": 1727031565, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -12929,7 +13047,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b` (str, required) - The hash of the dividend to return + + dividend_hash: `581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa` (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. @@ -12941,20 +13059,20 @@ Returns a dividend by its hash { "result": { "tx_index": 40, - "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", + "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", "block_index": 153, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727000430, + "block_time": 1727031565, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -12976,7 +13094,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa` (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 @@ -12999,12 +13117,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", + "event": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", "tx_index": 40, - "utxo": "04f059b15c3a78cd69b004df45b5e2a96703d2a36ce737e6bad8ddad72bbffb2:0", - "utxo_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "utxo": "db0f9118b55250f75e4c301deb8008e4e0f5f440d1b843264992ce00dd293803:0", + "utxo_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "confirmed": true, - "block_time": 1727000430, + "block_time": 1727031565, "asset_info": { "divisible": true, "asset_longname": null, @@ -13016,16 +13134,16 @@ Returns a dividend distribution by its hash }, { "block_index": 153, - "address": "bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv", + "address": "bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", + "event": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000430, + "block_time": 1727031565, "asset_info": { "divisible": true, "asset_longname": null, @@ -13071,27 +13189,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", - "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", + "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", + "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", "transaction_count": 1, - "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", - "block_time": 1727000592 + "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", + "block_time": 1727031747 }, "tx_hash": null, "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "tx_index": 59 }, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 }, { "event_index": 533, @@ -13100,12 +13218,12 @@ Returns all events "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "status": "valid", "tag": "64657374726f79", - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "tx_index": 59, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -13115,24 +13233,24 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 193, - "event": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "event": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -13142,25 +13260,25 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", "block_index": 193, - "block_time": 1727000592, + "block_time": 1727031747, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "tx_index": 59, - "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", + "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -13180,9 +13298,9 @@ Returns all events }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 } ], "next_cursor": 530, @@ -13210,15 +13328,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", - "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", + "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", + "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", "transaction_count": 1, - "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", - "block_time": 1727000592 + "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", + "block_time": 1727031747 }, "tx_hash": null, "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 } } ``` @@ -13296,16 +13414,16 @@ Returns the events filtered by event name "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -13315,78 +13433,78 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727000580, + "block_time": 1727031724, "asset_info": { "divisible": true, "asset_longname": null, @@ -13396,24 +13514,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "block_index": 190, - "block_time": 1727000580 + "block_time": 1727031724 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "event": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "divisible": true, "asset_longname": null, @@ -13423,9 +13541,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "block_time": 1727000571 + "block_time": 1727031716 } ], "next_cursor": 490, @@ -13481,27 +13599,27 @@ Returns all the dispenses { "tx_index": 33, "dispense_index": 0, - "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", - "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "last_status_tx_hash": null, - "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13516,7 +13634,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727000400, + "block_time": 1727031536, "asset_info": { "divisible": true, "asset_longname": null, @@ -13530,19 +13648,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", + "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13550,7 +13668,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13565,7 +13683,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -13579,19 +13697,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", + "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", "block_index": 140, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13599,7 +13717,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13614,7 +13732,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000375, + "block_time": 1727031510, "asset_info": { "divisible": true, "asset_longname": null, @@ -13656,10 +13774,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "quantity": 10, "status": "valid", @@ -13667,7 +13785,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "divisible": true, "asset_longname": null, @@ -13680,10 +13798,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13691,11 +13809,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -13704,10 +13822,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13715,11 +13833,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -13728,10 +13846,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 53, - "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50", + "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763", "block_index": 187, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -13739,7 +13857,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000567, + "block_time": 1727031711, "asset_info": { "divisible": true, "asset_longname": null, @@ -13752,10 +13870,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 42, - "tx_hash": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", + "tx_hash": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", "block_index": 155, - "source": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881:0", - "destination": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3:1", + "source": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1:0", + "destination": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -13763,7 +13881,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000439, + "block_time": 1727031574, "asset_info": { "divisible": true, "asset_longname": null, @@ -13805,14 +13923,14 @@ Returns all the issuances "result": [ { "tx_index": 46, - "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", + "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -13827,20 +13945,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000465, + "block_time": 1727031601, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "69356c4a943c1bc4c96cf7e1fd1df717562742ba6d014e5404949c9fb8488072", + "tx_hash": "45b68c9ba64fa212a14541b0a2a12205e850ae06f24d5b225f0a5627c23d19e8", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -13855,20 +13973,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727000461, + "block_time": 1727031596, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "de64c6d5cdcb12d054140d780d7c6780ed87490c27d80ff372e2384e3e898730", + "tx_hash": "f90297d83b71b86f758f716ba6985c3656c2219501bf5577ac2d96103c22be8b", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -13883,20 +14001,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000447, + "block_time": 1727031593, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "694859d37608f9befa94495339565cd43e8955250c937c614bdc234e9fd9f4c6", + "tx_hash": "78d87a84a548e802140107907dab0b844c078356f9fcce558b74909d159796a6", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -13911,20 +14029,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000443, + "block_time": 1727031579, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", + "tx_hash": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", - "issuer": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", + "source": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", + "issuer": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", "transfer": false, "callable": false, "call_date": 0, @@ -13939,7 +14057,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000439, + "block_time": 1727031574, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -13954,7 +14072,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346` (str, required) - The hash of the transaction to return + + tx_hash: `867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b` (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. @@ -13966,14 +14084,14 @@ Returns the issuances of a block { "result": { "tx_index": 46, - "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", + "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -13988,7 +14106,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000465, + "block_time": 1727031601, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14020,16 +14138,16 @@ Returns all sweeps "result": [ { "tx_index": 58, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "fee_paid_normalized": "0.00600000" } ], @@ -14043,7 +14161,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea` (str, required) - The hash of the transaction to return + + tx_hash: `2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703` (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. @@ -14056,16 +14174,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 58, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "fee_paid_normalized": "0.00600000" } ], @@ -14099,9 +14217,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf", + "tx_hash": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06", "block_index": 138, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14109,14 +14227,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727000366, + "block_time": 1727031502, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "175b0e837d4aa88d671cfc863c546cf1e410283c6bcfca4f22737640612a0343", + "tx_hash": "70bbbef4d727695c9dfe5767a7984c541fa63ee857b8a6f9d4fd484e7e9bb559", "block_index": 137, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14124,7 +14242,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727000362, + "block_time": 1727031498, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14138,7 +14256,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf` (str, required) - The hash of the transaction to return + + tx_hash: `fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06` (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. @@ -14150,9 +14268,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf", + "tx_hash": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06", "block_index": 138, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14160,7 +14278,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727000366, + "block_time": 1727031502, "fee_fraction_int_normalized": "0.00000000" } } @@ -14190,10 +14308,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", + "tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", "tx_index": 22, "block_index": 135, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14218,13 +14336,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727000354 + "block_time": 1727031489 }, { - "tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", + "tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", "tx_index": 18, "block_index": 131, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14249,13 +14367,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727000326 + "block_time": 1727031472 }, { - "tx_hash": "7db72c3a3d73085625f2f30f21a6937c09222727d2b9942e21aec693b24bf08e", + "tx_hash": "f0dfc17c191520c1e2ba90abccbcc857553adf8a4e40722685a17b81ff2f781a", "tx_index": 14, "block_index": 130, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14280,13 +14398,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727000322 + "block_time": 1727031468 }, { - "tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "tx_index": 10, "block_index": 125, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14311,7 +14429,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727000301 + "block_time": 1727031448 } ], "next_cursor": null, @@ -14354,7 +14472,7 @@ Returns the mints by fairminter Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733,bcrt1qmrlqq2xhfdhnvnnsry6l8mkv5q9nrdz4nlkvmp` (str, required) - The addresses to search for + + addresses: `bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8,bcrt1qtfj6sgngh8qduq9cl5kqdxwjvjdtfprgxr0re6` (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. @@ -14373,8 +14491,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", - "address": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733" + "txid": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "address": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8" }, { "vout": 2, @@ -14382,8 +14500,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", - "address": "bcrt1qmrlqq2xhfdhnvnnsry6l8mkv5q9nrdz4nlkvmp" + "txid": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", + "address": "bcrt1qtfj6sgngh8qduq9cl5kqdxwjvjdtfprgxr0re6" } ], "next_cursor": null, @@ -14396,7 +14514,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss` (str, required) - The address to search for + + address: `bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m` (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 @@ -14412,28 +14530,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "d073bfba516a4c628b5c56105186ff577ace257af1912aa559d9761b7b225d25" + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" }, { - "tx_hash": "46166b488d62f2085d8dbc2af1837c3e9d204d91bf46bf31436e5e207c85d326" + "tx_hash": "eabb3b7be615850b99b1401f3f242c8fa8e18d2d0ba58915a003fa589718cf11" }, { - "tx_hash": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f" + "tx_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f" }, { - "tx_hash": "9b353d1cbb0a30108e4f9cc683852d659f4f611c141bab3af77efc10ab93dc4a" + "tx_hash": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144" }, { - "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50" + "tx_hash": "298f64a8390e187860e44c4d640b7d4d770a5e900ef83d0a97fa86d29f04c158" }, { - "tx_hash": "6a012a0815fc9d29a651e9f6af04443ca67779f542d86bcb97bc981b09842497" + "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763" }, { - "tx_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea" + "tx_hash": "bbf285a2631b2b28d813ffa0d762877fde240e44f671fd4de2212601b2c96180" }, { - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" + "tx_hash": "c7f128443db9a77d1633ed327ba6bff1a7df40904a0bcc0aeef69925fc748a83" } ], "next_cursor": null, @@ -14446,7 +14564,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t` (str, required) - The address to search for. + + address: `bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w` (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. @@ -14459,8 +14577,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 4, - "tx_hash": "d5e3e6a38642c35108060cab17f3bf9e9141c313f26df13b7f4a971bf2ea1472" + "block_index": 7, + "tx_hash": "0695fdf0f969745f89d7923c68582b3d3f4c5e5ec410ab681baddb2ec2c26181" } } ``` @@ -14470,7 +14588,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733` (str, required) - The address to search for + + address: `bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8` (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 @@ -14491,7 +14609,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680" + "txid": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c" } ], "next_cursor": null, @@ -14504,7 +14622,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr` (str, required) - Address to get pubkey for. + + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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. @@ -14516,7 +14634,7 @@ Get pubkey for an address. ``` { - "result": "03dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d962" + "result": "0303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b132" } ``` @@ -14525,7 +14643,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f` (str, required) - The transaction hash + + tx_hash: `50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e` (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. @@ -14537,7 +14655,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101f63c2d979ad0f0e7f38dd85c074a4731d6647152038511f2271ad1de3cf84d800300000000ffffffff020000000000000000226a20e06ea3ecf0f626c5841e5657c55445f9fb235327f993aaea1b320caf3bc7a6d6680b0a2701000000160014ed681fe4daf7ab2ee1a33b873588429301d5bfa80247304402206ea2865ecb9d902c8106db025b32cb485439db6daf31772806f9cf11815a10be02205e0347b8940a72eb394678316f05345062d84c91bbb221f48b584436951395df012102cd3154911e5d3f0dd8141a848af0f2f71983615dc048911e9fa68b8cf85964a600000000" + "result": "020000000001016cad36f4ab57f2653423ce2e004dcd91065944b0b547f60c13bf64bfea9e4cb20300000000ffffffff020000000000000000226a208f44de3448310d5fa0a8b864c3befe8ba7f95bc61cb57f2a89a1021ab70aac46680b0a2701000000160014fcd4fef91bbb7752401bda00950d4c9047d040280247304402206a051daee11301b981edf77e03e2c58ea1dc1936394e5e3c3a5a10c54527afa702207eb071d141d9508a1fe414b83ba4e3b6aaf09e35fedaf97f335a493674ab69fb012102d0179aa601d1b2caddcfe88c73ca7bf71949d02e3645f85bd050b7b64868f24800000000" } ``` @@ -14630,26 +14748,26 @@ Returns all mempool events { "result": [ { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "tx_index": 60 } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "memo": null, "quantity": 10000, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "status": "valid", - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "tx_index": 60, "asset_info": { "divisible": true, @@ -14662,19 +14780,19 @@ Returns all mempool events } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "CREDIT", "params": { - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -14686,19 +14804,19 @@ Returns all mempool events } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 193, - "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -14710,27 +14828,27 @@ Returns all mempool events } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727000606.3219044, + "block_time": 1727031751.6192584, "btc_amount": 0, - "data": "0200000000000000010000000000002710802fe54076791a6e2ac138ef00abb24f8185f125ab", + "data": "0200000000000000010000000000002710806dfffb33ff9bf38009f5261067fd1af98dadcc3c", "destination": "", "fee": 10000, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "tx_index": 60, - "utxos_info": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21:1", + "utxos_info": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "memo": null, "asset_info": { "divisible": true, @@ -14774,19 +14892,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "CREDIT", "params": { - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -14808,7 +14926,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21` (str, required) - The hash of the transaction to return + + tx_hash: `1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4` (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 @@ -14828,26 +14946,26 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "tx_index": 60 } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "memo": null, "quantity": 10000, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "status": "valid", - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "tx_index": 60, "asset_info": { "divisible": true, @@ -14860,19 +14978,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "CREDIT", "params": { - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -14884,19 +15002,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 193, - "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -14908,27 +15026,27 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727000606.3219044, + "block_time": 1727031751.6192584, "btc_amount": 0, - "data": "0200000000000000010000000000002710802fe54076791a6e2ac138ef00abb24f8185f125ab", + "data": "0200000000000000010000000000002710806dfffb33ff9bf38009f5261067fd1af98dadcc3c", "destination": "", "fee": 10000, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "tx_index": 60, - "utxos_info": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21:1", + "utxos_info": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "memo": null, "asset_info": { "divisible": true, diff --git a/counterparty-core/counterpartycore/lib/api/api_v1.py b/counterparty-core/counterpartycore/lib/api/api_v1.py index e55cd34703..ae968a5d00 100644 --- a/counterparty-core/counterpartycore/lib/api/api_v1.py +++ b/counterparty-core/counterpartycore/lib/api/api_v1.py @@ -565,11 +565,42 @@ def create_method(**kwargs): transaction_args, common_args, private_key_wif = ( api_compose.split_compose_params(**kwargs) ) + extended_tx_info = old_style_api = False + if "extended_tx_info" in common_args: + extended_tx_info = common_args["extended_tx_info"] + del common_args["extended_tx_info"] + if "old_style_api" in common_args: + old_style_api = common_args["old_style_api"] + del common_args["old_style_api"] + common_args["accept_missing_params"] = common_args.get( + "accept_missing_params", True + ) + for v2_arg in ["return_only_data", "return_psbt"]: + common_args.pop(v2_arg, None) with self.connection_pool.connection() as db: - rawtransaction, data = transaction.compose_transaction( - db, name=tx, params=transaction_args, api_v1=True, **common_args + transaction_info = transaction.compose_transaction( + db, name=tx, params=transaction_args, **common_args ) - return rawtransaction + if extended_tx_info: + return transaction_info + tx_hexes = list( + filter( + None, + [ + transaction_info["unsigned_tx_hex"], + transaction_info["unsigned_pretx_hex"], + ], + ) + ) # filter out None + if old_style_api: + if len(tx_hexes) != 1: + raise Exception("Can't do 2 TXs with old_style_api") + return tx_hexes[0] + else: + if len(tx_hexes) == 1: + return tx_hexes[0] + else: + return tx_hexes except ( TypeError, script.AddressError, diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index e86f4dffad..d89e5af1bb 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -88,11 +88,6 @@ False, "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", ), - "extended_tx_info": ( - bool, - False, - "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - ), "p2sh_pretx_txid": ( str, None, @@ -104,26 +99,41 @@ config.ESTIMATE_FEE_CONF_TARGET, "The number of blocks to target for confirmation", ), - "return_psbt": ( - bool, - False, - "Construct a PSBT instead of a raw transaction hex", - ), "exclude_utxos": ( str, None, "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", ), - "return_only_data": ( - bool, - False, - "Return only the data part of the transaction", - ), "inputs_set": ( str, None, "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", ), + "accept_missing_params": ( + bool, + False, + "Accept missing parameters with no default value (True by default for API v1)", + ), + "return_psbt": ( + bool, + False, + "(API v2 only) Construct a PSBT instead of a raw transaction hex", + ), + "return_only_data": ( + bool, + False, + "(API v2 only) Return only the data part of the transaction", + ), + "extended_tx_info": ( + bool, + False, + "(API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", + ), + "old_style_api": ( + bool, + False, + "(API v1 only) Returns a single hex-encoded string instead of an array", + ), } @@ -141,31 +151,37 @@ def split_compose_params(**kwargs): return transaction_args, common_args, private_key_wif -def get_key_name(**construct_args): - if construct_args.get("return_only_data"): - return "data" - if construct_args.get("return_psbt"): - return "psbt" - return "rawtransaction" - - def compose(db, name, params, **construct_args): if name not in COMPOSABLE_TRANSACTIONS: raise exceptions.TransactionError("Transaction type not composable.") - rawtransaction, data = transaction.compose_transaction( + return_only_data = construct_args.pop("return_only_data", False) + return_psbt = construct_args.pop("return_psbt", False) + for v1_args in ["extended_tx_info", "old_style_api"]: + construct_args.pop(v1_args) + transaction_info = transaction.compose_transaction( db, name=name, params=params, **construct_args, ) - if construct_args.get("return_only_data"): - return {"data": data} - return { - get_key_name(**construct_args): rawtransaction, + if return_only_data: + return {"data": transaction_info["data"]} + result = { "params": params, "name": name.split(".")[-1], - "data": data, + "data": transaction_info["data"], + "btc_in": transaction_info["btc_in"], + "btc_out": transaction_info["btc_out"], + "btc_change": transaction_info["btc_change"], + "btc_fee": transaction_info["btc_fee"], } + if return_psbt: + result["psbt"] = backend.bitcoind.convert_to_psbt(transaction_info["unsigned_tx_hex"]) + else: + result["rawtransaction"] = transaction_info["unsigned_tx_hex"] + if transaction_info.get("unsigned_pretx_hex"): + result["unsigned_pretx_hex"] = transaction_info["unsigned_pretx_hex"] + return result def compose_bet( diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index a96a0e8233..c732563c18 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -48,6 +48,7 @@ def construct_coin_selection( + size_for_fee, encoding, data_array, source, @@ -55,10 +56,8 @@ def construct_coin_selection( unspent_tx_hash, inputs_set, fee_per_kb, - estimate_fee_per_kb, estimate_fee_per_kb_nblocks, exact_fee, - size_for_fee, fee_provided, destination_btc_out, data_btc_out, @@ -98,6 +97,16 @@ def construct_coin_selection( # self.logger.debug(f"Sorted candidate UTXOs: {[print_coin(coin) for coin in unspent]}") use_inputs = unspent + # dont override fee_per_kb if specified + estimate_fee_per_kb = None + if fee_per_kb is not None: + estimate_fee_per_kb = False + else: + fee_per_kb = config.DEFAULT_FEE_PER_KB + + if estimate_fee_per_kb is None: + estimate_fee_per_kb = config.ESTIMATE_FEE_PER_KB + # use backend estimated fee_per_kb if estimate_fee_per_kb: estimated_fee_per_kb = backend.bitcoind.fee_per_kb( @@ -266,22 +275,18 @@ def get_dust_return_pubkey(source, provided_pubkeys): def determine_encoding( data, - prefix, desired_encoding="auto", op_return_max_size=config.OP_RETURN_MAX_SIZE, - old_style_api=None, ): # Data encoding methods (choose and validate). if not data: return None if desired_encoding == "auto": - if len(data) + len(prefix) <= op_return_max_size: + if len(data) + len(config.PREFIX) <= op_return_max_size: encoding = "opreturn" else: - encoding = ( - "p2sh" if not old_style_api and util.enabled("p2sh_encoding") else "multisig" - ) # p2sh is not possible with old_style_api + encoding = "multisig" else: encoding = desired_encoding @@ -296,22 +301,20 @@ def determine_encoding( def prepare_inputs( encoding, - prefix, data, destination_outputs, data_array, + destination_btc_out, + data_btc_out, source, p2sh_pretx_txid, allow_unconfirmed_inputs, unspent_tx_hash, inputs_set, fee_per_kb, - estimate_fee_per_kb, estimate_fee_per_kb_nblocks, exact_fee, fee_provided, - destination_btc_out, - data_btc_out, regular_dust_size, multisig_dust_size, disable_utxo_locks, @@ -325,7 +328,7 @@ def prepare_inputs( data_output_size = 81 # 71 for the data elif encoding == "opreturn": # prefix + data + 10 bytes script overhead - data_output_size = len(prefix) + 10 + data_output_size = len(config.PREFIX) + 10 if data is not None: data_output_size = data_output_size + len(data) else: @@ -344,6 +347,7 @@ def prepare_inputs( if not (encoding == "p2sh" and p2sh_pretx_txid): inputs, change_quantity, n_btc_in, n_final_fee = construct_coin_selection( + size_for_fee, encoding, data_array, source, @@ -351,10 +355,8 @@ def prepare_inputs( unspent_tx_hash, inputs_set, fee_per_kb, - estimate_fee_per_kb, estimate_fee_per_kb_nblocks, exact_fee, - size_for_fee, fee_provided, destination_btc_out, data_btc_out, @@ -407,13 +409,12 @@ def compute_destinations_and_values( def prepare_data_output( data, source, + source_is_p2sh, ps2h_dust_return_pubkey, - prefix, encoding, multisig_dust_size, regular_dust_size, provided_pubkeys, - source_is_p2sh, dust_return_pubkey, op_return_value, ): @@ -446,7 +447,7 @@ def prepare_data_output( elif encoding == "multisig": # Two pubkeys, minus length byte, minus prefix, minus two nonces, # minus two sign bytes. - chunk_size = (33 * 2) - 1 - 8 - 2 - 2 + chunk_size = (33 * 2) - 1 - len(config.PREFIX) - 2 - 2 elif encoding == "p2sh": pubkeylength = -1 if dust_return_pubkey is not None: @@ -455,7 +456,7 @@ def prepare_data_output( chunk_size = p2sh_encoding.maximum_data_chunk_size(pubkeylength) elif encoding == "opreturn": chunk_size = config.OP_RETURN_MAX_SIZE - if len(data) + len(prefix) > chunk_size: + if len(data) + len(config.PREFIX) > chunk_size: raise exceptions.TransactionError("One `OP_RETURN` output per transaction.") data_array = list(chunks(data, chunk_size)) @@ -531,7 +532,6 @@ def construct( tx_info, encoding="auto", fee_per_kb=config.DEFAULT_FEE_PER_KB, - estimate_fee_per_kb=None, estimate_fee_per_kb_nblocks=config.ESTIMATE_FEE_CONF_TARGET, regular_dust_size=config.DEFAULT_REGULAR_DUST_SIZE, multisig_dust_size=config.DEFAULT_MULTISIG_DUST_SIZE, @@ -544,8 +544,6 @@ def construct( unspent_tx_hash=None, inputs_set=None, disable_utxo_locks=False, - extended_tx_info=False, - old_style_api=None, segwit=False, p2sh_source_multisig_pubkeys=None, p2sh_source_multisig_pubkeys_required=None, @@ -553,16 +551,8 @@ def construct( exclude_utxos=None, op_return_max_size=config.OP_RETURN_MAX_SIZE, ): - prefix = config.PREFIX ps2h_dust_return_pubkey = config.P2SH_DUST_RETURN_PUBKEY - if estimate_fee_per_kb is None: - estimate_fee_per_kb = config.ESTIMATE_FEE_PER_KB - - # lazy assign from config, because when set as default it's evaluated before it's configured - if old_style_api is None: - old_style_api = config.OLD_STYLE_API - (source, destination_outputs, data) = tx_info if dust_return_pubkey: @@ -594,7 +584,7 @@ def construct( """Determine encoding method""" - encoding = determine_encoding(data, prefix, encoding, op_return_max_size, old_style_api) + encoding = determine_encoding(data, encoding, op_return_max_size) if encoding: logger.debug(f"TX Construct - Constructing `{encoding.upper()}` transaction from {source}.") else: @@ -612,13 +602,12 @@ def construct( data_value, data_array, dust_return_pubkey = prepare_data_output( data, source, + source_is_p2sh, ps2h_dust_return_pubkey, - prefix, encoding, multisig_dust_size, regular_dust_size, provided_pubkeys, - source_is_p2sh, dust_return_pubkey, op_return_value, ) @@ -641,22 +630,20 @@ def construct( inputs, change_quantity, btc_in, final_fee = prepare_inputs( encoding, - prefix, data, destination_outputs, data_array, + destination_btc_out, + data_btc_out, source, p2sh_pretx_txid, allow_unconfirmed_inputs, unspent_tx_hash, inputs_set, fee_per_kb, - estimate_fee_per_kb, estimate_fee_per_kb_nblocks, exact_fee, fee_provided, - destination_btc_out, - data_btc_out, regular_dust_size, multisig_dust_size, disable_utxo_locks, @@ -706,20 +693,16 @@ def construct( if (encoding == "p2sh" and pretx_txid) or encoding != "p2sh": check_transaction_sanity(db, source, tx_info, unsigned_tx_hex, encoding, inputs) - if extended_tx_info: - return { - "btc_in": btc_in, - "btc_out": destination_btc_out + data_btc_out, - "btc_change": change_quantity, - "btc_fee": final_fee, - "tx_hex": unsigned_tx_hex, - } - logger.debug("TX Construct - Transaction constructed.") - if unsigned_pretx_hex: - return return_result([unsigned_pretx_hex, unsigned_tx_hex], old_style_api=old_style_api) - else: - return return_result([unsigned_tx_hex], old_style_api=old_style_api) + + return { + "btc_in": btc_in, + "btc_out": destination_btc_out + data_btc_out, + "btc_change": change_quantity, + "btc_fee": final_fee, + "unsigned_tx_hex": unsigned_tx_hex, + "unsigned_pretx_hex": unsigned_pretx_hex, + } def print_coin(coin): @@ -732,21 +715,6 @@ def chunks(l, n): # noqa: E741 yield l[i : i + n] -def return_result(tx_hexes, old_style_api): - tx_hexes = list(filter(None, tx_hexes)) # filter out None - - if old_style_api: - if len(tx_hexes) != 1: - raise Exception("Can't do 2 TXs with old_style_api") - - return tx_hexes[0] - else: - if len(tx_hexes) == 1: - return tx_hexes[0] - else: - return tx_hexes - - def get_default_args(func): signature = inspect.signature(func) return { @@ -762,10 +730,8 @@ def compose_transaction( params, encoding="auto", fee_per_kb=None, - estimate_fee_per_kb=None, regular_dust_size=config.DEFAULT_REGULAR_DUST_SIZE, multisig_dust_size=config.DEFAULT_MULTISIG_DUST_SIZE, - op_return_value=config.DEFAULT_OP_RETURN_VALUE, confirmation_target=config.ESTIMATE_FEE_CONF_TARGET, pubkey=None, allow_unconfirmed_inputs=False, @@ -773,18 +739,14 @@ def compose_transaction( fee_provided=0, unspent_tx_hash=None, inputs_set=None, + exclude_utxos=None, dust_return_pubkey=None, disable_utxo_locks=False, - extended_tx_info=False, p2sh_source_multisig_pubkeys=None, p2sh_source_multisig_pubkeys_required=None, p2sh_pretx_txid=None, - old_style_api=True, segwit=False, - api_v1=False, - return_psbt=False, - exclude_utxos=None, - return_only_data=False, + accept_missing_params=False, ): """Create and return a transaction.""" @@ -828,12 +790,7 @@ def compose_transaction( for address_name in ["source", "destination"]: if address_name in params: address = params[address_name] - if isinstance(address, list) or address is None or util.is_utxo_format(address): - # pkhshs = [] - # for addr in address: - # provided_pubkeys += script.extract_pubkeys(addr) - # pkhshs.append(script.make_pubkeyhash(addr)) - # params[address_name] = pkhshs + if address is None or util.is_utxo_format(address): pass else: try: @@ -850,7 +807,7 @@ def compose_transaction( compose_method = sys.modules[f"counterpartycore.lib.messages.{name}"].compose compose_params = inspect.getfullargspec(compose_method)[0] missing_params = [p for p in compose_params if p not in params and p != "db"] - if api_v1: + if accept_missing_params: for param in missing_params: params[param] = None else: @@ -864,39 +821,15 @@ def compose_transaction( f"missing parameters: {', '.join(missing_params)}" ) - # dont override fee_per_kb if specified - if fee_per_kb is not None: - estimate_fee_per_kb = False - else: - fee_per_kb = config.DEFAULT_FEE_PER_KB - - if "extended_tx_info" in params: - extended_tx_info = params["extended_tx_info"] - del params["extended_tx_info"] - - if "old_style_api" in params: - old_style_api = params["old_style_api"] - del params["old_style_api"] - - if "segwit" in params: - segwit = params["segwit"] - del params["segwit"] - tx_info = compose_method(db, **params) - data = config.PREFIX + tx_info[2] if tx_info[2] else None - if return_only_data: - return None, data - - raw_transaction = construct( + transaction_info = construct( db, tx_info, encoding=encoding, fee_per_kb=fee_per_kb, - estimate_fee_per_kb=estimate_fee_per_kb, regular_dust_size=regular_dust_size, multisig_dust_size=multisig_dust_size, - op_return_value=op_return_value, provided_pubkeys=provided_pubkeys, allow_unconfirmed_inputs=allow_unconfirmed_inputs, exact_fee=fee, @@ -905,16 +838,12 @@ def compose_transaction( inputs_set=inputs_set, dust_return_pubkey=dust_return_pubkey, disable_utxo_locks=disable_utxo_locks, - extended_tx_info=extended_tx_info, p2sh_source_multisig_pubkeys=p2sh_source_multisig_pubkeys, p2sh_source_multisig_pubkeys_required=p2sh_source_multisig_pubkeys_required, p2sh_pretx_txid=p2sh_pretx_txid, - old_style_api=old_style_api, segwit=segwit, estimate_fee_per_kb_nblocks=confirmation_target, exclude_utxos=exclude_utxos, ) - if return_psbt: - psbt = backend.bitcoind.convert_to_psbt(raw_transaction) - return psbt, data - return raw_transaction, data + transaction_info["data"] = config.PREFIX + tx_info[2] if tx_info[2] else None + return transaction_info diff --git a/counterparty-core/counterpartycore/test/arc4_test.py b/counterparty-core/counterpartycore/test/arc4_test.py index 5e7d1e8089..c62f8d3701 100644 --- a/counterparty-core/counterpartycore/test/arc4_test.py +++ b/counterparty-core/counterpartycore/test/arc4_test.py @@ -129,7 +129,7 @@ def test_transaction_arc4_mocked(server_db): send1hex = transaction.construct(db=server_db, tx_info=tx_info, regular_dust_size=5430) assert ( - send1hex + send1hex["unsigned_tx_hex"] == "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000000000001e6a1c8a5dda15fb6f05628a061e67576e926dc71a7fa2f0cceb951120a9322f30ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000" ) @@ -147,6 +147,6 @@ def test_transaction_arc4_unmocked(server_db): send1hex = transaction.construct(db=server_db, tx_info=tx_info, regular_dust_size=5430) assert ( - send1hex + send1hex["unsigned_tx_hex"] == "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000000000001e6a1c2a504df746f83442653dd7ada4dc727a030865749e9fba58ba71d71a2f30ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000" ) diff --git a/counterparty-core/counterpartycore/test/bytespersigop_test.py b/counterparty-core/counterpartycore/test/bytespersigop_test.py index 57b0976254..26ef0e2410 100644 --- a/counterparty-core/counterpartycore/test/bytespersigop_test.py +++ b/counterparty-core/counterpartycore/test/bytespersigop_test.py @@ -23,7 +23,7 @@ def test_bytespersigop(server_db): assert util.enabled("bytespersigop") == False # noqa: E712 # ADDR[0], bytespersigop=False, desc 41 bytes, opreturn - txhex, _data = transaction.compose_transaction( + txhex = transaction.compose_transaction( server_db, "issuance", { @@ -36,14 +36,16 @@ def test_bytespersigop(server_db): }, ) - tx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(txhex)) + tx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(txhex["unsigned_tx_hex"])) + + print("test_bytespersigop 4") assert len(tx.vin) == 1 assert len(tx.vout) == 2 assert "OP_RETURN" in repr(tx.vout[0].scriptPubKey) # ADDR[0], bytespersigop=False, desc 42 bytes, multisig - txhex, _data = transaction.compose_transaction( + txhex = transaction.compose_transaction( server_db, "issuance", { @@ -56,7 +58,7 @@ def test_bytespersigop(server_db): }, ) - tx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(txhex)) + tx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(txhex["unsigned_tx_hex"])) assert len(tx.vin) == 1 # assert len(tx.vout) == 3 @@ -68,7 +70,7 @@ def test_bytespersigop(server_db): assert util.enabled("bytespersigop") == True # noqa: E712 # ADDR[0], bytespersigop=True, desc 41 bytes, opreturn - txhex, _data = transaction.compose_transaction( + txhex = transaction.compose_transaction( server_db, "issuance", { @@ -81,14 +83,14 @@ def test_bytespersigop(server_db): }, ) - tx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(txhex)) + tx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(txhex["unsigned_tx_hex"])) assert len(tx.vin) == 1 assert len(tx.vout) == 2 assert "OP_RETURN" in repr(tx.vout[0].scriptPubKey) # ADDR[1], bytespersigop=True, desc 41 bytes, opreturn encoding - txhex, _data = transaction.compose_transaction( + txhex = transaction.compose_transaction( server_db, "issuance", { @@ -101,7 +103,7 @@ def test_bytespersigop(server_db): }, ) - tx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(txhex)) + tx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(txhex["unsigned_tx_hex"])) assert len(tx.vin) == 1 assert len(tx.vout) == 2 @@ -109,7 +111,7 @@ def test_bytespersigop(server_db): # ADDR[1], bytespersigop=True, desc 20 bytes, FORCED encoding=multisig # will use 2 UTXOs to make the bytes:sigop ratio in our favor - txhex, _data = transaction.compose_transaction( + txhex = transaction.compose_transaction( server_db, "issuance", { @@ -123,7 +125,7 @@ def test_bytespersigop(server_db): encoding="multisig", ) - tx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(txhex)) + tx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(txhex["unsigned_tx_hex"])) assert len(tx.vin) == 2 assert len(tx.vout) == 2 diff --git a/counterparty-core/counterpartycore/test/estimate_fee_per_kb_test.py b/counterparty-core/counterpartycore/test/estimate_fee_per_kb_test.py index 943049d7f7..efd394d92a 100644 --- a/counterparty-core/counterpartycore/test/estimate_fee_per_kb_test.py +++ b/counterparty-core/counterpartycore/test/estimate_fee_per_kb_test.py @@ -40,13 +40,15 @@ def _fee_per_kb(conf_target, mode): ) with util_test.ConfigContext(ESTIMATE_FEE_PER_KB=True): - txhex, _data = transaction.compose_transaction( + txhex = transaction.compose_transaction( server_db, "send", {"source": ADDR[0], "destination": ADDR[1], "asset": "XCP", "quantity": 100}, ) - pretx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(txhex)) + pretx = bitcoinlib.core.CTransaction.deserialize( + binascii.unhexlify(txhex["unsigned_tx_hex"]) + ) sumvin = sum( [ int(utxos[(bitcoinlib.core.b2lx(vin.prevout.hash), vin.prevout.n)]["amount"] * 1e8) @@ -59,7 +61,7 @@ def _fee_per_kb(conf_target, mode): fee = int((signedsize / 1000) * (fee_per_kb_used or fee_per_kb)) - assert len(txhex) / 2 == unsignedsize + assert len(txhex["unsigned_tx_hex"]) / 2 == unsignedsize assert sumvin == 199909140 assert sumvout < sumvin assert sumvout == sumvin - fee diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index f426eb4e11..42adeb9180 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -10031,13 +10031,6 @@ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", "required": false }, - { - "name": "extended_tx_info", - "type": "bool", - "default": false, - "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - "required": false - }, { "name": "p2sh_pretx_txid", "type": "str", @@ -10060,31 +10053,52 @@ "required": false }, { - "name": "return_psbt", - "type": "bool", - "default": false, - "description": "Construct a PSBT instead of a raw transaction hex", + "name": "exclude_utxos", + "type": "str", + "default": null, + "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, { - "name": "exclude_utxos", + "name": "inputs_set", "type": "str", "default": null, - "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, + { + "name": "accept_missing_params", + "type": "bool", + "default": false, + "description": "Accept missing parameters with no default value (True by default for API v1)", + "required": false + }, + { + "name": "return_psbt", + "type": "bool", + "default": false, + "description": "(API v2 only) Construct a PSBT instead of a raw transaction hex", "required": false }, { "name": "return_only_data", "type": "bool", "default": false, - "description": "Return only the data part of the transaction", + "description": "(API v2 only) Return only the data part of the transaction", "required": false }, { - "name": "inputs_set", - "type": "str", - "default": null, - "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "name": "extended_tx_info", + "type": "bool", + "default": false, + "description": "(API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", + "required": false + }, + { + "name": "old_style_api", + "type": "bool", + "default": false, + "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, { @@ -10214,13 +10228,6 @@ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", "required": false }, - { - "name": "extended_tx_info", - "type": "bool", - "default": false, - "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - "required": false - }, { "name": "p2sh_pretx_txid", "type": "str", @@ -10243,31 +10250,52 @@ "required": false }, { - "name": "return_psbt", - "type": "bool", - "default": false, - "description": "Construct a PSBT instead of a raw transaction hex", + "name": "exclude_utxos", + "type": "str", + "default": null, + "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, { - "name": "exclude_utxos", + "name": "inputs_set", "type": "str", "default": null, - "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, + { + "name": "accept_missing_params", + "type": "bool", + "default": false, + "description": "Accept missing parameters with no default value (True by default for API v1)", + "required": false + }, + { + "name": "return_psbt", + "type": "bool", + "default": false, + "description": "(API v2 only) Construct a PSBT instead of a raw transaction hex", "required": false }, { "name": "return_only_data", "type": "bool", "default": false, - "description": "Return only the data part of the transaction", + "description": "(API v2 only) Return only the data part of the transaction", "required": false }, { - "name": "inputs_set", - "type": "str", - "default": null, - "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "name": "extended_tx_info", + "type": "bool", + "default": false, + "description": "(API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", + "required": false + }, + { + "name": "old_style_api", + "type": "bool", + "default": false, + "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, { @@ -10379,13 +10407,6 @@ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", "required": false }, - { - "name": "extended_tx_info", - "type": "bool", - "default": false, - "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - "required": false - }, { "name": "p2sh_pretx_txid", "type": "str", @@ -10408,31 +10429,52 @@ "required": false }, { - "name": "return_psbt", - "type": "bool", - "default": false, - "description": "Construct a PSBT instead of a raw transaction hex", + "name": "exclude_utxos", + "type": "str", + "default": null, + "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, { - "name": "exclude_utxos", + "name": "inputs_set", "type": "str", "default": null, - "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, + { + "name": "accept_missing_params", + "type": "bool", + "default": false, + "description": "Accept missing parameters with no default value (True by default for API v1)", + "required": false + }, + { + "name": "return_psbt", + "type": "bool", + "default": false, + "description": "(API v2 only) Construct a PSBT instead of a raw transaction hex", "required": false }, { "name": "return_only_data", "type": "bool", "default": false, - "description": "Return only the data part of the transaction", + "description": "(API v2 only) Return only the data part of the transaction", "required": false }, { - "name": "inputs_set", - "type": "str", - "default": null, - "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "name": "extended_tx_info", + "type": "bool", + "default": false, + "description": "(API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", + "required": false + }, + { + "name": "old_style_api", + "type": "bool", + "default": false, + "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, { @@ -10551,13 +10593,6 @@ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", "required": false }, - { - "name": "extended_tx_info", - "type": "bool", - "default": false, - "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - "required": false - }, { "name": "p2sh_pretx_txid", "type": "str", @@ -10580,31 +10615,52 @@ "required": false }, { - "name": "return_psbt", - "type": "bool", - "default": false, - "description": "Construct a PSBT instead of a raw transaction hex", + "name": "exclude_utxos", + "type": "str", + "default": null, + "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, { - "name": "exclude_utxos", + "name": "inputs_set", "type": "str", "default": null, - "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, + { + "name": "accept_missing_params", + "type": "bool", + "default": false, + "description": "Accept missing parameters with no default value (True by default for API v1)", + "required": false + }, + { + "name": "return_psbt", + "type": "bool", + "default": false, + "description": "(API v2 only) Construct a PSBT instead of a raw transaction hex", "required": false }, { "name": "return_only_data", "type": "bool", "default": false, - "description": "Return only the data part of the transaction", + "description": "(API v2 only) Return only the data part of the transaction", "required": false }, { - "name": "inputs_set", - "type": "str", - "default": null, - "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "name": "extended_tx_info", + "type": "bool", + "default": false, + "description": "(API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", + "required": false + }, + { + "name": "old_style_api", + "type": "bool", + "default": false, + "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, { @@ -10716,13 +10772,6 @@ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", "required": false }, - { - "name": "extended_tx_info", - "type": "bool", - "default": false, - "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - "required": false - }, { "name": "p2sh_pretx_txid", "type": "str", @@ -10745,31 +10794,52 @@ "required": false }, { - "name": "return_psbt", - "type": "bool", - "default": false, - "description": "Construct a PSBT instead of a raw transaction hex", + "name": "exclude_utxos", + "type": "str", + "default": null, + "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, { - "name": "exclude_utxos", + "name": "inputs_set", "type": "str", "default": null, - "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, + { + "name": "accept_missing_params", + "type": "bool", + "default": false, + "description": "Accept missing parameters with no default value (True by default for API v1)", + "required": false + }, + { + "name": "return_psbt", + "type": "bool", + "default": false, + "description": "(API v2 only) Construct a PSBT instead of a raw transaction hex", "required": false }, { "name": "return_only_data", "type": "bool", "default": false, - "description": "Return only the data part of the transaction", + "description": "(API v2 only) Return only the data part of the transaction", "required": false }, { - "name": "inputs_set", - "type": "str", - "default": null, - "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "name": "extended_tx_info", + "type": "bool", + "default": false, + "description": "(API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", + "required": false + }, + { + "name": "old_style_api", + "type": "bool", + "default": false, + "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, { @@ -10893,13 +10963,6 @@ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", "required": false }, - { - "name": "extended_tx_info", - "type": "bool", - "default": false, - "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - "required": false - }, { "name": "p2sh_pretx_txid", "type": "str", @@ -10922,31 +10985,52 @@ "required": false }, { - "name": "return_psbt", - "type": "bool", - "default": false, - "description": "Construct a PSBT instead of a raw transaction hex", + "name": "exclude_utxos", + "type": "str", + "default": null, + "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, { - "name": "exclude_utxos", + "name": "inputs_set", "type": "str", "default": null, - "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, + { + "name": "accept_missing_params", + "type": "bool", + "default": false, + "description": "Accept missing parameters with no default value (True by default for API v1)", + "required": false + }, + { + "name": "return_psbt", + "type": "bool", + "default": false, + "description": "(API v2 only) Construct a PSBT instead of a raw transaction hex", "required": false }, { "name": "return_only_data", "type": "bool", "default": false, - "description": "Return only the data part of the transaction", + "description": "(API v2 only) Return only the data part of the transaction", "required": false }, { - "name": "inputs_set", - "type": "str", - "default": null, - "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "name": "extended_tx_info", + "type": "bool", + "default": false, + "description": "(API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", + "required": false + }, + { + "name": "old_style_api", + "type": "bool", + "default": false, + "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, { @@ -11096,13 +11180,6 @@ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", "required": false }, - { - "name": "extended_tx_info", - "type": "bool", - "default": false, - "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - "required": false - }, { "name": "p2sh_pretx_txid", "type": "str", @@ -11125,31 +11202,52 @@ "required": false }, { - "name": "return_psbt", - "type": "bool", - "default": false, - "description": "Construct a PSBT instead of a raw transaction hex", + "name": "exclude_utxos", + "type": "str", + "default": null, + "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, { - "name": "exclude_utxos", + "name": "inputs_set", "type": "str", "default": null, - "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, + { + "name": "accept_missing_params", + "type": "bool", + "default": false, + "description": "Accept missing parameters with no default value (True by default for API v1)", + "required": false + }, + { + "name": "return_psbt", + "type": "bool", + "default": false, + "description": "(API v2 only) Construct a PSBT instead of a raw transaction hex", "required": false }, { "name": "return_only_data", "type": "bool", "default": false, - "description": "Return only the data part of the transaction", + "description": "(API v2 only) Return only the data part of the transaction", "required": false }, { - "name": "inputs_set", - "type": "str", - "default": null, - "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "name": "extended_tx_info", + "type": "bool", + "default": false, + "description": "(API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", + "required": false + }, + { + "name": "old_style_api", + "type": "bool", + "default": false, + "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, { @@ -11273,13 +11371,6 @@ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", "required": false }, - { - "name": "extended_tx_info", - "type": "bool", - "default": false, - "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - "required": false - }, { "name": "p2sh_pretx_txid", "type": "str", @@ -11302,31 +11393,52 @@ "required": false }, { - "name": "return_psbt", - "type": "bool", - "default": false, - "description": "Construct a PSBT instead of a raw transaction hex", + "name": "exclude_utxos", + "type": "str", + "default": null, + "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, { - "name": "exclude_utxos", + "name": "inputs_set", "type": "str", "default": null, - "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, + { + "name": "accept_missing_params", + "type": "bool", + "default": false, + "description": "Accept missing parameters with no default value (True by default for API v1)", + "required": false + }, + { + "name": "return_psbt", + "type": "bool", + "default": false, + "description": "(API v2 only) Construct a PSBT instead of a raw transaction hex", "required": false }, { "name": "return_only_data", "type": "bool", "default": false, - "description": "Return only the data part of the transaction", + "description": "(API v2 only) Return only the data part of the transaction", "required": false }, { - "name": "inputs_set", - "type": "str", - "default": null, - "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "name": "extended_tx_info", + "type": "bool", + "default": false, + "description": "(API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", + "required": false + }, + { + "name": "old_style_api", + "type": "bool", + "default": false, + "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, { @@ -11479,13 +11591,6 @@ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", "required": false }, - { - "name": "extended_tx_info", - "type": "bool", - "default": false, - "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - "required": false - }, { "name": "p2sh_pretx_txid", "type": "str", @@ -11508,31 +11613,52 @@ "required": false }, { - "name": "return_psbt", - "type": "bool", - "default": false, - "description": "Construct a PSBT instead of a raw transaction hex", + "name": "exclude_utxos", + "type": "str", + "default": null, + "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, { - "name": "exclude_utxos", + "name": "inputs_set", "type": "str", "default": null, - "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, + { + "name": "accept_missing_params", + "type": "bool", + "default": false, + "description": "Accept missing parameters with no default value (True by default for API v1)", + "required": false + }, + { + "name": "return_psbt", + "type": "bool", + "default": false, + "description": "(API v2 only) Construct a PSBT instead of a raw transaction hex", "required": false }, { "name": "return_only_data", "type": "bool", "default": false, - "description": "Return only the data part of the transaction", + "description": "(API v2 only) Return only the data part of the transaction", "required": false }, { - "name": "inputs_set", - "type": "str", - "default": null, - "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "name": "extended_tx_info", + "type": "bool", + "default": false, + "description": "(API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", + "required": false + }, + { + "name": "old_style_api", + "type": "bool", + "default": false, + "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, { @@ -11670,13 +11796,6 @@ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", "required": false }, - { - "name": "extended_tx_info", - "type": "bool", - "default": false, - "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - "required": false - }, { "name": "p2sh_pretx_txid", "type": "str", @@ -11699,31 +11818,52 @@ "required": false }, { - "name": "return_psbt", - "type": "bool", - "default": false, - "description": "Construct a PSBT instead of a raw transaction hex", + "name": "exclude_utxos", + "type": "str", + "default": null, + "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, { - "name": "exclude_utxos", + "name": "inputs_set", "type": "str", "default": null, - "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, + { + "name": "accept_missing_params", + "type": "bool", + "default": false, + "description": "Accept missing parameters with no default value (True by default for API v1)", + "required": false + }, + { + "name": "return_psbt", + "type": "bool", + "default": false, + "description": "(API v2 only) Construct a PSBT instead of a raw transaction hex", "required": false }, { "name": "return_only_data", "type": "bool", "default": false, - "description": "Return only the data part of the transaction", + "description": "(API v2 only) Return only the data part of the transaction", "required": false }, { - "name": "inputs_set", - "type": "str", - "default": null, - "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "name": "extended_tx_info", + "type": "bool", + "default": false, + "description": "(API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", + "required": false + }, + { + "name": "old_style_api", + "type": "bool", + "default": false, + "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, { @@ -11865,13 +12005,6 @@ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", "required": false }, - { - "name": "extended_tx_info", - "type": "bool", - "default": false, - "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - "required": false - }, { "name": "p2sh_pretx_txid", "type": "str", @@ -11894,31 +12027,52 @@ "required": false }, { - "name": "return_psbt", - "type": "bool", - "default": false, - "description": "Construct a PSBT instead of a raw transaction hex", + "name": "exclude_utxos", + "type": "str", + "default": null, + "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, { - "name": "exclude_utxos", + "name": "inputs_set", "type": "str", "default": null, - "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, + { + "name": "accept_missing_params", + "type": "bool", + "default": false, + "description": "Accept missing parameters with no default value (True by default for API v1)", + "required": false + }, + { + "name": "return_psbt", + "type": "bool", + "default": false, + "description": "(API v2 only) Construct a PSBT instead of a raw transaction hex", "required": false }, { "name": "return_only_data", "type": "bool", "default": false, - "description": "Return only the data part of the transaction", + "description": "(API v2 only) Return only the data part of the transaction", "required": false }, { - "name": "inputs_set", - "type": "str", - "default": null, - "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "name": "extended_tx_info", + "type": "bool", + "default": false, + "description": "(API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", + "required": false + }, + { + "name": "old_style_api", + "type": "bool", + "default": false, + "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, { @@ -12063,13 +12217,6 @@ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", "required": false }, - { - "name": "extended_tx_info", - "type": "bool", - "default": false, - "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - "required": false - }, { "name": "p2sh_pretx_txid", "type": "str", @@ -12091,32 +12238,53 @@ "description": "The number of blocks to target for confirmation", "required": false }, + { + "name": "exclude_utxos", + "type": "str", + "default": null, + "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + "required": false + }, + { + "name": "inputs_set", + "type": "str", + "default": null, + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, + { + "name": "accept_missing_params", + "type": "bool", + "default": false, + "description": "Accept missing parameters with no default value (True by default for API v1)", + "required": false + }, { "name": "return_psbt", "type": "bool", "default": false, - "description": "Construct a PSBT instead of a raw transaction hex", + "description": "(API v2 only) Construct a PSBT instead of a raw transaction hex", "required": false }, { - "name": "exclude_utxos", - "type": "str", - "default": null, - "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + "name": "return_only_data", + "type": "bool", + "default": false, + "description": "(API v2 only) Return only the data part of the transaction", "required": false }, { - "name": "return_only_data", + "name": "extended_tx_info", "type": "bool", "default": false, - "description": "Return only the data part of the transaction", + "description": "(API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", "required": false }, { - "name": "inputs_set", - "type": "str", - "default": null, - "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "name": "old_style_api", + "type": "bool", + "default": false, + "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, { @@ -12240,13 +12408,6 @@ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", "required": false }, - { - "name": "extended_tx_info", - "type": "bool", - "default": false, - "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - "required": false - }, { "name": "p2sh_pretx_txid", "type": "str", @@ -12269,31 +12430,52 @@ "required": false }, { - "name": "return_psbt", - "type": "bool", - "default": false, - "description": "Construct a PSBT instead of a raw transaction hex", + "name": "exclude_utxos", + "type": "str", + "default": null, + "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, { - "name": "exclude_utxos", + "name": "inputs_set", "type": "str", "default": null, - "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, + { + "name": "accept_missing_params", + "type": "bool", + "default": false, + "description": "Accept missing parameters with no default value (True by default for API v1)", + "required": false + }, + { + "name": "return_psbt", + "type": "bool", + "default": false, + "description": "(API v2 only) Construct a PSBT instead of a raw transaction hex", "required": false }, { "name": "return_only_data", "type": "bool", "default": false, - "description": "Return only the data part of the transaction", + "description": "(API v2 only) Return only the data part of the transaction", "required": false }, { - "name": "inputs_set", - "type": "str", - "default": null, - "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "name": "extended_tx_info", + "type": "bool", + "default": false, + "description": "(API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", + "required": false + }, + { + "name": "old_style_api", + "type": "bool", + "default": false, + "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, { @@ -12411,13 +12593,6 @@ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", "required": false }, - { - "name": "extended_tx_info", - "type": "bool", - "default": false, - "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - "required": false - }, { "name": "p2sh_pretx_txid", "type": "str", @@ -12440,31 +12615,52 @@ "required": false }, { - "name": "return_psbt", - "type": "bool", - "default": false, - "description": "Construct a PSBT instead of a raw transaction hex", + "name": "exclude_utxos", + "type": "str", + "default": null, + "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, { - "name": "exclude_utxos", + "name": "inputs_set", "type": "str", "default": null, - "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, + { + "name": "accept_missing_params", + "type": "bool", + "default": false, + "description": "Accept missing parameters with no default value (True by default for API v1)", + "required": false + }, + { + "name": "return_psbt", + "type": "bool", + "default": false, + "description": "(API v2 only) Construct a PSBT instead of a raw transaction hex", "required": false }, { "name": "return_only_data", "type": "bool", "default": false, - "description": "Return only the data part of the transaction", + "description": "(API v2 only) Return only the data part of the transaction", "required": false }, { - "name": "inputs_set", - "type": "str", - "default": null, - "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "name": "extended_tx_info", + "type": "bool", + "default": false, + "description": "(API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", + "required": false + }, + { + "name": "old_style_api", + "type": "bool", + "default": false, + "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, { @@ -12688,13 +12884,6 @@ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", "required": false }, - { - "name": "extended_tx_info", - "type": "bool", - "default": false, - "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - "required": false - }, { "name": "p2sh_pretx_txid", "type": "str", @@ -12717,31 +12906,52 @@ "required": false }, { - "name": "return_psbt", - "type": "bool", - "default": false, - "description": "Construct a PSBT instead of a raw transaction hex", + "name": "exclude_utxos", + "type": "str", + "default": null, + "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, { - "name": "exclude_utxos", + "name": "inputs_set", "type": "str", "default": null, - "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, + { + "name": "accept_missing_params", + "type": "bool", + "default": false, + "description": "Accept missing parameters with no default value (True by default for API v1)", + "required": false + }, + { + "name": "return_psbt", + "type": "bool", + "default": false, + "description": "(API v2 only) Construct a PSBT instead of a raw transaction hex", "required": false }, { "name": "return_only_data", "type": "bool", "default": false, - "description": "Return only the data part of the transaction", + "description": "(API v2 only) Return only the data part of the transaction", "required": false }, { - "name": "inputs_set", - "type": "str", - "default": null, - "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "name": "extended_tx_info", + "type": "bool", + "default": false, + "description": "(API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", + "required": false + }, + { + "name": "old_style_api", + "type": "bool", + "default": false, + "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, { @@ -12860,13 +13070,6 @@ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", "required": false }, - { - "name": "extended_tx_info", - "type": "bool", - "default": false, - "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - "required": false - }, { "name": "p2sh_pretx_txid", "type": "str", @@ -12889,31 +13092,52 @@ "required": false }, { - "name": "return_psbt", - "type": "bool", - "default": false, - "description": "Construct a PSBT instead of a raw transaction hex", + "name": "exclude_utxos", + "type": "str", + "default": null, + "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, { - "name": "exclude_utxos", + "name": "inputs_set", "type": "str", "default": null, - "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, + { + "name": "accept_missing_params", + "type": "bool", + "default": false, + "description": "Accept missing parameters with no default value (True by default for API v1)", + "required": false + }, + { + "name": "return_psbt", + "type": "bool", + "default": false, + "description": "(API v2 only) Construct a PSBT instead of a raw transaction hex", "required": false }, { "name": "return_only_data", "type": "bool", "default": false, - "description": "Return only the data part of the transaction", + "description": "(API v2 only) Return only the data part of the transaction", "required": false }, { - "name": "inputs_set", - "type": "str", - "default": null, - "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "name": "extended_tx_info", + "type": "bool", + "default": false, + "description": "(API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", + "required": false + }, + { + "name": "old_style_api", + "type": "bool", + "default": false, + "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, { @@ -13038,13 +13262,6 @@ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", "required": false }, - { - "name": "extended_tx_info", - "type": "bool", - "default": false, - "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - "required": false - }, { "name": "p2sh_pretx_txid", "type": "str", @@ -13067,31 +13284,52 @@ "required": false }, { - "name": "return_psbt", - "type": "bool", - "default": false, - "description": "Construct a PSBT instead of a raw transaction hex", + "name": "exclude_utxos", + "type": "str", + "default": null, + "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, { - "name": "exclude_utxos", + "name": "inputs_set", "type": "str", "default": null, - "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, + { + "name": "accept_missing_params", + "type": "bool", + "default": false, + "description": "Accept missing parameters with no default value (True by default for API v1)", + "required": false + }, + { + "name": "return_psbt", + "type": "bool", + "default": false, + "description": "(API v2 only) Construct a PSBT instead of a raw transaction hex", "required": false }, { "name": "return_only_data", "type": "bool", "default": false, - "description": "Return only the data part of the transaction", + "description": "(API v2 only) Return only the data part of the transaction", "required": false }, { - "name": "inputs_set", - "type": "str", - "default": null, - "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "name": "extended_tx_info", + "type": "bool", + "default": false, + "description": "(API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", + "required": false + }, + { + "name": "old_style_api", + "type": "bool", + "default": false, + "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, { @@ -13215,13 +13453,6 @@ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs", "required": false }, - { - "name": "extended_tx_info", - "type": "bool", - "default": false, - "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", - "required": false - }, { "name": "p2sh_pretx_txid", "type": "str", @@ -13244,31 +13475,52 @@ "required": false }, { - "name": "return_psbt", - "type": "bool", - "default": false, - "description": "Construct a PSBT instead of a raw transaction hex", + "name": "exclude_utxos", + "type": "str", + "default": null, + "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", "required": false }, { - "name": "exclude_utxos", + "name": "inputs_set", "type": "str", "default": null, - "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created", + "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "required": false + }, + { + "name": "accept_missing_params", + "type": "bool", + "default": false, + "description": "Accept missing parameters with no default value (True by default for API v1)", + "required": false + }, + { + "name": "return_psbt", + "type": "bool", + "default": false, + "description": "(API v2 only) Construct a PSBT instead of a raw transaction hex", "required": false }, { "name": "return_only_data", "type": "bool", "default": false, - "description": "Return only the data part of the transaction", + "description": "(API v2 only) Return only the data part of the transaction", "required": false }, { - "name": "inputs_set", - "type": "str", - "default": null, - "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", + "name": "extended_tx_info", + "type": "bool", + "default": false, + "description": "(API v1 only) When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee", + "required": false + }, + { + "name": "old_style_api", + "type": "bool", + "default": false, + "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, { diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/transaction.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/transaction.py new file mode 100644 index 0000000000..5419f9a207 --- /dev/null +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/transaction.py @@ -0,0 +1,800 @@ +from counterpartycore.lib import config, exceptions, script + +from ..params import ( + ADDR, + DP, + P2SH_ADDR, +) + +TRANSACTION_VECTOR = { + "transaction": { + "get_dust_return_pubkey": [ + {"in": (ADDR[1], None), "out": None}, + { + "in": (ADDR[1], []), + "out": b"\x03\x19\xf6\xe0{\x0b\x8duaV9K\x9d\xcf;\x01\x1f\xe9\xac\x19\xf2p\x0b\xd6\xb6\x9aj\x17\x83\xdb\xb8\xb9w", + }, + ], + "construct": [ + { + "in": ( + ( + "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)], + None, + ), + {"encoding": "multisig", "exact_fee": 1.0}, + ), + "error": (exceptions.TransactionError, "Exact fees must be in satoshis."), + }, + { + "in": ( + ( + "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)], + None, + ), + {"encoding": "multisig", "fee_provided": 1.0}, + ), + "error": (exceptions.TransactionError, "Fee provided must be in satoshis."), + }, + { + "in": ( + ( + "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + [ + ( + "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + config.DEFAULT_REGULAR_DUST_SIZE - 1, + ) + ], + None, + ), + {"encoding": "singlesig", "regular_dust_size": DP["regular_dust_size"]}, + ), + "error": (exceptions.TransactionError, "Destination output is dust."), + }, + { + "in": ( + ( + "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + [ + ( + "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", + config.DEFAULT_MULTISIG_DUST_SIZE - 1, + ) + ], + None, + ), + {"encoding": "multisig"}, + ), + "error": (exceptions.TransactionError, "Destination output is dust."), + }, + { + "in": ( + ( + "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)], + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", + ), + {"encoding": "foobar"}, + ), + "error": (exceptions.TransactionError, "Unknown encoding‐scheme."), + }, + { + "comment": "opreturn encoding with more data that fits in 80 bytes opreturn (73 bytes of data + 8 bytes for PREFIX)", + "in": ( + ( + "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)], + b"\x00" * 73, + ), + {"encoding": "opreturn"}, + ), + "error": ( + exceptions.TransactionError, + "One `OP_RETURN` output per transaction.", + ), + }, + { + "in": ( + ( + "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 2**30)], + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", + ), + {"encoding": "multisig"}, + ), + "error": ( + exceptions.BalanceError, + "Insufficient BTC at address mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. Need: 10.73754999 BTC (Including fee: 0.00012175 BTC), available: 1.11121663 BTC. These fees are estimated for a confirmation target of 3 blocks, you can reduce them by using the `confirmation_target` parameter with a higher value or by manually setting the fees with the `fee` parameter. To spend unconfirmed coins, use the flag `--unconfirmed`. (Unconfirmed coins cannot be spent from multi‐sig addresses.)", + ), + }, + { + "comment": "opreturn encoding with maximum possible data that fits in 80 bytes opreturn (72 bytes of data + 8 bytes for PREFIX)", + "in": ( + ( + "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)], + b"\x00" * 72, + ), + {"encoding": "opreturn"}, + ), + "out": { + "btc_change": 37992125, + "btc_fee": 7875, + "btc_in": 100000000, + "btc_out": 62000000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff03800bb203000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac0000000000000000536a4c503ab408a679f108a19e35886815c4c468ca75a06799f864a1fad6bc0813f5fe3260e421a30202f2e76f46acdb292c652371ca48b97460f7928ade8ecb02ea9fadc20c0b453de6676872c9e41fad801e8bbdb64302000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000", + }, + }, + { + "comment": "burn", + "in": ( + ( + "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)], + None, + ), + {"encoding": "multisig"}, + ), + "out": { + "btc_change": 37994375, + "btc_fee": 5625, + "btc_in": 100000000, + "btc_out": 62000000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff02800bb203000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac87bf4302000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000", + }, + }, + { + "comment": "burn P2SH", + "in": ( + (P2SH_ADDR[0], [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)], None), + {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, + ), + "out": { + "btc_change": 37994375, + "btc_fee": 5625, + "btc_in": 100000000, + "btc_out": 62000000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "01000000015001af2c4c3bc2c43b6233261394910d10fb157a082d9b3038c65f2d01e4ff200000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87ffffffff02800bb203000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac87bf43020000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e8700000000", + }, + }, + { + "comment": "multisig burn", + "in": ( + ( + "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", + [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 50000000)], + None, + ), + {"encoding": "multisig"}, + ), + "out": { + "btc_change": 49994375, + "btc_fee": 5625, + "btc_in": 100000000, + "btc_out": 50000000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff0280f0fa02000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac87dafa02000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000", + }, + }, + { + "comment": "send", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)], + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", + ), + {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, + ), + "out": { + "btc_change": 199895060, + "btc_fee": 7650, + "btc_in": 199909140, + "btc_out": 6430, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + { + "comment": "send with custom input which is too low", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)], + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", + ), + { + "encoding": "multisig", + "regular_dust_size": DP["regular_dust_size"], + "inputs_set": [ + { + "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "txhex": "0100000002eff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b000000006c493046022100ec6fa8316a4f5cfd69816e31011022acce0933bd3b01248caa8b49e60de1b98a022100987ba974b2a4f9976a8d61d94009cb7f7986a827dc5730e999de1fb748d2046c01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffffeff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b010000006a47304402201f8fb2d62df22592cb8d37c68ab26563dbb8e270f7f8409ac0f6d7b24ddb5c940220314e5c767fd12b20116528c028eab2bfbad30eb963bd849993410049cf14a83d01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffff02145fea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac0000000000000000346a32544553540000000a00000000000000010000000005f5e1000000000000000000000000000bebc2000032000000000000271000000000", + "confirmations": 74, + "vout": 0, + "script_pub_key": "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac", + "txid": "ae241be7be83ebb14902757ad94854f787d9730fc553d6f695346c9375c0d8c1", + "amount": 0.00001, + "account": "", + } + ], + }, + ), + "error": ( + exceptions.BalanceError, + "Insufficient BTC at address mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. Need: 0.0001408 BTC (Including fee: 0.0000765 BTC), available: 0.00001 BTC. These fees are estimated for a confirmation target of 3 blocks, you can reduce them by using the `confirmation_target` parameter with a higher value or by manually setting the fees with the `fee` parameter. To spend unconfirmed coins, use the flag `--unconfirmed`. (Unconfirmed coins cannot be spent from multi‐sig addresses.)", + ), + }, + { + "comment": "send with custom input", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)], + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", + ), + { + "encoding": "multisig", + "regular_dust_size": DP["regular_dust_size"], + "inputs_set": [ + { + "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "txhex": "0100000002eff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b000000006c493046022100ec6fa8316a4f5cfd69816e31011022acce0933bd3b01248caa8b49e60de1b98a022100987ba974b2a4f9976a8d61d94009cb7f7986a827dc5730e999de1fb748d2046c01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffffeff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b010000006a47304402201f8fb2d62df22592cb8d37c68ab26563dbb8e270f7f8409ac0f6d7b24ddb5c940220314e5c767fd12b20116528c028eab2bfbad30eb963bd849993410049cf14a83d01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffff02145fea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac0000000000000000346a32544553540000000a00000000000000010000000005f5e1000000000000000000000000000bebc2000032000000000000271000000000", + "confirmations": 74, + "vout": 0, + "script_pub_key": "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac", + "txid": "ae241be7be83ebb14902757ad94854f787d9730fc553d6f695346c9375c0d8c1", + "amount": 1.9990914, + "account": "", + } + ], + }, + ), + "out": { + "btc_change": 199895060, + "btc_fee": 7650, + "btc_in": 199909140, + "btc_out": 6430, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + { + "comment": "send with multisig encoding and bytespersigop enabled for address with multiple UTXOs", + "mock_protocol_changes": {"bytespersigop": True}, + "in": ( + ( + "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + [("mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", None)], + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", + ), + {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, + ), + "out": { + "btc_change": 111103058, + "btc_fee": 12175, + "btc_in": 111121663, + "btc_out": 6430, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000002ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff85497c27fbc3ecfbfb41f49cbf983e252a91636ec92f2863cb7eb755a33afcb9000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ace8030000000000006951210372a51ea175f108a1c635886815c4c468ca75a06798f864a1fad446f893f5fef121023260e421a30202f2e76f46acdb292c652371ca48b97460f7928ade8ecb02ea66210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae524c9f06000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000", + }, + }, + { + "comment": "send, different dust pubkey", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)], + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", + ), + { + "encoding": "multisig", + "regular_dust_size": DP["regular_dust_size"], + "dust_return_pubkey": "0319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b977", + }, + ), + "out": { + "btc_change": 199895060, + "btc_fee": 7650, + "btc_in": 199909140, + "btc_out": 6430, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + { + "comment": "send, burn dust pubkey", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)], + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", + ), + { + "encoding": "multisig", + "regular_dust_size": DP["regular_dust_size"], + "dust_return_pubkey": False, + }, + ), + "out": { + "btc_change": 199895060, + "btc_fee": 7650, + "btc_in": 199909140, + "btc_out": 6430, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe724472111111111111111111111111111111111111111111111111111111111111111111153ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + { + "comment": "send from P2SH address, multsig encoding, no dust pubkey", + "in": ( + ( + P2SH_ADDR[0], + [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)], + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", + ), + { + "encoding": "multisig", + "dust_return_pubkey": False, + "regular_dust_size": DP["regular_dust_size"], + }, + ), + "out": { + "btc_change": 99985920, + "btc_fee": 7650, + "btc_in": 100000000, + "btc_out": 6430, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "01000000015001af2c4c3bc2c43b6233261394910d10fb157a082d9b3038c65f2d01e4ff200000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87ffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210397b51de78b0f3a171f5ed27fff56d17dcba739c8b00035c8bbb9c380fdc4ed1321036932bcbeac2a4d8846b7feb4bf93b2b88efd02f2d8dc1fc0067bcc972257e3912111111111111111111111111111111111111111111111111111111111111111111153ae00aaf5050000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e8700000000", + }, + }, + { + "comment": "send to P2SH address", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [(P2SH_ADDR[0], None)], + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", + ), + {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, + ), + "out": { + "btc_change": 199895060, + "btc_fee": 7650, + "btc_in": 199909140, + "btc_out": 6430, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03361500000000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87e8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + { + "comment": "send dest multisig", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [ + ( + "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", + None, + ) + ], + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", + ), + {"encoding": "multisig"}, + ), + "out": { + "btc_change": 199899490, + "btc_fee": 7650, + "btc_in": 199909140, + "btc_out": 2000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aee8030000000000006951210362415bf04af834423d3dd7ada4dc727a030865759f9fba5aee7fc6fbf1e5875a210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae6239ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + { + "comment": "send dest multisig exact_fee", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [ + ( + "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", + None, + ) + ], + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", + ), + {"encoding": "multisig", "exact_fee": 1}, + ), + "out": { + "btc_change": 199907139, + "btc_fee": 1, + "btc_in": 199909140, + "btc_out": 2000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aee8030000000000006951210362415bf04af834423d3dd7ada4dc727a030865759f9fba5aee7fc6fbf1e5875a210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae4357ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + { + "comment": "send dest opreturn", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [ + ( + "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", + None, + ) + ], + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", + ), + {"encoding": "opreturn"}, + ), + "out": { + "btc_change": 199901565, + "btc_fee": 6575, + "btc_in": 199909140, + "btc_out": 1000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000000000001e6a1c2a504df746f83442653dd7ada4dc727a030865749e9fba5aeb8fd21a7d41ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + { + "comment": "send dest pubkeyhash", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [ + ( + "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", + None, + ) + ], + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", + ), + {"encoding": "pubkeyhash", "regular_dust_size": DP["regular_dust_size"]}, + ), + "out": { + "btc_change": 199889955, + "btc_fee": 7325, + "btc_in": 199909140, + "btc_out": 11860, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff04e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae36150000000000001976a9146d415bf04af834423d3dd7ada4dc727a0308657588ac36150000000000001976a9146f415bf04af834423d3cd7ada4dc778fe208657588ac2314ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + { + "comment": "send dest 1-of-1", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [("1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_1", None)], + b"\x00\x00\x00\x00\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00", + ), + {"encoding": "multisig"}, + ), + "error": (script.MultiSigAddressError, "Invalid signatures_possible."), + }, + { + "comment": "send source multisig", + "in": ( + ( + "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", + [("mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", None)], + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", + ), + {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, + ), + "out": { + "btc_change": 99985920, + "btc_fee": 7650, + "btc_in": 100000000, + "btc_out": 6430, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ace8030000000000006951210334caf7ca87f0fd78a01d9a0d68221e55beef3722da8be72d254dd351c26108892102bc14528340c27d005aa9e2913fd8c032ffa94625307a450077125d580099b57d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae00aaf505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000", + }, + }, + { + "comment": "send source and dest multisig", + "in": ( + ( + "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", + [ + ( + "1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", + None, + ) + ], + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", + ), + {"encoding": "multisig"}, + ), + "out": { + "btc_change": 99990350, + "btc_fee": 7650, + "btc_in": 100000000, + "btc_out": 2000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff03e8030000000000004751210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b977210378ee11c3fb97054877a809ce083db292b16d971bcdc6aa4c8f92087133729d8b52aee8030000000000006951210334caf7ca87f0fd78a01d9a0d68221e55beef3722da8be72d254dd351c26108892102bc14528340c27d005aa9e2913fd8c032ffa94625307a450077125d580099b57d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae4ebbf505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000", + }, + }, + { + "comment": "maximum quantity send", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)], + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff", + ), + {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, + ), + "out": { + "btc_change": 199895060, + "btc_fee": 7650, + "btc_in": 199909140, + "btc_out": 6430, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210362415bf04af834423d3dd7ada4dc727a0308664fa0e045a51185cce50ee58717210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + { + "comment": "issuance", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [], + b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL", + ), + {"encoding": "multisig"}, + ), + "out": { + "btc_change": 199901340, + "btc_fee": 6800, + "btc_in": 199909140, + "btc_out": 1000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210355415bf04af834423d3dd7adb2dc727a03086e897d9fba5aee7a331919e48780210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + { + "comment": "issuance", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)], + b"\x00\x00\x00\x16\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL", + ), + {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, + ), + "out": { + "btc_change": 199895060, + "btc_fee": 7650, + "btc_in": 199909140, + "btc_out": 6430, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210355415bf04af834423d3dd7adb2dc727aa153863ef89fba5aee7a331af1e48750210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + { + "comment": "multisig issuance", + "in": ( + ( + "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", + [], + b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL", + ), + {"encoding": "multisig"}, + ), + "out": { + "btc_change": 99992200, + "btc_fee": 6800, + "btc_in": 100000000, + "btc_out": 1000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff02e8030000000000006951210203caf7ca87f0fd78a01d9a0d7e221e55beef3cde388be72d254826b32a6008b62103bc14528340c27d009ae7b7dd73d8c032ffa94625307a450077125d580099b55a210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae88c2f505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000", + }, + }, + { + "comment": "maximum quantity issuance", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [], + b"\x00\x00\x00\x16\x00\x00\x00\x00\xdd\x96\xd2t\x7f\xff\xff\xff\xff\xff\xff\xff\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL", + ), + {"encoding": "multisig"}, + ), + "out": { + "btc_change": 199901340, + "btc_fee": 6800, + "btc_in": 199909140, + "btc_out": 1000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210355415bf04af834423d3dd7adb2dc727a03d5f3a7eae045a51185cce50ee487c2210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + { + "comment": "transfer asset to multisig", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [ + ( + "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", + None, + ) + ], + b"\x00\x00\x00\x16\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL", + ), + {"encoding": "multisig"}, + ), + "out": { + "btc_change": 199899490, + "btc_fee": 7650, + "btc_in": 199909140, + "btc_out": 2000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aee8030000000000006951210355415bf04af834423d3dd7adb2dc727aa153863ef89fba5aee7a331af1e48750210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae6239ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + { + "comment": "order", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [], + b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00", + ), + {"encoding": "multisig", "fee_provided": DP["fee_provided"]}, + ), + "out": { + "btc_change": 198908140, + "btc_fee": 1000000, + "btc_in": 199909140, + "btc_out": 1000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210348415bf04af834423d3dd7adaedc727a030865759e9fba5aee78c9ea71e5870f210354da540fb2673b75e6c3c994f80ad0c8431643bab28ced783cd94079bbe72445210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aeec18db0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + { + "comment": "multisig order", + "in": ( + ( + "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", + [], + b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00", + ), + {"encoding": "multisig", "fee_provided": DP["fee_provided"]}, + ), + "out": { + "btc_change": 98999000, + "btc_fee": 1000000, + "btc_in": 100000000, + "btc_out": 1000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff02e803000000000000695121021ecaf7ca87f0fd78a01d9a0d62221e55beef3722db8be72d254adc40426108d02103bc14528340c37d005aa9e764ded8c038ffa94625307a450077125d580099b53b210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aed89ae605000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000", + }, + }, + { + "comment": "multisig order", + "in": ( + ( + "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", + [], + b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x06B,@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0", + ), + {"encoding": "multisig"}, + ), + "out": { + "btc_change": 99992200, + "btc_fee": 6800, + "btc_in": 100000000, + "btc_out": 1000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff02e803000000000000695121031ecaf7ca87f0fd78a01d9a0d62221e55beef3722da8be72d254e649c8261083d2102bc14528340c27d005aa9e06bcf58c038ffa946253077fea077125d580099b5bb210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae88c2f505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000", + }, + }, + { + "comment": "maximum quantity order", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [], + b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0", + ), + {"encoding": "multisig"}, + ), + "out": { + "btc_change": 199901340, + "btc_fee": 6800, + "btc_in": 199909140, + "btc_out": 1000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210248415bf04af834423d3dd7adaedc727a0308664fa0e045a51185cce50ee58759210354da540fb2673b75e6c3c994f80ad0c8431643bab28156d83cd94079bbe72452210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + { + "comment": "dividend", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [], + b"\x00\x00\x002\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x01", + ), + {"encoding": "multisig"}, + ), + "out": { + "btc_change": 199901340, + "btc_fee": 6800, + "btc_in": 199909140, + "btc_out": 1000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e803000000000000695121035a415bf04af834423d3dd7ad96dc727a030d90949e9fba5a4c21d05197e58735210254da540fb2673b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe7246f210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + { + "comment": "dividend", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [], + b"\x00\x00\x002\x00\x00\x00\x00\x00\x00\x00\x01\x00\x06\xca\xd8\xdc\x7f\x0bf\x00\x00\x00\x00\x00\x00\x00\x01", + ), + {"encoding": "multisig"}, + ), + "out": { + "btc_change": 199901340, + "btc_fee": 6800, + "btc_in": 199909140, + "btc_out": 1000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e803000000000000695121025a415bf04af834423d3dd7ad96dc727a030865759f9fbc9036a64c1197e587c8210254da540fb2673b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe7246f210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + { + "comment": "free issuance", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [], + b"\x00\x00\x00\x16\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL", + ), + {"encoding": "multisig"}, + ), + "out": { + "btc_change": 199901340, + "btc_fee": 6800, + "btc_in": 199909140, + "btc_out": 1000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210255415bf04af834423d3dd7adb2238d85fcf79a8a619fba5aee7a331919e4870d210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + { + "comment": "large broadcast", + "in": ( + ( + "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + [], + b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00LK@lOver 80 characters test test test test test test test test test test test test test test test test test test", + ), + {}, + ), + "out": { + "btc_change": 199895290, + "btc_fee": 10850, + "btc_in": 199909140, + "btc_out": 3000, + "unsigned_pretx_hex": None, + "unsigned_tx_hex": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff04e8030000000000006951210343415bf04af834423d3dd7adba82d48f033795759e9fba5aee7a7f51b189c8c0210322bf262f8a561b168ea2be007a7eb5b0303637dfc1f8cd0c59aa3459cf825784210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee8030000000000006951210343415bf04af834423d49f7d9c1af065a776d1601beebdf299a5a477f8291a7c4210220bf277b92125e0692e3b8046a7ef0b62665379ac6e99e0c1cad250acfc750c9210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee8030000000000006951210361415bf04af834423d58a4d984a8170977281110edeb9a2e8b09473a8580f45d210220da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe724dc210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aefa28ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", + }, + }, + ], + }, +} diff --git a/counterparty-core/counterpartycore/test/fixtures/vectors.py b/counterparty-core/counterpartycore/test/fixtures/vectors.py index d5a550a4bf..1dfd3a9383 100644 --- a/counterparty-core/counterpartycore/test/fixtures/vectors.py +++ b/counterparty-core/counterpartycore/test/fixtures/vectors.py @@ -23,6 +23,7 @@ from .contract_vectors.gas import GAS_VECTOR from .contract_vectors.ledger import LEDGER_VECTOR from .contract_vectors.send import SEND_VECTOR +from .contract_vectors.transaction import TRANSACTION_VECTOR from .contract_vectors.utxo import UTXO_VECTOR from .params import ( ADDR, @@ -35,7 +36,7 @@ DEFAULT_PARAMS as DP, ) -UNITTEST_VECTOR_ = UTXO_VECTOR | GAS_VECTOR +UNITTEST_VECTOR_ = TRANSACTION_VECTOR UNITTEST_VECTOR = ( FAIRMINTER_VECTOR @@ -45,6 +46,7 @@ | SEND_VECTOR | DISPENSER_VECTOR | GAS_VECTOR + | TRANSACTION_VECTOR | { "bet": { "validate": [ @@ -6347,579 +6349,6 @@ }, ], }, - "transaction": { - "get_dust_return_pubkey": [ - {"in": (ADDR[1], None), "out": None}, - { - "in": (ADDR[1], []), - "out": b"\x03\x19\xf6\xe0{\x0b\x8duaV9K\x9d\xcf;\x01\x1f\xe9\xac\x19\xf2p\x0b\xd6\xb6\x9aj\x17\x83\xdb\xb8\xb9w", - }, - ], - "construct": [ - { - "in": ( - ( - "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)], - None, - ), - {"encoding": "multisig", "exact_fee": 1.0}, - ), - "error": (exceptions.TransactionError, "Exact fees must be in satoshis."), - }, - { - "in": ( - ( - "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)], - None, - ), - {"encoding": "multisig", "fee_provided": 1.0}, - ), - "error": (exceptions.TransactionError, "Fee provided must be in satoshis."), - }, - { - "in": ( - ( - "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - [ - ( - "mvCounterpartyXXXXXXXXXXXXXXW24Hef", - config.DEFAULT_REGULAR_DUST_SIZE - 1, - ) - ], - None, - ), - {"encoding": "singlesig", "regular_dust_size": DP["regular_dust_size"]}, - ), - "error": (exceptions.TransactionError, "Destination output is dust."), - }, - { - "in": ( - ( - "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - [ - ( - "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", - config.DEFAULT_MULTISIG_DUST_SIZE - 1, - ) - ], - None, - ), - {"encoding": "multisig"}, - ), - "error": (exceptions.TransactionError, "Destination output is dust."), - }, - { - "in": ( - ( - "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)], - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", - ), - {"encoding": "foobar"}, - ), - "error": (exceptions.TransactionError, "Unknown encoding‐scheme."), - }, - { - "comment": "opreturn encoding with more data that fits in 80 bytes opreturn (73 bytes of data + 8 bytes for PREFIX)", - "in": ( - ( - "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)], - b"\x00" * 73, - ), - {"encoding": "opreturn"}, - ), - "error": ( - exceptions.TransactionError, - "One `OP_RETURN` output per transaction.", - ), - }, - { - "in": ( - ( - "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 2**30)], - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", - ), - {"encoding": "multisig"}, - ), - "error": ( - exceptions.BalanceError, - "Insufficient BTC at address mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. Need: 10.73754999 BTC (Including fee: 0.00012175 BTC), available: 1.11121663 BTC. These fees are estimated for a confirmation target of 3 blocks, you can reduce them by using the `confirmation_target` parameter with a higher value or by manually setting the fees with the `fee` parameter. To spend unconfirmed coins, use the flag `--unconfirmed`. (Unconfirmed coins cannot be spent from multi‐sig addresses.)", - ), - }, - { - "comment": "opreturn encoding with maximum possible data that fits in 80 bytes opreturn (72 bytes of data + 8 bytes for PREFIX)", - "in": ( - ( - "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)], - b"\x00" * 72, - ), - {"encoding": "opreturn"}, - ), - "out": "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff03800bb203000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac0000000000000000536a4c503ab408a679f108a19e35886815c4c468ca75a06799f864a1fad6bc0813f5fe3260e421a30202f2e76f46acdb292c652371ca48b97460f7928ade8ecb02ea9fadc20c0b453de6676872c9e41fad801e8bbdb64302000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000", - }, - { - "comment": "burn", - "in": ( - ( - "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)], - None, - ), - {"encoding": "multisig"}, - ), - "out": "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff02800bb203000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac87bf4302000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000", - }, - { - "comment": "burn P2SH", - "in": ( - (P2SH_ADDR[0], [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)], None), - {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, - ), - "out": "01000000015001af2c4c3bc2c43b6233261394910d10fb157a082d9b3038c65f2d01e4ff200000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87ffffffff02800bb203000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac87bf43020000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e8700000000", - }, - { - "comment": "multisig burn", - "in": ( - ( - "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", - [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 50000000)], - None, - ), - {"encoding": "multisig"}, - ), - "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff0280f0fa02000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac87dafa02000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000", - }, - { - "comment": "send", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)], - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", - ), - {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - { - "comment": "send with custom input which is too low", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)], - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", - ), - { - "encoding": "multisig", - "regular_dust_size": DP["regular_dust_size"], - "inputs_set": [ - { - "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "txhex": "0100000002eff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b000000006c493046022100ec6fa8316a4f5cfd69816e31011022acce0933bd3b01248caa8b49e60de1b98a022100987ba974b2a4f9976a8d61d94009cb7f7986a827dc5730e999de1fb748d2046c01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffffeff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b010000006a47304402201f8fb2d62df22592cb8d37c68ab26563dbb8e270f7f8409ac0f6d7b24ddb5c940220314e5c767fd12b20116528c028eab2bfbad30eb963bd849993410049cf14a83d01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffff02145fea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac0000000000000000346a32544553540000000a00000000000000010000000005f5e1000000000000000000000000000bebc2000032000000000000271000000000", - "confirmations": 74, - "vout": 0, - "script_pub_key": "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac", - "txid": "ae241be7be83ebb14902757ad94854f787d9730fc553d6f695346c9375c0d8c1", - "amount": 0.00001, - "account": "", - } - ], - }, - ), - "error": ( - exceptions.BalanceError, - "Insufficient BTC at address mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. Need: 0.0001408 BTC (Including fee: 0.0000765 BTC), available: 0.00001 BTC. These fees are estimated for a confirmation target of 3 blocks, you can reduce them by using the `confirmation_target` parameter with a higher value or by manually setting the fees with the `fee` parameter. To spend unconfirmed coins, use the flag `--unconfirmed`. (Unconfirmed coins cannot be spent from multi‐sig addresses.)", - ), - }, - { - "comment": "send with custom input", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)], - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", - ), - { - "encoding": "multisig", - "regular_dust_size": DP["regular_dust_size"], - "inputs_set": [ - { - "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "txhex": "0100000002eff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b000000006c493046022100ec6fa8316a4f5cfd69816e31011022acce0933bd3b01248caa8b49e60de1b98a022100987ba974b2a4f9976a8d61d94009cb7f7986a827dc5730e999de1fb748d2046c01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffffeff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b010000006a47304402201f8fb2d62df22592cb8d37c68ab26563dbb8e270f7f8409ac0f6d7b24ddb5c940220314e5c767fd12b20116528c028eab2bfbad30eb963bd849993410049cf14a83d01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffff02145fea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac0000000000000000346a32544553540000000a00000000000000010000000005f5e1000000000000000000000000000bebc2000032000000000000271000000000", - "confirmations": 74, - "vout": 0, - "script_pub_key": "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac", - "txid": "ae241be7be83ebb14902757ad94854f787d9730fc553d6f695346c9375c0d8c1", - "amount": 1.9990914, - "account": "", - } - ], - }, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - { - "comment": "send with multisig encoding and bytespersigop enabled for address with multiple UTXOs", - "mock_protocol_changes": {"bytespersigop": True}, - "in": ( - ( - "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - [("mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", None)], - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", - ), - {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, - ), - "out": "0100000002ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff85497c27fbc3ecfbfb41f49cbf983e252a91636ec92f2863cb7eb755a33afcb9000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ace8030000000000006951210372a51ea175f108a1c635886815c4c468ca75a06798f864a1fad446f893f5fef121023260e421a30202f2e76f46acdb292c652371ca48b97460f7928ade8ecb02ea66210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae524c9f06000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000", - }, - { - "comment": "send, different dust pubkey", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)], - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", - ), - { - "encoding": "multisig", - "regular_dust_size": DP["regular_dust_size"], - "dust_return_pubkey": "0319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b977", - }, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - { - "comment": "send, burn dust pubkey", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)], - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", - ), - { - "encoding": "multisig", - "regular_dust_size": DP["regular_dust_size"], - "dust_return_pubkey": False, - }, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe724472111111111111111111111111111111111111111111111111111111111111111111153ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - { - "comment": "send from P2SH address, multsig encoding, no dust pubkey", - "in": ( - ( - P2SH_ADDR[0], - [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)], - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", - ), - { - "encoding": "multisig", - "dust_return_pubkey": False, - "regular_dust_size": DP["regular_dust_size"], - }, - ), - "out": "01000000015001af2c4c3bc2c43b6233261394910d10fb157a082d9b3038c65f2d01e4ff200000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87ffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210397b51de78b0f3a171f5ed27fff56d17dcba739c8b00035c8bbb9c380fdc4ed1321036932bcbeac2a4d8846b7feb4bf93b2b88efd02f2d8dc1fc0067bcc972257e3912111111111111111111111111111111111111111111111111111111111111111111153ae00aaf5050000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e8700000000", - }, - { - "comment": "send to P2SH address", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [(P2SH_ADDR[0], None)], - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", - ), - {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03361500000000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87e8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - { - "comment": "send dest multisig", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [ - ( - "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", - None, - ) - ], - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", - ), - {"encoding": "multisig"}, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aee8030000000000006951210362415bf04af834423d3dd7ada4dc727a030865759f9fba5aee7fc6fbf1e5875a210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae6239ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - { - "comment": "send dest multisig exact_fee", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [ - ( - "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", - None, - ) - ], - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", - ), - {"encoding": "multisig", "exact_fee": 1}, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aee8030000000000006951210362415bf04af834423d3dd7ada4dc727a030865759f9fba5aee7fc6fbf1e5875a210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae4357ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - { - "comment": "send dest opreturn", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [ - ( - "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", - None, - ) - ], - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", - ), - {"encoding": "opreturn"}, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000000000001e6a1c2a504df746f83442653dd7ada4dc727a030865749e9fba5aeb8fd21a7d41ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - { - "comment": "send dest pubkeyhash", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [ - ( - "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", - None, - ) - ], - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", - ), - {"encoding": "pubkeyhash", "regular_dust_size": DP["regular_dust_size"]}, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff04e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae36150000000000001976a9146d415bf04af834423d3dd7ada4dc727a0308657588ac36150000000000001976a9146f415bf04af834423d3cd7ada4dc778fe208657588ac2314ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - { - "comment": "send dest 1-of-1", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [("1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_1", None)], - b"\x00\x00\x00\x00\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00", - ), - {"encoding": "multisig"}, - ), - "error": (script.MultiSigAddressError, "Invalid signatures_possible."), - }, - { - "comment": "send source multisig", - "in": ( - ( - "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", - [("mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", None)], - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", - ), - {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, - ), - "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ace8030000000000006951210334caf7ca87f0fd78a01d9a0d68221e55beef3722da8be72d254dd351c26108892102bc14528340c27d005aa9e2913fd8c032ffa94625307a450077125d580099b57d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae00aaf505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000", - }, - { - "comment": "send source and dest multisig", - "in": ( - ( - "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", - [ - ( - "1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", - None, - ) - ], - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", - ), - {"encoding": "multisig"}, - ), - "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff03e8030000000000004751210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b977210378ee11c3fb97054877a809ce083db292b16d971bcdc6aa4c8f92087133729d8b52aee8030000000000006951210334caf7ca87f0fd78a01d9a0d68221e55beef3722da8be72d254dd351c26108892102bc14528340c27d005aa9e2913fd8c032ffa94625307a450077125d580099b57d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae4ebbf505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000", - }, - { - "comment": "maximum quantity send", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)], - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff", - ), - {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210362415bf04af834423d3dd7ada4dc727a0308664fa0e045a51185cce50ee58717210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - { - "comment": "issuance", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [], - b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL", - ), - {"encoding": "multisig"}, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210355415bf04af834423d3dd7adb2dc727a03086e897d9fba5aee7a331919e48780210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - { - "comment": "issuance", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)], - b"\x00\x00\x00\x16\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL", - ), - {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210355415bf04af834423d3dd7adb2dc727aa153863ef89fba5aee7a331af1e48750210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - { - "comment": "multisig issuance", - "in": ( - ( - "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", - [], - b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL", - ), - {"encoding": "multisig"}, - ), - "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff02e8030000000000006951210203caf7ca87f0fd78a01d9a0d7e221e55beef3cde388be72d254826b32a6008b62103bc14528340c27d009ae7b7dd73d8c032ffa94625307a450077125d580099b55a210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae88c2f505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000", - }, - { - "comment": "maximum quantity issuance", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [], - b"\x00\x00\x00\x16\x00\x00\x00\x00\xdd\x96\xd2t\x7f\xff\xff\xff\xff\xff\xff\xff\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL", - ), - {"encoding": "multisig"}, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210355415bf04af834423d3dd7adb2dc727a03d5f3a7eae045a51185cce50ee487c2210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - { - "comment": "transfer asset to multisig", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [ - ( - "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", - None, - ) - ], - b"\x00\x00\x00\x16\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL", - ), - {"encoding": "multisig"}, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aee8030000000000006951210355415bf04af834423d3dd7adb2dc727aa153863ef89fba5aee7a331af1e48750210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae6239ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - { - "comment": "order", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [], - b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00", - ), - {"encoding": "multisig", "fee_provided": DP["fee_provided"]}, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210348415bf04af834423d3dd7adaedc727a030865759e9fba5aee78c9ea71e5870f210354da540fb2673b75e6c3c994f80ad0c8431643bab28ced783cd94079bbe72445210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aeec18db0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - { - "comment": "multisig order", - "in": ( - ( - "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", - [], - b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00", - ), - {"encoding": "multisig", "fee_provided": DP["fee_provided"]}, - ), - "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff02e803000000000000695121021ecaf7ca87f0fd78a01d9a0d62221e55beef3722db8be72d254adc40426108d02103bc14528340c37d005aa9e764ded8c038ffa94625307a450077125d580099b53b210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aed89ae605000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000", - }, - { - "comment": "multisig order", - "in": ( - ( - "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2", - [], - b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x06B,@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0", - ), - {"encoding": "multisig"}, - ), - "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff02e803000000000000695121031ecaf7ca87f0fd78a01d9a0d62221e55beef3722da8be72d254e649c8261083d2102bc14528340c27d005aa9e06bcf58c038ffa946253077fea077125d580099b5bb210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae88c2f505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000", - }, - { - "comment": "maximum quantity order", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [], - b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0", - ), - {"encoding": "multisig"}, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210248415bf04af834423d3dd7adaedc727a0308664fa0e045a51185cce50ee58759210354da540fb2673b75e6c3c994f80ad0c8431643bab28156d83cd94079bbe72452210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - { - "comment": "dividend", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [], - b"\x00\x00\x002\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x01", - ), - {"encoding": "multisig"}, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e803000000000000695121035a415bf04af834423d3dd7ad96dc727a030d90949e9fba5a4c21d05197e58735210254da540fb2673b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe7246f210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - { - "comment": "dividend", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [], - b"\x00\x00\x002\x00\x00\x00\x00\x00\x00\x00\x01\x00\x06\xca\xd8\xdc\x7f\x0bf\x00\x00\x00\x00\x00\x00\x00\x01", - ), - {"encoding": "multisig"}, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e803000000000000695121025a415bf04af834423d3dd7ad96dc727a030865759f9fbc9036a64c1197e587c8210254da540fb2673b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe7246f210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - { - "comment": "free issuance", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [], - b"\x00\x00\x00\x16\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL", - ), - {"encoding": "multisig"}, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210255415bf04af834423d3dd7adb2238d85fcf79a8a619fba5aee7a331919e4870d210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - { - "comment": "large broadcast", - "in": ( - ( - "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - [], - b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00LK@lOver 80 characters test test test test test test test test test test test test test test test test test test", - ), - {}, - ), - "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff04e8030000000000006951210343415bf04af834423d3dd7adba82d48f033795759e9fba5aee7a7f51b189c8c0210322bf262f8a561b168ea2be007a7eb5b0303637dfc1f8cd0c59aa3459cf825784210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee8030000000000006951210343415bf04af834423d49f7d9c1af065a776d1601beebdf299a5a477f8291a7c4210220bf277b92125e0692e3b8046a7ef0b62665379ac6e99e0c1cad250acfc750c9210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee8030000000000006951210361415bf04af834423d58a4d984a8170977281110edeb9a2e8b09473a8580f45d210220da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe724dc210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aefa28ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000", - }, - ], - }, "api_v1": { "get_rows": [ { diff --git a/counterparty-core/counterpartycore/test/p2sh_encoding_test.py b/counterparty-core/counterpartycore/test/p2sh_encoding_test.py index f7d28a2d87..9170d54ba0 100644 --- a/counterparty-core/counterpartycore/test/p2sh_encoding_test.py +++ b/counterparty-core/counterpartycore/test/p2sh_encoding_test.py @@ -78,7 +78,7 @@ def test_p2sh_encoding(server_db): fee = 20000 fee_per_kb = 50000 - result, _data = transaction.compose_transaction( + result = transaction.compose_transaction( server_db, "send", {"source": source, "destination": destination, "asset": "XCP", "quantity": 100}, @@ -87,7 +87,7 @@ def test_p2sh_encoding(server_db): fee=fee, ) assert not isinstance(result, list) - pretxhex = result + pretxhex = result["unsigned_pretx_hex"] pretx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(pretxhex)) @@ -150,12 +150,14 @@ def test_p2sh_encoding(server_db): logger.debug(f"pretxid {pretxid}") # check that when we do another, unrelated, send that it won't use our UTXO - result, _data = transaction.compose_transaction( + result = transaction.compose_transaction( server_db, "send", {"source": source, "destination": destination, "asset": "XCP", "quantity": 100}, ) - othertx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(result)) + othertx = bitcoinlib.core.CTransaction.deserialize( + binascii.unhexlify(result["unsigned_tx_hex"]) + ) othertxid = bitcoinlib.core.lx( bitcoinlib.core.b2x(othertx.vin[0].prevout.hash) ) # reverse hash @@ -164,7 +166,7 @@ def test_p2sh_encoding(server_db): ) # now compose the data transaction - result, _data = transaction.compose_transaction( + result = transaction.compose_transaction( server_db, "send", {"source": source, "destination": destination, "asset": "XCP", "quantity": 100}, @@ -173,7 +175,7 @@ def test_p2sh_encoding(server_db): fee_per_kb=fee_per_kb, ) assert not isinstance(result, list) - datatxhex = result + datatxhex = result["unsigned_tx_hex"] datatx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(datatxhex)) sumvin = sum([pretx.vout[n].nValue for n, vin in enumerate(datatx.vin)]) @@ -257,7 +259,7 @@ def test_p2sh_encoding_long_data(server_db): # pprint.pprint(utxos) fee_per_kb = 50000 - result, _data = transaction.compose_transaction( + result = transaction.compose_transaction( server_db, "broadcast", { @@ -271,7 +273,7 @@ def test_p2sh_encoding_long_data(server_db): fee_per_kb=fee_per_kb, ) assert not isinstance(result, list) - pretxhex = result + pretxhex = result["unsigned_pretx_hex"] pretx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(pretxhex)) actual_fee = int(len(pretxhex) / 2 * fee_per_kb / 1000) # noqa: F841 @@ -334,7 +336,7 @@ def test_p2sh_encoding_long_data(server_db): logger.debug(f"pretxid {pretxid}") # now compose the data transaction - result, _data = transaction.compose_transaction( + result = transaction.compose_transaction( server_db, "broadcast", { @@ -349,7 +351,7 @@ def test_p2sh_encoding_long_data(server_db): fee_per_kb=fee_per_kb, ) assert not isinstance(result, list) - datatxhex = result + datatxhex = result["unsigned_tx_hex"] datatx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(datatxhex)) sumvin = sum([pretx.vout[n].nValue for n, vin in enumerate(datatx.vin)]) @@ -439,7 +441,7 @@ def test_p2sh_encoding_p2sh_source_not_supported(server_db): fee_per_kb = 50000 with pytest.raises(exceptions.TransactionError): - result, _data = transaction.compose_transaction( # noqa: F841 + result = transaction.compose_transaction( # noqa: F841 server_db, "send", {"source": source, "destination": destination, "asset": "XCP", "quantity": 100}, @@ -481,7 +483,7 @@ def test_p2sh_encoding_manual_multisig_transaction(server_db): # setup transaction fee = 20000 fee_per_kb = 50000 - pretxhex, _data = transaction.compose_transaction( + pretxhex = transaction.compose_transaction( server_db, "send", { @@ -500,6 +502,7 @@ def test_p2sh_encoding_manual_multisig_transaction(server_db): fee_per_kb=fee_per_kb, fee=fee, ) + pretxhex = pretxhex["unsigned_pretx_hex"] # debugTransaction = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(pretxhex)) # store transaction @@ -507,7 +510,7 @@ def test_p2sh_encoding_manual_multisig_transaction(server_db): logger.debug(f"pretxid {pretxid}") # now compose the data transaction - result, _data = transaction.compose_transaction( + result = transaction.compose_transaction( server_db, "send", {"source": source, "destination": destination, "asset": "XCP", "quantity": 100}, @@ -522,7 +525,7 @@ def test_p2sh_encoding_manual_multisig_transaction(server_db): fee_per_kb=fee_per_kb, ) assert not isinstance(result, list) - datatxhex = result + datatxhex = result["unsigned_tx_hex"] datatx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(datatxhex)) # noqa: F841 diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index c9c67e8e35..834a901ffe 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": 193, - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", - "block_time": 1727000592, - "previous_block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_time": 1727031747, + "previous_block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", "difficulty": 545259519, - "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", - "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", - "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", + "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", + "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", + "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", - "block_time": 1727000588, - "previous_block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", + "block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", + "block_time": 1727031743, + "previous_block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", "difficulty": 545259519, - "ledger_hash": "15632ba5d9e0895c4d08741144412482f4139debf47f441ab56fb1e57ed8138f", - "txlist_hash": "368c248e7398223aa41a3340c90cdf4dbb04242b72ff24d17c2f0ca3dc12f278", - "messages_hash": "32203dd37a810d45ca8e0e7b7e881a80c4fc0936de0773934100b9e004dec5db", + "ledger_hash": "fa0b578aced75a2921d789d45e44adfd47e5d88461643b2ce6ea1ceb910adad1", + "txlist_hash": "2c7de06f03054aca49c6c2f06ddc5ec8bd61983af282e627ed9f50585bd202d8", + "messages_hash": "090feaaedca28407d3331bc3fe26eebf0530ca50ebd9e2da53bf8540c21f8a62", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", - "block_time": 1727000584, - "previous_block_hash": "52ce8354391192adc1549d6a4e70e552a9bf49e64fbe115795e8c12b930962da", + "block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", + "block_time": 1727031738, + "previous_block_hash": "1e1af2aaab6cfea61a31d3c2cda9e566643cab68018f3b8071bf25da826b9a80", "difficulty": 545259519, - "ledger_hash": "d18e2ab61c10e86d0af7732ffdd5820eb389929a4e407abb1c365a617f8d6b0b", - "txlist_hash": "561be60c6188aaf9b9739b32dd8412cc70dc3617c76e8d632b362b43dee08430", - "messages_hash": "2e4972f8597cc95a484278f9dfa38024b000032151b59686982a1fb01db3ba93", + "ledger_hash": "819df0c3e08eb202c13f42015c631ff2930b5d88e353a12cb0dd87a665b3161f", + "txlist_hash": "a7a675b242b6d548ce6ec2e153192f4585eded5175a62fd9e05fdf51c56cf8c1", + "messages_hash": "eb0766f796663bf744df95fd3479e7fd22221c5d7c916d4fa8db0b30f36fb871", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "52ce8354391192adc1549d6a4e70e552a9bf49e64fbe115795e8c12b930962da", - "block_time": 1727000580, - "previous_block_hash": "54d2df0dc01af39d0d576efb398561deadcc34ad173c7198659cdf1d74b2a381", + "block_hash": "1e1af2aaab6cfea61a31d3c2cda9e566643cab68018f3b8071bf25da826b9a80", + "block_time": 1727031724, + "previous_block_hash": "4b4c3d089292ec004e7c2f38f68a929bba6d7c6e6101db9616fe21b785fae411", "difficulty": 545259519, - "ledger_hash": "2706a8e0018214c252b27e5fca2d560ee6600592b07c64cbea3f2cce4257a7b5", - "txlist_hash": "d69dfbce2e19c5f8c5d37a160dc91344356c819ce0769d700284e5eeeecf451c", - "messages_hash": "57cfc46c395bb777cdbec3f62168108639ab667937ee3c36d8b89b914e9e0c73", + "ledger_hash": "0099ef580927aaadd3a4cdd5697bf92e1a50a1fd8e2d3170753ce6630c24d405", + "txlist_hash": "86415c7a3a453a12483a9aae337e80e414bcbff7c90b489516acb9d140b6b861", + "messages_hash": "683adc9e8b2cc2d071e0c233d29de6e5bd98870cb12cc2b80ca5c5180df7ba76", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "54d2df0dc01af39d0d576efb398561deadcc34ad173c7198659cdf1d74b2a381", - "block_time": 1727000575, - "previous_block_hash": "3af24eb207ec7c93df870ce901057933a0a9e906e1569a624ebe4cd15e5e7a5e", + "block_hash": "4b4c3d089292ec004e7c2f38f68a929bba6d7c6e6101db9616fe21b785fae411", + "block_time": 1727031720, + "previous_block_hash": "7aebb16eecf937a615a0835e17c17a727757a47eff751dbe07bf38199690cf08", "difficulty": 545259519, - "ledger_hash": "6de3e17e9fa33f63205fb4aaf5fa1490d686da1a69893e7108947f04a2d24e6d", - "txlist_hash": "a7ce6c6d7eb0535f61853f5a8a642cbaad7c2abfe166ebcc7428169db11547d1", - "messages_hash": "0c694347e9858f45693f03f2e6479294d56ed4a23edb110d3c5c82065de30190", + "ledger_hash": "0b26ae6a4101f8ee1171c73abb8eb127ce3858e0636eb007e197d874f6585c14", + "txlist_hash": "774182af21312f5df376340be52610f164eb091908d4fc958181a876965bbb3a", + "messages_hash": "48c2cfa20f6d110df351d1f08373fc78ec72329ff9baa5ed0e3e0c895348c7ef", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", - "block_time": 1727000592, - "previous_block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_time": 1727031747, + "previous_block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", "difficulty": 545259519, - "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", - "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", - "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", + "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", + "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", + "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", - "block_time": 1727000592, - "previous_block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_time": 1727031747, + "previous_block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", "difficulty": 545259519, - "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", - "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", - "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", + "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", + "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", + "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", - "block_time": 1727000592, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_time": 1727031747, + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", + "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -139,11 +139,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "15632ba5d9e0895c4d08741144412482f4139debf47f441ab56fb1e57ed8138f", - "messages_hash": "32203dd37a810d45ca8e0e7b7e881a80c4fc0936de0773934100b9e004dec5db", + "ledger_hash": "fa0b578aced75a2921d789d45e44adfd47e5d88461643b2ce6ea1ceb910adad1", + "messages_hash": "090feaaedca28407d3331bc3fe26eebf0530ca50ebd9e2da53bf8540c21f8a62", "transaction_count": 1, - "txlist_hash": "368c248e7398223aa41a3340c90cdf4dbb04242b72ff24d17c2f0ca3dc12f278", - "block_time": 1727000588 + "txlist_hash": "2c7de06f03054aca49c6c2f06ddc5ec8bd61983af282e627ed9f50585bd202d8", + "block_time": 1727031743 }, "tx_hash": null }, @@ -152,43 +152,43 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58 }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "status": "valid", - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, - "block_time": 1727000588, + "block_time": 1727031743, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -198,22 +198,22 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "XCP", "block_index": 192, - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -223,7 +223,7 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" } ], "next_cursor": 524, @@ -261,16 +261,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -280,57 +280,57 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" } ], "next_cursor": null, @@ -340,16 +340,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -361,20 +361,20 @@ }, { "block_index": 192, - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -382,20 +382,20 @@ }, { "block_index": 192, - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -409,16 +409,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "event": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -436,24 +436,24 @@ "result": [ { "type": "order", - "object_id": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "object_id": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", "block_index": 182, "confirmed": true, - "block_time": 1727000481 + "block_time": 1727031616 }, { "type": "order", - "object_id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", + "object_id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", "block_index": 182, "confirmed": true, - "block_time": 1727000481 + "block_time": 1727031616 }, { "type": "order_match", - "object_id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "object_id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", "block_index": 182, "confirmed": true, - "block_time": 1727000481 + "block_time": 1727031616 } ], "next_cursor": null, @@ -463,13 +463,13 @@ "result": [ { "tx_index": 56, - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "block_index": 190, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "status": "valid", "confirmed": true, - "block_time": 1727000580 + "block_time": 1727031724 } ], "next_cursor": null, @@ -479,15 +479,15 @@ "result": [ { "tx_index": 59, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -505,14 +505,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", + "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -527,7 +527,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000465, + "block_time": 1727031601, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -539,10 +539,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "quantity": 10, "status": "valid", @@ -550,7 +550,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "divisible": true, "asset_longname": null, @@ -563,10 +563,10 @@ }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -574,11 +574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -587,10 +587,10 @@ }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -598,11 +598,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -618,27 +618,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", - "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "last_status_tx_hash": null, - "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -653,7 +653,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727000400, + "block_time": 1727031536, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,16 +672,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "fee_paid_normalized": "0.00600000" } ], @@ -692,17 +692,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", - "block_time": 1727000592, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_time": 1727031747, + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", + "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -725,23 +725,23 @@ }, { "tx_index": 58, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383", - "block_time": 1727000588, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", + "block_time": 1727031743, + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480ed681fe4daf7ab2ee1a33b873588429301d5bfa8017377656570206d7920617373657473", + "data": "0480fcd4fef91bbb7752401bda00950d4c9047d04028017377656570206d7920617373657473", "supported": true, - "utxos_info": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea:1", + "utxos_info": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "flags": 1, "memo": "sweep my assets" } @@ -754,18 +754,18 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "4695e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "11ac2ad1f93225daf96588a3c4ea558f3b205618869a051ea2f7090092303eb7", + "hash": "9d5f93e8240a3eb6d45a6a38f32109200b3304bace7538254a8505103ff1c866", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -775,49 +775,27 @@ "vout": [ { "value": 0, - "script_pub_key": "6a335c5dd9bc91a5d86995d0ab15d4be2254fe0c71497e66d8111872c92be92f0646c178ae969acb8c2caeab2baf3af316f3fb7a88" + "script_pub_key": "6a293d9ec3ff5bde53950f82911ac15d6fa531e7c349a0a07a8e1ad2c0abfbc8b3ea7cefd68ca7a6280e2b" }, { "value": 4999990000, - "script_pub_key": "0014568120e3f25be7dad0716f132cbcc0eecfac8dde" + "script_pub_key": "0014ab1ca0986fe508fb370b5937169762b6328c900c" } ], "vtxinwit": [ - "304402207d1a215d92b6d36dd09d1545cfeee45ca1f74a9e937eff5027bad4c75bf8f2a402203a1203e1321ccd62633fcfc3a03d2ce39268c0b026be5a4b3f2aae21124bec8401", - "03dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d962" + "304402204b12834ecdeec860345887155b44f9d78ff4a637d4323c347b6e0c1d0df3865702207e546a79aa5d4ea6a4e9b8fb06f1277b48cb93ba78ab305d6c9a9095ea64e76a01", + "0303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b132" ], "lock_time": 0, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", - "tx_id": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7" + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_id": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84" }, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, + "message_type": "cancel", + "message_type_id": 70, "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" + "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "status": "valid" } }, "btc_amount_normalized": "0.00000000" @@ -825,18 +803,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710802fe54076791a6e2ac138ef00abb24f8185f125ab", + "data": "0200000000000000010000000000002710806dfffb33ff9bf38009f5261067fd1af98dadcc3c", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "b2ffbb72adddd8bae637e76ca3d20367a9e2b545df04b069cd783a5cb159f004", + "hash": "033829dd00ce92492643b8d140f4f5e0e40880eb1d304c5ef75052b518910fdb", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -846,20 +824,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2ed63dda20b4474132e359445d9983dfd995134ac2e957b57425e6eaf3de5610caa4b43888d3dfed18e5a58a33bf95" + "script_pub_key": "6a2e86c1932312faa583fe5f71bdf0c7db3e42b4ce0034d8c1a4e0081e1920d840e4601e56ea066ca5f270b671ee4f60" }, { "value": 4999955000, - "script_pub_key": "0014ed681fe4daf7ab2ee1a33b873588429301d5bfa8" + "script_pub_key": "0014fcd4fef91bbb7752401bda00950d4c9047d04028" } ], "vtxinwit": [ - "3044022007e03b96e278106bcfa7ff303efdd262596dc409053563efec02b712a660f75002206e026091bd4f2b0f0dbed833bf30961543506f5026ea4800da1f8405edc3d75f01", - "02cd3154911e5d3f0dd8141a848af0f2f71983615dc048911e9fa68b8cf85964a6" + "304402201b2685911b529dddd19a94a0444d789c65d7538076984cd0f5e5764fd2fdaea70220305e38b12b39c8fd2199e37ed0b6c8a45faabcdf92fe527cf74115dd817bd60601", + "02d0179aa601d1b2caddcfe88c73ca7bf71949d02e3645f85bd050b7b64868f248" ], "lock_time": 0, - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", - "tx_id": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21" + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_id": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4" }, "unpacked_data": { "message_type": "enhanced_send", @@ -867,7 +845,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "memo": null, "asset_info": { "divisible": true, @@ -894,17 +872,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", - "block_time": 1727000592, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_time": 1727031747, + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", + "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -929,17 +907,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", - "block_time": 1727000592, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_time": 1727031747, + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", + "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -968,47 +946,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58 }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "status": "valid", - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, - "block_time": 1727000588, + "block_time": 1727031743, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -1018,24 +996,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "XCP", "block_index": 192, - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,36 +1023,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 } ], "next_cursor": 523, @@ -1087,47 +1065,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58 }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "status": "valid", - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, - "block_time": 1727000588, + "block_time": 1727031743, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -1137,24 +1115,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "XCP", "block_index": 192, - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -1164,36 +1142,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 } ], "next_cursor": 523, @@ -1203,10 +1181,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "quantity": 10, "status": "valid", @@ -1214,7 +1192,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "divisible": true, "asset_longname": null, @@ -1227,10 +1205,10 @@ }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1238,11 +1216,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -1251,10 +1229,10 @@ }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1262,11 +1240,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -1282,27 +1260,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", - "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "last_status_tx_hash": null, - "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -1317,7 +1295,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727000400, + "block_time": 1727031536, "asset_info": { "divisible": true, "asset_longname": null, @@ -1338,16 +1316,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -1357,63 +1335,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 } ], "next_cursor": null, @@ -1425,16 +1403,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -1444,63 +1422,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 } ], "next_cursor": null, @@ -1513,7 +1491,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1523,7 +1501,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -1534,7 +1512,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1544,7 +1522,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -1555,7 +1533,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1565,7 +1543,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -1576,7 +1554,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1586,7 +1564,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -1597,7 +1575,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1607,7 +1585,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -1621,17 +1599,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", - "block_time": 1727000584, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", + "block_time": 1727031738, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1", + "utxos_info": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1667,23 +1645,23 @@ }, { "tx_index": 56, - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "block_index": 190, - "block_hash": "52ce8354391192adc1549d6a4e70e552a9bf49e64fbe115795e8c12b930962da", - "block_time": 1727000580, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "1e1af2aaab6cfea61a31d3c2cda9e566643cab68018f3b8071bf25da826b9a80", + "block_time": 1727031724, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "data": "4695e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "supported": true, - "utxos_info": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f:1", + "utxos_info": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "status": "valid" } }, @@ -1691,17 +1669,17 @@ }, { "tx_index": 55, - "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "block_index": 189, - "block_hash": "54d2df0dc01af39d0d576efb398561deadcc34ad173c7198659cdf1d74b2a381", - "block_time": 1727000575, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "4b4c3d089292ec004e7c2f38f68a929bba6d7c6e6101db9616fe21b785fae411", + "block_time": 1727031720, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81:1", + "utxos_info": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1737,17 +1715,17 @@ }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "block_hash": "3af24eb207ec7c93df870ce901057933a0a9e906e1569a624ebe4cd15e5e7a5e", - "block_time": 1727000571, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "7aebb16eecf937a615a0835e17c17a727757a47eff751dbe07bf38199690cf08", + "block_time": 1727031716, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f6e40206dee5dd33c2a2804e47120677f27d08d2802fe54076791a6e2ac138ef00abb24f8185f125ab80ed681fe4daf7ab2ee1a33b873588429301d5bfa8400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a4ca4c30f02016b9d3311b06228bced4605a672d806dfffb33ff9bf38009f5261067fd1af98dadcc3c80fcd4fef91bbb7752401bda00950d4c9047d04028400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db:0", + "utxos_info": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1755,14 +1733,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -1770,7 +1748,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1789,25 +1767,25 @@ }, { "tx_index": 51, - "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", + "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", "block_index": 185, - "block_hash": "6a70586a2d19f9575864a5b42d32a9e9d19c76574dc8d6dfbc76172ca89682c2", - "block_time": 1727000558, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "1f5af0e7cec205944b080b4ab1df4487aa0f0dc1b8acf9bfe09a4004e1f6afc7", + "block_time": 1727031703, + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "btc_amount": 2000, "fee": 10000, - "data": "0b14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "data": "0bbb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874aca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "supported": true, - "utxos_info": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0:0", + "utxos_info": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", - "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", - "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "status": "valid" } }, @@ -1836,11 +1814,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "status": "open", - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "tx_index": 57, - "block_time": 1727000584, + "block_time": 1727031738, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1864,24 +1842,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "block_time": 1727000584 + "block_time": 1727031738 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "block_index": 191, - "event": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "event": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727000584, + "block_time": 1727031738, "asset_info": { "divisible": true, "asset_longname": null, @@ -1891,25 +1869,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "block_time": 1727000584 + "block_time": 1727031738 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", + "block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", "block_index": 191, - "block_time": 1727000584, + "block_time": 1727031738, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "tx_index": 57, - "utxos_info": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1", + "utxos_info": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1941,40 +1919,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "block_time": 1727000584 + "block_time": 1727031738 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "status": "valid", - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "tx_index": 56, - "block_time": 1727000580 + "block_time": 1727031724 }, - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "block_index": 190, - "block_time": 1727000580 + "block_time": 1727031724 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727000580, + "block_time": 1727031724, "asset_info": { "divisible": true, "asset_longname": null, @@ -1984,9 +1962,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "block_index": 190, - "block_time": 1727000580 + "block_time": 1727031724 } ], "next_cursor": 506, @@ -1995,17 +1973,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "memo": null, "quantity": 10000, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "status": "valid", - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "tx_index": 60, "asset_info": { "divisible": true, @@ -2018,19 +1996,19 @@ } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "CREDIT", "params": { - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -2042,19 +2020,19 @@ } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 193, - "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -2066,27 +2044,27 @@ } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727000606.3219044, + "block_time": 1727031751.6192584, "btc_amount": 0, - "data": "0200000000000000010000000000002710802fe54076791a6e2ac138ef00abb24f8185f125ab", + "data": "0200000000000000010000000000002710806dfffb33ff9bf38009f5261067fd1af98dadcc3c", "destination": "", "fee": 10000, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "tx_index": 60, - "utxos_info": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21:1", + "utxos_info": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "memo": null, "asset_info": { "divisible": true, @@ -2108,7 +2086,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2116,14 +2094,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2131,14 +2109,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2153,7 +2131,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2161,7 +2139,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2173,7 +2151,7 @@ }, "/v2/addresses/
/balances/": { "result": { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2192,16 +2170,16 @@ "result": [ { "block_index": 190, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000580, + "block_time": 1727031724, "asset_info": { "divisible": true, "asset_longname": null, @@ -2213,16 +2191,16 @@ }, { "block_index": 182, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", + "event": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000481, + "block_time": 1727031616, "asset_info": { "divisible": true, "asset_longname": null, @@ -2234,20 +2212,20 @@ }, { "block_index": 159, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", + "event": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000465, + "block_time": 1727031601, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2255,20 +2233,20 @@ }, { "block_index": 156, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "694859d37608f9befa94495339565cd43e8955250c937c614bdc234e9fd9f4c6", + "event": "78d87a84a548e802140107907dab0b844c078356f9fcce558b74909d159796a6", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000443, + "block_time": 1727031579, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2280,16 +2258,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", + "event": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", "tx_index": 38, - "utxo": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86:1", - "utxo_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "utxo": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450:1", + "utxo_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "confirmed": true, - "block_time": 1727000422, + "block_time": 1727031557, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2303,16 +2281,16 @@ "result": [ { "block_index": 191, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "event": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000584, + "block_time": 1727031738, "asset_info": { "divisible": true, "asset_longname": null, @@ -2324,16 +2302,16 @@ }, { "block_index": 189, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000575, + "block_time": 1727031720, "asset_info": { "divisible": true, "asset_longname": null, @@ -2345,16 +2323,16 @@ }, { "block_index": 188, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "event": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "divisible": true, "asset_longname": null, @@ -2366,20 +2344,20 @@ }, { "block_index": 188, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "event": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2387,16 +2365,16 @@ }, { "block_index": 183, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "event": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000550, + "block_time": 1727031685, "asset_info": { "divisible": true, "asset_longname": null, @@ -2419,9 +2397,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "175b0e837d4aa88d671cfc863c546cf1e410283c6bcfca4f22737640612a0343", + "tx_hash": "70bbbef4d727695c9dfe5767a7984c541fa63ee857b8a6f9d4fd484e7e9bb559", "block_index": 137, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2429,7 +2407,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727000362, + "block_time": 1727031498, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2440,14 +2418,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "5c1b3ec29a6da9391c34eb7e11afb83a79138d107025b4fb81a500f5e1aa466f", + "tx_hash": "c3ef7038264f09a6f51fb5f6471cfc4b095d6356440d83546aafcd77da3327bc", "block_index": 112, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1727000247, + "block_time": 1727031394, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2459,10 +2437,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2470,7 +2448,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "divisible": true, "asset_longname": null, @@ -2483,10 +2461,10 @@ }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2494,11 +2472,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2507,10 +2485,10 @@ }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2518,11 +2496,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2531,10 +2509,10 @@ }, { "tx_index": 38, - "tx_hash": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", + "tx_hash": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", "block_index": 151, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86:1", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2542,11 +2520,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000422, + "block_time": 1727031557, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2555,10 +2533,10 @@ }, { "tx_index": 35, - "tx_hash": "1aced42e6e980cc930626ed1334e8dbeaf5df4c375d5aa62212aedf53ba3aa51", + "tx_hash": "c2895e011f9b472f28337f45d9c4e55b74d73cbb0a4b6fad43b9bbff93937d9e", "block_index": 148, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "46166b488d62f2085d8dbc2af1837c3e9d204d91bf46bf31436e5e207c85d326:1", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "c7f128443db9a77d1633ed327ba6bff1a7df40904a0bcc0aeef69925fc748a83:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2566,11 +2544,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000409, + "block_time": 1727031544, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2585,10 +2563,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "804df83cded11a27f2118503527164d631474a075cd88df3e7f0d09a972d3cf6", + "tx_hash": "b24c9eeabf64bf130cf647b5b044590691cd4d002ece233465f257abf436ad6c", "block_index": 150, - "source": "9b353d1cbb0a30108e4f9cc683852d659f4f611c141bab3af77efc10ab93dc4a:0", - "destination": "bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv", + "source": "eabb3b7be615850b99b1401f3f242c8fa8e18d2d0ba58915a003fa589718cf11:0", + "destination": "bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2596,11 +2574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000417, + "block_time": 1727031553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2615,10 +2593,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2626,11 +2604,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2639,10 +2617,10 @@ }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2650,11 +2628,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2663,10 +2641,10 @@ }, { "tx_index": 38, - "tx_hash": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", + "tx_hash": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", "block_index": 151, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86:1", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2674,11 +2652,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000422, + "block_time": 1727031557, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2687,10 +2665,10 @@ }, { "tx_index": 35, - "tx_hash": "1aced42e6e980cc930626ed1334e8dbeaf5df4c375d5aa62212aedf53ba3aa51", + "tx_hash": "c2895e011f9b472f28337f45d9c4e55b74d73cbb0a4b6fad43b9bbff93937d9e", "block_index": 148, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "46166b488d62f2085d8dbc2af1837c3e9d204d91bf46bf31436e5e207c85d326:1", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "c7f128443db9a77d1633ed327ba6bff1a7df40904a0bcc0aeef69925fc748a83:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2698,11 +2676,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000409, + "block_time": 1727031544, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2717,10 +2695,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "804df83cded11a27f2118503527164d631474a075cd88df3e7f0d09a972d3cf6", + "tx_hash": "b24c9eeabf64bf130cf647b5b044590691cd4d002ece233465f257abf436ad6c", "block_index": 150, - "source": "9b353d1cbb0a30108e4f9cc683852d659f4f611c141bab3af77efc10ab93dc4a:0", - "destination": "bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv", + "source": "eabb3b7be615850b99b1401f3f242c8fa8e18d2d0ba58915a003fa589718cf11:0", + "destination": "bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2728,11 +2706,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000417, + "block_time": 1727031553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -2747,9 +2725,9 @@ "result": [ { "tx_index": 30, - "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", + "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", "block_index": 144, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2758,7 +2736,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2768,7 +2746,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000392, + "block_time": 1727031527, "asset_info": { "divisible": true, "asset_longname": null, @@ -2784,9 +2762,9 @@ }, { "tx_index": 26, - "tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2795,7 +2773,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2805,7 +2783,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -2826,9 +2804,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 30, - "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", + "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", "block_index": 144, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2837,7 +2815,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2847,7 +2825,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000392, + "block_time": 1727031527, "asset_info": { "divisible": true, "asset_longname": null, @@ -2867,19 +2845,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", + "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2887,7 +2865,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2902,7 +2880,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -2916,19 +2894,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", + "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", "block_index": 140, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2936,7 +2914,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2951,7 +2929,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000375, + "block_time": 1727031510, "asset_info": { "divisible": true, "asset_longname": null, @@ -2971,19 +2949,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", + "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2991,7 +2969,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3006,7 +2984,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -3020,19 +2998,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", + "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", "block_index": 140, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3040,7 +3018,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3055,7 +3033,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000375, + "block_time": 1727031510, "asset_info": { "divisible": true, "asset_longname": null, @@ -3075,19 +3053,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", + "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3095,7 +3073,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3110,7 +3088,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -3124,19 +3102,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", + "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", "block_index": 140, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3144,7 +3122,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3159,7 +3137,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000375, + "block_time": 1727031510, "asset_info": { "divisible": true, "asset_longname": null, @@ -3179,19 +3157,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", + "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3199,7 +3177,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3214,7 +3192,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -3228,19 +3206,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", + "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", "block_index": 140, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3248,7 +3226,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3263,7 +3241,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000375, + "block_time": 1727031510, "asset_info": { "divisible": true, "asset_longname": null, @@ -3282,16 +3260,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "fee_paid_normalized": "0.00600000" } ], @@ -3302,14 +3280,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", + "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -3324,20 +3302,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000465, + "block_time": 1727031601, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "69356c4a943c1bc4c96cf7e1fd1df717562742ba6d014e5404949c9fb8488072", + "tx_hash": "45b68c9ba64fa212a14541b0a2a12205e850ae06f24d5b225f0a5627c23d19e8", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -3352,20 +3330,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727000461, + "block_time": 1727031596, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "de64c6d5cdcb12d054140d780d7c6780ed87490c27d80ff372e2384e3e898730", + "tx_hash": "f90297d83b71b86f758f716ba6985c3656c2219501bf5577ac2d96103c22be8b", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -3380,20 +3358,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000447, + "block_time": 1727031593, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "694859d37608f9befa94495339565cd43e8955250c937c614bdc234e9fd9f4c6", + "tx_hash": "78d87a84a548e802140107907dab0b844c078356f9fcce558b74909d159796a6", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -3408,20 +3386,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000443, + "block_time": 1727031579, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "910c965acd73fa6a2f08def331a054436285d5cbc447958cb86a2b66d91f25cc", + "tx_hash": "7eba76181dde66ebc3fdfe33bdf17e5f00aff28437f82870fbc8bf86beccb827", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -3436,7 +3414,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000405, + "block_time": 1727031540, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -3450,8 +3428,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 10000000000, @@ -3459,16 +3437,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727000443, - "last_issuance_block_time": 1727000461, + "first_issuance_block_time": 1727031579, + "last_issuance_block_time": 1727031596, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 100000000000, @@ -3476,16 +3454,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727000405, - "last_issuance_block_time": 1727000405, + "first_issuance_block_time": 1727031540, + "last_issuance_block_time": 1727031540, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 40, @@ -3493,16 +3471,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727000354, - "last_issuance_block_time": 1727000358, + "first_issuance_block_time": 1727031489, + "last_issuance_block_time": 1727031494, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 19, @@ -3510,16 +3488,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727000326, - "last_issuance_block_time": 1727000349, + "first_issuance_block_time": 1727031472, + "last_issuance_block_time": 1727031485, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 0, @@ -3527,8 +3505,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1727000305, - "last_issuance_block_time": 1727000322, + "first_issuance_block_time": 1727031452, + "last_issuance_block_time": 1727031468, "supply_normalized": "0.00000000" } ], @@ -3539,17 +3517,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "block_hash": "60dcab5a8230b27dbbe36840e8d3f072b85a69b041a8314844298f4007ea905a", - "block_time": 1727000584, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", + "block_time": 1727031738, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1", + "utxos_info": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3585,23 +3563,23 @@ }, { "tx_index": 56, - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "block_index": 190, - "block_hash": "52ce8354391192adc1549d6a4e70e552a9bf49e64fbe115795e8c12b930962da", - "block_time": 1727000580, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "1e1af2aaab6cfea61a31d3c2cda9e566643cab68018f3b8071bf25da826b9a80", + "block_time": 1727031724, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "data": "4695e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "supported": true, - "utxos_info": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f:1", + "utxos_info": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "status": "valid" } }, @@ -3609,17 +3587,17 @@ }, { "tx_index": 55, - "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "block_index": 189, - "block_hash": "54d2df0dc01af39d0d576efb398561deadcc34ad173c7198659cdf1d74b2a381", - "block_time": 1727000575, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "4b4c3d089292ec004e7c2f38f68a929bba6d7c6e6101db9616fe21b785fae411", + "block_time": 1727031720, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81:1", + "utxos_info": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3655,17 +3633,17 @@ }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "block_hash": "3af24eb207ec7c93df870ce901057933a0a9e906e1569a624ebe4cd15e5e7a5e", - "block_time": 1727000571, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "7aebb16eecf937a615a0835e17c17a727757a47eff751dbe07bf38199690cf08", + "block_time": 1727031716, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f6e40206dee5dd33c2a2804e47120677f27d08d2802fe54076791a6e2ac138ef00abb24f8185f125ab80ed681fe4daf7ab2ee1a33b873588429301d5bfa8400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a4ca4c30f02016b9d3311b06228bced4605a672d806dfffb33ff9bf38009f5261067fd1af98dadcc3c80fcd4fef91bbb7752401bda00950d4c9047d04028400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db:0", + "utxos_info": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3673,14 +3651,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -3688,7 +3666,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3707,17 +3685,17 @@ }, { "tx_index": 49, - "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", "block_index": 183, - "block_hash": "5857b2e31e441dc9251e82211ad84eac5b7171b7d2ed35896316ba3e62d58f47", - "block_time": 1727000550, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "block_hash": "5736c35ad7443bd127e2c39121e8accb8483b3fc3458ab2bb197a41f504e1b78", + "block_time": 1727031685, + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74:1", + "utxos_info": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3759,20 +3737,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", + "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", "block_index": 153, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727000430, + "block_time": 1727031565, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -3794,9 +3772,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3811,7 +3789,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727000584, + "block_time": 1727031738, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3837,9 +3815,9 @@ }, { "tx_index": 55, - "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "block_index": 190, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3854,7 +3832,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727000580, + "block_time": 1727031724, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3880,9 +3858,9 @@ }, { "tx_index": 49, - "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", "block_index": 186, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3897,7 +3875,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727000563, + "block_time": 1727031707, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3923,9 +3901,9 @@ }, { "tx_index": 47, - "tx_hash": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", + "tx_hash": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", "block_index": 182, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3940,7 +3918,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727000481, + "block_time": 1727031616, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3971,10 +3949,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", + "tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", "tx_index": 22, "block_index": 135, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -3999,13 +3977,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727000354 + "block_time": 1727031489 }, { - "tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", + "tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", "tx_index": 18, "block_index": 131, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4030,13 +4008,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727000326 + "block_time": 1727031472 }, { - "tx_hash": "7db72c3a3d73085625f2f30f21a6937c09222727d2b9942e21aec693b24bf08e", + "tx_hash": "f0dfc17c191520c1e2ba90abccbcc857553adf8a4e40722685a17b81ff2f781a", "tx_index": 14, "block_index": 130, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4061,13 +4039,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727000322 + "block_time": 1727031468 }, { - "tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "tx_index": 10, "block_index": 125, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4092,7 +4070,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727000301 + "block_time": 1727031448 } ], "next_cursor": null, @@ -4101,127 +4079,127 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "8a9a1f916ad7518fbbdca58817a4ac2b58533c0a9768c4f1ca05778acb75e7d1", + "tx_hash": "ede174d6ebd168d04cfbc10891f9d7eb903c0d105cd7455db87566871ceb66a4", "tx_index": 23, "block_index": 136, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "fairminter_tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "fairminter_tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000358, + "block_time": 1727031494, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } }, { - "tx_hash": "f126053dd92ca48dc40a2ff68b8ae8af7cde23b1ab6d6137fe4c6203f590b859", + "tx_hash": "1ff72b43cf288d1d3e4e8f3b13df6f687a3b931b5dd479680fd537de7ab91619", "tx_index": 21, "block_index": 134, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "fairminter_tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "fairminter_tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000349, + "block_time": 1727031485, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } }, { - "tx_hash": "b2fadab50e518edbcd06b1c28c0130d8329d273cb39960943f6c905ec4484601", + "tx_hash": "173860b830f570665ce7176cc62cd77ea47e884cad47be8f881c860357a8fb56", "tx_index": 20, "block_index": 133, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "fairminter_tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "fairminter_tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000345, + "block_time": 1727031481, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } }, { - "tx_hash": "8a0a58a76c9c0795cdf955cd1fdb2ba6489b5a5424e83e6759209f7fc8da7833", + "tx_hash": "8db623e33495f11477f4c1321919da808fa5cdf7a552030355a5a5c9caf913c4", "tx_index": 19, "block_index": 132, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "fairminter_tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "fairminter_tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000331, + "block_time": 1727031477, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } }, { - "tx_hash": "6d76d3221c43cad887faa8f88631318e23856a5aef2799363fc245a8771dfcf4", + "tx_hash": "88164f5131f58c578d835121f2d081c1b2452f1074c8c4ab1beb574d190e440c", "tx_index": 15, "block_index": 127, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "fairminter_tx_hash": "7db72c3a3d73085625f2f30f21a6937c09222727d2b9942e21aec693b24bf08e", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "fairminter_tx_hash": "f0dfc17c191520c1e2ba90abccbcc857553adf8a4e40722685a17b81ff2f781a", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000310, + "block_time": 1727031457, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } }, { - "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", + "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000293, + "block_time": 1727031440, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } @@ -4233,22 +4211,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", + "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000293, + "block_time": 1727031440, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } @@ -4262,9 +4240,8 @@ }, "/v2/addresses/
/compose/broadcast": { "result": { - "rawtransaction": "0200000000010115c401b8d98226b74217cefb5032c25436b1b5c03d95952fa806f57bad01126100000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff0200000000000000002b6a293346c767cf647d2aacde83d14e2c9529372189b61fe4dae2a49930b729f4cf90c62df005fa6956043e3bb1052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4272,6 +4249,11 @@ }, "name": "broadcast", "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999983419, + "btc_fee": 16581, + "rawtransaction": "0200000000010168580864de321070d26e22e5619e6235efa1ed8e5673a9fd1a9252056396d98400000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff0200000000000000002b6a29252e87bed754730f6a92caca98637de939fded0640ef6f6e0c13d09e4fbc58ccbc079dd19f40db6a043bb1052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4283,13 +4265,17 @@ }, "/v2/addresses/
/compose/btcpay": { "result": { - "rawtransaction": "02000000000101daf348400d79fd99e9e9ba39e5f589daf7f7e43bcd0432bd39c16204f0464ce600000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff03b80b000000000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde00000000000000004b6a49f131b00aece2c6e0846814cdf1d01bad20fbc28a55edb64fd93618de526eebe90b0d784396f0571e7c6b40121a05f265653f3c285b2705ef404dec40b013214a3d22a53281158e57afd993052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea" + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f" }, "name": "btcpay", - "data": "434e5452505254590b14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac7482d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "data": "434e5452505254590bbb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "btc_in": 5000000000, + "btc_out": 3000, + "btc_change": 4999975897, + "btc_fee": 21103, + "rawtransaction": "0200000000010152c499e6be8f463ed370997da9a6af073e4f103d6d79b0fca4cf7056b979e65400000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff03b80b000000000000160014ab1ca0986fe508fb370b5937169762b6328c900c00000000000000004b6a494a8ba6c4ab2690f363a9ca8790f3d3f1a5515dbd8c63dc770a469f83cf2f9ca4d710d17171a56f7375c2217e0455bfa4d41d70c1171a56cc2a0041da909987ea41b7c0d83da5293d70d993052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4301,25 +4287,33 @@ }, "/v2/addresses/
/compose/burn": { "result": { - "rawtransaction": "0200000000010126fff1f579df2d0e9fbcb9b1e7f776838ce7a481ded19268534d0e584288f42c00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "quantity": 1000, "overburn": false }, "name": "burn", - "data": null + "data": null, + "btc_in": 5000000000, + "btc_out": 1000, + "btc_change": 4999983584, + "btc_fee": 15416, + "rawtransaction": "020000000001015335f23ce3fede2504cb86ff4184ab95d163e4a7a0e656afb9430fd1357f0cc600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { - "rawtransaction": "020000000001013eb1a01d1d6551395769367a9f2bb8898eb5016edb8c8df41bc3627209ef15fc00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff0200000000000000002b6a29d500c7f0889a043d7b84962877949c32746ac86db22c5c112a0aeb978ee58dd489fa6dbbaf158f0a833bb1052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "offer_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7" + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "offer_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d" }, "name": "cancel", - "data": "434e54525052545946caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "data": "434e5452505254594671b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999983419, + "btc_fee": 16581, + "rawtransaction": "020000000001015db7fd7ae00f3185285f83d16e80b67dfc80998416eecad872f0e23ee8a6ce6600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff0200000000000000002b6a294d4e6f4d174cb1aac2eb1dcb8f2649bb3674fa53e2d245ea491e9982391aa6988c4bb3a7a5f6c7c2913bb1052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4331,9 +4325,8 @@ }, "/v2/addresses/
/compose/destroy": { "result": { - "rawtransaction": "02000000000101aa28b197c723d17de2bef2df47f595f98f623493ec66a5b3672089dffcb3f7dd00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000226a20885bd57eae112fdd7db39d3c1707dda3f29d6129c49db69e01f3a8183175e0c7a4b3052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4348,6 +4341,11 @@ }, "name": "destroy", "data": "434e5452505254596e000000000000000100000000000003e822627567732122", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999984036, + "btc_fee": 15964, + "rawtransaction": "02000000000101243012e92ee26aa15a782cb2bbe197c8969a68efba5fa5ffdf8c6629803a1ae800000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000226a20bc7d36e6a6cc85dde26f0bba137fbd3da0f8c9580b38588624e2df93b37eae96a4b3052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4359,9 +4357,8 @@ }, "/v2/addresses/
/compose/dispenser": { "result": { - "rawtransaction": "0200000000010180e6e6e4a397697db7cde6ec1766b0852b9bee4f96cdf4dd96e98e18c7fbc84702000000160014dca9e37d561861c1f2060057ec37a222d5f5ae38ffffffff0200000000000000002c6a2a12a1cb0b3a347bca215cf1c90c427ab6da126eb992551c4982ff058f11802d849a4024582c5fd3e697b0474b0a2701000000160014dca9e37d561861c1f2060057ec37a222d5f5ae3802000000000000", "params": { - "source": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", + "source": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4381,6 +4378,11 @@ }, "name": "dispenser", "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", + "btc_in": 4949970000, + "btc_out": 0, + "btc_change": 4949953351, + "btc_fee": 16649, + "rawtransaction": "020000000001016ca177f459b6c36294fcb4155e83d07122353ab8388ce92973f4e652be3e91c8020000001600140c5f6b2015e1824e0d2b841e238a8fe8e4fe23edffffffff0200000000000000002c6a2a30263885add80b04f339f88a69df0d27f6167813e3f323cfaa236dde5a4a7910ed88bf0a12549501f797474b0a27010000001600140c5f6b2015e1824e0d2b841e238a8fe8e4fe23ed02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4392,16 +4394,15 @@ }, "/v2/addresses/
/compose/dividend": { "result": { - "rawtransaction": "020000000001017d8e59c3272df4941d47b894e7503dcb7aee29a7286dce9df82ebc081b370e5000000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000236a21f356553496497d7b934fe0a108db797f9a05bc37c350d4b2c9202c9c0fe0d704f660b3052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -4416,6 +4417,11 @@ }, "name": "dividend", "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999983968, + "btc_fee": 16032, + "rawtransaction": "020000000001011cc4f1ec2e36e31211a9399c62df1ab5fd8af892bd5626698abb7f1a824b1a7f00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000236a2152815ea75b3585636dbbcf7e9879494aa1a009d8c27727374d4c47efdeaa5a79f160b3052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4427,12 +4433,11 @@ }, "/v2/addresses/
/compose/issuance": { "result": { - "rawtransaction": "020000000001016f87d4afb609faeff0385730e8d3f735faf637ec6648c234938085805595f3e000000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff032202000000000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde0000000000000000236a213ad5656005b5e1507bc5682b156fb094ddc2dc97dd217fcfb33a74b57a9516718924a8052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "transfer_destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "lock": false, "reset": false, @@ -4441,6 +4446,11 @@ }, "name": "issuance", "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", + "btc_in": 5000000000, + "btc_out": 546, + "btc_change": 4999981092, + "btc_fee": 18362, + "rawtransaction": "0200000000010103fb4050d4f193e360ad8b027709d53abcbf04a2a1010df3ee4085ce05adde2300000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff032202000000000000160014ab1ca0986fe508fb370b5937169762b6328c900c0000000000000000236a2143df507de8f5a7bf1c9ffa5df39c3d425c98c75defe11495764bf5df144c0c238524a8052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4452,18 +4462,17 @@ }, "/v2/addresses/
/compose/mpma": { "result": { - "rawtransaction": "02000000000104ebbb5a83142a1034aaac4032e1a546cf5a274068dfeeb37875cd03b3700eabb000000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff4e7c7126f386b9de41bcef227b4cdefe1da4e4bb0f376a959e25a892cf219fd000000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff2ceabacbe62a496bc4e8e0f806c23af5d0f6dd6d3bf487cd622229b61a20204d00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff745824b68663dbde5c66294a4cd315eb4c3792f6a2a8c25bea96b6b70d0e978f00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff03e803000000000000695121036ece70a04e5b015c53fb0b91fcfd8082fd1f3eab08a869ae32bb59253ae4bb9821021d9692c24bba1449381a7f71a8f96ef08e14baf6e25b3fcc839b7fbd9dd3e41a2103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253aee8030000000000006951210261ce70a04e5b015c53d87cfc0ec765833c6d654cde6d834a96b7e5e5d42b173f210290485a34afb81297ddc744b30a7920b79c12cf049f53ed43a1d31ad1f1bcc8662103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253ae61d016a804000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000002000002000002000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", 1 ], [ "MYASSETA", - "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", 2 ] ], @@ -4471,7 +4480,12 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280568120e3f25be7dad0716f132cbcc0eecfac8dde80f6e40206dee5dd33c2a2804e47120677f27d08d28f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280ab1ca0986fe508fb370b5937169762b6328c900c80a4ca4c30f02016b9d3311b06228bced4605a672d8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "btc_in": 20000000000, + "btc_out": 2000, + "btc_change": 19999936609, + "btc_fee": 61391, + "rawtransaction": "020000000001046b414523590473e17a060f79d51b143092f0a49fd3c1574cb5c7e8816ffec29600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff6515d67199a23e30ea3e0687743ea61a94b4838a57ecfa86cbd1ab147c003d5800000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff0baa4e42d99e36bd02f37362ccd7959c2714d3addfe4dff113f283be2716734000000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff895f4db1d0bf555d6a70322996020954d8656732fd6e0b7f9129f8b74973cc2b00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff03e803000000000000695121028e1967a49cd0af70d220be6d0499ca4522b167d980b1434a20661459283e699221031daf2ff3356e312c9fea05b6a89292fed1383db83105e08839624392d5a9cce7210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253aee80300000000000069512102811967a49cd0af70d203c900f65eb2c4985e82d17793d398a050833b9e0ce5bb21028da3e757ff2201dcbffcb465998994dc5af6ebd86b62cd071b2a26feb9c6e067210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253ae61d016a804000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4483,9 +4497,8 @@ }, "/v2/addresses/
/compose/order": { "result": { - "rawtransaction": "02000000000101315dc0e7f6960541094341711ab902343d7c36bc88628ff8ca351a9649f85aef00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000356a3363b2cf1d482dc039dee4e210769c4819e87644b84643893ce3dbf7e5f6028cdb0b47bd000dfd5477bc385517d5d332f86c1a0a8eae052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4502,7 +4515,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -4512,6 +4525,11 @@ }, "name": "order", "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999982734, + "btc_fee": 17266, + "rawtransaction": "02000000000101b11ecb7d27a67136cf85b41c0f1746dd57d2d3a7dc6f554bc5130e8e6df7169c00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000356a3319a3789259879ad196f221e476cd6b47f56525ba5f07aad19e73110a5418e71eb4f883438237b5ca0614a9721c1168c74ebf718eae052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4523,10 +4541,9 @@ }, "/v2/addresses/
/compose/send": { "result": { - "rawtransaction": "02000000000101729f4c197df6f4a236502146ab1a5258cab4a2beb8edf45e8afba0e82c88df2300000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000306a2e7a73cc3866f3308c247737670a9bb9dd77f0a63633306c262610ce07b025c4a37764ceb6770146df1f5632e859e4e5af052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4542,7 +4559,12 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880f6e40206dee5dd33c2a2804e47120677f27d08d2", + "data": "434e54525052545902000000000000000100000000000003e880a4ca4c30f02016b9d3311b06228bced4605a672d", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999983077, + "btc_fee": 16923, + "rawtransaction": "0200000000010158fd1f796df7fea46698bc263a2bd7d424a85d2816510bbdf826be021fab04b400000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000306a2eb06e3c72eb8372859fd223c26c9d6538ae59c8ef14c9d7e98aeb1dd484f73a501c37c81e4d761d5eb3cc7b4cc11ae5af052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4554,15 +4576,19 @@ }, "/v2/addresses/
/compose/sweep": { "result": { - "rawtransaction": "02000000000101df20d626cc16ba1c4999c923cf908cecec6c36023462e9d1ef307d4b2a37e97100000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000236a21f5f26402338b4b669a2bd2402474c76df612433dd10bcabf9904a7f38e132a05a660b3052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480f6e40206dee5dd33c2a2804e47120677f27d08d207ffff", + "data": "434e5452505254590480a4ca4c30f02016b9d3311b06228bced4605a672d07ffff", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999983968, + "btc_fee": 16032, + "rawtransaction": "02000000000101e28bddd16c488955c1574a8b910920bed71e94cb3424549cfada1dffbf92f4a600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000236a21c6f0014bed1dbb0c63e5c6f4ab9b62aaf1cf8f29b6e1347e7e1b6f9c483a599eaf60b3052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4574,14 +4600,18 @@ }, "/v2/addresses/
/compose/dispense": { "result": { - "rawtransaction": "02000000000101e0ce8482c498c33b2168d9e3cf9a33fedb60968a68b6553de6ab68cb48ab42c502000000160014f6e40206dee5dd33c2a2804e47120677f27d08d2ffffffff03e803000000000000160014ed681fe4daf7ab2ee1a33b873588429301d5bfa800000000000000000c6a0a4e4ac9ecf2a1c59d387a66b8082701000000160014f6e40206dee5dd33c2a2804e47120677f27d08d202000000000000", "params": { - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "quantity": 1000 }, "name": "dispense", "data": "434e5452505254590d00", + "btc_in": 4949868000, + "btc_out": 1000, + "btc_change": 4949850214, + "btc_fee": 16786, + "rawtransaction": "020000000001014965c1a1198d4641adae38c943e3eb0a22e72ee50bc76254283cee7633bc6ca902000000160014a4ca4c30f02016b9d3311b06228bced4605a672dffffffff03e803000000000000160014fcd4fef91bbb7752401bda00950d4c9047d0402800000000000000000c6a0a184253a54004e9393cb266b8082701000000160014a4ca4c30f02016b9d3311b06228bced4605a672d02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4593,9 +4623,8 @@ }, "/v2/addresses/
/compose/fairminter": { "result": { - "rawtransaction": "020000000001013abd5789d21497efd4e34bcc7938cffe0dac28ce90b3773ef729b4929f31ab1400000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000316a2f6887c9fee2e9d6bad71ac9157aeff69cf73203356a7e5836755a2cf7ca4a47c18598bfded5d272dc9465942871dc4da0af052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4616,6 +4645,11 @@ }, "name": "fairminter", "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999983008, + "btc_fee": 16992, + "rawtransaction": "020000000001019e7e0c7349c31042c37817864ed04394eac047ee9791b172aa8a14fdf4c19a3200000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000316a2fac7eeb583600812eb6b1631a16d1b0a7a79a75c30ea39c7e1a59e3bb4504cc2552cc44343fccc2fd7d3bf2b05dc63ca0af052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4627,15 +4661,14 @@ }, "/v2/addresses/
/compose/fairmint": { "result": { - "rawtransaction": "020000000001011557e6edacb2424f9b980d8998dde10d2c288c61593f1adbb1e3118f5790fada00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff020000000000000000166a141094e889ea2b96910e0c5e83e31fdaae5d81484bdab6052a01000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -4643,6 +4676,11 @@ }, "name": "fairmint", "data": "434e5452505254595b464149524d494e54437c31", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999984858, + "btc_fee": 15142, + "rawtransaction": "02000000000101513e585d94693e2e265a99bfab48141b717dfd8dc5193ae57381d547ca8fdff100000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000166a147fee4a8479e15755f753a1cdf924b8686d02c8aadab6052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4654,10 +4692,9 @@ }, "/v2/addresses/
/compose/attach": { "result": { - "rawtransaction": "02000000000106b5b2a300cd9f45e9fda7bd55fe7562178242530b17b22f81ff7fd2aca4c762cd00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffffef0a2588300e8fb8fda9df42f8c674ef493032f617daed6699e7c7cb571a8e2900000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff3597da886302ff1cf6b352404c1eb0954497c87c15a918872e2373408904f4b200000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff4268ca1adfcfd7c71d02cdc28133b4a94c3d6cf064c021831d0a641876830e3200000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff4c3fd0d1e9fd1207d8a7512e79145c7baf1824c64b85ff95077e80fb4012d47b00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff5e90be4b78a0601e9e787268b5bdc9441f0b96d70de955f01e770cf7ec058e4b00000000160014568120e3f25be7dad0716f132cbcc0eecfac8ddeffffffff04e8030000000000006951210388e0801a8eb1ee3020f43c7ad6954d29621f6ed76ed366f6c1efc95e55d1aecd21031361d20e3a1a451d140674a3d3fbe557e2cc447c2987afb03b165bf8436d36322103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253aee8030000000000006951210288e0801a8eb1ee3020a56b7bc1824f3e621e2e8e2b863eaa80eac45b51d2e55521024363960d614b475407042effdcf8f213e3db4e3e2c97e8a86e4604ab436c3d582103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253aee80300000000000069512103a2e0801a8eb1ee3020a2687d93db4d24086a4fc12f803aacb5dfa73f61e4dc6121032005a768507f75656567199be59e9720d5bf280c1cf3ddcc58773dce770805212103dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d96253aee83922fc06000000160014568120e3f25be7dad0716f132cbcc0eecfac8dde02000002000002000002000002000002000000000000", "params": { - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7:1", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4670,7 +4707,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713236716a70636c6a74306e61343572336475666a65307871616d383665727737736c703574727c636166363465333535626563336632373133353634363535636430363963663165313432316263376439666533366466323064356436313965346438323664373a317c5843507c31303030", + "data": "434e545250525459646263727431713476773270787230753579306b64637474796d3364396d7a6b636567657971767a6c766a646a7c653461663864363533376631363536383430666638306231653865643432383061373333653434313563333739386632313862656438616634396337326138343a317c5843507c31303030", + "btc_in": 30000000000, + "btc_out": 3000, + "btc_change": 29999905256, + "btc_fee": 91744, + "rawtransaction": "0200000000010619b635802d062e0f54a0efad67febe746729b3a19c63be03b892f9d66f30e70600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffffaba7e0a56b0cf395747c347a0af12e121a0a8e9f109cd9d78140cf79ccd8e32b00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff36b4a050a5ef3a4860409e9a7d5cd38863eb73f175b0889fa20deb5ba828db3200000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffffad6296b39c4da592264107716b06741fd5f6b6f664432fe3e22765000887fbad00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff11c4a709f74556931b448f065eb8221414d357d1eec183199f6c5e8ea70a2e3e00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff99421d7eb985e931b30f5f4ed605cedfad817c6a114c92125ac753ccf364c78600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff04e80300000000000069512102e19b774312551ce9ad05c7ad52649b8cc1bf8bbaed53b3f8237c4e12a4ae0dc72102e19bfbce5819425ee7375de33c47f748b619ef29b6067a8e7bd57a6ff1e62892210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253aee80300000000000069512103e19b774312551ce9ad5496f946219cc8c3f1c8b8fb4df9f83478521aaaae5a912102a7d7b2c25c4e4856a9680fb33811b900f805b16ee400759626807d3df0e1290a210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253aee80300000000000069512103cb9b774312551ce9ad53c4f6142a9b81ad8aacf4ac1bf1f856493722cfca6ed4210395ef82a36b7d7b339d5c3e865b228e39c063835fdc6210f21ee11b09c9821ef2210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253aee83922fc06000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4682,10 +4724,9 @@ }, "/v2/utxos//compose/detach": { "result": { - "rawtransaction": "02000000000101e3c0abdcb1b46b89adbb9079210c4c14d9f624a027d8f449248c9b8b82c366e1010000001600147680081eacbc4519f01d1f068efed38d60f8c0a9ffffffff04e80300000000000069512103f844335e103b984283c13015448330b33544964dfae4ff345c79050cffa1001921024803ce6c4c93f971075791716b29c7c3149271b4a720463aeb26332fb1f36b62210210c7a3f106ae95ec77b61dd08bf70b372b9bd9adb606dcef53143fd064020b5253aee80300000000000069512103f844335e103b984283c7614643d130e16f159e4af0bcf62b0c2e4341a8e456d021024640937d1fcda763015dc9746a6f979702c62ae6ae610739e47f6172fab23e49210210c7a3f106ae95ec77b61dd08bf70b372b9bd9adb606dcef53143fd064020b5253aee80300000000000069512103d244335e103b984283d6395447c121fc5535fe53f2b6f7676e4d31359995640e21037031f90d7ca1cd173133a8405f1da4f377a040839e1976588947571788c509e1210210c7a3f106ae95ec77b61dd08bf70b372b9bd9adb606dcef53143fd064020b5253aef4980827010000001600147680081eacbc4519f01d1f068efed38d60f8c0a902000000000000", "params": { - "source": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3:1", - "destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a:1", + "destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4698,7 +4739,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964653136366333383238623962386332343439663464383237613032346636643931343463306332313739393062626164383936626234623164636162633065333a317c6263727431713236716a70636c6a74306e61343572336475666a65307871616d383665727737736c703574727c5843507c31303030", + "data": "434e54525052545964323161393730363531303137313234303438306234303362643834363637333434313264633262363839326630643065666666613364333165613261383137613a317c6263727431713476773270787230753579306b64637474796d3364396d7a6b636567657971767a6c766a646a7c5843507c31303030", + "btc_in": 4949874900, + "btc_out": 3000, + "btc_change": 4949842164, + "btc_fee": 29736, + "rawtransaction": "020000000001017a812aea313dfaff0e0d2f89b6c22d41346746d83b400b48401217106570a9210100000016001420582a98a28bc63ae45a15b698c57e26fa1be207ffffffff04e80300000000000069512102bf70627fbbd9cc3fc3554a55fd6784c5c5dc1c67645ca0da21af49f034ba20342102738249874b5b409468101cc4006c6585fa1ed00d843437ab5ddbf5814ea3788d2103f746dcb4e4f134685e58226c4d3c6e8be7ab705636aac838644a8adba0b8d0b653aee80300000000000069512103bf70627fbbd9cc3fc3021c57ad3bd2c792d11c603451a09477fc0fbc35a9204d210335c619930b1d46d76a5a189b553d7592b111d551846b2bf05a8ef78251b46f672103f746dcb4e4f134685e58226c4d3c6e8be7ab705636aac838644a8adba0b8d0b653aee803000000000000695121029570627fbbd9cc3fc34b1412f63ad989abaa7d2b645ba1d8159f7dc804d8142e210343b12be3736f76a25f2328f0315e01e6c87ce635bd06519b39eb90e728c519b12103f746dcb4e4f134685e58226c4d3c6e8be7ab705636aac838644a8adba0b8d0b653aef49808270100000016001420582a98a28bc63ae45a15b698c57e26fa1be20702000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4714,8 +4760,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 10000000000, @@ -4723,16 +4769,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727000443, - "last_issuance_block_time": 1727000461, + "first_issuance_block_time": 1727031579, + "last_issuance_block_time": 1727031596, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", - "owner": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", + "issuer": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", + "owner": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", "divisible": true, "locked": false, "supply": 100000000000, @@ -4740,16 +4786,16 @@ "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1727000439, - "last_issuance_block_time": 1727000439, + "first_issuance_block_time": 1727031574, + "last_issuance_block_time": 1727031574, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 100000000000, @@ -4757,16 +4803,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727000405, - "last_issuance_block_time": 1727000405, + "first_issuance_block_time": 1727031540, + "last_issuance_block_time": 1727031540, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 40, @@ -4774,16 +4820,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727000354, - "last_issuance_block_time": 1727000358, + "first_issuance_block_time": 1727031489, + "last_issuance_block_time": 1727031494, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 19, @@ -4791,8 +4837,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727000326, - "last_issuance_block_time": 1727000349, + "first_issuance_block_time": 1727031472, + "last_issuance_block_time": 1727031485, "supply_normalized": "0.00000019" } ], @@ -4804,8 +4850,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 10000000000, @@ -4813,15 +4859,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1727000288, - "last_issuance_block_time": 1727000301, + "first_issuance_block_time": 1727031435, + "last_issuance_block_time": 1727031448, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4829,14 +4875,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4844,7 +4890,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -4856,7 +4902,7 @@ }, "/v2/assets//balances/
": { "result": { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4875,9 +4921,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4892,7 +4938,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727000584, + "block_time": 1727031738, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4918,9 +4964,9 @@ }, { "tx_index": 55, - "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "block_index": 190, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4935,7 +4981,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727000580, + "block_time": 1727031724, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4961,9 +5007,9 @@ }, { "tx_index": 52, - "tx_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "tx_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "block_index": 186, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -4978,7 +5024,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727000563, + "block_time": 1727031707, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5004,9 +5050,9 @@ }, { "tx_index": 50, - "tx_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "tx_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "block_index": 185, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5021,7 +5067,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727000558, + "block_time": 1727031703, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5047,9 +5093,9 @@ }, { "tx_index": 49, - "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", "block_index": 186, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5064,7 +5110,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727000563, + "block_time": 1727031707, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5095,13 +5141,13 @@ "/v2/assets//matches": { "result": [ { - "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "tx0_index": 49, - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 52, - "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", - "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5115,7 +5161,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727000563, + "block_time": 1727031707, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5135,13 +5181,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "tx0_index": 49, - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 50, - "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", - "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5155,7 +5201,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727000558, + "block_time": 1727031703, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5175,13 +5221,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", "tx0_index": 47, - "tx0_hash": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 48, - "tx1_hash": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", - "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "tx1_hash": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5195,7 +5241,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727000481, + "block_time": 1727031616, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5222,20 +5268,20 @@ "result": [ { "block_index": 192, - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5243,20 +5289,20 @@ }, { "block_index": 125, - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "440ae8e372ae940d6481d2627e1995fa192be6b97873113ff7d04d298a8f443e", + "event": "233dc7165588f359608bc62642e47111d3bfbf33f36cce0c33ba1a62b65c49d3", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000301, + "block_time": 1727031448, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5264,20 +5310,20 @@ }, { "block_index": 124, - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f", + "event": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000297, + "block_time": 1727031444, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5285,20 +5331,20 @@ }, { "block_index": 124, - "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", + "event": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000297, + "block_time": 1727031444, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5310,16 +5356,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f", + "event": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000297, + "block_time": 1727031444, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5333,16 +5379,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "event": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -5354,16 +5400,16 @@ }, { "block_index": 192, - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -5375,16 +5421,16 @@ }, { "block_index": 192, - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -5396,16 +5442,16 @@ }, { "block_index": 191, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "event": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000584, + "block_time": 1727031738, "asset_info": { "divisible": true, "asset_longname": null, @@ -5417,16 +5463,16 @@ }, { "block_index": 189, - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000575, + "block_time": 1727031720, "asset_info": { "divisible": true, "asset_longname": null, @@ -5444,20 +5490,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", + "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", "block_index": 153, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727000430, + "block_time": 1727031565, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5479,14 +5525,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "440ae8e372ae940d6481d2627e1995fa192be6b97873113ff7d04d298a8f443e", + "tx_hash": "233dc7165588f359608bc62642e47111d3bfbf33f36cce0c33ba1a62b65c49d3", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -5501,20 +5547,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727000301, + "block_time": 1727031448, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f", + "tx_hash": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -5529,20 +5575,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727000297, + "block_time": 1727031444, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", + "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -5557,20 +5603,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727000293, + "block_time": 1727031440, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -5585,7 +5631,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1727000288, + "block_time": 1727031435, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5597,10 +5643,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5608,7 +5654,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "divisible": true, "asset_longname": null, @@ -5621,10 +5667,10 @@ }, { "tx_index": 53, - "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50", + "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763", "block_index": 187, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5632,7 +5678,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000567, + "block_time": 1727031711, "asset_info": { "divisible": true, "asset_longname": null, @@ -5645,10 +5691,10 @@ }, { "tx_index": 42, - "tx_hash": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", + "tx_hash": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", "block_index": 155, - "source": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881:0", - "destination": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3:1", + "source": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1:0", + "destination": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5656,7 +5702,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000439, + "block_time": 1727031574, "asset_info": { "divisible": true, "asset_longname": null, @@ -5669,10 +5715,10 @@ }, { "tx_index": 41, - "tx_hash": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881", + "tx_hash": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1", "block_index": 154, - "source": "04f059b15c3a78cd69b004df45b5e2a96703d2a36ce737e6bad8ddad72bbffb2:0", - "destination": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881:0", + "source": "db0f9118b55250f75e4c301deb8008e4e0f5f440d1b843264992ce00dd293803:0", + "destination": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5680,7 +5726,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000434, + "block_time": 1727031570, "asset_info": { "divisible": true, "asset_longname": null, @@ -5699,18 +5745,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "last_status_tx_hash": null, - "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5720,7 +5766,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727000400, + "block_time": 1727031536, "asset_info": { "divisible": true, "asset_longname": null, @@ -5736,9 +5782,9 @@ }, { "tx_index": 30, - "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", + "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", "block_index": 144, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5747,7 +5793,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5757,7 +5803,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000392, + "block_time": 1727031527, "asset_info": { "divisible": true, "asset_longname": null, @@ -5773,9 +5819,9 @@ }, { "tx_index": 29, - "tx_hash": "55b192e3a4561ca9f43c52774fc1a814cbbc8063479cd052a6bb818aec5aeadc", + "tx_hash": "d3bbef12243451e8ad3a4da485b4b206a0fa90300424e3639deb554c3b73301a", "block_index": 142, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5784,7 +5830,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "origin": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5794,7 +5840,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000383, + "block_time": 1727031518, "asset_info": { "divisible": true, "asset_longname": null, @@ -5810,9 +5856,9 @@ }, { "tx_index": 26, - "tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5821,7 +5867,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5831,7 +5877,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -5852,9 +5898,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 30, - "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", + "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", "block_index": 144, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5863,7 +5909,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5873,7 +5919,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000392, + "block_time": 1727031527, "asset_info": { "divisible": true, "asset_longname": null, @@ -5901,7 +5947,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5909,7 +5955,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -5918,7 +5964,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5926,7 +5972,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -5935,7 +5981,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5943,7 +5989,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -5952,7 +5998,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -5967,27 +6013,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", - "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "last_status_tx_hash": null, - "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6002,7 +6048,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727000400, + "block_time": 1727031536, "asset_info": { "divisible": true, "asset_longname": null, @@ -6016,19 +6062,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", + "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6036,7 +6082,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6051,7 +6097,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -6065,19 +6111,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", + "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", "block_index": 140, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6085,7 +6131,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6100,7 +6146,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000375, + "block_time": 1727031510, "asset_info": { "divisible": true, "asset_longname": null, @@ -6121,8 +6167,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "owner": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false, "supply": 0, @@ -6130,8 +6176,8 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1727000447, - "last_issuance_block_time": 1727000447, + "first_issuance_block_time": 1727031593, + "last_issuance_block_time": 1727031593, "supply_normalized": "0.00000000" } ], @@ -6141,10 +6187,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "tx_index": 10, "block_index": 125, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6169,7 +6215,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727000301 + "block_time": 1727031448 } ], "next_cursor": null, @@ -6178,64 +6224,64 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "440ae8e372ae940d6481d2627e1995fa192be6b97873113ff7d04d298a8f443e", + "tx_hash": "233dc7165588f359608bc62642e47111d3bfbf33f36cce0c33ba1a62b65c49d3", "tx_index": 13, "block_index": 125, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", - "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000301, + "block_time": 1727031448, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } }, { - "tx_hash": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f", + "tx_hash": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144", "tx_index": 12, "block_index": 124, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", - "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000297, + "block_time": 1727031444, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } }, { - "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", + "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000293, + "block_time": 1727031440, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } @@ -6247,22 +6293,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "5bd966c843ba1211de8450e7469e10f8ac5b15c3bcbdfefc1546dda710ff26d1", + "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "fairminter_tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727000293, + "block_time": 1727031440, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } @@ -6275,9 +6321,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6292,7 +6338,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727000584, + "block_time": 1727031738, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6318,9 +6364,9 @@ }, { "tx_index": 55, - "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "block_index": 190, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6335,7 +6381,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727000580, + "block_time": 1727031724, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6361,9 +6407,9 @@ }, { "tx_index": 52, - "tx_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "tx_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "block_index": 186, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6378,7 +6424,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727000563, + "block_time": 1727031707, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6404,9 +6450,9 @@ }, { "tx_index": 50, - "tx_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "tx_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "block_index": 185, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6421,7 +6467,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727000558, + "block_time": 1727031703, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6447,9 +6493,9 @@ }, { "tx_index": 49, - "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", "block_index": 186, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6464,7 +6510,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727000563, + "block_time": 1727031707, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6495,9 +6541,9 @@ "/v2/orders/": { "result": { "tx_index": 57, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6512,7 +6558,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727000584, + "block_time": 1727031738, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6540,13 +6586,13 @@ "/v2/orders//matches": { "result": [ { - "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "tx0_index": 49, - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 52, - "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", - "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6560,7 +6606,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727000563, + "block_time": 1727031707, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6580,13 +6626,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "tx0_index": 49, - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 50, - "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", - "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6600,7 +6646,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727000558, + "block_time": 1727031703, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6627,15 +6673,15 @@ "result": [ { "tx_index": 51, - "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", + "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", "block_index": 185, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "btc_amount": 2000, - "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "status": "valid", "confirmed": true, - "block_time": 1727000558, + "block_time": 1727031703, "btc_amount_normalized": "0.00002000" } ], @@ -6646,9 +6692,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6666,7 +6712,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727000584, + "block_time": 1727031738, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6692,9 +6738,9 @@ }, { "tx_index": 55, - "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "block_index": 190, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6712,7 +6758,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727000580, + "block_time": 1727031724, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6738,9 +6784,9 @@ }, { "tx_index": 52, - "tx_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "tx_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "block_index": 186, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6758,7 +6804,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727000563, + "block_time": 1727031707, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6784,9 +6830,9 @@ }, { "tx_index": 50, - "tx_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "tx_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "block_index": 185, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6804,7 +6850,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727000558, + "block_time": 1727031703, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6830,9 +6876,9 @@ }, { "tx_index": 49, - "tx_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", "block_index": 186, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6850,7 +6896,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727000563, + "block_time": 1727031707, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6881,13 +6927,13 @@ "/v2/orders///matches": { "result": [ { - "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "tx0_index": 49, - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 52, - "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", - "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6904,7 +6950,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727000563, + "block_time": 1727031707, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6924,13 +6970,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "tx0_index": 49, - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 50, - "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", - "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6947,7 +6993,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727000558, + "block_time": 1727031703, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6967,13 +7013,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", "tx0_index": 47, - "tx0_hash": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 48, - "tx1_hash": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", - "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "tx1_hash": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6990,7 +7036,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727000481, + "block_time": 1727031616, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7016,13 +7062,13 @@ "/v2/order_matches": { "result": [ { - "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "tx0_index": 49, - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 52, - "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", - "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7036,7 +7082,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727000563, + "block_time": 1727031707, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7056,13 +7102,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "tx0_index": 49, - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 50, - "tx1_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", - "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7076,7 +7122,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727000558, + "block_time": 1727031703, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7096,13 +7142,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", + "id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", "tx0_index": 47, - "tx0_hash": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_hash": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx1_index": 48, - "tx1_hash": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", - "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "tx1_hash": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7116,7 +7162,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727000481, + "block_time": 1727031616, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7161,66 +7207,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "adfbd46bafe5d0eb02dc42e71c6ebd831574fbcbc27598f3a574cd28a015cc8b", + "tx_hash": "6428abb0788142a72920efd1a8b5dcdde89c7f503ca062322bcd573acac0e136", "block_index": 121, - "source": "bcrt1qyulh8dt9j6mxay44vsk59ykh3j0sepu4nr8frk", + "source": "bcrt1qyqvw64v3g6jjw0hkydjnz03emknd689c9m445j", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1727000284, + "block_time": 1727031432, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "1d6bad2e953fa3de6db966f89158902144fed3f216c81d87ddc6d4b23e8ff89d", + "tx_hash": "44f44f9f98d05d9ff88e87c42eebe0b002a603f79c116708ea623c2f8c5cb313", "block_index": 120, - "source": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", + "source": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1727000279, + "block_time": 1727031428, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "7ee251aac657b6a4b3605cca2cc178ffbec78038d0a964ca464c18982a294201", + "tx_hash": "1e79447843eb5dc9086921e2ded16a84c3271e35d5fe01b149623a4276548de1", "block_index": 119, - "source": "bcrt1qmrlqq2xhfdhnvnnsry6l8mkv5q9nrdz4nlkvmp", + "source": "bcrt1qtfj6sgngh8qduq9cl5kqdxwjvjdtfprgxr0re6", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1727000275, + "block_time": 1727031423, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "8e5aa0e03605f3cfb71386e8827a8dd88135027beba9e6d959f94577fdab79f6", + "tx_hash": "8619c6ed6633efdb103fc7b72e015e8d9ef017415f20f8778c96116c9766c4ed", "block_index": 118, - "source": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", + "source": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1727000271, + "block_time": 1727031419, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "0baa93783d18dfbdc8cfe8d0e1291184d0ed5524077e64df275222278c79b627", + "tx_hash": "d96a0715d3e1a34ea51ca28ce1b475e299ee9a2fd28e2d7955e84b61c541ebd5", "block_index": 117, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1727000267, + "block_time": 1727031415, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7232,18 +7278,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "last_status_tx_hash": null, - "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7253,7 +7299,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727000400, + "block_time": 1727031536, "asset_info": { "divisible": true, "asset_longname": null, @@ -7269,9 +7315,9 @@ }, { "tx_index": 30, - "tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", + "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", "block_index": 144, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7280,7 +7326,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7290,7 +7336,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000392, + "block_time": 1727031527, "asset_info": { "divisible": true, "asset_longname": null, @@ -7306,9 +7352,9 @@ }, { "tx_index": 29, - "tx_hash": "55b192e3a4561ca9f43c52774fc1a814cbbc8063479cd052a6bb818aec5aeadc", + "tx_hash": "d3bbef12243451e8ad3a4da485b4b206a0fa90300424e3639deb554c3b73301a", "block_index": 142, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7317,7 +7363,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "origin": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7327,7 +7373,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000383, + "block_time": 1727031518, "asset_info": { "divisible": true, "asset_longname": null, @@ -7343,9 +7389,9 @@ }, { "tx_index": 26, - "tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7354,7 +7400,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7364,7 +7410,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -7385,9 +7431,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7396,7 +7442,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7406,7 +7452,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -7426,19 +7472,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", + "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7446,7 +7492,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7461,7 +7507,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -7475,19 +7521,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", + "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", "block_index": 140, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7495,7 +7541,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7510,7 +7556,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000375, + "block_time": 1727031510, "asset_info": { "divisible": true, "asset_longname": null, @@ -7529,20 +7575,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", + "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", "block_index": 153, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727000430, + "block_time": 1727031565, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -7563,20 +7609,20 @@ "/v2/dividends/": { "result": { "tx_index": 40, - "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", + "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", "block_index": 153, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727000430, + "block_time": 1727031565, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -7599,12 +7645,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", + "event": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", "tx_index": 40, - "utxo": "04f059b15c3a78cd69b004df45b5e2a96703d2a36ce737e6bad8ddad72bbffb2:0", - "utxo_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "utxo": "db0f9118b55250f75e4c301deb8008e4e0f5f440d1b843264992ce00dd293803:0", + "utxo_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "confirmed": true, - "block_time": 1727000430, + "block_time": 1727031565, "asset_info": { "divisible": true, "asset_longname": null, @@ -7616,16 +7662,16 @@ }, { "block_index": 153, - "address": "bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv", + "address": "bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", + "event": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727000430, + "block_time": 1727031565, "asset_info": { "divisible": true, "asset_longname": null, @@ -7646,27 +7692,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", - "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", + "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", + "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", "transaction_count": 1, - "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", - "block_time": 1727000592 + "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", + "block_time": 1727031747 }, "tx_hash": null, "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "tx_index": 59 }, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 }, { "event_index": 533, @@ -7675,12 +7721,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "status": "valid", "tag": "64657374726f79", - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "tx_index": 59, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -7690,24 +7736,24 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 193, - "event": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "event": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -7717,25 +7763,25 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", "block_index": 193, - "block_time": 1727000592, + "block_time": 1727031747, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "tx_index": 59, - "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", + "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -7755,9 +7801,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 } ], "next_cursor": 530, @@ -7769,15 +7815,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", - "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", + "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", + "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", "transaction_count": 1, - "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", - "block_time": 1727000592 + "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", + "block_time": 1727031747 }, "tx_hash": null, "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 } }, "/v2/events/counts": { @@ -7812,16 +7858,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -7831,78 +7877,78 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", + "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727000580, + "block_time": 1727031724, "asset_info": { "divisible": true, "asset_longname": null, @@ -7912,24 +7958,24 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "block_index": 190, - "block_time": 1727000580 + "block_time": 1727031724 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "event": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "divisible": true, "asset_longname": null, @@ -7939,9 +7985,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "block_time": 1727000571 + "block_time": 1727031716 } ], "next_cursor": 490, @@ -7958,27 +8004,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", - "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "last_status_tx_hash": null, - "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7993,7 +8039,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727000400, + "block_time": 1727031536, "asset_info": { "divisible": true, "asset_longname": null, @@ -8007,19 +8053,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "27abbd59e2c73f6a353fbd6952cbd57898954c37a05564782baf71b197089fd2", + "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8027,7 +8073,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8042,7 +8088,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000379, + "block_time": 1727031514, "asset_info": { "divisible": true, "asset_longname": null, @@ -8056,19 +8102,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7de6bff5d9cd05b5413d8dc09b8c88b3817f7315b6bdb84d5f5269a531eb0f6c", + "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", "block_index": 140, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf0e76748527b57576d12ccf8733c46cf24b403770fdd0707136d15b64a41b5e", + "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8076,7 +8122,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8091,7 +8137,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727000375, + "block_time": 1727031510, "asset_info": { "divisible": true, "asset_longname": null, @@ -8110,10 +8156,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8121,7 +8167,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "divisible": true, "asset_longname": null, @@ -8134,10 +8180,10 @@ }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8145,11 +8191,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -8158,10 +8204,10 @@ }, { "tx_index": 54, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8169,11 +8215,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -8182,10 +8228,10 @@ }, { "tx_index": 53, - "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50", + "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763", "block_index": 187, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -8193,7 +8239,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000567, + "block_time": 1727031711, "asset_info": { "divisible": true, "asset_longname": null, @@ -8206,10 +8252,10 @@ }, { "tx_index": 42, - "tx_hash": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", + "tx_hash": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", "block_index": 155, - "source": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881:0", - "destination": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3:1", + "source": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1:0", + "destination": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8217,7 +8263,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727000439, + "block_time": 1727031574, "asset_info": { "divisible": true, "asset_longname": null, @@ -8236,14 +8282,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", + "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -8258,20 +8304,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000465, + "block_time": 1727031601, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "69356c4a943c1bc4c96cf7e1fd1df717562742ba6d014e5404949c9fb8488072", + "tx_hash": "45b68c9ba64fa212a14541b0a2a12205e850ae06f24d5b225f0a5627c23d19e8", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -8286,20 +8332,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727000461, + "block_time": 1727031596, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "de64c6d5cdcb12d054140d780d7c6780ed87490c27d80ff372e2384e3e898730", + "tx_hash": "f90297d83b71b86f758f716ba6985c3656c2219501bf5577ac2d96103c22be8b", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -8314,20 +8360,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000447, + "block_time": 1727031593, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "694859d37608f9befa94495339565cd43e8955250c937c614bdc234e9fd9f4c6", + "tx_hash": "78d87a84a548e802140107907dab0b844c078356f9fcce558b74909d159796a6", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -8342,20 +8388,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000443, + "block_time": 1727031579, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", + "tx_hash": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", - "issuer": "bcrt1qw6qqs84vh3z3nuqarurgalkn34s03s9fp69r4t", + "source": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", + "issuer": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", "transfer": false, "callable": false, "call_date": 0, @@ -8370,7 +8416,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000439, + "block_time": 1727031574, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8381,14 +8427,14 @@ "/v2/issuances/": { "result": { "tx_index": 46, - "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", + "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "transfer": false, "callable": false, "call_date": 0, @@ -8403,7 +8449,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727000465, + "block_time": 1727031601, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8412,16 +8458,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "fee_paid_normalized": "0.00600000" } ], @@ -8432,16 +8478,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727000588, + "block_time": 1727031743, "fee_paid_normalized": "0.00600000" } ], @@ -8452,9 +8498,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf", + "tx_hash": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06", "block_index": 138, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8462,14 +8508,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727000366, + "block_time": 1727031502, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "175b0e837d4aa88d671cfc863c546cf1e410283c6bcfca4f22737640612a0343", + "tx_hash": "70bbbef4d727695c9dfe5767a7984c541fa63ee857b8a6f9d4fd484e7e9bb559", "block_index": 137, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8477,7 +8523,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727000362, + "block_time": 1727031498, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8487,9 +8533,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf", + "tx_hash": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06", "block_index": 138, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8497,17 +8543,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727000366, + "block_time": 1727031502, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", + "tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", "tx_index": 22, "block_index": 135, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8532,13 +8578,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727000354 + "block_time": 1727031489 }, { - "tx_hash": "54fccf524a1c5591ed73c938a4b16fcffff60a395d98b9b109665bfac08b2f13", + "tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", "tx_index": 18, "block_index": 131, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8563,13 +8609,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727000326 + "block_time": 1727031472 }, { - "tx_hash": "7db72c3a3d73085625f2f30f21a6937c09222727d2b9942e21aec693b24bf08e", + "tx_hash": "f0dfc17c191520c1e2ba90abccbcc857553adf8a4e40722685a17b81ff2f781a", "tx_index": 14, "block_index": 130, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8594,13 +8640,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727000322 + "block_time": 1727031468 }, { - "tx_hash": "4f18df4f2ff6479ba54a79922607ad6483afea237e2a53dd2b5c7a04560508d1", + "tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", "tx_index": 10, "block_index": 125, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8625,7 +8671,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727000301 + "block_time": 1727031448 } ], "next_cursor": null, @@ -8639,8 +8685,8 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", - "address": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733" + "txid": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "address": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8" }, { "vout": 2, @@ -8648,8 +8694,8 @@ "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", - "address": "bcrt1qmrlqq2xhfdhnvnnsry6l8mkv5q9nrdz4nlkvmp" + "txid": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", + "address": "bcrt1qtfj6sgngh8qduq9cl5kqdxwjvjdtfprgxr0re6" } ], "next_cursor": null, @@ -8658,28 +8704,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "d073bfba516a4c628b5c56105186ff577ace257af1912aa559d9761b7b225d25" + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" }, { - "tx_hash": "46166b488d62f2085d8dbc2af1837c3e9d204d91bf46bf31436e5e207c85d326" + "tx_hash": "eabb3b7be615850b99b1401f3f242c8fa8e18d2d0ba58915a003fa589718cf11" }, { - "tx_hash": "d6201aa0d7d1c142f512edb63812a5a8e7b8b5b39ad8929937c4893e53cd6a3f" + "tx_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f" }, { - "tx_hash": "9b353d1cbb0a30108e4f9cc683852d659f4f611c141bab3af77efc10ab93dc4a" + "tx_hash": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144" }, { - "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50" + "tx_hash": "298f64a8390e187860e44c4d640b7d4d770a5e900ef83d0a97fa86d29f04c158" }, { - "tx_hash": "6a012a0815fc9d29a651e9f6af04443ca67779f542d86bcb97bc981b09842497" + "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763" }, { - "tx_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea" + "tx_hash": "bbf285a2631b2b28d813ffa0d762877fde240e44f671fd4de2212601b2c96180" }, { - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea" + "tx_hash": "c7f128443db9a77d1633ed327ba6bff1a7df40904a0bcc0aeef69925fc748a83" } ], "next_cursor": null, @@ -8687,8 +8733,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 4, - "tx_hash": "d5e3e6a38642c35108060cab17f3bf9e9141c313f26df13b7f4a971bf2ea1472" + "block_index": 7, + "tx_hash": "0695fdf0f969745f89d7923c68582b3d3f4c5e5ec410ab681baddb2ec2c26181" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -8699,17 +8745,17 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680" + "txid": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "03dbf9bd314c3e7733e0bec4381011f032ec48063e71970bbf035dc401c180d962" + "result": "0303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b132" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101f63c2d979ad0f0e7f38dd85c074a4731d6647152038511f2271ad1de3cf84d800300000000ffffffff020000000000000000226a20e06ea3ecf0f626c5841e5657c55445f9fb235327f993aaea1b320caf3bc7a6d6680b0a2701000000160014ed681fe4daf7ab2ee1a33b873588429301d5bfa80247304402206ea2865ecb9d902c8106db025b32cb485439db6daf31772806f9cf11815a10be02205e0347b8940a72eb394678316f05345062d84c91bbb221f48b584436951395df012102cd3154911e5d3f0dd8141a848af0f2f71983615dc048911e9fa68b8cf85964a600000000" + "result": "020000000001016cad36f4ab57f2653423ce2e004dcd91065944b0b547f60c13bf64bfea9e4cb20300000000ffffffff020000000000000000226a208f44de3448310d5fa0a8b864c3befe8ba7f95bc61cb57f2a89a1021ab70aac46680b0a2701000000160014fcd4fef91bbb7752401bda00950d4c9047d040280247304402206a051daee11301b981edf77e03e2c58ea1dc1936394e5e3c3a5a10c54527afa702207eb071d141d9508a1fe414b83ba4e3b6aaf09e35fedaf97f335a493674ab69fb012102d0179aa601d1b2caddcfe88c73ca7bf71949d02e3645f85bd050b7b64868f24800000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 68517 @@ -8732,26 +8778,26 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "tx_index": 60 } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "memo": null, "quantity": 10000, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "status": "valid", - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "tx_index": 60, "asset_info": { "divisible": true, @@ -8764,19 +8810,19 @@ } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "CREDIT", "params": { - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -8788,19 +8834,19 @@ } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 193, - "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -8812,27 +8858,27 @@ } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727000606.3219044, + "block_time": 1727031751.6192584, "btc_amount": 0, - "data": "0200000000000000010000000000002710802fe54076791a6e2ac138ef00abb24f8185f125ab", + "data": "0200000000000000010000000000002710806dfffb33ff9bf38009f5261067fd1af98dadcc3c", "destination": "", "fee": 10000, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "tx_index": 60, - "utxos_info": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21:1", + "utxos_info": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "memo": null, "asset_info": { "divisible": true, @@ -8854,19 +8900,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "CREDIT", "params": { - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -8884,26 +8930,26 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "tx_index": 60 } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "memo": null, "quantity": 10000, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "status": "valid", - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "tx_index": 60, "asset_info": { "divisible": true, @@ -8916,19 +8962,19 @@ } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "CREDIT", "params": { - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -8940,19 +8986,19 @@ } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 193, - "event": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -8964,27 +9010,27 @@ } }, { - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727000606.3219044, + "block_time": 1727031751.6192584, "btc_amount": 0, - "data": "0200000000000000010000000000002710802fe54076791a6e2ac138ef00abb24f8185f125ab", + "data": "0200000000000000010000000000002710806dfffb33ff9bf38009f5261067fd1af98dadcc3c", "destination": "", "fee": 10000, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", - "tx_hash": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", "tx_index": 60, - "utxos_info": "b775c0b7605eb18ae5e65c385db4b8056b77225bb00f55de537ee10d95554b21:1", + "utxos_info": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "memo": null, "asset_info": { "divisible": true, @@ -9019,15 +9065,15 @@ "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", "block_index": 193, - "block_time": 1727000592, + "block_time": 1727031747, "difficulty": 545259519, - "previous_block_hash": "37de6e2af21433ed0a841403818af2e8350dae518d3bc1450c4afe15e050f383" + "previous_block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736" }, "tx_hash": null, "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 } ], "next_cursor": 518, @@ -9039,17 +9085,17 @@ "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "3890761db9969731220bdfe2ad3772d3f2e105c339cf22cd8bdfff0576e2e64d", + "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", "block_index": 193, - "block_time": 1727000592, + "block_time": 1727031747, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "tx_index": 59, - "utxos_info": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f:1", + "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -9069,9 +9115,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 } ], "next_cursor": 519, @@ -9085,16 +9131,16 @@ "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "destination": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "out_index": 0, - "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", "tx_index": 33, - "block_time": 1727000400, + "block_time": 1727031536, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", "block_index": 146, - "block_time": 1727000400 + "block_time": 1727031536 } ], "next_cursor": 237, @@ -9107,15 +9153,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "f7682e803959b20d98ad6b8fd94ce96b470326b9ae7659b408977681cf5c5739", - "messages_hash": "0e45eb2c4fc62a21bbf58003ff4ff00a09e14a7e516d12690f676f5e5480911f", + "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", + "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", "transaction_count": 1, - "txlist_hash": "27a94cd28c9306f07dc01b2c0df782b044051ea31f560a1a5ae8e17e5e146826", - "block_time": 1727000592 + "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", + "block_time": 1727031747 }, "tx_hash": null, "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 } ], "next_cursor": 529, @@ -9128,12 +9174,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "tx_index": 59 }, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 } ], "next_cursor": 528, @@ -9146,15 +9192,15 @@ "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 193, - "event": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "event": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -9164,9 +9210,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 } ], "next_cursor": 525, @@ -9178,16 +9224,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727000588, + "block_time": 1727031743, "asset_info": { "divisible": true, "asset_longname": null, @@ -9197,9 +9243,9 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 } ], "next_cursor": 524, @@ -9213,14 +9259,14 @@ "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "memo": null, "quantity": 10000, - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "status": "valid", - "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50", + "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763", "tx_index": 53, - "block_time": 1727000567, + "block_time": 1727031711, "asset_info": { "divisible": true, "asset_longname": null, @@ -9230,9 +9276,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "b9cab1ab6a9408fb8d75fec91921efdcb5222af48f89ba5cca800951849c6e50", + "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763", "block_index": 187, - "block_time": 1727000567 + "block_time": 1727031711 } ], "next_cursor": null, @@ -9246,15 +9292,15 @@ "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "status": "valid", - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "tx_index": 54, - "block_time": 1727000571, + "block_time": 1727031716, "asset_info": { "divisible": true, "asset_longname": null, @@ -9264,9 +9310,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2fd2b8dee063661a66991e9430ffd1fb5ffbdf94ada598aec0df55000b9606db", + "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", "block_index": 188, - "block_time": 1727000571 + "block_time": 1727031716 } ], "next_cursor": 495, @@ -9289,20 +9335,20 @@ "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "status": "valid", - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "tx_index": 58, - "block_time": 1727000588, + "block_time": 1727031743, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "9d1fa3fc29471c3e1b2e2517d0caac483bdc196307ec5f1e23537da0c77c5fea", + "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", "block_index": 192, - "block_time": 1727000588 + "block_time": 1727031743 } ], "next_cursor": null, @@ -9319,15 +9365,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "status": "valid", - "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", + "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", "tx_index": 40, - "block_time": 1727000430, + "block_time": 1727031565, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, @@ -9341,9 +9387,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "6e1bb59e1e84d7bf93d0f504c777f22dc6b88192970b750c5c85013198b55b7b", + "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", "block_index": 153, - "block_time": 1727000430 + "block_time": 1727031565 } ], "next_cursor": null, @@ -9364,11 +9410,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 159, - "block_time": 1727000465 + "block_time": 1727031601 }, - "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", + "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", "block_index": 159, - "block_time": 1727000465 + "block_time": 1727031601 } ], "next_cursor": 367, @@ -9391,22 +9437,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "status": "valid", "transfer": false, - "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", + "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", "tx_index": 46, - "block_time": 1727000465, + "block_time": 1727031601, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "a3962d2bb5d32f29a5eabc5a714cdcc541e9515505c9e00acb812746f2ec1346", + "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", "block_index": 159, - "block_time": 1727000465 + "block_time": 1727031601 } ], "next_cursor": 374, @@ -9421,12 +9467,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qa45plex6774jacdr8wrntzzzjvqat0agj9q477", + "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", "status": "valid", "tag": "64657374726f79", - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "tx_index": 59, - "block_time": 1727000592, + "block_time": 1727031747, "asset_info": { "divisible": true, "asset_longname": null, @@ -9436,9 +9482,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "2a35d056727b4ea5a652a7fea3031fab0dfa865446d91129e580701beade599f", + "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", "block_index": 193, - "block_time": 1727000592 + "block_time": 1727031747 } ], "next_cursor": 157, @@ -9463,11 +9509,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "status": "open", - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "tx_index": 57, - "block_time": 1727000584, + "block_time": 1727031738, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9491,9 +9537,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "caf64e355bec3f2713564655cd069cf1e1421bc7d9fe36df20d5d619e4d826d7", + "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", "block_index": 191, - "block_time": 1727000584 + "block_time": 1727031738 } ], "next_cursor": 502, @@ -9511,20 +9557,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74", + "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", "tx0_index": 49, - "tx1_address": "bcrt1q9lj5qanerfhz4sfcauq2hvj0sxzlzfdtfwv7ss", + "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "tx1_index": 52, - "block_time": 1727000563, + "block_time": 1727031707, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9543,9 +9589,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "82d142ce6e272026a4217fadb6d4d15071c47a5aace8f7c91b097fc1d43144ea", + "tx_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", "block_index": 186, - "block_time": 1727000563 + "block_time": 1727031707 } ], "next_cursor": 461, @@ -9558,11 +9604,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81" + "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a" }, - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "block_index": 190, - "block_time": 1727000580 + "block_time": 1727031724 } ], "next_cursor": 476, @@ -9575,11 +9621,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7" + "tx_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4" }, - "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", + "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", "block_index": 185, - "block_time": 1727000558 + "block_time": 1727031703 } ], "next_cursor": null, @@ -9591,13 +9637,13 @@ "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", - "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", + "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", "status": "completed" }, - "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", + "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", "block_index": 185, - "block_time": 1727000558 + "block_time": 1727031703 } ], "next_cursor": 440, @@ -9611,18 +9657,18 @@ "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "order_match_id": "14df8869eed88f4920484618b4495d045e93d8b2b020afbefdbdbc91c78fac74_ee9c15132ffcddbe3705915f56a9fb4b470c93dd3ff663a6271a5ac1cba548d7", - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "status": "valid", - "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", + "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", "tx_index": 51, - "block_time": 1727000558, + "block_time": 1727031703, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "c542ab48cb68abe63d55b6688a9660dbfe339acfe3d968213bc398c48284cee0", + "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", "block_index": 185, - "block_time": 1727000558 + "block_time": 1727031703 } ], "next_cursor": null, @@ -9635,16 +9681,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "228897de4caba2088865d83a0412163da0055336d50256731166b998622bec81", - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "status": "valid", - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "tx_index": 56, - "block_time": 1727000580 + "block_time": 1727031724 }, - "tx_hash": "2361c1edadb675c56a78388e2ed0520a9833b2bcfad938956b902acf390f3a0f", + "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", "block_index": 190, - "block_time": 1727000580 + "block_time": 1727031724 } ], "next_cursor": null, @@ -9657,13 +9703,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "block_time": 1727000481 + "order_hash": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "block_time": 1727031616 }, "tx_hash": null, "block_index": 182, - "block_time": 1727000481 + "block_time": 1727031616 } ], "next_cursor": 446, @@ -9676,14 +9722,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "156af48844623792fc9a127d22a45bf1a90d203d428c32b92144122715820237_142c4031535c999eec027d1d68d333e8246dc252cc6ff6266432c4dc644b723f", - "tx0_address": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "tx1_address": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", - "block_time": 1727000481 + "order_match_id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "block_time": 1727031616 }, "tx_hash": null, "block_index": 182, - "block_time": 1727000481 + "block_time": 1727031616 } ], "next_cursor": null, @@ -9701,14 +9747,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", - "origin": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "satoshirate": 1, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "status": 0, - "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", "tx_index": 32, - "block_time": 1727000396, + "block_time": 1727031531, "asset_info": { "divisible": true, "asset_longname": null, @@ -9721,9 +9767,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", "block_index": 145, - "block_time": 1727000396 + "block_time": 1727031531 } ], "next_cursor": 254, @@ -9738,9 +9784,9 @@ "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "status": 0, - "tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", + "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", "asset_info": { "divisible": true, "asset_longname": null, @@ -9750,9 +9796,9 @@ }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", "block_index": 146, - "block_time": 1727000400 + "block_time": 1727031536 } ], "next_cursor": 260, @@ -9766,13 +9812,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "n3bwtSMx8SHqqv1MnQA3ciCsFvUSWkfbeo", + "destination": "n2FYo3mrzKRadxtnoovPfHyBikXVxXta5Y", "dispense_quantity": 10, - "dispenser_tx_hash": "d28a6508cf89d6f5c08160cec495c79c116f908f48421ccf5cbdcc55518fad12", - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", - "tx_hash": "4c6a5cc906f2dbfa0d91de293e9e2831b193f4122ff68273a78c85c46c2b5123", + "dispenser_tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx_hash": "12cff7ed44f7f2a7e9a0fca9448cafbb92641815b36160fff5a0181d181bf0d0", "tx_index": 31, - "block_time": 1727000392, + "block_time": 1727031527, "asset_info": { "divisible": true, "asset_longname": null, @@ -9782,9 +9828,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "4c6a5cc906f2dbfa0d91de293e9e2831b193f4122ff68273a78c85c46c2b5123", + "tx_hash": "12cff7ed44f7f2a7e9a0fca9448cafbb92641815b36160fff5a0181d181bf0d0", "block_index": 144, - "block_time": 1727000392 + "block_time": 1727031527 } ], "next_cursor": null, @@ -9799,14 +9845,14 @@ "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qmj57xl2krpsurusxqpt7cdazyt2ltt3c9d7733", + "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "b2d2bd1741c3c032b2cfb1fb3ed76688995e7a5aaa4840ba13f1d5b2dcb78db3", - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", - "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", "tx_index": 33, - "block_time": 1727000400, + "block_time": 1727031536, "asset_info": { "divisible": true, "asset_longname": null, @@ -9817,9 +9863,9 @@ "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "47c8fbc7188ee996ddf4cd964fee9b2b85b06617ece6cdb77d6997a3e4e6e680", + "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", "block_index": 146, - "block_time": 1727000400 + "block_time": 1727031536 } ], "next_cursor": 240, @@ -9834,19 +9880,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qh2kxat4svkg9dqwj4nkytar4tvxumgcmrvxg4d", + "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf", + "tx_hash": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06", "tx_index": 25, "value": 66600.0, - "block_time": 1727000366, + "block_time": 1727031502, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "437bc4249a7f1a8386d0bb43c4312d8119f6499b2b02e1e992d1bf70fae41bbf", + "tx_hash": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06", "block_index": 138, - "block_time": 1727000366 + "block_time": 1727031502 } ], "next_cursor": 213, @@ -9877,16 +9923,16 @@ "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "start_block": 0, "status": "open", - "tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", + "tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", "tx_index": 22, - "block_time": 1727000354 + "block_time": 1727031489 }, - "tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", + "tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", "block_index": 135, - "block_time": 1727000354 + "block_time": 1727031489 } ], "next_cursor": 161, @@ -9899,11 +9945,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "7db72c3a3d73085625f2f30f21a6937c09222727d2b9942e21aec693b24bf08e" + "tx_hash": "f0dfc17c191520c1e2ba90abccbcc857553adf8a4e40722685a17b81ff2f781a" }, "tx_hash": null, "block_index": 130, - "block_time": 1727000322 + "block_time": 1727031468 } ], "next_cursor": 110, @@ -9919,24 +9965,24 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "cbb10eda58581a795a6da5e688afbf88d1fc1c9bb9e4943240aea2e5014cab1a", + "fairminter_tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", "paid_quantity": 34, - "source": "bcrt1q7mjqypk7uhwn8s4zsp8ywysxwle86zxjay7mjt", + "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", "status": "valid", - "tx_hash": "8a9a1f916ad7518fbbdca58817a4ac2b58533c0a9768c4f1ca05778acb75e7d1", + "tx_hash": "ede174d6ebd168d04cfbc10891f9d7eb903c0d105cd7455db87566871ceb66a4", "tx_index": 23, - "block_time": 1727000358, + "block_time": 1727031494, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false } }, - "tx_hash": "8a9a1f916ad7518fbbdca58817a4ac2b58533c0a9768c4f1ca05778acb75e7d1", + "tx_hash": "ede174d6ebd168d04cfbc10891f9d7eb903c0d105cd7455db87566871ceb66a4", "block_index": 136, - "block_time": 1727000358 + "block_time": 1727031494 } ], "next_cursor": 190, @@ -9950,28 +9996,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86:1", + "destination": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "status": "valid", - "tx_hash": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", + "tx_hash": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", "tx_index": 38, - "block_time": 1727000422, + "block_time": 1727031557, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "ed609511fe8f379abf8e708f34ba68785674bdcf5660a4dcb95dec26814ddd86", + "tx_hash": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", "block_index": 151, - "block_time": 1727000422 + "block_time": 1727031557 } ], "next_cursor": 291, @@ -9985,28 +10031,28 @@ "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qgg5sv5tyxlf3mtvuxkzgr75jwkupla27x3p6uv", + "destination": "bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "9b353d1cbb0a30108e4f9cc683852d659f4f611c141bab3af77efc10ab93dc4a:0", + "source": "eabb3b7be615850b99b1401f3f242c8fa8e18d2d0ba58915a003fa589718cf11:0", "status": "valid", - "tx_hash": "804df83cded11a27f2118503527164d631474a075cd88df3e7f0d09a972d3cf6", + "tx_hash": "b24c9eeabf64bf130cf647b5b044590691cd4d002ece233465f257abf436ad6c", "tx_index": 37, - "block_time": 1727000417, + "block_time": 1727031553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q26qjpcljt0na45r3dufje0xqam86erw7slp5tr", + "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "804df83cded11a27f2118503527164d631474a075cd88df3e7f0d09a972d3cf6", + "tx_hash": "b24c9eeabf64bf130cf647b5b044590691cd4d002ece233465f257abf436ad6c", "block_index": 150, - "block_time": 1727000417 + "block_time": 1727031553 } ], "next_cursor": null, @@ -10020,14 +10066,14 @@ "params": { "asset": "XCP", "block_index": 155, - "destination": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3:1", + "destination": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a:1", "msg_index": 1, "quantity": 1500000000, - "source": "d2f206ad620b1c09df2b4c46cc1cb79f7235dd832b265564cc6e267ee5979881:0", + "source": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1:0", "status": "valid", - "tx_hash": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", + "tx_hash": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", "tx_index": 42, - "block_time": 1727000439, + "block_time": 1727031574, "asset_info": { "divisible": true, "asset_longname": null, @@ -10037,9 +10083,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "e166c3828b9b8c2449f4d827a024f6d9144c0c217990bbad896bb4b1dcabc0e3", + "tx_hash": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", "block_index": 155, - "block_time": 1727000439 + "block_time": 1727031574 } ], "next_cursor": 346, @@ -10054,17 +10100,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qyulh8dt9j6mxay44vsk59ykh3j0sepu4nr8frk", + "source": "bcrt1qyqvw64v3g6jjw0hkydjnz03emknd689c9m445j", "status": "valid", - "tx_hash": "adfbd46bafe5d0eb02dc42e71c6ebd831574fbcbc27598f3a574cd28a015cc8b", + "tx_hash": "6428abb0788142a72920efd1a8b5dcdde89c7f503ca062322bcd573acac0e136", "tx_index": 9, - "block_time": 1727000284, + "block_time": 1727031432, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "adfbd46bafe5d0eb02dc42e71c6ebd831574fbcbc27598f3a574cd28a015cc8b", + "tx_hash": "6428abb0788142a72920efd1a8b5dcdde89c7f503ca062322bcd573acac0e136", "block_index": 121, - "block_time": 1727000284 + "block_time": 1727031432 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index 0c73afb21e..9dd2de3ecd 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -262,7 +262,7 @@ def run_scenarios(serve=False): # print(regtest_node_thread.node.server_out.getvalue()) raise e finally: - # print(regtest_node_thread.node.server_out.getvalue()) + print(regtest_node_thread.node.server_out.getvalue()) regtest_node_thread.stop() diff --git a/counterparty-core/counterpartycore/test/util_test.py b/counterparty-core/counterpartycore/test/util_test.py index 20f3456043..c849c806ba 100644 --- a/counterparty-core/counterpartycore/test/util_test.py +++ b/counterparty-core/counterpartycore/test/util_test.py @@ -642,6 +642,7 @@ def run_scenario(scenario): unsigned_tx_hex = transaction.construct( db=db, tx_info=compose(db, *tx[1]), regular_dust_size=5430, **tx[2] ) + unsigned_tx_hex = unsigned_tx_hex["unsigned_tx_hex"] raw_transactions.append({tx[0]: unsigned_tx_hex}) insert_raw_transaction(unsigned_tx_hex, db) else: diff --git a/counterparty-core/counterpartycore/test/utxolocks_test.py b/counterparty-core/counterpartycore/test/utxolocks_test.py index 33e1b8d384..2c80d7edc8 100644 --- a/counterparty-core/counterpartycore/test/utxolocks_test.py +++ b/counterparty-core/counterpartycore/test/utxolocks_test.py @@ -37,10 +37,10 @@ def test_utxolocks(server_db): server_db, "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns" ) - tx1f = BytesIO(binascii.unhexlify(tx1hex)) + tx1f = BytesIO(binascii.unhexlify(tx1hex["unsigned_tx_hex"])) tx1 = bitcoin.core.CTransaction.stream_deserialize(tx1f) - tx2f = BytesIO(binascii.unhexlify(tx2hex)) + tx2f = BytesIO(binascii.unhexlify(tx2hex["unsigned_tx_hex"])) tx2 = bitcoin.core.CTransaction.stream_deserialize(tx2f) assert (tx1.vin[0].prevout.hash, tx1.vin[0].prevout.n) != ( @@ -78,10 +78,10 @@ def test_utxolocks_custom_input(server_db): inputs_set=inputs_set, ) - tx1f = BytesIO(binascii.unhexlify(tx1hex)) + tx1f = BytesIO(binascii.unhexlify(tx1hex["unsigned_tx_hex"])) tx1 = bitcoin.core.CTransaction.stream_deserialize(tx1f) - tx2f = BytesIO(binascii.unhexlify(tx2hex)) + tx2f = BytesIO(binascii.unhexlify(tx2hex["unsigned_tx_hex"])) tx2 = bitcoin.core.CTransaction.stream_deserialize(tx2f) assert (tx1.vin[0].prevout.hash, tx1.vin[0].prevout.n) == ( @@ -107,10 +107,10 @@ def test_disable_utxolocks(server_db): disable_utxo_locks=True, ) - tx1f = BytesIO(binascii.unhexlify(tx1hex)) + tx1f = BytesIO(binascii.unhexlify(tx1hex["unsigned_tx_hex"])) tx1 = bitcoin.core.CTransaction.stream_deserialize(tx1f) - tx2f = BytesIO(binascii.unhexlify(tx2hex)) + tx2f = BytesIO(binascii.unhexlify(tx2hex["unsigned_tx_hex"])) tx2 = bitcoin.core.CTransaction.stream_deserialize(tx2f) assert (tx1.vin[0].prevout.hash, tx1.vin[0].prevout.n) == ( From c33b058218503f9ad82218b3471dd999d686a996 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 23 Sep 2024 08:29:24 +0000 Subject: [PATCH 27/46] Refactor transaction.py phase 5 --- apiary.apib | 3474 ++++++++--------- .../counterpartycore/lib/api/api_v1.py | 9 +- .../counterpartycore/lib/api/compose.py | 9 +- .../counterpartycore/lib/transaction.py | 395 +- .../lib/transaction_helper/p2sh_encoding.py | 5 +- .../transaction_helper/transaction_inputs.py | 423 ++ .../lib/transaction_helper/utxo_locks.py | 158 - .../test/fixtures/api_v2_fixtures.json | 198 +- .../fixtures/contract_vectors/transaction.py | 35 +- .../test/regtest/apidoc/apicache.json | 3034 +++++++------- .../counterpartycore/test/util_test.py | 5 +- .../counterpartycore/test/utxolocks_test.py | 7 +- 12 files changed, 3808 insertions(+), 3944 deletions(-) create mode 100644 counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py delete mode 100644 counterparty-core/counterpartycore/lib/transaction_helper/utxo_locks.py diff --git a/apiary.apib b/apiary.apib index f34459c7bf..9c94ec656a 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-09-22 19:02:43.111130. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-09-23 08:27:25.448540. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -179,15 +179,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", "block_index": 193, - "block_time": 1727031747, + "block_time": 1727080029, "difficulty": 545259519, - "previous_block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736" + "previous_block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf" }, "tx_hash": null, "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 } ], "next_cursor": 518, @@ -204,17 +204,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", "block_index": 193, - "block_time": 1727031747, + "block_time": 1727080029, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "tx_index": 59, - "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", + "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -234,9 +234,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 } ], "next_cursor": 519, @@ -255,16 +255,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "destination": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "out_index": 0, - "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", "tx_index": 33, - "block_time": 1727031536, + "block_time": 1727079818, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", "block_index": 146, - "block_time": 1727031536 + "block_time": 1727079818 } ], "next_cursor": 237, @@ -282,15 +282,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", - "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", + "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", + "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", "transaction_count": 1, - "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", - "block_time": 1727031747 + "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", + "block_time": 1727080029 }, "tx_hash": null, "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 } ], "next_cursor": 529, @@ -308,12 +308,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "tx_index": 59 }, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 } ], "next_cursor": 528, @@ -333,15 +333,15 @@ Here is a list of events classified by theme and for each an example response: "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 193, - "event": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "event": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -351,9 +351,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 } ], "next_cursor": 525, @@ -370,16 +370,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -389,9 +389,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 } ], "next_cursor": 524, @@ -410,14 +410,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "memo": null, "quantity": 10000, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "status": "valid", - "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763", + "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68", "tx_index": 53, - "block_time": 1727031711, + "block_time": 1727079984, "asset_info": { "divisible": true, "asset_longname": null, @@ -427,9 +427,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763", + "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68", "block_index": 187, - "block_time": 1727031711 + "block_time": 1727079984 } ], "next_cursor": null, @@ -448,15 +448,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "status": "valid", - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "tx_index": 54, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "divisible": true, "asset_longname": null, @@ -466,9 +466,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "block_time": 1727031716 + "block_time": 1727079989 } ], "next_cursor": 495, @@ -506,20 +506,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "status": "valid", - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, - "block_time": 1727031743, + "block_time": 1727080026, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 } ], "next_cursor": null, @@ -541,15 +541,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": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "status": "valid", - "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", + "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", "tx_index": 40, - "block_time": 1727031565, + "block_time": 1727079846, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -563,9 +563,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": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", + "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", "block_index": 153, - "block_time": 1727031565 + "block_time": 1727079846 } ], "next_cursor": null, @@ -598,11 +598,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": 159, - "block_time": 1727031601 + "block_time": 1727079873 }, - "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", + "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", "block_index": 159, - "block_time": 1727031601 + "block_time": 1727079873 } ], "next_cursor": 367, @@ -630,22 +630,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": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "status": "valid", "transfer": false, - "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", + "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", "tx_index": 46, - "block_time": 1727031601, + "block_time": 1727079873, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", + "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", "block_index": 159, - "block_time": 1727031601 + "block_time": 1727079873 } ], "next_cursor": 374, @@ -665,12 +665,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "status": "valid", "tag": "64657374726f79", - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "tx_index": 59, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -680,9 +680,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 } ], "next_cursor": 157, @@ -714,11 +714,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": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "status": "open", - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "tx_index": 57, - "block_time": 1727031738, + "block_time": 1727080022, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -742,9 +742,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": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "block_time": 1727031738 + "block_time": 1727080022 } ], "next_cursor": 502, @@ -767,20 +767,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": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", "tx0_index": 49, - "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "tx1_index": 52, - "block_time": 1727031707, + "block_time": 1727079980, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -799,9 +799,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": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "tx_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "block_index": 186, - "block_time": 1727031707 + "block_time": 1727079980 } ], "next_cursor": 461, @@ -819,11 +819,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a" + "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d" }, - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "block_index": 190, - "block_time": 1727031724 + "block_time": 1727080007 } ], "next_cursor": 476, @@ -841,11 +841,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4" + "tx_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674" }, - "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", + "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", "block_index": 185, - "block_time": 1727031703 + "block_time": 1727079976 } ], "next_cursor": null, @@ -862,13 +862,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", - "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "status": "completed" }, - "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", + "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", "block_index": 185, - "block_time": 1727031703 + "block_time": 1727079976 } ], "next_cursor": 440, @@ -887,18 +887,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "status": "valid", - "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", + "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", "tx_index": 51, - "block_time": 1727031703, + "block_time": 1727079976, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", + "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", "block_index": 185, - "block_time": 1727031703 + "block_time": 1727079976 } ], "next_cursor": null, @@ -916,16 +916,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "status": "valid", - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "tx_index": 56, - "block_time": 1727031724 + "block_time": 1727080007 }, - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "block_index": 190, - "block_time": 1727031724 + "block_time": 1727080007 } ], "next_cursor": null, @@ -943,13 +943,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "block_time": 1727031616 + "order_hash": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "block_time": 1727079898 }, "tx_hash": null, "block_index": 182, - "block_time": 1727031616 + "block_time": 1727079898 } ], "next_cursor": 446, @@ -967,14 +967,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "block_time": 1727031616 + "order_match_id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "block_time": 1727079898 }, "tx_hash": null, "block_index": 182, - "block_time": 1727031616 + "block_time": 1727079898 } ], "next_cursor": null, @@ -999,14 +999,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": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", - "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "satoshirate": 1, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "status": 0, - "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", "tx_index": 32, - "block_time": 1727031531, + "block_time": 1727079813, "asset_info": { "divisible": true, "asset_longname": null, @@ -1019,9 +1019,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": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", "block_index": 145, - "block_time": 1727031531 + "block_time": 1727079813 } ], "next_cursor": 254, @@ -1041,9 +1041,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "status": 0, - "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", "asset_info": { "divisible": true, "asset_longname": null, @@ -1053,9 +1053,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", "block_index": 146, - "block_time": 1727031536 + "block_time": 1727079818 } ], "next_cursor": 260, @@ -1074,13 +1074,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "n2FYo3mrzKRadxtnoovPfHyBikXVxXta5Y", + "destination": "mkJcSPmH7qxK3hZtjfj2T3TuuHiGZh3VFp", "dispense_quantity": 10, - "dispenser_tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "tx_hash": "12cff7ed44f7f2a7e9a0fca9448cafbb92641815b36160fff5a0181d181bf0d0", + "dispenser_tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx_hash": "677868f74ae703fe6e541c7a6b9bc66ccbfa9996472a98fa16bbecd9bcc1a9f0", "tx_index": 31, - "block_time": 1727031527, + "block_time": 1727079809, "asset_info": { "divisible": true, "asset_longname": null, @@ -1090,9 +1090,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "12cff7ed44f7f2a7e9a0fca9448cafbb92641815b36160fff5a0181d181bf0d0", + "tx_hash": "677868f74ae703fe6e541c7a6b9bc66ccbfa9996472a98fa16bbecd9bcc1a9f0", "block_index": 144, - "block_time": 1727031527 + "block_time": 1727079809 } ], "next_cursor": null, @@ -1112,14 +1112,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", + "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", - "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", "tx_index": 33, - "block_time": 1727031536, + "block_time": 1727079818, "asset_info": { "divisible": true, "asset_longname": null, @@ -1130,9 +1130,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", "block_index": 146, - "block_time": 1727031536 + "block_time": 1727079818 } ], "next_cursor": 240, @@ -1154,19 +1154,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": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06", + "tx_hash": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3", "tx_index": 25, "value": 66600.0, - "block_time": 1727031502, + "block_time": 1727079784, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06", + "tx_hash": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3", "block_index": 138, - "block_time": 1727031502 + "block_time": 1727079784 } ], "next_cursor": 213, @@ -1204,16 +1204,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "start_block": 0, "status": "open", - "tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", + "tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", "tx_index": 22, - "block_time": 1727031489 + "block_time": 1727079772 }, - "tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", + "tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", "block_index": 135, - "block_time": 1727031489 + "block_time": 1727079772 } ], "next_cursor": 161, @@ -1231,11 +1231,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "f0dfc17c191520c1e2ba90abccbcc857553adf8a4e40722685a17b81ff2f781a" + "tx_hash": "569b5d76c793d1fbd773e4c21c313d8d9bd4c08354834bd7fff4de4ba36e79c5" }, "tx_hash": null, "block_index": 130, - "block_time": 1727031468 + "block_time": 1727079751 } ], "next_cursor": 110, @@ -1256,24 +1256,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", + "fairminter_tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", "paid_quantity": 34, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "status": "valid", - "tx_hash": "ede174d6ebd168d04cfbc10891f9d7eb903c0d105cd7455db87566871ceb66a4", + "tx_hash": "14b14a8360be741c147b158caf79d5fcf98f9986207c8fe5fe42526940d1ddc1", "tx_index": 23, - "block_time": 1727031494, + "block_time": 1727079776, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } }, - "tx_hash": "ede174d6ebd168d04cfbc10891f9d7eb903c0d105cd7455db87566871ceb66a4", + "tx_hash": "14b14a8360be741c147b158caf79d5fcf98f9986207c8fe5fe42526940d1ddc1", "block_index": 136, - "block_time": 1727031494 + "block_time": 1727079776 } ], "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": 151, - "destination": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450:1", + "destination": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "status": "valid", - "tx_hash": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", + "tx_hash": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", "tx_index": 38, - "block_time": 1727031557, + "block_time": 1727079839, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", + "tx_hash": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", "block_index": 151, - "block_time": 1727031557 + "block_time": 1727079839 } ], "next_cursor": 291, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0", + "destination": "bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "eabb3b7be615850b99b1401f3f242c8fa8e18d2d0ba58915a003fa589718cf11:0", + "source": "e0fb6c717053ccace6058ea89673a15dff5b190c77211ffd001c4094c8df382a:0", "status": "valid", - "tx_hash": "b24c9eeabf64bf130cf647b5b044590691cd4d002ece233465f257abf436ad6c", + "tx_hash": "989604467561753724a036703d19ac691dfe4a5ced843c42f9d1834068e7158f", "tx_index": 37, - "block_time": 1727031553, + "block_time": 1727079835, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "b24c9eeabf64bf130cf647b5b044590691cd4d002ece233465f257abf436ad6c", + "tx_hash": "989604467561753724a036703d19ac691dfe4a5ced843c42f9d1834068e7158f", "block_index": 150, - "block_time": 1727031553 + "block_time": 1727079835 } ], "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": 155, - "destination": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a:1", + "destination": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6:1", "msg_index": 1, "quantity": 1500000000, - "source": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1:0", + "source": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9:0", "status": "valid", - "tx_hash": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", + "tx_hash": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", "tx_index": 42, - "block_time": 1727031574, + "block_time": 1727079855, "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": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", + "tx_hash": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", "block_index": 155, - "block_time": 1727031574 + "block_time": 1727079855 } ], "next_cursor": 346, @@ -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": "bcrt1qyqvw64v3g6jjw0hkydjnz03emknd689c9m445j", + "source": "bcrt1qtlpkqnw458wcn6ggjgl0qhncr5azj57dwx79c9", "status": "valid", - "tx_hash": "6428abb0788142a72920efd1a8b5dcdde89c7f503ca062322bcd573acac0e136", + "tx_hash": "913a6e309d29d939a9b42c5b239eda58fd12b57ab1aefd856fe908cc2f03c87a", "tx_index": 9, - "block_time": 1727031432, + "block_time": 1727079713, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "6428abb0788142a72920efd1a8b5dcdde89c7f503ca062322bcd573acac0e136", + "tx_hash": "913a6e309d29d939a9b42c5b239eda58fd12b57ab1aefd856fe908cc2f03c87a", "block_index": 121, - "block_time": 1727031432 + "block_time": 1727079713 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 193, - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", - "block_time": 1727031747, - "previous_block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_time": 1727080029, + "previous_block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", "difficulty": 545259519, - "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", - "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", - "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", + "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", + "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", + "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", - "block_time": 1727031743, - "previous_block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", + "block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", + "block_time": 1727080026, + "previous_block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", "difficulty": 545259519, - "ledger_hash": "fa0b578aced75a2921d789d45e44adfd47e5d88461643b2ce6ea1ceb910adad1", - "txlist_hash": "2c7de06f03054aca49c6c2f06ddc5ec8bd61983af282e627ed9f50585bd202d8", - "messages_hash": "090feaaedca28407d3331bc3fe26eebf0530ca50ebd9e2da53bf8540c21f8a62", + "ledger_hash": "0a01bff8eb1c310d8222e4ccb4760085675430d12422c8dd6c1406862fd2bcd5", + "txlist_hash": "cd465c4124d8f65b6f8d4112a5934530f16fcb6a7ac9f405937f60b64cac9f03", + "messages_hash": "3fc52191dfde04576e3cd5974b4af5b7e1c3ec66fa0d275067d2c8ece10ef148", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", - "block_time": 1727031738, - "previous_block_hash": "1e1af2aaab6cfea61a31d3c2cda9e566643cab68018f3b8071bf25da826b9a80", + "block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", + "block_time": 1727080022, + "previous_block_hash": "27631674929a77b7907c42d4559d560e994bddb1c5dc880e51ac065952ccc04b", "difficulty": 545259519, - "ledger_hash": "819df0c3e08eb202c13f42015c631ff2930b5d88e353a12cb0dd87a665b3161f", - "txlist_hash": "a7a675b242b6d548ce6ec2e153192f4585eded5175a62fd9e05fdf51c56cf8c1", - "messages_hash": "eb0766f796663bf744df95fd3479e7fd22221c5d7c916d4fa8db0b30f36fb871", + "ledger_hash": "c918416572951e1e48365514f20bdd3d512f8a1ceef0accbc5e41f80724e81ba", + "txlist_hash": "300cac11ea531e4e01f87018a1e392ed79f5273964799d1f25a4d70f2df71439", + "messages_hash": "d004ba210b48210939040d6d03420f5eecfeeb330a2c32b5cf9be077a32818fc", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "1e1af2aaab6cfea61a31d3c2cda9e566643cab68018f3b8071bf25da826b9a80", - "block_time": 1727031724, - "previous_block_hash": "4b4c3d089292ec004e7c2f38f68a929bba6d7c6e6101db9616fe21b785fae411", + "block_hash": "27631674929a77b7907c42d4559d560e994bddb1c5dc880e51ac065952ccc04b", + "block_time": 1727080007, + "previous_block_hash": "6fb0ca06b43613ffed61018fcb6082c59452492ba985576337703460a5a270f0", "difficulty": 545259519, - "ledger_hash": "0099ef580927aaadd3a4cdd5697bf92e1a50a1fd8e2d3170753ce6630c24d405", - "txlist_hash": "86415c7a3a453a12483a9aae337e80e414bcbff7c90b489516acb9d140b6b861", - "messages_hash": "683adc9e8b2cc2d071e0c233d29de6e5bd98870cb12cc2b80ca5c5180df7ba76", + "ledger_hash": "51469f0e92c07c9a475dddf1df377bdd6b740d6cec92661eaf9fff84113fddcc", + "txlist_hash": "97b3b22f1089946ec419f2824b21c0c0d7810013a5fbeb5bf8d9cb15d4d0e015", + "messages_hash": "52a4e5b87f05460ee8c0a6d8c8d7b6444216529a0e072a6a4e90e4b7a6ac2205", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "4b4c3d089292ec004e7c2f38f68a929bba6d7c6e6101db9616fe21b785fae411", - "block_time": 1727031720, - "previous_block_hash": "7aebb16eecf937a615a0835e17c17a727757a47eff751dbe07bf38199690cf08", + "block_hash": "6fb0ca06b43613ffed61018fcb6082c59452492ba985576337703460a5a270f0", + "block_time": 1727079993, + "previous_block_hash": "48b2d19d551135b795db9414be8cef12acb0b131f1d153c2e457362aee6f39fa", "difficulty": 545259519, - "ledger_hash": "0b26ae6a4101f8ee1171c73abb8eb127ce3858e0636eb007e197d874f6585c14", - "txlist_hash": "774182af21312f5df376340be52610f164eb091908d4fc958181a876965bbb3a", - "messages_hash": "48c2cfa20f6d110df351d1f08373fc78ec72329ff9baa5ed0e3e0c895348c7ef", + "ledger_hash": "53951e46fc709ae22d91dde1f09c776635c86a1f6148f4509e0a2bd3e5dab77a", + "txlist_hash": "1e2450020fb89ed8fbfa6b65fc361d79b6ffaa2a7c0d1c0a1ba8f07b8e820fd2", + "messages_hash": "92c69ccbc7509d2230f7338d7e4a1877e33012a84995ba281e76d99fc4709d67", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 193, - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", - "block_time": 1727031747, - "previous_block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_time": 1727080029, + "previous_block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", "difficulty": 545259519, - "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", - "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", - "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", + "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", + "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", + "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c` (str, required) - The index of the block to return + + block_hash: `134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e` (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": 193, - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", - "block_time": 1727031747, - "previous_block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_time": 1727080029, + "previous_block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", "difficulty": 545259519, - "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", - "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", - "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", + "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", + "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", + "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 59, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", - "block_time": 1727031747, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_time": 1727080029, + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", + "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1706,11 +1706,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "fa0b578aced75a2921d789d45e44adfd47e5d88461643b2ce6ea1ceb910adad1", - "messages_hash": "090feaaedca28407d3331bc3fe26eebf0530ca50ebd9e2da53bf8540c21f8a62", + "ledger_hash": "0a01bff8eb1c310d8222e4ccb4760085675430d12422c8dd6c1406862fd2bcd5", + "messages_hash": "3fc52191dfde04576e3cd5974b4af5b7e1c3ec66fa0d275067d2c8ece10ef148", "transaction_count": 1, - "txlist_hash": "2c7de06f03054aca49c6c2f06ddc5ec8bd61983af282e627ed9f50585bd202d8", - "block_time": 1727031743 + "txlist_hash": "cd465c4124d8f65b6f8d4112a5934530f16fcb6a7ac9f405937f60b64cac9f03", + "block_time": 1727080026 }, "tx_hash": null }, @@ -1719,43 +1719,43 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58 }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "status": "valid", - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, - "block_time": 1727031743, + "block_time": 1727080026, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -1765,22 +1765,22 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "XCP", "block_index": 192, - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -1790,7 +1790,7 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" } ], "next_cursor": 524, @@ -1873,16 +1873,16 @@ Returns the events of a block filtered by event "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -1892,57 +1892,57 @@ Returns the events of a block filtered by event }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" } ], "next_cursor": null, @@ -2005,16 +2005,16 @@ Returns the credits of a block "result": [ { "block_index": 192, - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,20 +2026,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2047,20 +2047,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2116,16 +2116,16 @@ Returns the debits of a block "result": [ { "block_index": 193, - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "event": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -2165,24 +2165,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "object_id": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", "block_index": 182, "confirmed": true, - "block_time": 1727031616 + "block_time": 1727079898 }, { "type": "order", - "object_id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", + "object_id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", "block_index": 182, "confirmed": true, - "block_time": 1727031616 + "block_time": 1727079898 }, { "type": "order_match", - "object_id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "object_id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", "block_index": 182, "confirmed": true, - "block_time": 1727031616 + "block_time": 1727079898 } ], "next_cursor": null, @@ -2214,13 +2214,13 @@ Returns the cancels of a block "result": [ { "tx_index": 56, - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "block_index": 190, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "status": "valid", "confirmed": true, - "block_time": 1727031724 + "block_time": 1727080007 } ], "next_cursor": null, @@ -2252,15 +2252,15 @@ Returns the destructions of a block "result": [ { "tx_index": 59, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -2300,14 +2300,14 @@ Returns the issuances of a block "result": [ { "tx_index": 46, - "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", + "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -2322,7 +2322,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031601, + "block_time": 1727079873, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2356,10 +2356,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2367,7 +2367,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "divisible": true, "asset_longname": null, @@ -2380,10 +2380,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2391,11 +2391,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2404,10 +2404,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2415,11 +2415,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2457,27 +2457,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", - "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "last_status_tx_hash": null, - "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2492,7 +2492,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727031536, + "block_time": 1727079818, "asset_info": { "divisible": true, "asset_longname": null, @@ -2533,16 +2533,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 58, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "fee_paid_normalized": "0.00600000" } ], @@ -2576,17 +2576,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06", + "tx_hash": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3", "block_index": 138, - "block_hash": "5f982af3c65034ce60720bc0971b614787c8a1c1a66de3dd342bdfac501c9ad3", - "block_time": 1727031502, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "block_hash": "4b9568c3a5c2fe5daa9f5c819f4fe2ea7b3680d52ec8b57aed75ef6c8f66ab54", + "block_time": 1727079784, + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06:1", + "utxos_info": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2611,25 +2611,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 51, - "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", + "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", "block_index": 185, - "block_hash": "1f5af0e7cec205944b080b4ab1df4487aa0f0dc1b8acf9bfe09a4004e1f6afc7", - "block_time": 1727031703, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "0019336d8185362941e07f3b889ad1fcec836b89b1848ef0b1acd905e5d68e55", + "block_time": 1727079976, + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "btc_amount": 2000, "fee": 10000, - "data": "0bbb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874aca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "data": "0bf1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "supported": true, - "utxos_info": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549:0", + "utxos_info": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", - "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", - "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "status": "valid" } }, @@ -2644,23 +2644,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "block_index": 190, - "block_hash": "1e1af2aaab6cfea61a31d3c2cda9e566643cab68018f3b8071bf25da826b9a80", - "block_time": 1727031724, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "27631674929a77b7907c42d4559d560e994bddb1c5dc880e51ac065952ccc04b", + "block_time": 1727080007, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4695e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "data": "46c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "supported": true, - "utxos_info": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84:1", + "utxos_info": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "status": "valid" } }, @@ -2675,17 +2675,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", - "block_time": 1727031747, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_time": 1727080029, + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", + "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2715,17 +2715,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 32, - "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", "block_index": 145, - "block_hash": "610ad86374eefe1f302e145fa36877414dec80a0bc70bd581be537bedf11db58", - "block_time": 1727031531, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "block_hash": "76a7eaf478893df47acccb9677142398a1b3cd19a82c0d2c91f1b069dcdb05ac", + "block_time": 1727079813, + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c000000000000000100000000000000010000000000002710000000000000000100809f7bc8991f02bb53759fc277a064da3bf9e483a4", + "data": "0c000000000000000100000000000000010000000000002710000000000000000100806fd5bdc821a1503fefcb043e805b05d47d3f147d", "supported": true, - "utxos_info": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef:1", + "utxos_info": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2737,7 +2737,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "status": "valid", "asset_info": { "divisible": true, @@ -2761,17 +2761,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", "block_index": 146, - "block_hash": "26f4c4e5dc2f9d5f8d6e0cbb28c316837e22df1669d9fb1db405a9f284e28acd", - "block_time": 1727031536, - "source": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", - "destination": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "block_hash": "0b732a89eb8e6d3f82f25a54955bb1877642df0dc58009adbcfeaa8eb5ac49d7", + "block_time": 1727079818, + "source": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", + "destination": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "btc_amount": 10000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c:0", + "utxos_info": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 40, - "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", + "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", "block_index": 153, - "block_hash": "240a225bd3522f5d2457a60d7771510b2f9745533de15df215e9286896d2ec5a", - "block_time": 1727031565, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "404bcb97e657b6a3c7b0d8c4ae8e3136f6c1f06012d858e0d71d8b2a4d68faef", + "block_time": 1727079846, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa:1", + "utxos_info": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2814,7 +2814,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2839,17 +2839,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 46, - "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", + "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", "block_index": 159, - "block_hash": "3fe53a626d7a77a7513f68b74ef29127b643d2e57dc4f8bd5b803a0b79aa1979", - "block_time": 1727031601, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "6d07b356994f63638a9d14fea6ebeeafa8c4f80f6dcba16b98b615bfe109ccff", + "block_time": 1727079873, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b:1", + "utxos_info": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2881,17 +2881,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", - "block_time": 1727031738, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", + "block_time": 1727080022, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d:1", + "utxos_info": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2934,17 +2934,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763", + "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68", "block_index": 187, - "block_hash": "5c5d1defe448fd0cfb311a0b63d84e55a56bb835621669e3693e241acac2b51a", - "block_time": 1727031711, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "block_hash": "246ae1d4c1389f2581d04fb413f68547ce8f920f92c7db7998e7af7264aacdeb", + "block_time": 1727079984, + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080fcd4fef91bbb7752401bda00950d4c9047d04028", + "data": "020000000000000001000000000000271080c4fb36b92d4e34760a7faccb00cc7340befb1809", "supported": true, - "utxos_info": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763:1", + "utxos_info": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2952,7 +2952,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "memo": null, "asset_info": { "divisible": true, @@ -2975,17 +2975,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "block_hash": "7aebb16eecf937a615a0835e17c17a727757a47eff751dbe07bf38199690cf08", - "block_time": 1727031716, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "48b2d19d551135b795db9414be8cef12acb0b131f1d153c2e457362aee6f39fa", + "block_time": 1727079989, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a4ca4c30f02016b9d3311b06228bced4605a672d806dfffb33ff9bf38009f5261067fd1af98dadcc3c80fcd4fef91bbb7752401bda00950d4c9047d04028400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a34288aaa16cb6a9c7065f6fedddf0f15f400ec9803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc80c4fb36b92d4e34760a7faccb00cc7340befb1809400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6:0", + "utxos_info": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2993,14 +2993,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -3008,7 +3008,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3034,23 +3034,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", - "block_time": 1727031743, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", + "block_time": 1727080026, + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480fcd4fef91bbb7752401bda00950d4c9047d04028017377656570206d7920617373657473", + "data": "0480c4fb36b92d4e34760a7faccb00cc7340befb1809017377656570206d7920617373657473", "supported": true, - "utxos_info": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703:1", + "utxos_info": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "flags": 1, "memo": "sweep my assets" } @@ -3083,17 +3083,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 59, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", - "block_time": 1727031747, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_time": 1727080029, + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", + "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3116,23 +3116,23 @@ Returns the list of the last ten transactions }, { "tx_index": 58, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", - "block_time": 1727031743, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", + "block_time": 1727080026, + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480fcd4fef91bbb7752401bda00950d4c9047d04028017377656570206d7920617373657473", + "data": "0480c4fb36b92d4e34760a7faccb00cc7340befb1809017377656570206d7920617373657473", "supported": true, - "utxos_info": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703:1", + "utxos_info": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "flags": 1, "memo": "sweep my assets" } @@ -3150,7 +3150,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001019d5f93e8240a3eb6d45a6a38f32109200b3304bace7538254a8505103ff1c8660000000000ffffffff0200000000000000002b6a293d9ec3ff5bde53950f82911ac15d6fa531e7c349a0a07a8e1ad2c0abfbc8b3ea7cefd68ca7a6280e2bf0ca052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c0247304402204b12834ecdeec860345887155b44f9d78ff4a637d4323c347b6e0c1d0df3865702207e546a79aa5d4ea6a4e9b8fb06f1277b48cb93ba78ab305d6c9a9095ea64e76a01210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13200000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001011f52299e86e352cb7b1a484767c18433a8dd5da0be5e6ade2766ef0b366307990000000000ffffffff020000000000000000356a335561f66404c41e80f8fa2cee94d1a41a13dcd65aa53f7799adaf41771323736e95069860c3a4105c96a9e810a95e8711d2c989f0ca052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02473044022070c3fd6ffa1fda1ff311bbf79dafbcf3e6f73f40c0487d24dbf104726282eb770220303ef3f0cf64bf814af3e138301eec9d77f7d1f2467a751d3b69f1193421ca630121038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c00000000` (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. @@ -3163,18 +3163,18 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4695e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "9d5f93e8240a3eb6d45a6a38f32109200b3304bace7538254a8505103ff1c866", + "hash": "1f52299e86e352cb7b1a484767c18433a8dd5da0be5e6ade2766ef0b36630799", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3184,27 +3184,49 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a293d9ec3ff5bde53950f82911ac15d6fa531e7c349a0a07a8e1ad2c0abfbc8b3ea7cefd68ca7a6280e2b" + "script_pub_key": "6a335561f66404c41e80f8fa2cee94d1a41a13dcd65aa53f7799adaf41771323736e95069860c3a4105c96a9e810a95e8711d2c989" }, { "value": 4999990000, - "script_pub_key": "0014ab1ca0986fe508fb370b5937169762b6328c900c" + "script_pub_key": "001452e48a2420dddb4d5239ee4f509da9a34bff777a" } ], "vtxinwit": [ - "304402204b12834ecdeec860345887155b44f9d78ff4a637d4323c347b6e0c1d0df3865702207e546a79aa5d4ea6a4e9b8fb06f1277b48cb93ba78ab305d6c9a9095ea64e76a01", - "0303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b132" + "3044022070c3fd6ffa1fda1ff311bbf79dafbcf3e6f73f40c0487d24dbf104726282eb770220303ef3f0cf64bf814af3e138301eec9d77f7d1f2467a751d3b69f1193421ca6301", + "038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c" ], "lock_time": 0, - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", - "tx_id": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84" + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_id": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f" }, "unpacked_data": { - "message_type": "cancel", - "message_type_id": 70, + "message_type": "order", + "message_type_id": 10, "message_data": { - "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", - "status": "valid" + "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" @@ -3217,7 +3239,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4` (str, required) - Transaction hash + + tx_hash: `91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47` (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. @@ -3228,18 +3250,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710806dfffb33ff9bf38009f5261067fd1af98dadcc3c", + "data": "0200000000000000010000000000002710803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "033829dd00ce92492643b8d140f4f5e0e40880eb1d304c5ef75052b518910fdb", + "hash": "ec72b6da61eb4096c6eb25484cb721bb26e2429cd539df769f552c680d7f8a1e", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3249,20 +3271,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e86c1932312faa583fe5f71bdf0c7db3e42b4ce0034d8c1a4e0081e1920d840e4601e56ea066ca5f270b671ee4f60" + "script_pub_key": "6a2e175501a67a71a7042d4669c22cdd7e97cb14c3c52a8c426fe0176eff948d3ec0cc3c68ddd322d1e0661b59cee4bb" }, { "value": 4999955000, - "script_pub_key": "0014fcd4fef91bbb7752401bda00950d4c9047d04028" + "script_pub_key": "0014c4fb36b92d4e34760a7faccb00cc7340befb1809" } ], "vtxinwit": [ - "304402201b2685911b529dddd19a94a0444d789c65d7538076984cd0f5e5764fd2fdaea70220305e38b12b39c8fd2199e37ed0b6c8a45faabcdf92fe527cf74115dd817bd60601", - "02d0179aa601d1b2caddcfe88c73ca7bf71949d02e3645f85bd050b7b64868f248" + "304402207a5d46bd6b01b7b76e17241f3cd9588203d36982448497e39cda7d2c60013ce602207e65bccfb61296531321c1fd74bd4f85dc4f4bc8049c5f9819d4313e2340c88c01", + "0245711205fa34c28180371a8e6a071cd643ec0f98772bebba59d21b2bf8023721" ], "lock_time": 0, - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", - "tx_id": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4" + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_id": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3270,7 +3292,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "memo": null, "asset_info": { "divisible": true, @@ -3331,17 +3353,17 @@ Returns a transaction by its index. { "result": { "tx_index": 59, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", - "block_time": 1727031747, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_time": 1727080029, + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", + "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3370,7 +3392,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e` (str, required) - The hash of the transaction + + tx_hash: `b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527` (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. @@ -3382,17 +3404,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 59, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", - "block_time": 1727031747, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_time": 1727080029, + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", + "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3445,47 +3467,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58 }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "status": "valid", - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, - "block_time": 1727031743, + "block_time": 1727080026, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -3495,24 +3517,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "XCP", "block_index": 192, - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -3522,36 +3544,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 } ], "next_cursor": 523, @@ -3564,7 +3586,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703` (str, required) - The hash of the transaction to return + + tx_hash: `52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -3588,47 +3610,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58 }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "status": "valid", - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, - "block_time": 1727031743, + "block_time": 1727080026, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -3638,24 +3660,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "XCP", "block_index": 192, - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -3665,36 +3687,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 } ], "next_cursor": 523, @@ -3707,7 +3729,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6` (str, required) - The hash of the transaction to return + + tx_hash: `965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e` (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 @@ -3726,10 +3748,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -3737,7 +3759,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "divisible": true, "asset_longname": null, @@ -3750,10 +3772,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3761,11 +3783,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -3774,10 +3796,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3785,11 +3807,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -3807,7 +3829,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c` (str, required) - The hash of the transaction to return + + tx_hash: `740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31` (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 @@ -3827,27 +3849,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", - "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "last_status_tx_hash": null, - "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3862,7 +3884,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727031536, + "block_time": 1727079818, "asset_info": { "divisible": true, "asset_longname": null, @@ -3906,16 +3928,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -3925,63 +3947,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 } ], "next_cursor": null, @@ -3994,7 +4016,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703` (str, required) - The hash of the transaction to return + + tx_hash: `52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `535` (str, optional) - The last event index to return + Default: `None` @@ -4016,16 +4038,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -4035,63 +4057,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 } ], "next_cursor": null, @@ -4106,7 +4128,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj,bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms,bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (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 @@ -4130,7 +4152,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4140,7 +4162,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -4151,7 +4173,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4161,7 +4183,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -4172,7 +4194,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4182,7 +4204,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -4193,7 +4215,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4203,7 +4225,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -4214,7 +4236,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4224,7 +4246,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -4241,7 +4263,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj,bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms,bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (str, required) - Comma separated list of addresses to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4260,17 +4282,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 57, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", - "block_time": 1727031738, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", + "block_time": 1727080022, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d:1", + "utxos_info": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4306,23 +4328,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "block_index": 190, - "block_hash": "1e1af2aaab6cfea61a31d3c2cda9e566643cab68018f3b8071bf25da826b9a80", - "block_time": 1727031724, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "27631674929a77b7907c42d4559d560e994bddb1c5dc880e51ac065952ccc04b", + "block_time": 1727080007, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4695e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "data": "46c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "supported": true, - "utxos_info": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84:1", + "utxos_info": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "status": "valid" } }, @@ -4330,17 +4352,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 55, - "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "block_index": 189, - "block_hash": "4b4c3d089292ec004e7c2f38f68a929bba6d7c6e6101db9616fe21b785fae411", - "block_time": 1727031720, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "6fb0ca06b43613ffed61018fcb6082c59452492ba985576337703460a5a270f0", + "block_time": 1727079993, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a:1", + "utxos_info": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4376,17 +4398,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "block_hash": "7aebb16eecf937a615a0835e17c17a727757a47eff751dbe07bf38199690cf08", - "block_time": 1727031716, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "48b2d19d551135b795db9414be8cef12acb0b131f1d153c2e457362aee6f39fa", + "block_time": 1727079989, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a4ca4c30f02016b9d3311b06228bced4605a672d806dfffb33ff9bf38009f5261067fd1af98dadcc3c80fcd4fef91bbb7752401bda00950d4c9047d04028400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a34288aaa16cb6a9c7065f6fedddf0f15f400ec9803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc80c4fb36b92d4e34760a7faccb00cc7340befb1809400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6:0", + "utxos_info": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4394,14 +4416,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -4409,7 +4431,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4428,25 +4450,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 51, - "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", + "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", "block_index": 185, - "block_hash": "1f5af0e7cec205944b080b4ab1df4487aa0f0dc1b8acf9bfe09a4004e1f6afc7", - "block_time": 1727031703, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "0019336d8185362941e07f3b889ad1fcec836b89b1848ef0b1acd905e5d68e55", + "block_time": 1727079976, + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "btc_amount": 2000, "fee": 10000, - "data": "0bbb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874aca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "data": "0bf1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "supported": true, - "utxos_info": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549:0", + "utxos_info": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", - "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", - "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "status": "valid" } }, @@ -4463,7 +4485,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj,bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms,bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -4499,11 +4521,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "status": "open", - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "tx_index": 57, - "block_time": 1727031738, + "block_time": 1727080022, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4527,24 +4549,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "block_time": 1727031738 + "block_time": 1727080022 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "block_index": 191, - "event": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "event": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727031738, + "block_time": 1727080022, "asset_info": { "divisible": true, "asset_longname": null, @@ -4554,25 +4576,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "block_time": 1727031738 + "block_time": 1727080022 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", + "block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", "block_index": 191, - "block_time": 1727031738, + "block_time": 1727080022, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "tx_index": 57, - "utxos_info": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d:1", + "utxos_info": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4604,40 +4626,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "block_time": 1727031738 + "block_time": 1727080022 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "status": "valid", - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "tx_index": 56, - "block_time": 1727031724 + "block_time": 1727080007 }, - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "block_index": 190, - "block_time": 1727031724 + "block_time": 1727080007 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727031724, + "block_time": 1727080007, "asset_info": { "divisible": true, "asset_longname": null, @@ -4647,9 +4669,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "block_index": 190, - "block_time": 1727031724 + "block_time": 1727080007 } ], "next_cursor": 506, @@ -4662,7 +4684,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m,bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss,bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj` (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 @@ -4678,17 +4700,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "memo": null, "quantity": 10000, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "status": "valid", - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "tx_index": 60, "asset_info": { "divisible": true, @@ -4701,19 +4723,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "CREDIT", "params": { - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -4725,19 +4747,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 193, - "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -4749,27 +4771,27 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727031751.6192584, + "block_time": 1727080033.9107606, "btc_amount": 0, - "data": "0200000000000000010000000000002710806dfffb33ff9bf38009f5261067fd1af98dadcc3c", + "data": "0200000000000000010000000000002710803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc", "destination": "", "fee": 10000, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "tx_index": 60, - "utxos_info": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4:1", + "utxos_info": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "memo": null, "asset_info": { "divisible": true, @@ -4795,7 +4817,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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 @@ -4815,7 +4837,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4823,14 +4845,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4838,14 +4860,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4860,7 +4882,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4868,7 +4890,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -4885,7 +4907,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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` @@ -4897,7 +4919,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4919,7 +4941,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4969,16 +4991,16 @@ Returns the credits of an address "result": [ { "block_index": 190, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031724, + "block_time": 1727080007, "asset_info": { "divisible": true, "asset_longname": null, @@ -4990,16 +5012,16 @@ Returns the credits of an address }, { "block_index": 182, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", + "event": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031616, + "block_time": 1727079898, "asset_info": { "divisible": true, "asset_longname": null, @@ -5011,20 +5033,20 @@ Returns the credits of an address }, { "block_index": 159, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", + "event": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031601, + "block_time": 1727079873, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5032,20 +5054,20 @@ Returns the credits of an address }, { "block_index": 156, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "78d87a84a548e802140107907dab0b844c078356f9fcce558b74909d159796a6", + "event": "c5f0754dd7d1082a77f739c930d90d5684bb394c04a01e9acf2c0a1742b4dc87", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031579, + "block_time": 1727079860, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5057,16 +5079,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", + "event": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", "tx_index": 38, - "utxo": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450:1", - "utxo_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "utxo": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8:1", + "utxo_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "confirmed": true, - "block_time": 1727031557, + "block_time": 1727079839, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5083,7 +5105,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5122,16 +5144,16 @@ Returns the debits of an address "result": [ { "block_index": 191, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "event": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031738, + "block_time": 1727080022, "asset_info": { "divisible": true, "asset_longname": null, @@ -5143,16 +5165,16 @@ Returns the debits of an address }, { "block_index": 189, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031720, + "block_time": 1727079993, "asset_info": { "divisible": true, "asset_longname": null, @@ -5164,16 +5186,16 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "event": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "divisible": true, "asset_longname": null, @@ -5185,20 +5207,20 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "event": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5206,16 +5228,16 @@ Returns the debits of an address }, { "block_index": 183, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "event": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031685, + "block_time": 1727079968, "asset_info": { "divisible": true, "asset_longname": null, @@ -5236,7 +5258,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address of the feed + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5271,7 +5293,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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 @@ -5290,9 +5312,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "70bbbef4d727695c9dfe5767a7984c541fa63ee857b8a6f9d4fd484e7e9bb559", + "tx_hash": "7145912710e264e9c5b45407d43bc8fd5318db28c30836a01c4862e2ded179d5", "block_index": 137, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5300,7 +5322,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727031498, + "block_time": 1727079780, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5314,7 +5336,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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 @@ -5333,14 +5355,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "c3ef7038264f09a6f51fb5f6471cfc4b095d6356440d83546aafcd77da3327bc", + "tx_hash": "45fcd30b26481dc7d15d3e290ffc8c6f576a8940987ab179d8171b9929dad6aa", "block_index": 112, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1727031394, + "block_time": 1727079676, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5355,7 +5377,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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 @@ -5374,10 +5396,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5385,7 +5407,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "divisible": true, "asset_longname": null, @@ -5398,10 +5420,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5409,11 +5431,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5422,10 +5444,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5433,11 +5455,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5446,10 +5468,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 38, - "tx_hash": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", + "tx_hash": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", "block_index": 151, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450:1", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5457,11 +5479,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031557, + "block_time": 1727079839, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5470,10 +5492,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 35, - "tx_hash": "c2895e011f9b472f28337f45d9c4e55b74d73cbb0a4b6fad43b9bbff93937d9e", + "tx_hash": "8e6e5e86390b1d35d8140150b424da7aba62e5e93c431bd2645ef98ebe79c705", "block_index": 148, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "c7f128443db9a77d1633ed327ba6bff1a7df40904a0bcc0aeef69925fc748a83:1", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "8ef179e266d7b41d18f9c03097396fe4b3ec9a584925e023130ca6e7104fe97e:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5481,11 +5503,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031544, + "block_time": 1727079826, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5503,7 +5525,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0` (str, required) - The address to return + + address: `bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd` (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 @@ -5522,10 +5544,10 @@ Returns the receives of an address "result": [ { "tx_index": 37, - "tx_hash": "b24c9eeabf64bf130cf647b5b044590691cd4d002ece233465f257abf436ad6c", + "tx_hash": "989604467561753724a036703d19ac691dfe4a5ced843c42f9d1834068e7158f", "block_index": 150, - "source": "eabb3b7be615850b99b1401f3f242c8fa8e18d2d0ba58915a003fa589718cf11:0", - "destination": "bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0", + "source": "e0fb6c717053ccace6058ea89673a15dff5b190c77211ffd001c4094c8df382a:0", + "destination": "bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5533,11 +5555,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031553, + "block_time": 1727079835, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5555,7 +5577,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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` @@ -5575,10 +5597,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5586,11 +5608,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5599,10 +5621,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5610,11 +5632,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5623,10 +5645,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 38, - "tx_hash": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", + "tx_hash": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", "block_index": 151, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450:1", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5634,11 +5656,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031557, + "block_time": 1727079839, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5647,10 +5669,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 35, - "tx_hash": "c2895e011f9b472f28337f45d9c4e55b74d73cbb0a4b6fad43b9bbff93937d9e", + "tx_hash": "8e6e5e86390b1d35d8140150b424da7aba62e5e93c431bd2645ef98ebe79c705", "block_index": 148, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "c7f128443db9a77d1633ed327ba6bff1a7df40904a0bcc0aeef69925fc748a83:1", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "8ef179e266d7b41d18f9c03097396fe4b3ec9a584925e023130ca6e7104fe97e:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5658,11 +5680,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031544, + "block_time": 1727079826, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5680,7 +5702,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0` (str, required) - The address to return + + address: `bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd` (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` @@ -5700,10 +5722,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 37, - "tx_hash": "b24c9eeabf64bf130cf647b5b044590691cd4d002ece233465f257abf436ad6c", + "tx_hash": "989604467561753724a036703d19ac691dfe4a5ced843c42f9d1834068e7158f", "block_index": 150, - "source": "eabb3b7be615850b99b1401f3f242c8fa8e18d2d0ba58915a003fa589718cf11:0", - "destination": "bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0", + "source": "e0fb6c717053ccace6058ea89673a15dff5b190c77211ffd001c4094c8df382a:0", + "destination": "bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5711,11 +5733,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031553, + "block_time": 1727079835, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5733,7 +5755,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5760,9 +5782,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 30, - "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", + "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", "block_index": 144, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5771,7 +5793,7 @@ Returns the dispensers of an address "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5781,7 +5803,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031527, + "block_time": 1727079809, "asset_info": { "divisible": true, "asset_longname": null, @@ -5797,9 +5819,9 @@ Returns the dispensers of an address }, { "tx_index": 26, - "tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5808,7 +5830,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5818,7 +5840,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -5843,7 +5865,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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` @@ -5856,9 +5878,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", + "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", "block_index": 144, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5867,7 +5889,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5877,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": 1727031527, + "block_time": 1727079809, "asset_info": { "divisible": true, "asset_longname": null, @@ -5899,7 +5921,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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 @@ -5919,19 +5941,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", + "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5939,7 +5961,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5954,7 +5976,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -5968,19 +5990,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", + "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", "block_index": 140, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5988,7 +6010,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6003,7 +6025,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031510, + "block_time": 1727079793, "asset_info": { "divisible": true, "asset_longname": null, @@ -6025,7 +6047,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (str, required) - The address to return + + address: `bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (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 @@ -6045,19 +6067,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", + "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6065,7 +6087,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6080,7 +6102,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -6094,19 +6116,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", + "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", "block_index": 140, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6114,7 +6136,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6129,7 +6151,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031510, + "block_time": 1727079793, "asset_info": { "divisible": true, "asset_longname": null, @@ -6151,7 +6173,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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` @@ -6172,19 +6194,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", + "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6192,7 +6214,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6207,7 +6229,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -6221,19 +6243,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", + "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", "block_index": 140, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6241,7 +6263,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6256,7 +6278,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031510, + "block_time": 1727079793, "asset_info": { "divisible": true, "asset_longname": null, @@ -6278,7 +6300,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (str, required) - The address to return + + address: `bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (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` @@ -6299,19 +6321,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", + "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6319,7 +6341,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6334,7 +6356,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -6348,19 +6370,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", + "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", "block_index": 140, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6368,7 +6390,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6383,7 +6405,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031510, + "block_time": 1727079793, "asset_info": { "divisible": true, "asset_longname": null, @@ -6405,7 +6427,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m` (str, required) - The address to return + + address: `bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss` (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 @@ -6424,16 +6446,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 58, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "fee_paid_normalized": "0.00600000" } ], @@ -6447,7 +6469,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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 @@ -6466,14 +6488,14 @@ Returns the issuances of an address "result": [ { "tx_index": 46, - "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", + "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -6488,20 +6510,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031601, + "block_time": 1727079873, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "45b68c9ba64fa212a14541b0a2a12205e850ae06f24d5b225f0a5627c23d19e8", + "tx_hash": "ee5b91c03af937b81687cba8cf5de88a889363660243b7f1e3d0721469e82475", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -6516,20 +6538,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727031596, + "block_time": 1727079868, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "f90297d83b71b86f758f716ba6985c3656c2219501bf5577ac2d96103c22be8b", + "tx_hash": "913be4b557b8ae7b33fffad5a68eec87247e587ef1161d91310b90133a1cb304", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -6544,20 +6566,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031593, + "block_time": 1727079864, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "78d87a84a548e802140107907dab0b844c078356f9fcce558b74909d159796a6", + "tx_hash": "c5f0754dd7d1082a77f739c930d90d5684bb394c04a01e9acf2c0a1742b4dc87", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -6572,20 +6594,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031579, + "block_time": 1727079860, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "7eba76181dde66ebc3fdfe33bdf17e5f00aff28437f82870fbc8bf86beccb827", + "tx_hash": "38fd7a78403fa7a17642d00e60ed25b5abec76df7774a00bc77e55574157da48", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -6600,7 +6622,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031540, + "block_time": 1727079822, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -6615,7 +6637,7 @@ Returns the issuances of an address Returns the valid assets of an issuer + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The issuer to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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 @@ -6638,8 +6660,8 @@ Returns the valid assets of an issuer "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 10000000000, @@ -6647,16 +6669,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727031579, - "last_issuance_block_time": 1727031596, + "first_issuance_block_time": 1727079860, + "last_issuance_block_time": 1727079868, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 100000000000, @@ -6664,16 +6686,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727031540, - "last_issuance_block_time": 1727031540, + "first_issuance_block_time": 1727079822, + "last_issuance_block_time": 1727079822, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 40, @@ -6681,16 +6703,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727031489, - "last_issuance_block_time": 1727031494, + "first_issuance_block_time": 1727079772, + "last_issuance_block_time": 1727079776, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 19, @@ -6698,16 +6720,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727031472, - "last_issuance_block_time": 1727031485, + "first_issuance_block_time": 1727079755, + "last_issuance_block_time": 1727079767, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 0, @@ -6715,8 +6737,8 @@ Returns the valid assets of an issuer "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1727031452, - "last_issuance_block_time": 1727031468, + "first_issuance_block_time": 1727079735, + "last_issuance_block_time": 1727079751, "supply_normalized": "0.00000000" } ], @@ -6730,7 +6752,7 @@ Returns the valid assets of an issuer Returns the transactions of an address + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -6749,17 +6771,17 @@ Returns the transactions of an address "result": [ { "tx_index": 57, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", - "block_time": 1727031738, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", + "block_time": 1727080022, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d:1", + "utxos_info": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6795,23 +6817,23 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "block_index": 190, - "block_hash": "1e1af2aaab6cfea61a31d3c2cda9e566643cab68018f3b8071bf25da826b9a80", - "block_time": 1727031724, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "27631674929a77b7907c42d4559d560e994bddb1c5dc880e51ac065952ccc04b", + "block_time": 1727080007, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4695e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "data": "46c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "supported": true, - "utxos_info": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84:1", + "utxos_info": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "status": "valid" } }, @@ -6819,17 +6841,17 @@ Returns the transactions of an address }, { "tx_index": 55, - "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "block_index": 189, - "block_hash": "4b4c3d089292ec004e7c2f38f68a929bba6d7c6e6101db9616fe21b785fae411", - "block_time": 1727031720, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "6fb0ca06b43613ffed61018fcb6082c59452492ba985576337703460a5a270f0", + "block_time": 1727079993, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a:1", + "utxos_info": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6865,17 +6887,17 @@ Returns the transactions of an address }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "block_hash": "7aebb16eecf937a615a0835e17c17a727757a47eff751dbe07bf38199690cf08", - "block_time": 1727031716, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "48b2d19d551135b795db9414be8cef12acb0b131f1d153c2e457362aee6f39fa", + "block_time": 1727079989, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a4ca4c30f02016b9d3311b06228bced4605a672d806dfffb33ff9bf38009f5261067fd1af98dadcc3c80fcd4fef91bbb7752401bda00950d4c9047d04028400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a34288aaa16cb6a9c7065f6fedddf0f15f400ec9803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc80c4fb36b92d4e34760a7faccb00cc7340befb1809400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6:0", + "utxos_info": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -6883,14 +6905,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -6898,7 +6920,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -6917,17 +6939,17 @@ Returns the transactions of an address }, { "tx_index": 49, - "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", "block_index": 183, - "block_hash": "5736c35ad7443bd127e2c39121e8accb8483b3fc3458ab2bb197a41f504e1b78", - "block_time": 1727031685, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "2bc00571147a36413c5643be3313556ea1395e88d0ca1a4863bea8ff75854e6e", + "block_time": 1727079968, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a:1", + "utxos_info": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6972,7 +6994,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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 @@ -6991,20 +7013,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 40, - "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", + "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", "block_index": 153, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727031565, + "block_time": 1727079846, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -7029,7 +7051,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7056,9 +7078,9 @@ Returns the orders of an address "result": [ { "tx_index": 57, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7073,7 +7095,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727031738, + "block_time": 1727080022, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7099,9 +7121,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "block_index": 190, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7116,7 +7138,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727031724, + "block_time": 1727080007, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7142,9 +7164,9 @@ Returns the orders of an address }, { "tx_index": 49, - "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", "block_index": 186, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7159,7 +7181,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727031707, + "block_time": 1727079980, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7185,9 +7207,9 @@ Returns the orders of an address }, { "tx_index": 47, - "tx_hash": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", + "tx_hash": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", "block_index": 182, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7202,7 +7224,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727031616, + "block_time": 1727079898, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7237,7 +7259,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The source of the fairminter to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7255,10 +7277,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", + "tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", "tx_index": 22, "block_index": 135, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7283,13 +7305,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727031489 + "block_time": 1727079772 }, { - "tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", + "tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", "tx_index": 18, "block_index": 131, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7314,13 +7336,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727031472 + "block_time": 1727079755 }, { - "tx_hash": "f0dfc17c191520c1e2ba90abccbcc857553adf8a4e40722685a17b81ff2f781a", + "tx_hash": "569b5d76c793d1fbd773e4c21c313d8d9bd4c08354834bd7fff4de4ba36e79c5", "tx_index": 14, "block_index": 130, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7345,13 +7367,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727031468 + "block_time": 1727079751 }, { - "tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7376,7 +7398,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727031448 + "block_time": 1727079731 } ], "next_cursor": null, @@ -7389,7 +7411,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (str, required) - The address of the mints to return + + address: `bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7407,127 +7429,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "ede174d6ebd168d04cfbc10891f9d7eb903c0d105cd7455db87566871ceb66a4", + "tx_hash": "14b14a8360be741c147b158caf79d5fcf98f9986207c8fe5fe42526940d1ddc1", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "fairminter_tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "fairminter_tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031494, + "block_time": 1727079776, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } }, { - "tx_hash": "1ff72b43cf288d1d3e4e8f3b13df6f687a3b931b5dd479680fd537de7ab91619", + "tx_hash": "e275330435c460f35d517ef441e949efe2dda5aab87caac5a88eed45bebc604f", "tx_index": 21, "block_index": 134, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "fairminter_tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "fairminter_tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031485, + "block_time": 1727079767, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } }, { - "tx_hash": "173860b830f570665ce7176cc62cd77ea47e884cad47be8f881c860357a8fb56", + "tx_hash": "ef310c731fe0e412d40aaf73093d4b9c895a9e93c49834376e75bafefae9189a", "tx_index": 20, "block_index": 133, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "fairminter_tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "fairminter_tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031481, + "block_time": 1727079763, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } }, { - "tx_hash": "8db623e33495f11477f4c1321919da808fa5cdf7a552030355a5a5c9caf913c4", + "tx_hash": "451d2d1096ddc99374296b711b4e3fc31032a76546b006d1765fde3a318fec83", "tx_index": 19, "block_index": 132, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "fairminter_tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "fairminter_tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031477, + "block_time": 1727079759, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } }, { - "tx_hash": "88164f5131f58c578d835121f2d081c1b2452f1074c8c4ab1beb574d190e440c", + "tx_hash": "410b4f5830101c539dfbc12c092162b06f06a32b74696410059f62defe05a071", "tx_index": 15, "block_index": 127, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "fairminter_tx_hash": "f0dfc17c191520c1e2ba90abccbcc857553adf8a4e40722685a17b81ff2f781a", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "fairminter_tx_hash": "569b5d76c793d1fbd773e4c21c313d8d9bd4c08354834bd7fff4de4ba36e79c5", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031457, + "block_time": 1727079739, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } }, { - "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", + "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031440, + "block_time": 1727079722, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } @@ -7543,7 +7565,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (str, required) - The address of the mints to return + + address: `bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (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` @@ -7562,22 +7584,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", + "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031440, + "block_time": 1727079722, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } @@ -7611,13 +7633,13 @@ By default the default value of the `encoding` parameter detailed above is `auto - Sign the transaction following the `Bitcoinjs-lib on javascript, signing a P2SH redeeming transaction` section - **NOTE**: Don't leave pretxs hanging without transmitting the second transaction as this pollutes the UTXO set and risks making bitcoin harder to run on low spec nodes. -### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a bet against a feed. + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address that will make the bet - + feed_address: `bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address that will make the bet + + feed_address: `bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (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) @@ -7635,7 +7657,7 @@ Composes a transaction to issue a bet against a feed. + Default: `546` + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output + Default: `1000` - + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + + pubkeys (str, optional) - The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` @@ -7659,8 +7681,6 @@ Composes a transaction to issue a bet against a feed. + Default: `None` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` - + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) - + Default: `False` + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + Default: `False` + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction @@ -7682,12 +7702,12 @@ Composes a transaction to issue a bet against a feed. } ``` -### Compose Broadcast [GET /v2/addresses/{address}/compose/broadcast{?timestamp}{&value}{&fee_fraction}{&text}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Broadcast [GET /v2/addresses/{address}/compose/broadcast{?timestamp}{&value}{&fee_fraction}{&text}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to broadcast textual and numerical information to the network. + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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) @@ -7700,7 +7720,7 @@ Composes a transaction to broadcast textual and numerical information to the net + Default: `546` + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output + Default: `1000` - + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + + pubkeys (str, optional) - The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` @@ -7724,8 +7744,6 @@ Composes a transaction to broadcast textual and numerical information to the net + Default: `None` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` - + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) - + Default: `False` + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + Default: `False` + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction @@ -7745,7 +7763,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7757,7 +7775,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "0200000000010168580864de321070d26e22e5619e6235efa1ed8e5673a9fd1a9252056396d98400000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff0200000000000000002b6a29252e87bed754730f6a92caca98637de939fded0640ef6f6e0c13d09e4fbc58ccbc079dd19f40db6a043bb1052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "02000000000101c4fb1d2fe53ad7536b73d5141e8da047ebf3e8b9679ca360228ca07022e363b90000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff0200000000000000002b6a2989c3cfa1e720de3d5f646efca1c2e4d354f4f0ce80e1b27e6d99e9ecca7fdafcaa383e5307886f61963bb1052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7769,13 +7787,13 @@ Composes a transaction to broadcast textual and numerical information to the net } ``` -### Compose BTCPay [GET /v2/addresses/{address}/compose/btcpay{?order_match_id}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose BTCPay [GET /v2/addresses/{address}/compose/btcpay{?order_match_id}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to pay for a BTC order match. + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address that will be sending the payment - + order_match_id: `bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f` (str, required) - The ID of the order match to pay for + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address that will be sending the payment + + order_match_id: `f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587` (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) @@ -7784,7 +7802,7 @@ Composes a transaction to pay for a BTC order match. + Default: `546` + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output + Default: `1000` - + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + + pubkeys (str, optional) - The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` @@ -7808,8 +7826,6 @@ Composes a transaction to pay for a BTC order match. + Default: `None` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` - + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) - + Default: `False` + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + Default: `False` + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction @@ -7829,16 +7845,16 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f" + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587" }, "name": "btcpay", - "data": "434e5452505254590bbb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "data": "434e5452505254590bf1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999975897, "btc_fee": 21103, - "rawtransaction": "0200000000010152c499e6be8f463ed370997da9a6af073e4f103d6d79b0fca4cf7056b979e65400000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff03b80b000000000000160014ab1ca0986fe508fb370b5937169762b6328c900c00000000000000004b6a494a8ba6c4ab2690f363a9ca8790f3d3f1a5515dbd8c63dc770a469f83cf2f9ca4d710d17171a56f7375c2217e0455bfa4d41d70c1171a56cc2a0041da909987ea41b7c0d83da5293d70d993052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "02000000000101ac1f67aea80e88a5b2bfc4085f99b50356fe5c52b669438eeee67b4fcc966b760000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff03b80b00000000000016001452e48a2420dddb4d5239ee4f509da9a34bff777a00000000000000004b6a492444f87462277d1c2d4b9fb54cd142babed4b8260c32588f1dbfa94fad6b96c309dcef718a3e59d70365542fd2d02a43c31328304af1f5739f5d9c6fc657feb3a9f858a212bbfa67aed993052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7850,12 +7866,12 @@ Composes a transaction to pay for a BTC order match. } ``` -### Compose Burn [GET /v2/addresses/{address}/compose/burn{?quantity}{&overburn}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Burn [GET /v2/addresses/{address}/compose/burn{?quantity}{&overburn}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, possible between blocks 278310 and 283810; on testnet it is still available). + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address with the BTC to burn + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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` @@ -7867,7 +7883,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss + Default: `546` + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output + Default: `1000` - + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + + pubkeys (str, optional) - The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` @@ -7891,8 +7907,6 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss + Default: `None` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` - + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) - + Default: `False` + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + Default: `False` + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction @@ -7912,7 +7926,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "quantity": 1000, "overburn": false }, @@ -7922,18 +7936,18 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999983584, "btc_fee": 15416, - "rawtransaction": "020000000001015335f23ce3fede2504cb86ff4184ab95d163e4a7a0e656afb9430fd1357f0cc600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000" + "rawtransaction": "020000000001017ec6e6c7b47e70f5c63db14d799b147a8a423ac1083c60da8e3c25886e3449c90000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000" } } ``` -### Compose Cancel [GET /v2/addresses/{address}/compose/cancel{?offer_hash}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Cancel [GET /v2/addresses/{address}/compose/cancel{?offer_hash}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to cancel an open order or bet. + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f` (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) @@ -7942,7 +7956,7 @@ Composes a transaction to cancel an open order or bet. + Default: `546` + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output + Default: `1000` - + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + + pubkeys (str, optional) - The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` @@ -7966,8 +7980,6 @@ Composes a transaction to cancel an open order or bet. + Default: `None` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` - + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) - + Default: `False` + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + Default: `False` + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction @@ -7987,16 +7999,16 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "offer_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d" + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "offer_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f" }, "name": "cancel", - "data": "434e5452505254594671b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "data": "434e5452505254594642351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "020000000001015db7fd7ae00f3185285f83d16e80b67dfc80998416eecad872f0e23ee8a6ce6600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff0200000000000000002b6a294d4e6f4d174cb1aac2eb1dcb8f2649bb3674fa53e2d245ea491e9982391aa6988c4bb3a7a5f6c7c2913bb1052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "02000000000101d74dd7c27ce8b005421eeb92026137926d6782e7ae0ba5bfac9ce6f6cd2abd1c0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff0200000000000000002b6a297b9bb73acef081463740905279c7fe6eaa2af600a703212db716ba19f8cf3632b13ed66d39b40e27073bb1052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8008,12 +8020,12 @@ Composes a transaction to cancel an open order or bet. } ``` -### Compose Destroy [GET /v2/addresses/{address}/compose/destroy{?asset}{&quantity}{&tag}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Destroy [GET /v2/addresses/{address}/compose/destroy{?asset}{&quantity}{&tag}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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 @@ -8025,7 +8037,7 @@ Composes a transaction to destroy a quantity of an asset. + Default: `546` + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output + Default: `1000` - + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + + pubkeys (str, optional) - The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` @@ -8049,8 +8061,6 @@ Composes a transaction to destroy a quantity of an asset. + Default: `None` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` - + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) - + Default: `False` + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + Default: `False` + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction @@ -8070,7 +8080,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8089,7 +8099,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999984036, "btc_fee": 15964, - "rawtransaction": "02000000000101243012e92ee26aa15a782cb2bbe197c8969a68efba5fa5ffdf8c6629803a1ae800000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000226a20bc7d36e6a6cc85dde26f0bba137fbd3da0f8c9580b38588624e2df93b37eae96a4b3052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "020000000001010fc9eeafc4e63c4e40bbeca65c297455eb5a3414100fa303055d96706f4aae420000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000226a205c6cb1e1bcbfabc97cde4a324c2abc09dbb8974f048899f47c6f158c875271f7a4b3052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8101,12 +8111,12 @@ Composes a transaction to destroy a quantity of an asset. } ``` -### Compose Dispenser [GET /v2/addresses/{address}/compose/dispenser{?asset}{&give_quantity}{&escrow_quantity}{&mainchainrate}{&status}{&open_address}{&oracle_address}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Dispenser [GET /v2/addresses/{address}/compose/dispenser{?asset}{&give_quantity}{&escrow_quantity}{&mainchainrate}{&status}{&open_address}{&oracle_address}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to 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: `bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj` (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) @@ -8124,7 +8134,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv + Default: `546` + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output + Default: `1000` - + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + + pubkeys (str, optional) - The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` @@ -8148,8 +8158,6 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv + Default: `None` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` - + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) - + Default: `False` + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + Default: `False` + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction @@ -8169,7 +8177,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", + "source": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8193,7 +8201,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949953351, "btc_fee": 16649, - "rawtransaction": "020000000001016ca177f459b6c36294fcb4155e83d07122353ab8388ce92973f4e652be3e91c8020000001600140c5f6b2015e1824e0d2b841e238a8fe8e4fe23edffffffff0200000000000000002c6a2a30263885add80b04f339f88a69df0d27f6167813e3f323cfaa236dde5a4a7910ed88bf0a12549501f797474b0a27010000001600140c5f6b2015e1824e0d2b841e238a8fe8e4fe23ed02000000000000", + "rawtransaction": "02000000000101318dbcf475c4b874032fb3f2989349d0695ce469256206b74ca91d4bf5dd0f74020000001600146fc1e09d3d25a8b78c9345abf4733cb0d5882240ffffffff0200000000000000002c6a2a0fae3d503f5f272030f6827403ad73dd0638811e90eb26779a736dd6aa8874775d80d294e1be2127cb07474b0a27010000001600146fc1e09d3d25a8b78c9345abf4733cb0d588224002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8205,12 +8213,12 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv } ``` -### Compose Dividend [GET /v2/addresses/{address}/compose/dividend{?quantity_per_unit}{&asset}{÷nd_asset}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Dividend [GET /v2/addresses/{address}/compose/dividend{?quantity_per_unit}{&asset}{÷nd_asset}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a dividend to holders of a given asset. + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (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: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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 @@ -8222,7 +8230,7 @@ Composes a transaction to issue a dividend to holders of a given asset. + Default: `546` + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output + Default: `1000` - + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + + pubkeys (str, optional) - The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` @@ -8246,8 +8254,6 @@ Composes a transaction to issue a dividend to holders of a given asset. + Default: `None` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` - + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) - + Default: `False` + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + Default: `False` + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction @@ -8267,14 +8273,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -8293,7 +8299,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "020000000001011cc4f1ec2e36e31211a9399c62df1ab5fd8af892bd5626698abb7f1a824b1a7f00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000236a2152815ea75b3585636dbbcf7e9879494aa1a009d8c27727374d4c47efdeaa5a79f160b3052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "02000000000101772a424f64e888d103ad6b444d8961fdc2d084997e207128a7204a916c8fd7f70000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000236a214264b2defd026c9f8b058fbc9a3ccc8ef14a1635eeef08f1af470f75ac2a94dde160b3052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8305,15 +8311,15 @@ Composes a transaction to issue a dividend to holders of a given asset. } ``` -### Compose Issuance [GET /v2/addresses/{address}/compose/issuance{?asset}{&quantity}{&transfer_destination}{&divisible}{&lock}{&reset}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Issuance [GET /v2/addresses/{address}/compose/issuance{?asset}{&quantity}{&transfer_destination}{&divisible}{&lock}{&reset}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to 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: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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` @@ -8331,7 +8337,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo + Default: `546` + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output + Default: `1000` - + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + + pubkeys (str, optional) - The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` @@ -8355,8 +8361,6 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo + Default: `None` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` - + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) - + Default: `False` + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + Default: `False` + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction @@ -8376,10 +8380,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "transfer_destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "lock": false, "reset": false, @@ -8392,7 +8396,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999981092, "btc_fee": 18362, - "rawtransaction": "0200000000010103fb4050d4f193e360ad8b027709d53abcbf04a2a1010df3ee4085ce05adde2300000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff032202000000000000160014ab1ca0986fe508fb370b5937169762b6328c900c0000000000000000236a2143df507de8f5a7bf1c9ffa5df39c3d425c98c75defe11495764bf5df144c0c238524a8052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "020000000001013e0e4bd74e37b6311b78dfa53052df39d250afdb47bc36a4b5b1d1cff37d22700000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff03220200000000000016001452e48a2420dddb4d5239ee4f509da9a34bff777a0000000000000000236a21793f612862b2a7beb9354b99022fde7eec9d9d301bde3705a9dac4a697fda9d23c24a8052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8404,14 +8408,14 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo } ``` -### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to send multiple payments to multiple addresses. + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj,bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms,bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (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` @@ -8425,7 +8429,7 @@ Composes a transaction to send multiple payments to multiple addresses. + Default: `546` + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output + Default: `1000` - + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + + pubkeys (str, optional) - The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` @@ -8449,8 +8453,6 @@ Composes a transaction to send multiple payments to multiple addresses. + Default: `None` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` - + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) - + Default: `False` + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + Default: `False` + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction @@ -8470,16 +8472,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", 1 ], [ "MYASSETA", - "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", 2 ] ], @@ -8487,12 +8489,12 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280ab1ca0986fe508fb370b5937169762b6328c900c80a4ca4c30f02016b9d3311b06228bced4605a672d8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e5452505254590300028052e48a2420dddb4d5239ee4f509da9a34bff777a80a34288aaa16cb6a9c7065f6fedddf0f15f400ec98f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999936609, "btc_fee": 61391, - "rawtransaction": "020000000001046b414523590473e17a060f79d51b143092f0a49fd3c1574cb5c7e8816ffec29600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff6515d67199a23e30ea3e0687743ea61a94b4838a57ecfa86cbd1ab147c003d5800000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff0baa4e42d99e36bd02f37362ccd7959c2714d3addfe4dff113f283be2716734000000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff895f4db1d0bf555d6a70322996020954d8656732fd6e0b7f9129f8b74973cc2b00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff03e803000000000000695121028e1967a49cd0af70d220be6d0499ca4522b167d980b1434a20661459283e699221031daf2ff3356e312c9fea05b6a89292fed1383db83105e08839624392d5a9cce7210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253aee80300000000000069512102811967a49cd0af70d203c900f65eb2c4985e82d17793d398a050833b9e0ce5bb21028da3e757ff2201dcbffcb465998994dc5af6ebd86b62cd071b2a26feb9c6e067210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253ae61d016a804000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000002000002000002000000000000", + "rawtransaction": "020000000001041c554d8764ee6d119d016e24d0fd65836743d8c4438d4388402a77d13c0f3fd20000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffffadac142c6837041de85d3e045f73fef9916d18e6a25bf17bfec4ecb93a8fe9ea0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffffa1840467c0f27dac03f476fdd70722f7daaf74e05a784db506cbd965c2a6b6e10000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff407819504dc30f57271a653a15452cf5d9d82e21aabcde9a21e948e2de95be5a0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff03e803000000000000695121035936f288e6a2e950c979417d5d4f3b446d71e718be0171a8a37da80355f4c99821030d4ea50d0e48026aeb23250c93265a474eb2733f2305c331f13f68345df2cad121038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53aee803000000000000695121025636f288e6a2e950c95a3610af71bbef6bd13ac3ff46d3cd5b0d35aaf6bf36fc21037a346dae4cc0a8cb879584cb957935aa93428060630b0abed3770d58319de65e21038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53ae61d016a80400000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8504,12 +8506,12 @@ Composes a transaction to send multiple payments to multiple addresses. } ``` -### Compose Order [GET /v2/addresses/{address}/compose/order{?give_asset}{&give_quantity}{&get_asset}{&get_quantity}{&expiration}{&fee_required}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Order [GET /v2/addresses/{address}/compose/order{?give_asset}{&give_quantity}{&get_asset}{&get_quantity}{&expiration}{&fee_required}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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 @@ -8524,7 +8526,7 @@ Composes a transaction to place an order on the distributed exchange. + Default: `546` + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output + Default: `1000` - + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + + pubkeys (str, optional) - The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` @@ -8548,8 +8550,6 @@ Composes a transaction to place an order on the distributed exchange. + Default: `None` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` - + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) - + Default: `False` + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + Default: `False` + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction @@ -8569,7 +8569,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8586,7 +8586,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -8600,7 +8600,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999982734, "btc_fee": 17266, - "rawtransaction": "02000000000101b11ecb7d27a67136cf85b41c0f1746dd57d2d3a7dc6f554bc5130e8e6df7169c00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000356a3319a3789259879ad196f221e476cd6b47f56525ba5f07aad19e73110a5418e71eb4f883438237b5ca0614a9721c1168c74ebf718eae052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "020000000001016bb7fc25808190b208c7dee271094aa0043a6a1115ee3a5a4dd815e4fb562dad0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000356a33785afb04d6d852d87fb2a584ccd9fa32c43efbcf88f97f71c6287280dc1cca56e96c428ce017a2b255f178b9d53bdba5b8bde48eae052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8612,13 +8612,13 @@ Composes a transaction to place an order on the distributed exchange. } ``` -### Compose Send [GET /v2/addresses/{address}/compose/send{?destination}{&asset}{&quantity}{&memo}{&memo_is_hex}{&use_enhanced_send}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Send [GET /v2/addresses/{address}/compose/send{?destination}{&asset}{&quantity}{&memo}{&memo_is_hex}{&use_enhanced_send}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to send a quantity of an asset to another address. + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (str, required) - The address that will be receiving the asset + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (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 @@ -8635,7 +8635,7 @@ Composes a transaction to send a quantity of an asset to another address. + Default: `546` + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output + Default: `1000` - + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + + pubkeys (str, optional) - The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` @@ -8659,8 +8659,6 @@ Composes a transaction to send a quantity of an asset to another address. + Default: `None` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` - + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) - + Default: `False` + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + Default: `False` + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction @@ -8680,8 +8678,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8697,12 +8695,12 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880a4ca4c30f02016b9d3311b06228bced4605a672d", + "data": "434e54525052545902000000000000000100000000000003e880a34288aaa16cb6a9c7065f6fedddf0f15f400ec9", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983077, "btc_fee": 16923, - "rawtransaction": "0200000000010158fd1f796df7fea46698bc263a2bd7d424a85d2816510bbdf826be021fab04b400000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000306a2eb06e3c72eb8372859fd223c26c9d6538ae59c8ef14c9d7e98aeb1dd484f73a501c37c81e4d761d5eb3cc7b4cc11ae5af052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "02000000000101583853bdbca05f1cdf88aa192b5724cd3c1d8943b14521aa3e16e452c1140ebc0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000306a2ea68afc5bb95bc1f3c8552f311d0fa507ad98eae55ec7547df98ecf025cd6a9575a98771a161e046bebe05c4c39afe5af052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8714,13 +8712,13 @@ Composes a transaction to send a quantity of an asset to another address. } ``` -### Compose Sweep [GET /v2/addresses/{address}/compose/sweep{?destination}{&flags}{&memo}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Sweep [GET /v2/addresses/{address}/compose/sweep{?destination}{&flags}{&memo}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to Sends all assets and/or transfer ownerships to a destination address. + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address that will be sending - + destination: `bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address that will be sending + + destination: `bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (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 @@ -8731,7 +8729,7 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti + Default: `546` + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output + Default: `1000` - + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + + pubkeys (str, optional) - The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` @@ -8755,8 +8753,6 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti + Default: `None` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` - + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) - + Default: `False` + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + Default: `False` + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction @@ -8776,18 +8772,18 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480a4ca4c30f02016b9d3311b06228bced4605a672d07ffff", + "data": "434e5452505254590480a34288aaa16cb6a9c7065f6fedddf0f15f400ec907ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "02000000000101e28bddd16c488955c1574a8b910920bed71e94cb3424549cfada1dffbf92f4a600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000236a21c6f0014bed1dbb0c63e5c6f4ab9b62aaf1cf8f29b6e1347e7e1b6f9c483a599eaf60b3052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "02000000000101c13a33a55cc4da0d2015c90055619d8f698bd233a8932626abe7fb410f6d728f0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000236a21f5683d8a2a94cc1d0a114e32e61328b41906dc7a99c1e01fc32a5610f42873b3c660b3052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8799,13 +8795,13 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti } ``` -### Compose Dispense [GET /v2/addresses/{address}/compose/dispense{?dispenser}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Dispense [GET /v2/addresses/{address}/compose/dispense{?dispenser}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to send BTC to a dispenser. + Parameters - + address: `bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj` (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` @@ -8815,7 +8811,7 @@ Composes a transaction to send BTC to a dispenser. + Default: `546` + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output + Default: `1000` - + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + + pubkeys (str, optional) - The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` @@ -8839,8 +8835,6 @@ Composes a transaction to send BTC to a dispenser. + Default: `None` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` - + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) - + Default: `False` + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + Default: `False` + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction @@ -8860,8 +8854,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "quantity": 1000 }, "name": "dispense", @@ -8870,7 +8864,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949850214, "btc_fee": 16786, - "rawtransaction": "020000000001014965c1a1198d4641adae38c943e3eb0a22e72ee50bc76254283cee7633bc6ca902000000160014a4ca4c30f02016b9d3311b06228bced4605a672dffffffff03e803000000000000160014fcd4fef91bbb7752401bda00950d4c9047d0402800000000000000000c6a0a184253a54004e9393cb266b8082701000000160014a4ca4c30f02016b9d3311b06228bced4605a672d02000000000000", + "rawtransaction": "02000000000101ff2c684a2b3d82813b501e504a4ec3237268859122c8b8d44cc928038298d9a002000000160014a34288aaa16cb6a9c7065f6fedddf0f15f400ec9ffffffff03e803000000000000160014c4fb36b92d4e34760a7faccb00cc7340befb180900000000000000000c6a0ac4557a1a4ec1b4698b2d66b8082701000000160014a34288aaa16cb6a9c7065f6fedddf0f15f400ec902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8882,12 +8876,12 @@ Composes a transaction to send BTC to a dispenser. } ``` -### Compose Fairminter [GET /v2/addresses/{address}/compose/fairminter{?asset}{&asset_parent}{&price}{&quantity_by_price}{&max_mint_per_tx}{&hard_cap}{&premint_quantity}{&start_block}{&end_block}{&soft_cap}{&soft_cap_deadline_block}{&minted_asset_commission}{&burn_payment}{&lock_description}{&lock_quantity}{&divisible}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Fairminter [GET /v2/addresses/{address}/compose/fairminter{?asset}{&asset_parent}{&price}{&quantity_by_price}{&max_mint_per_tx}{&hard_cap}{&premint_quantity}{&start_block}{&end_block}{&soft_cap}{&soft_cap_deadline_block}{&minted_asset_commission}{&burn_payment}{&lock_description}{&lock_quantity}{&divisible}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address that will be issuing the asset + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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: `` @@ -8929,7 +8923,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. + Default: `546` + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output + Default: `1000` - + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + + pubkeys (str, optional) - The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` @@ -8953,8 +8947,6 @@ Composes a transaction to issue a new asset using the FairMinter protocol. + Default: `None` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` - + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) - + Default: `False` + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + Default: `False` + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction @@ -8974,7 +8966,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -8999,7 +8991,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999983008, "btc_fee": 16992, - "rawtransaction": "020000000001019e7e0c7349c31042c37817864ed04394eac047ee9791b172aa8a14fdf4c19a3200000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000316a2fac7eeb583600812eb6b1631a16d1b0a7a79a75c30ea39c7e1a59e3bb4504cc2552cc44343fccc2fd7d3bf2b05dc63ca0af052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "02000000000101edba6678b60b30b896b07bab835b2d27bff4f1a2ef3b0c85fa9d8d509f52fcf70000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000316a2fbc78ad6877f92c6c9063a5baac60ccec90497166faa0e149f52233bcb3765d0c14e4506413953908cdfd54360727a2a0af052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9011,12 +9003,12 @@ Composes a transaction to issue a new asset using the FairMinter protocol. } ``` -### Compose Fairmint [GET /v2/addresses/{address}/compose/fairmint{?asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Fairmint [GET /v2/addresses/{address}/compose/fairmint{?asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to mint a quantity of an asset using the FairMinter protocol. + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address that will be minting the asset + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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` @@ -9028,7 +9020,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto + Default: `546` + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output + Default: `1000` - + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + + pubkeys (str, optional) - The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` @@ -9052,8 +9044,6 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto + Default: `None` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` - + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) - + Default: `False` + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + Default: `False` + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction @@ -9073,13 +9063,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -9091,7 +9081,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999984858, "btc_fee": 15142, - "rawtransaction": "02000000000101513e585d94693e2e265a99bfab48141b717dfd8dc5193ae57381d547ca8fdff100000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000166a147fee4a8479e15755f753a1cdf924b8686d02c8aadab6052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "02000000000101d8db8bab8b2eaf45e73ae61cf0e4ad3217dca2cda44ed3beaaf3fbd8503874850000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000166a148520f4de8ca9160dae71e4febe1a279bc99d6ad3dab6052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9103,15 +9093,15 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto } ``` -### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address from which the assets are attached + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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: `e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84:1` (str, optional) - The utxo to attach the assets to + + destination: `42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9121,7 +9111,7 @@ Composes a transaction to attach assets from an address to UTXO. + Default: `546` + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output + Default: `1000` - + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + + pubkeys (str, optional) - The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` @@ -9145,8 +9135,6 @@ Composes a transaction to attach assets from an address to UTXO. + Default: `None` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` - + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) - + Default: `False` + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + Default: `False` + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction @@ -9166,8 +9154,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84:1", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9180,12 +9168,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713476773270787230753579306b64637474796d3364396d7a6b636567657971767a6c766a646a7c653461663864363533376631363536383430666638306231653865643432383061373333653434313563333739386632313862656438616634396337326138343a317c5843507c31303030", + "data": "434e5452505254596462637274317132746a67356670716d6864353635336561653834703864663564396c37616d366c61746e6d737c343233353165336263373537343737303430656461633231626163323031623732663735633863356438633139383163363338663061653966396533636130663a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999905256, "btc_fee": 91744, - "rawtransaction": "0200000000010619b635802d062e0f54a0efad67febe746729b3a19c63be03b892f9d66f30e70600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffffaba7e0a56b0cf395747c347a0af12e121a0a8e9f109cd9d78140cf79ccd8e32b00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff36b4a050a5ef3a4860409e9a7d5cd38863eb73f175b0889fa20deb5ba828db3200000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffffad6296b39c4da592264107716b06741fd5f6b6f664432fe3e22765000887fbad00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff11c4a709f74556931b448f065eb8221414d357d1eec183199f6c5e8ea70a2e3e00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff99421d7eb985e931b30f5f4ed605cedfad817c6a114c92125ac753ccf364c78600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff04e80300000000000069512102e19b774312551ce9ad05c7ad52649b8cc1bf8bbaed53b3f8237c4e12a4ae0dc72102e19bfbce5819425ee7375de33c47f748b619ef29b6067a8e7bd57a6ff1e62892210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253aee80300000000000069512103e19b774312551ce9ad5496f946219cc8c3f1c8b8fb4df9f83478521aaaae5a912102a7d7b2c25c4e4856a9680fb33811b900f805b16ee400759626807d3df0e1290a210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253aee80300000000000069512103cb9b774312551ce9ad53c4f6142a9b81ad8aacf4ac1bf1f856493722cfca6ed4210395ef82a36b7d7b339d5c3e865b228e39c063835fdc6210f21ee11b09c9821ef2210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253aee83922fc06000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000002000002000002000002000002000000000000", + "rawtransaction": "020000000001065d9d5d90602ef0c63cb5c2f71c7207444cfd796ffca66aefdaa9695d50103d790000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff24919df9818f2c23b2c17a43c1eacaf7901ee30d5a484b7c1dbff0890add1bc90000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff960d83f080a9bdef42307111b9cffda8333e9a0a370885b4fc04f981e47107450000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff7ec16616b32c7d5dee428c48e00c530e88d847cf523531cceb4156ba9c835ab20000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffffb9c801d65b42082b83c53cd94b6a23e75bfff63c8bc0f4cc461a7fcc40f3e34d0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff56ea4b7bea9f3325571561e9a5dd52b5d0ab9ef0597ba27739e9f6cefcdabb940000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff04e80300000000000069512102c21d5b917e87e3c707f56838bbb4a555358a3acd795502d40b60e5924b4c187a21030565a6c1e374202dc5c9d9121b372d2fef734dc230371b16b84f3c675a4e34a021038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53aee80300000000000069512102c21d5b917e87e3c707f3696cfcf7a01330ce649a295713c65439e3c61e4b1b3021025166f4cbb1332d2a9b9f884f4f637d7be12e4f806d620e5aed183634524e340321038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53aee80300000000000069512103e81d5b917e87e3c707f26b6baffaa5585fbd00d67d034295660881a77d792b4521026004c3f9d7041849a3fcbd2b77004c42d91f2cb65e5a686a8c7d0f526b2b07c221038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53aee83922fc0600000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9197,13 +9185,13 @@ Composes a transaction to attach assets from an address to UTXO. } ``` -### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?destination}{&asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&accept_missing_params}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?destination}{&asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a:1` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to detach the assets to + + utxo: `ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6:1` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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 @@ -9214,7 +9202,7 @@ Composes a transaction to detach assets from UTXO to an address. + Default: `546` + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output + Default: `1000` - + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + + pubkeys (str, optional) - The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` @@ -9238,8 +9226,6 @@ Composes a transaction to detach assets from UTXO to an address. + Default: `None` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` - + accept_missing_params (bool, optional) - Accept missing parameters with no default value (True by default for API v1) - + Default: `False` + return_psbt (bool, optional) - (API v2 only) Construct a PSBT instead of a raw transaction hex + Default: `False` + return_only_data (bool, optional) - (API v2 only) Return only the data part of the transaction @@ -9259,8 +9245,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a:1", - "destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6:1", + "destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9273,12 +9259,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964323161393730363531303137313234303438306234303362643834363637333434313264633262363839326630643065666666613364333165613261383137613a317c6263727431713476773270787230753579306b64637474796d3364396d7a6b636567657971767a6c766a646a7c5843507c31303030", + "data": "434e54525052545964616239356165663730393934303131363336633463663561366234393365363262613835623665653664616435363030373366373633373037323263616563363a317c62637274317132746a67356670716d6864353635336561653834703864663564396c37616d366c61746e6d737c5843507c31303030", "btc_in": 4949874900, "btc_out": 3000, "btc_change": 4949842164, "btc_fee": 29736, - "rawtransaction": "020000000001017a812aea313dfaff0e0d2f89b6c22d41346746d83b400b48401217106570a9210100000016001420582a98a28bc63ae45a15b698c57e26fa1be207ffffffff04e80300000000000069512102bf70627fbbd9cc3fc3554a55fd6784c5c5dc1c67645ca0da21af49f034ba20342102738249874b5b409468101cc4006c6585fa1ed00d843437ab5ddbf5814ea3788d2103f746dcb4e4f134685e58226c4d3c6e8be7ab705636aac838644a8adba0b8d0b653aee80300000000000069512103bf70627fbbd9cc3fc3021c57ad3bd2c792d11c603451a09477fc0fbc35a9204d210335c619930b1d46d76a5a189b553d7592b111d551846b2bf05a8ef78251b46f672103f746dcb4e4f134685e58226c4d3c6e8be7ab705636aac838644a8adba0b8d0b653aee803000000000000695121029570627fbbd9cc3fc34b1412f63ad989abaa7d2b645ba1d8159f7dc804d8142e210343b12be3736f76a25f2328f0315e01e6c87ce635bd06519b39eb90e728c519b12103f746dcb4e4f134685e58226c4d3c6e8be7ab705636aac838644a8adba0b8d0b653aef49808270100000016001420582a98a28bc63ae45a15b698c57e26fa1be20702000000000000", + "rawtransaction": "02000000000101c6ae2c727063f7730056ad6deeb685ba623e496b5acfc43616019409f7ae95ab01000000160014f8caf7a9624245ce6d99873e6a23fae0cea1ba18ffffffff04e80300000000000069512102906ba90f50b7c69a6996b9ae8a8bc3f5b011eb413ef6533720c6146e82ec58a321028ed7b4e539ac78f91700a87cb9982e5cb9e5aa0df423a047545b5d806495b2fc2103f654d28f2d46209875e943be3d1b1b665651813787556caecbd1c8b9e2c71c4e53aee80300000000000069512103906ba90f50b7c69a69c4ebfb838990a2b547be1b31f8527a7393552cd0a9099e21039c88b2e63de830a71a52af28ed937e5feab8fb4ba826a24706520180369eb3b42103f654d28f2d46209875e943be3d1b1b665651813787556caecbd1c8b9e2c71c4e53aee80300000000000069512103ba6ba90f50b7c69a699eb9b8ddd3d1ec8e658b0436f2533611f02758e1d83b6d2103e8e2d5d35b9841ca72369a1ed8a01b3e8f80cf3b9042c472626b6db757f385b12103f654d28f2d46209875e943be3d1b1b665651813787556caecbd1c8b9e2c71c4e53aef498082701000000160014f8caf7a9624245ce6d99873e6a23fae0cea1ba1802000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9333,8 +9319,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 10000000000, @@ -9342,16 +9328,16 @@ Returns the valid assets "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727031579, - "last_issuance_block_time": 1727031596, + "first_issuance_block_time": 1727079860, + "last_issuance_block_time": 1727079868, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", - "owner": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", + "issuer": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", + "owner": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", "divisible": true, "locked": false, "supply": 100000000000, @@ -9359,16 +9345,16 @@ Returns the valid assets "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1727031574, - "last_issuance_block_time": 1727031574, + "first_issuance_block_time": 1727079855, + "last_issuance_block_time": 1727079855, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 100000000000, @@ -9376,16 +9362,16 @@ Returns the valid assets "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727031540, - "last_issuance_block_time": 1727031540, + "first_issuance_block_time": 1727079822, + "last_issuance_block_time": 1727079822, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 40, @@ -9393,16 +9379,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727031489, - "last_issuance_block_time": 1727031494, + "first_issuance_block_time": 1727079772, + "last_issuance_block_time": 1727079776, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 19, @@ -9410,8 +9396,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727031472, - "last_issuance_block_time": 1727031485, + "first_issuance_block_time": 1727079755, + "last_issuance_block_time": 1727079767, "supply_normalized": "0.00000019" } ], @@ -9439,8 +9425,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 10000000000, @@ -9448,8 +9434,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1727031435, - "last_issuance_block_time": 1727031448, + "first_issuance_block_time": 1727079718, + "last_issuance_block_time": 1727079731, "supply_normalized": "100.00000000" } } @@ -9480,7 +9466,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9488,14 +9474,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9503,7 +9489,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -9520,7 +9506,7 @@ Returns the asset balances Returns the balance of an address and asset + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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` @@ -9532,7 +9518,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -9581,9 +9567,9 @@ Returns the orders of an asset "result": [ { "tx_index": 57, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9598,7 +9584,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727031738, + "block_time": 1727080022, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9624,9 +9610,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "block_index": 190, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9641,7 +9627,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727031724, + "block_time": 1727080007, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9667,9 +9653,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "tx_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "block_index": 186, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -9684,7 +9670,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727031707, + "block_time": 1727079980, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9710,9 +9696,9 @@ Returns the orders of an asset }, { "tx_index": 50, - "tx_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "tx_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "block_index": 185, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -9727,7 +9713,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727031703, + "block_time": 1727079976, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9753,9 +9739,9 @@ Returns the orders of an asset }, { "tx_index": 49, - "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", "block_index": 186, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9770,7 +9756,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727031707, + "block_time": 1727079980, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9830,13 +9816,13 @@ Returns the orders of an asset { "result": [ { - "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "tx0_index": 49, - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 52, - "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", - "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -9850,7 +9836,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727031707, + "block_time": 1727079980, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9870,13 +9856,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "tx0_index": 49, - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 50, - "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", - "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -9890,7 +9876,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727031703, + "block_time": 1727079976, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9910,13 +9896,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", "tx0_index": 47, - "tx0_hash": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 48, - "tx1_hash": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", - "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "tx1_hash": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -9930,7 +9916,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727031616, + "block_time": 1727079898, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10010,20 +9996,20 @@ Returns the credits of an asset "result": [ { "block_index": 192, - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -10031,20 +10017,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "233dc7165588f359608bc62642e47111d3bfbf33f36cce0c33ba1a62b65c49d3", + "event": "aba09e8187e96520b24e280f230363e20f8f4b7a2c1f87395b3b7c4e5ccccd4a", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031448, + "block_time": 1727079731, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -10052,20 +10038,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144", + "event": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031444, + "block_time": 1727079726, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -10073,20 +10059,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", + "event": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031444, + "block_time": 1727079726, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -10098,16 +10084,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144", + "event": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031444, + "block_time": 1727079726, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -10163,16 +10149,16 @@ Returns the debits of an asset "result": [ { "block_index": 193, - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "event": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -10184,16 +10170,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -10205,16 +10191,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -10226,16 +10212,16 @@ Returns the debits of an asset }, { "block_index": 191, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "event": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031738, + "block_time": 1727080022, "asset_info": { "divisible": true, "asset_longname": null, @@ -10247,16 +10233,16 @@ Returns the debits of an asset }, { "block_index": 189, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031720, + "block_time": 1727079993, "asset_info": { "divisible": true, "asset_longname": null, @@ -10296,20 +10282,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 40, - "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", + "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", "block_index": 153, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727031565, + "block_time": 1727079846, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -10353,14 +10339,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "233dc7165588f359608bc62642e47111d3bfbf33f36cce0c33ba1a62b65c49d3", + "tx_hash": "aba09e8187e96520b24e280f230363e20f8f4b7a2c1f87395b3b7c4e5ccccd4a", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -10375,20 +10361,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727031448, + "block_time": 1727079731, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144", + "tx_hash": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -10403,20 +10389,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727031444, + "block_time": 1727079726, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", + "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -10431,20 +10417,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727031440, + "block_time": 1727079722, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -10459,7 +10445,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1727031435, + "block_time": 1727079718, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10493,10 +10479,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10504,7 +10490,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "divisible": true, "asset_longname": null, @@ -10517,10 +10503,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 53, - "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763", + "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68", "block_index": 187, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10528,7 +10514,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031711, + "block_time": 1727079984, "asset_info": { "divisible": true, "asset_longname": null, @@ -10541,10 +10527,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 42, - "tx_hash": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", + "tx_hash": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", "block_index": 155, - "source": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1:0", - "destination": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a:1", + "source": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9:0", + "destination": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10552,7 +10538,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031574, + "block_time": 1727079855, "asset_info": { "divisible": true, "asset_longname": null, @@ -10565,10 +10551,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 41, - "tx_hash": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1", + "tx_hash": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9", "block_index": 154, - "source": "db0f9118b55250f75e4c301deb8008e4e0f5f440d1b843264992ce00dd293803:0", - "destination": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1:0", + "source": "1e8a7f0d682c559f76df39d59c42e226bb21b74c4825ebc69640eb61dab672ec:0", + "destination": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10576,7 +10562,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031570, + "block_time": 1727079851, "asset_info": { "divisible": true, "asset_longname": null, @@ -10625,18 +10611,18 @@ Returns the dispensers of an asset "result": [ { "tx_index": 32, - "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "last_status_tx_hash": null, - "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10646,7 +10632,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727031536, + "block_time": 1727079818, "asset_info": { "divisible": true, "asset_longname": null, @@ -10662,9 +10648,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", + "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", "block_index": 144, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10673,7 +10659,7 @@ Returns the dispensers of an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10683,7 +10669,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031527, + "block_time": 1727079809, "asset_info": { "divisible": true, "asset_longname": null, @@ -10699,9 +10685,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "d3bbef12243451e8ad3a4da485b4b206a0fa90300424e3639deb554c3b73301a", + "tx_hash": "b16d62f7019440d104a33daf489474a166d0013d0fe9cdd515da181e91bf44aa", "block_index": 142, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10710,7 +10696,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "origin": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10720,7 +10706,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031518, + "block_time": 1727079802, "asset_info": { "divisible": true, "asset_longname": null, @@ -10736,9 +10722,9 @@ Returns the dispensers of an asset }, { "tx_index": 26, - "tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10747,7 +10733,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10757,7 +10743,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -10782,7 +10768,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - The address to return + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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` @@ -10795,9 +10781,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", + "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", "block_index": 144, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10806,7 +10792,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10816,7 +10802,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031527, + "block_time": 1727079809, "asset_info": { "divisible": true, "asset_longname": null, @@ -10866,7 +10852,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -10874,7 +10860,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -10883,7 +10869,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -10891,7 +10877,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -10900,7 +10886,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -10908,7 +10894,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -10917,7 +10903,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -10954,27 +10940,27 @@ Returns the dispenses of an asset { "tx_index": 33, "dispense_index": 0, - "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", - "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "last_status_tx_hash": null, - "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10989,7 +10975,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727031536, + "block_time": 1727079818, "asset_info": { "divisible": true, "asset_longname": null, @@ -11003,19 +10989,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", + "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11023,7 +11009,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11038,7 +11024,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -11052,19 +11038,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", + "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", "block_index": 140, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11072,7 +11058,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11087,7 +11073,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031510, + "block_time": 1727079793, "asset_info": { "divisible": true, "asset_longname": null, @@ -11130,8 +11116,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 0, @@ -11139,8 +11125,8 @@ Returns asset subassets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1727031593, - "last_issuance_block_time": 1727031593, + "first_issuance_block_time": 1727079864, + "last_issuance_block_time": 1727079864, "supply_normalized": "0.00000000" } ], @@ -11172,10 +11158,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11200,7 +11186,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727031448 + "block_time": 1727079731 } ], "next_cursor": null, @@ -11231,64 +11217,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "233dc7165588f359608bc62642e47111d3bfbf33f36cce0c33ba1a62b65c49d3", + "tx_hash": "aba09e8187e96520b24e280f230363e20f8f4b7a2c1f87395b3b7c4e5ccccd4a", "tx_index": 13, "block_index": 125, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", - "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031448, + "block_time": 1727079731, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } }, { - "tx_hash": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144", + "tx_hash": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153", "tx_index": 12, "block_index": 124, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", - "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031444, + "block_time": 1727079726, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } }, { - "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", + "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031440, + "block_time": 1727079722, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } @@ -11304,7 +11290,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d` (str, required) - The address of the mints to return + + address: `bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (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` @@ -11323,22 +11309,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", + "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031440, + "block_time": 1727079722, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } @@ -11382,9 +11368,9 @@ Returns all the orders "result": [ { "tx_index": 57, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11399,7 +11385,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727031738, + "block_time": 1727080022, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11425,9 +11411,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "block_index": 190, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11442,7 +11428,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727031724, + "block_time": 1727080007, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11468,9 +11454,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "tx_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "block_index": 186, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11485,7 +11471,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727031707, + "block_time": 1727079980, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11511,9 +11497,9 @@ Returns all the orders }, { "tx_index": 50, - "tx_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "tx_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "block_index": 185, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11528,7 +11514,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727031703, + "block_time": 1727079976, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11554,9 +11540,9 @@ Returns all the orders }, { "tx_index": 49, - "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", "block_index": 186, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11571,7 +11557,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727031707, + "block_time": 1727079980, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11606,7 +11592,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d` (str, required) - The hash of the transaction that created the order + + order_hash: `42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f` (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. @@ -11618,9 +11604,9 @@ Returns the information of an order { "result": { "tx_index": 57, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11635,7 +11621,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727031738, + "block_time": 1727080022, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11667,7 +11653,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a` (str, required) - The hash of the transaction that created the order + + order_hash: `f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d` (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 @@ -11692,13 +11678,13 @@ Returns the order matches of an order { "result": [ { - "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "tx0_index": 49, - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 52, - "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", - "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11712,7 +11698,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727031707, + "block_time": 1727079980, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11732,13 +11718,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "tx0_index": 49, - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 50, - "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", - "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11752,7 +11738,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727031703, + "block_time": 1727079976, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11782,7 +11768,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a` (str, required) - The hash of the transaction that created the order + + order_hash: `f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d` (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 @@ -11801,15 +11787,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 51, - "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", + "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", "block_index": 185, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "btc_amount": 2000, - "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "status": "valid", "confirmed": true, - "block_time": 1727031703, + "block_time": 1727079976, "btc_amount_normalized": "0.00002000" } ], @@ -11851,9 +11837,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 57, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11871,7 +11857,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727031738, + "block_time": 1727080022, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11897,9 +11883,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "block_index": 190, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11917,7 +11903,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727031724, + "block_time": 1727080007, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11943,9 +11929,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "tx_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "block_index": 186, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11963,7 +11949,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727031707, + "block_time": 1727079980, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11989,9 +11975,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "tx_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "block_index": 185, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12009,7 +11995,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727031703, + "block_time": 1727079976, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12035,9 +12021,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", "block_index": 186, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12055,7 +12041,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727031707, + "block_time": 1727079980, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12116,13 +12102,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "tx0_index": 49, - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 52, - "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", - "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12139,7 +12125,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727031707, + "block_time": 1727079980, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12159,13 +12145,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "tx0_index": 49, - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 50, - "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", - "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12182,7 +12168,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727031703, + "block_time": 1727079976, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12202,13 +12188,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", "tx0_index": 47, - "tx0_hash": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 48, - "tx1_hash": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", - "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "tx1_hash": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12225,7 +12211,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727031616, + "block_time": 1727079898, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12281,13 +12267,13 @@ Returns all the order matches { "result": [ { - "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "tx0_index": 49, - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 52, - "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", - "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12301,7 +12287,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727031707, + "block_time": 1727079980, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12321,13 +12307,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "tx0_index": 49, - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 50, - "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", - "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12341,7 +12327,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727031703, + "block_time": 1727079976, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12361,13 +12347,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", "tx0_index": 47, - "tx0_hash": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 48, - "tx1_hash": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", - "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "tx1_hash": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12381,7 +12367,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727031616, + "block_time": 1727079898, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12549,66 +12535,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "6428abb0788142a72920efd1a8b5dcdde89c7f503ca062322bcd573acac0e136", + "tx_hash": "913a6e309d29d939a9b42c5b239eda58fd12b57ab1aefd856fe908cc2f03c87a", "block_index": 121, - "source": "bcrt1qyqvw64v3g6jjw0hkydjnz03emknd689c9m445j", + "source": "bcrt1qtlpkqnw458wcn6ggjgl0qhncr5azj57dwx79c9", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1727031432, + "block_time": 1727079713, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "44f44f9f98d05d9ff88e87c42eebe0b002a603f79c116708ea623c2f8c5cb313", + "tx_hash": "23ad1009c59d686328df3821813909176348ca6e1e56cb7b202e128adf338560", "block_index": 120, - "source": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", + "source": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1727031428, + "block_time": 1727079709, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "1e79447843eb5dc9086921e2ded16a84c3271e35d5fe01b149623a4276548de1", + "tx_hash": "4ca2ca199b3ee04e12640955c1b53d6b89ba9df69be6685d3c6d0444a9a4eb1e", "block_index": 119, - "source": "bcrt1qtfj6sgngh8qduq9cl5kqdxwjvjdtfprgxr0re6", + "source": "bcrt1qkwr9w42qzvnq5xgc696j57z7t2pe4tmzmx2nje", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1727031423, + "block_time": 1727079705, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "8619c6ed6633efdb103fc7b72e015e8d9ef017415f20f8778c96116c9766c4ed", + "tx_hash": "35289688c8de88663730c5b8f2f6842ad3fb0dc4cdfe162ba089a104bc04d407", "block_index": 118, - "source": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", + "source": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1727031419, + "block_time": 1727079701, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "d96a0715d3e1a34ea51ca28ce1b475e299ee9a2fd28e2d7955e84b61c541ebd5", + "tx_hash": "324e90e34ddcca760891986a9243dedfbec99c1df8c445016da9df08c1fd821d", "block_index": 117, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1727031415, + "block_time": 1727079697, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12651,18 +12637,18 @@ Returns all dispensers "result": [ { "tx_index": 32, - "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "last_status_tx_hash": null, - "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -12672,7 +12658,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727031536, + "block_time": 1727079818, "asset_info": { "divisible": true, "asset_longname": null, @@ -12688,9 +12674,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", + "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", "block_index": 144, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -12699,7 +12685,7 @@ Returns all dispensers "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12709,7 +12695,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031527, + "block_time": 1727079809, "asset_info": { "divisible": true, "asset_longname": null, @@ -12725,9 +12711,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "d3bbef12243451e8ad3a4da485b4b206a0fa90300424e3639deb554c3b73301a", + "tx_hash": "b16d62f7019440d104a33daf489474a166d0013d0fe9cdd515da181e91bf44aa", "block_index": 142, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12736,7 +12722,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "origin": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12746,7 +12732,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031518, + "block_time": 1727079802, "asset_info": { "divisible": true, "asset_longname": null, @@ -12762,9 +12748,9 @@ Returns all dispensers }, { "tx_index": 26, - "tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12773,7 +12759,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12783,7 +12769,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -12808,7 +12794,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6` (str, required) - The hash of the dispenser to return + + dispenser_hash: `ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9` (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. @@ -12820,9 +12806,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12831,7 +12817,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12841,7 +12827,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -12863,7 +12849,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6` (str, required) - The hash of the dispenser to return + + dispenser_hash: `ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9` (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 @@ -12883,19 +12869,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", + "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12903,7 +12889,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12918,7 +12904,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -12932,19 +12918,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", + "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", "block_index": 140, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12952,7 +12938,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12967,7 +12953,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031510, + "block_time": 1727079793, "asset_info": { "divisible": true, "asset_longname": null, @@ -13009,20 +12995,20 @@ Returns all the dividends "result": [ { "tx_index": 40, - "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", + "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", "block_index": 153, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727031565, + "block_time": 1727079846, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -13047,7 +13033,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa` (str, required) - The hash of the dividend to return + + dividend_hash: `311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba` (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. @@ -13059,20 +13045,20 @@ Returns a dividend by its hash { "result": { "tx_index": 40, - "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", + "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", "block_index": 153, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727031565, + "block_time": 1727079846, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -13094,7 +13080,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba` (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 @@ -13117,12 +13103,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", + "event": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", "tx_index": 40, - "utxo": "db0f9118b55250f75e4c301deb8008e4e0f5f440d1b843264992ce00dd293803:0", - "utxo_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "utxo": "1e8a7f0d682c559f76df39d59c42e226bb21b74c4825ebc69640eb61dab672ec:0", + "utxo_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "confirmed": true, - "block_time": 1727031565, + "block_time": 1727079846, "asset_info": { "divisible": true, "asset_longname": null, @@ -13134,16 +13120,16 @@ Returns a dividend distribution by its hash }, { "block_index": 153, - "address": "bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0", + "address": "bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", + "event": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031565, + "block_time": 1727079846, "asset_info": { "divisible": true, "asset_longname": null, @@ -13189,27 +13175,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", - "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", + "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", + "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", "transaction_count": 1, - "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", - "block_time": 1727031747 + "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", + "block_time": 1727080029 }, "tx_hash": null, "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "tx_index": 59 }, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 }, { "event_index": 533, @@ -13218,12 +13204,12 @@ Returns all events "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "status": "valid", "tag": "64657374726f79", - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "tx_index": 59, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -13233,24 +13219,24 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 193, - "event": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "event": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -13260,25 +13246,25 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", "block_index": 193, - "block_time": 1727031747, + "block_time": 1727080029, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "tx_index": 59, - "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", + "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -13298,9 +13284,9 @@ Returns all events }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 } ], "next_cursor": 530, @@ -13328,15 +13314,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", - "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", + "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", + "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", "transaction_count": 1, - "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", - "block_time": 1727031747 + "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", + "block_time": 1727080029 }, "tx_hash": null, "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 } } ``` @@ -13414,16 +13400,16 @@ Returns the events filtered by event name "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -13433,78 +13419,78 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727031724, + "block_time": 1727080007, "asset_info": { "divisible": true, "asset_longname": null, @@ -13514,24 +13500,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "block_index": 190, - "block_time": 1727031724 + "block_time": 1727080007 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "event": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "divisible": true, "asset_longname": null, @@ -13541,9 +13527,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "block_time": 1727031716 + "block_time": 1727079989 } ], "next_cursor": 490, @@ -13599,27 +13585,27 @@ Returns all the dispenses { "tx_index": 33, "dispense_index": 0, - "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", - "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "last_status_tx_hash": null, - "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13634,7 +13620,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727031536, + "block_time": 1727079818, "asset_info": { "divisible": true, "asset_longname": null, @@ -13648,19 +13634,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", + "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13668,7 +13654,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13683,7 +13669,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -13697,19 +13683,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", + "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", "block_index": 140, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13717,7 +13703,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13732,7 +13718,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031510, + "block_time": 1727079793, "asset_info": { "divisible": true, "asset_longname": null, @@ -13774,10 +13760,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -13785,7 +13771,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "divisible": true, "asset_longname": null, @@ -13798,10 +13784,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13809,11 +13795,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -13822,10 +13808,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13833,11 +13819,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -13846,10 +13832,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 53, - "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763", + "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68", "block_index": 187, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -13857,7 +13843,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031711, + "block_time": 1727079984, "asset_info": { "divisible": true, "asset_longname": null, @@ -13870,10 +13856,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 42, - "tx_hash": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", + "tx_hash": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", "block_index": 155, - "source": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1:0", - "destination": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a:1", + "source": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9:0", + "destination": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -13881,7 +13867,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031574, + "block_time": 1727079855, "asset_info": { "divisible": true, "asset_longname": null, @@ -13923,14 +13909,14 @@ Returns all the issuances "result": [ { "tx_index": 46, - "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", + "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -13945,20 +13931,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031601, + "block_time": 1727079873, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "45b68c9ba64fa212a14541b0a2a12205e850ae06f24d5b225f0a5627c23d19e8", + "tx_hash": "ee5b91c03af937b81687cba8cf5de88a889363660243b7f1e3d0721469e82475", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -13973,20 +13959,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727031596, + "block_time": 1727079868, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "f90297d83b71b86f758f716ba6985c3656c2219501bf5577ac2d96103c22be8b", + "tx_hash": "913be4b557b8ae7b33fffad5a68eec87247e587ef1161d91310b90133a1cb304", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -14001,20 +13987,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031593, + "block_time": 1727079864, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "78d87a84a548e802140107907dab0b844c078356f9fcce558b74909d159796a6", + "tx_hash": "c5f0754dd7d1082a77f739c930d90d5684bb394c04a01e9acf2c0a1742b4dc87", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -14029,20 +14015,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031579, + "block_time": 1727079860, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", + "tx_hash": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", - "issuer": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", + "source": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", + "issuer": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", "transfer": false, "callable": false, "call_date": 0, @@ -14057,7 +14043,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031574, + "block_time": 1727079855, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -14072,7 +14058,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b` (str, required) - The hash of the transaction to return + + tx_hash: `1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1` (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. @@ -14084,14 +14070,14 @@ Returns the issuances of a block { "result": { "tx_index": 46, - "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", + "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -14106,7 +14092,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031601, + "block_time": 1727079873, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14138,16 +14124,16 @@ Returns all sweeps "result": [ { "tx_index": 58, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "fee_paid_normalized": "0.00600000" } ], @@ -14161,7 +14147,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703` (str, required) - The hash of the transaction to return + + tx_hash: `52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36` (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. @@ -14174,16 +14160,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 58, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "fee_paid_normalized": "0.00600000" } ], @@ -14217,9 +14203,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06", + "tx_hash": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3", "block_index": 138, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14227,14 +14213,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727031502, + "block_time": 1727079784, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "70bbbef4d727695c9dfe5767a7984c541fa63ee857b8a6f9d4fd484e7e9bb559", + "tx_hash": "7145912710e264e9c5b45407d43bc8fd5318db28c30836a01c4862e2ded179d5", "block_index": 137, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14242,7 +14228,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727031498, + "block_time": 1727079780, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14256,7 +14242,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06` (str, required) - The hash of the transaction to return + + tx_hash: `b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3` (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. @@ -14268,9 +14254,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06", + "tx_hash": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3", "block_index": 138, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14278,7 +14264,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727031502, + "block_time": 1727079784, "fee_fraction_int_normalized": "0.00000000" } } @@ -14308,10 +14294,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", + "tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", "tx_index": 22, "block_index": 135, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14336,13 +14322,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727031489 + "block_time": 1727079772 }, { - "tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", + "tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", "tx_index": 18, "block_index": 131, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14367,13 +14353,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727031472 + "block_time": 1727079755 }, { - "tx_hash": "f0dfc17c191520c1e2ba90abccbcc857553adf8a4e40722685a17b81ff2f781a", + "tx_hash": "569b5d76c793d1fbd773e4c21c313d8d9bd4c08354834bd7fff4de4ba36e79c5", "tx_index": 14, "block_index": 130, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14398,13 +14384,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727031468 + "block_time": 1727079751 }, { - "tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14429,7 +14415,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727031448 + "block_time": 1727079731 } ], "next_cursor": null, @@ -14472,7 +14458,7 @@ Returns the mints by fairminter Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8,bcrt1qtfj6sgngh8qduq9cl5kqdxwjvjdtfprgxr0re6` (str, required) - The addresses to search for + + addresses: `bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj,bcrt1qkwr9w42qzvnq5xgc696j57z7t2pe4tmzmx2nje` (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. @@ -14491,8 +14477,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", - "address": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8" + "txid": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "address": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj" }, { "vout": 2, @@ -14500,8 +14486,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", - "address": "bcrt1qtfj6sgngh8qduq9cl5kqdxwjvjdtfprgxr0re6" + "txid": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", + "address": "bcrt1qkwr9w42qzvnq5xgc696j57z7t2pe4tmzmx2nje" } ], "next_cursor": null, @@ -14514,7 +14500,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m` (str, required) - The address to search for + + address: `bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss` (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 @@ -14530,28 +14516,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" + "tx_hash": "e0fb6c717053ccace6058ea89673a15dff5b190c77211ffd001c4094c8df382a" }, { - "tx_hash": "eabb3b7be615850b99b1401f3f242c8fa8e18d2d0ba58915a003fa589718cf11" + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" }, { - "tx_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f" + "tx_hash": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153" }, { - "tx_hash": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144" + "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68" }, { - "tx_hash": "298f64a8390e187860e44c4d640b7d4d770a5e900ef83d0a97fa86d29f04c158" + "tx_hash": "8ef179e266d7b41d18f9c03097396fe4b3ec9a584925e023130ca6e7104fe97e" }, { - "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763" + "tx_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587" }, { - "tx_hash": "bbf285a2631b2b28d813ffa0d762877fde240e44f671fd4de2212601b2c96180" + "tx_hash": "edcb65463b8df565685e14b28ef3bfb1c6b8a890786da55ad8c98f75aae755dc" }, { - "tx_hash": "c7f128443db9a77d1633ed327ba6bff1a7df40904a0bcc0aeef69925fc748a83" + "tx_hash": "49ef44a3197cb95a81e7d7af2f370d66b6a5aa5e622be34b111129c5c5eb2be9" } ], "next_cursor": null, @@ -14564,7 +14550,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w` (str, required) - The address to search for. + + address: `bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv` (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. @@ -14578,7 +14564,7 @@ Get the oldest transaction for an address. { "result": { "block_index": 7, - "tx_hash": "0695fdf0f969745f89d7923c68582b3d3f4c5e5ec410ab681baddb2ec2c26181" + "tx_hash": "f817a39de71520bece9563e033d9f5a46bac47ca12bf1c5ac954e0ea51113a58" } } ``` @@ -14588,7 +14574,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8` (str, required) - The address to search for + + address: `bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj` (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 @@ -14609,7 +14595,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c" + "txid": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31" } ], "next_cursor": null, @@ -14622,7 +14608,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj` (str, required) - Address to get pubkey for. + + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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. @@ -14634,7 +14620,7 @@ Get pubkey for an address. ``` { - "result": "0303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b132" + "result": "038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c" } ``` @@ -14643,7 +14629,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e` (str, required) - The transaction hash + + tx_hash: `b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527` (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. @@ -14655,7 +14641,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001016cad36f4ab57f2653423ce2e004dcd91065944b0b547f60c13bf64bfea9e4cb20300000000ffffffff020000000000000000226a208f44de3448310d5fa0a8b864c3befe8ba7f95bc61cb57f2a89a1021ab70aac46680b0a2701000000160014fcd4fef91bbb7752401bda00950d4c9047d040280247304402206a051daee11301b981edf77e03e2c58ea1dc1936394e5e3c3a5a10c54527afa702207eb071d141d9508a1fe414b83ba4e3b6aaf09e35fedaf97f335a493674ab69fb012102d0179aa601d1b2caddcfe88c73ca7bf71949d02e3645f85bd050b7b64868f24800000000" + "result": "020000000001018f15e7684083d1f9423c84ed5c4afe1d69ac193d7036a02437756175460496980300000000ffffffff020000000000000000226a20491398ceb53d8e260f4143a231bd8209af9dcb656b81ea7a33cc97a98af87c92680b0a2701000000160014c4fb36b92d4e34760a7faccb00cc7340befb1809024730440220508d1f0f8e8d6ac4cecbe67fb5ef5086ab00963efb24f09e4be2bab5115e1d8f02205dffab35c8ebdd280d22fb55c2ebd0aadef1eca80fb98037e3a94e32222f3b5e01210245711205fa34c28180371a8e6a071cd643ec0f98772bebba59d21b2bf802372100000000" } ``` @@ -14748,26 +14734,26 @@ Returns all mempool events { "result": [ { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "tx_index": 60 } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "memo": null, "quantity": 10000, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "status": "valid", - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "tx_index": 60, "asset_info": { "divisible": true, @@ -14780,19 +14766,19 @@ Returns all mempool events } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "CREDIT", "params": { - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -14804,19 +14790,19 @@ Returns all mempool events } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 193, - "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -14828,27 +14814,27 @@ Returns all mempool events } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727031751.6192584, + "block_time": 1727080033.9107606, "btc_amount": 0, - "data": "0200000000000000010000000000002710806dfffb33ff9bf38009f5261067fd1af98dadcc3c", + "data": "0200000000000000010000000000002710803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc", "destination": "", "fee": 10000, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "tx_index": 60, - "utxos_info": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4:1", + "utxos_info": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "memo": null, "asset_info": { "divisible": true, @@ -14892,19 +14878,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "CREDIT", "params": { - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -14926,7 +14912,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4` (str, required) - The hash of the transaction to return + + tx_hash: `91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47` (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 @@ -14946,26 +14932,26 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "tx_index": 60 } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "memo": null, "quantity": 10000, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "status": "valid", - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "tx_index": 60, "asset_info": { "divisible": true, @@ -14978,19 +14964,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "CREDIT", "params": { - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -15002,19 +14988,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 193, - "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -15026,27 +15012,27 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727031751.6192584, + "block_time": 1727080033.9107606, "btc_amount": 0, - "data": "0200000000000000010000000000002710806dfffb33ff9bf38009f5261067fd1af98dadcc3c", + "data": "0200000000000000010000000000002710803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc", "destination": "", "fee": 10000, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "tx_index": 60, - "utxos_info": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4:1", + "utxos_info": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "memo": null, "asset_info": { "divisible": true, diff --git a/counterparty-core/counterpartycore/lib/api/api_v1.py b/counterparty-core/counterpartycore/lib/api/api_v1.py index ae968a5d00..23db7b123f 100644 --- a/counterparty-core/counterpartycore/lib/api/api_v1.py +++ b/counterparty-core/counterpartycore/lib/api/api_v1.py @@ -572,14 +572,15 @@ def create_method(**kwargs): if "old_style_api" in common_args: old_style_api = common_args["old_style_api"] del common_args["old_style_api"] - common_args["accept_missing_params"] = common_args.get( - "accept_missing_params", True - ) for v2_arg in ["return_only_data", "return_psbt"]: common_args.pop(v2_arg, None) with self.connection_pool.connection() as db: transaction_info = transaction.compose_transaction( - db, name=tx, params=transaction_args, **common_args + db, + name=tx, + params=transaction_args, + accept_missing_params=True, + **common_args, ) if extended_tx_info: return transaction_info diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index d89e5af1bb..48faee6ddb 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -53,10 +53,10 @@ config.DEFAULT_MULTISIG_DUST_SIZE, "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output", ), - "pubkey": ( + "pubkeys": ( str, None, - "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + "The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", ), "allow_unconfirmed_inputs": ( bool, @@ -109,11 +109,6 @@ None, "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", ), - "accept_missing_params": ( - bool, - False, - "Accept missing parameters with no default value (True by default for API v1)", - ), "return_psbt": ( bool, False, diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index c732563c18..732e72f255 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -12,7 +12,6 @@ from counterpartycore.lib import ( arc4, # noqa: F401 # TODO: need for test: clean that up - backend, config, deserialize, exceptions, @@ -22,8 +21,7 @@ ) from counterpartycore.lib.backend import addrindexrs from counterpartycore.lib.messages import dispense # noqa: F401 -from counterpartycore.lib.transaction_helper import p2sh_encoding, serializer -from counterpartycore.lib.transaction_helper.utxo_locks import UTXOLocks, sort_unspent_txouts +from counterpartycore.lib.transaction_helper import p2sh_encoding, serializer, transaction_inputs logger = logging.getLogger(config.LOGGER_NAME) @@ -44,161 +42,6 @@ D = decimal.Decimal -MAX_INPUTS_SET = 100 - - -def construct_coin_selection( - size_for_fee, - encoding, - data_array, - source, - allow_unconfirmed_inputs, - unspent_tx_hash, - inputs_set, - fee_per_kb, - estimate_fee_per_kb_nblocks, - exact_fee, - fee_provided, - destination_btc_out, - data_btc_out, - regular_dust_size, - multisig_dust_size, - disable_utxo_locks, - exclude_utxos, -): - # Array of UTXOs, as retrieved by listunspent function from bitcoind - if inputs_set: - use_inputs = unspent = inputs_set - else: - if unspent_tx_hash is not None: - unspent = backend.addrindexrs.get_unspent_txouts( - source, - unconfirmed=allow_unconfirmed_inputs, - unspent_tx_hash=unspent_tx_hash, - ) - else: - unspent = backend.addrindexrs.get_unspent_txouts( - source, unconfirmed=allow_unconfirmed_inputs - ) - logger.trace(f"TX Construct - Unspent UTXOs: {[print_coin(coin) for coin in unspent]}") - if len(unspent) == 0: - raise exceptions.BalanceError( - f"Insufficient {config.BTC} at address {source}: no unspent outputs." - ) - - unspent = UTXOLocks().filter_unspents(source, unspent, exclude_utxos) - - if encoding == "multisig": - dust = multisig_dust_size - else: - dust = regular_dust_size - - unspent = sort_unspent_txouts(unspent, dust_size=dust) - # self.logger.debug(f"Sorted candidate UTXOs: {[print_coin(coin) for coin in unspent]}") - use_inputs = unspent - - # dont override fee_per_kb if specified - estimate_fee_per_kb = None - if fee_per_kb is not None: - estimate_fee_per_kb = False - else: - fee_per_kb = config.DEFAULT_FEE_PER_KB - - if estimate_fee_per_kb is None: - estimate_fee_per_kb = config.ESTIMATE_FEE_PER_KB - - # use backend estimated fee_per_kb - if estimate_fee_per_kb: - estimated_fee_per_kb = backend.bitcoind.fee_per_kb( - estimate_fee_per_kb_nblocks, config.ESTIMATE_FEE_MODE - ) - if estimated_fee_per_kb is not None: - fee_per_kb = max( - estimated_fee_per_kb, fee_per_kb - ) # never drop below the default fee_per_kb - - logger.trace(f"TX Construct - Fee/KB {fee_per_kb / config.UNIT:.8f}") - - inputs = [] - btc_in = 0 - change_quantity = 0 - sufficient_funds = False - final_fee = fee_per_kb - desired_input_count = 1 - - if encoding == "multisig" and data_array and util.enabled("bytespersigop"): - desired_input_count = len(data_array) * 2 - - # pop inputs until we can pay for the fee - use_inputs_index = 0 - for coin in use_inputs: - logger.trace(f"TX Construct - New input: {print_coin(coin)}") - inputs.append(coin) - btc_in += round(coin["amount"] * config.UNIT) - - # If exact fee is specified, use that. Otherwise, calculate size of tx - # and base fee on that (plus provide a minimum fee for selling BTC). - size = 181 * len(inputs) + size_for_fee + 10 - if exact_fee: - final_fee = exact_fee - else: - necessary_fee = int(size / 1000 * fee_per_kb) - final_fee = max(fee_provided, necessary_fee) - logger.trace( - f"TX Construct - final_fee inputs: {len(inputs)} size: {size} final_fee {final_fee}" - ) - - # Check if good. - btc_out = destination_btc_out + data_btc_out - change_quantity = btc_in - (btc_out + final_fee) - logger.trace( - f"TX Construct - Size: {size} Fee: {final_fee / config.UNIT:.8f} Change quantity: {change_quantity / config.UNIT:.8f} BTC" - ) - - # If after the sum of all the utxos the change is dust, then it will be added to the miners instead of returning an error - if ( - (use_inputs_index == len(use_inputs) - 1) - and (change_quantity > 0) - and (change_quantity < regular_dust_size) - ): - sufficient_funds = True - final_fee = final_fee + change_quantity - change_quantity = 0 - # If change is necessary, must not be a dust output. - elif change_quantity == 0 or change_quantity >= regular_dust_size: - sufficient_funds = True - if len(inputs) >= desired_input_count: - break - - use_inputs_index = use_inputs_index + 1 - - if not sufficient_funds: - # Approximate needed change, fee by with most recently calculated - # quantities. - btc_out = destination_btc_out + data_btc_out - total_btc_out = btc_out + max(change_quantity, 0) + final_fee - - need = f"{D(total_btc_out) / D(config.UNIT)} {config.BTC}" - include_fee = f"{D(final_fee) / D(config.UNIT)} {config.BTC}" - available = f"{D(btc_in) / D(config.UNIT)} {config.BTC}" - error_message = f"Insufficient {config.BTC} at address {source}. Need: {need} (Including fee: {include_fee}), available: {available}." - error_message += f" These fees are estimated for a confirmation target of {estimate_fee_per_kb_nblocks} blocks, you can reduce them by using the `confirmation_target` parameter with a higher value or by manually setting the fees with the `fee` parameter." - - if not allow_unconfirmed_inputs: - error_message += " To spend unconfirmed coins, use the flag `--unconfirmed`. (Unconfirmed coins cannot be spent from multi‐sig addresses.)" - - raise exceptions.BalanceError(error_message) - - if not disable_utxo_locks: - UTXOLocks().lock_utxos(source, inputs) - - # ensure inputs have scriptPubKey - # this is not provided by indexd - inputs = script.ensure_script_pub_key_for_inputs(inputs) - - return inputs, change_quantity, btc_in, final_fee - - def pubkeyhash_to_pubkey(pubkeyhash, provided_pubkeys=None): # Search provided pubkeys. if provided_pubkeys: @@ -299,81 +142,6 @@ def determine_encoding( return encoding -def prepare_inputs( - encoding, - data, - destination_outputs, - data_array, - destination_btc_out, - data_btc_out, - source, - p2sh_pretx_txid, - allow_unconfirmed_inputs, - unspent_tx_hash, - inputs_set, - fee_per_kb, - estimate_fee_per_kb_nblocks, - exact_fee, - fee_provided, - regular_dust_size, - multisig_dust_size, - disable_utxo_locks, - exclude_utxos, -): - btc_in = 0 - final_fee = 0 - # Calculate collective size of outputs, for fee calculation - p2pkhsize = 25 + 9 - if encoding == "multisig": - data_output_size = 81 # 71 for the data - elif encoding == "opreturn": - # prefix + data + 10 bytes script overhead - data_output_size = len(config.PREFIX) + 10 - if data is not None: - data_output_size = data_output_size + len(data) - else: - data_output_size = p2pkhsize # Pay‐to‐PubKeyHash (25 for the data?) - - if encoding == "p2sh": - # calculate all the p2sh outputs - size_for_fee, datatx_necessary_fee, data_value, data_btc_out = ( - p2sh_encoding.calculate_outputs(destination_outputs, data_array, fee_per_kb, exact_fee) - ) - # replace the data value - # data_output = (data_array, data_value) - else: - sum_data_output_size = len(data_array) * data_output_size - size_for_fee = ((25 + 9) * len(destination_outputs)) + sum_data_output_size - - if not (encoding == "p2sh" and p2sh_pretx_txid): - inputs, change_quantity, n_btc_in, n_final_fee = construct_coin_selection( - size_for_fee, - encoding, - data_array, - source, - allow_unconfirmed_inputs, - unspent_tx_hash, - inputs_set, - fee_per_kb, - estimate_fee_per_kb_nblocks, - exact_fee, - fee_provided, - destination_btc_out, - data_btc_out, - regular_dust_size, - multisig_dust_size, - disable_utxo_locks, - exclude_utxos, - ) - btc_in = n_btc_in - final_fee = n_final_fee - else: - # when encoding is P2SH and the pretx txid is passed we can skip coinselection - inputs, change_quantity = None, None - - return inputs, change_quantity, btc_in, final_fee - - def compute_destinations_and_values( destination_outputs, encoding, multisig_dust_size, regular_dust_size, provided_pubkeys ): @@ -520,41 +288,61 @@ def check_transaction_sanity(db, source, tx_info, unsigned_tx_hex, encoding, inp desired = (desired_source, desired_destination, desired_data) parsed = (parsed_source, parsed_destination, parsed_data) if desired != parsed: - UTXOLocks().unlock_utxos(source, inputs) + transaction_inputs.UTXOLocks().unlock_utxos(source, inputs) raise exceptions.TransactionError( f"Constructed transaction does not parse correctly: {desired} ≠ {parsed}" ) +def collect_public_keys(pubkeys): + # Get provided pubkeys. + if isinstance(pubkeys, str): + provided_pubkeys = pubkeys.split(",") + elif isinstance(pubkeys, list): + provided_pubkeys = pubkeys + elif pubkeys is None: + provided_pubkeys = [] + else: + 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}") + return provided_pubkeys + + def construct( db, tx_info, + pubkeys=None, encoding="auto", - fee_per_kb=config.DEFAULT_FEE_PER_KB, - estimate_fee_per_kb_nblocks=config.ESTIMATE_FEE_CONF_TARGET, + fee_per_kb=None, + fee=None, + fee_provided=0, + confirmation_target=config.ESTIMATE_FEE_CONF_TARGET, regular_dust_size=config.DEFAULT_REGULAR_DUST_SIZE, multisig_dust_size=config.DEFAULT_MULTISIG_DUST_SIZE, op_return_value=config.DEFAULT_OP_RETURN_VALUE, - exact_fee=None, - fee_provided=0, - provided_pubkeys=None, - dust_return_pubkey=None, + op_return_max_size=config.OP_RETURN_MAX_SIZE, allow_unconfirmed_inputs=False, unspent_tx_hash=None, + exclude_utxos=None, inputs_set=None, disable_utxo_locks=False, segwit=False, + dust_return_pubkey=None, p2sh_source_multisig_pubkeys=None, p2sh_source_multisig_pubkeys_required=None, p2sh_pretx_txid=None, - exclude_utxos=None, - op_return_max_size=config.OP_RETURN_MAX_SIZE, ): + exact_fee = fee ps2h_dust_return_pubkey = config.P2SH_DUST_RETURN_PUBKEY (source, destination_outputs, data) = tx_info + provided_pubkeys = collect_public_keys(pubkeys) + if dust_return_pubkey: dust_return_pubkey = binascii.unhexlify(dust_return_pubkey) @@ -628,7 +416,7 @@ def construct( """Inputs""" - inputs, change_quantity, btc_in, final_fee = prepare_inputs( + inputs, change_quantity, btc_in, final_fee = transaction_inputs.prepare_inputs( encoding, data, destination_outputs, @@ -641,7 +429,7 @@ def construct( unspent_tx_hash, inputs_set, fee_per_kb, - estimate_fee_per_kb_nblocks, + confirmation_target, exact_fee, fee_provided, regular_dust_size, @@ -702,13 +490,10 @@ def construct( "btc_fee": final_fee, "unsigned_tx_hex": unsigned_tx_hex, "unsigned_pretx_hex": unsigned_pretx_hex, + "data": config.PREFIX + data if data else None, } -def print_coin(coin): - return f"amount: {coin['amount']:.8f}; txid: {coin['txid']}; vout: {coin['vout']}; confirmations: {coin.get('confirmations', '?')}" # simplify and make deterministic - - def chunks(l, n): # noqa: E741 """Yield successive n‐sized chunks from l.""" for i in range(0, len(l), n): @@ -724,90 +509,11 @@ def get_default_args(func): } -def compose_transaction( - db, - name, - params, - encoding="auto", - fee_per_kb=None, - regular_dust_size=config.DEFAULT_REGULAR_DUST_SIZE, - multisig_dust_size=config.DEFAULT_MULTISIG_DUST_SIZE, - confirmation_target=config.ESTIMATE_FEE_CONF_TARGET, - pubkey=None, - allow_unconfirmed_inputs=False, - fee=None, - fee_provided=0, - unspent_tx_hash=None, - inputs_set=None, - exclude_utxos=None, - dust_return_pubkey=None, - disable_utxo_locks=False, - p2sh_source_multisig_pubkeys=None, - p2sh_source_multisig_pubkeys_required=None, - p2sh_pretx_txid=None, - segwit=False, - accept_missing_params=False, -): - """Create and return a transaction.""" - - # Get provided pubkeys. - if isinstance(pubkey, str): - provided_pubkeys = [pubkey] - elif isinstance(pubkey, list): - provided_pubkeys = pubkey - elif pubkey is None: - provided_pubkeys = [] - else: - raise exceptions.TransactionError("Invalid pubkey.") - - if isinstance(inputs_set, str) and inputs_set: - new_inputs_set = [] - utxos_list = inputs_set.split(",") - if len(utxos_list) > MAX_INPUTS_SET: - raise exceptions.ComposeError( - f"too many UTXOs in inputs_set (max. {MAX_INPUTS_SET}): {len(utxos_list)}" - ) - for str_input in utxos_list: - if not util.is_utxo_format(str_input): - raise exceptions.ComposeError(f"invalid UTXO: {str_input}") - try: - amount = backend.bitcoind.get_tx_out_amount( - str_input.split(":")[0], int(str_input.split(":")[1]) - ) - except Exception as e: - raise exceptions.ComposeError(f"invalid UTXO: {str_input}") from e - new_inputs_set.append( - { - "txid": str_input.split(":")[0], - "vout": int(str_input.split(":")[1]), - "amount": amount, - } - ) - inputs_set = new_inputs_set - - # Get additional pubkeys from `source` and `destination` params. - # Convert `source` and `destination` to pubkeyhash form. - for address_name in ["source", "destination"]: - if address_name in params: - address = params[address_name] - if address is None or util.is_utxo_format(address): - pass - else: - try: - provided_pubkeys += script.extract_pubkeys(address) - params[address_name] = script.make_pubkeyhash(address) - except Exception as e: - raise exceptions.ComposeError(f"invalid address: {address}") from e - - # Check validity of collected pubkeys. - for pubkey in provided_pubkeys: - if not script.is_fully_valid(binascii.unhexlify(pubkey)): - raise exceptions.ComposeError(f"invalid public key: {pubkey}") - +def compose_data(db, name, params, accept_missing_params=False): compose_method = sys.modules[f"counterpartycore.lib.messages.{name}"].compose compose_params = inspect.getfullargspec(compose_method)[0] missing_params = [p for p in compose_params if p not in params and p != "db"] - if accept_missing_params: + if accept_missing_params: # for API v1 backward compatibility for param in missing_params: params[param] = None else: @@ -820,30 +526,11 @@ def compose_transaction( raise exceptions.ComposeError( f"missing parameters: {', '.join(missing_params)}" ) + return compose_method(db, **params) - tx_info = compose_method(db, **params) - - transaction_info = construct( - db, - tx_info, - encoding=encoding, - fee_per_kb=fee_per_kb, - regular_dust_size=regular_dust_size, - multisig_dust_size=multisig_dust_size, - provided_pubkeys=provided_pubkeys, - allow_unconfirmed_inputs=allow_unconfirmed_inputs, - exact_fee=fee, - fee_provided=fee_provided, - unspent_tx_hash=unspent_tx_hash, - inputs_set=inputs_set, - dust_return_pubkey=dust_return_pubkey, - disable_utxo_locks=disable_utxo_locks, - p2sh_source_multisig_pubkeys=p2sh_source_multisig_pubkeys, - p2sh_source_multisig_pubkeys_required=p2sh_source_multisig_pubkeys_required, - p2sh_pretx_txid=p2sh_pretx_txid, - segwit=segwit, - estimate_fee_per_kb_nblocks=confirmation_target, - exclude_utxos=exclude_utxos, - ) - transaction_info["data"] = config.PREFIX + tx_info[2] if tx_info[2] else None + +def compose_transaction(db, name, params, accept_missing_params=False, **construct_kwargs): + """Create and return a transaction.""" + tx_info = compose_data(db, name, params, accept_missing_params) + transaction_info = construct(db, tx_info, **construct_kwargs) return transaction_info diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/p2sh_encoding.py b/counterparty-core/counterpartycore/lib/transaction_helper/p2sh_encoding.py index 91c124d31f..6ca9ddcbad 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/p2sh_encoding.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/p2sh_encoding.py @@ -18,7 +18,10 @@ op_push, var_int, ) -from counterpartycore.lib.transaction_helper.utxo_locks import UTXOLocks, sort_unspent_txouts +from counterpartycore.lib.transaction_helper.transaction_inputs import ( + UTXOLocks, + sort_unspent_txouts, +) logger = logging.getLogger(config.LOGGER_NAME) diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py new file mode 100644 index 0000000000..7c273bd148 --- /dev/null +++ b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py @@ -0,0 +1,423 @@ +import binascii +import decimal +import hashlib +import logging +import threading + +import bitcoin as bitcoinlib +import cachetools + +from counterpartycore.lib import backend, config, exceptions, script, util +from counterpartycore.lib.transaction_helper import p2sh_encoding + +logger = logging.getLogger(config.LOGGER_NAME) +D = decimal.Decimal + +MAX_INPUTS_SET = 100 + + +class BaseThreadSafeCache: + def __init__(self, *args, **kwargs): + # Note: reading is thread safe out of the box + self.lock = threading.Lock() + self.__cache = self.create_cache(*args, **kwargs) + + def create_cache(self, *args, **kwargs): + raise NotImplementedError + + def get(self, key, default=None): + return self.__cache.get(key, default) + + def pop(self, key, default=None): + with self.lock: + return self.__cache.pop(key, default) + + def delete(self, key): + with self.lock: + try: + del self.__cache[key] + except KeyError: + pass + + def _get_cache(self): + return self.__cache + + def set(self, key, value): + with self.lock: + try: + self.__cache[key] = value + except KeyError: + pass + + def keys(self): + return self.__cache.keys() + + def __len__(self): + return len(self.__cache) + + def __iter__(self): + return iter(self.__cache) + + def __contains__(self, key): + return key in self.__cache + + +class ThreadSafeTTLCache(BaseThreadSafeCache): + def create_cache(self, *args, **kwargs): + return cachetools.TTLCache(*args, **kwargs) + + +def make_outkey_vin(txhex, vout): + txbin = binascii.unhexlify(txhex) if isinstance(txhex, str) else txhex + assert isinstance(vout, int) + + tx = bitcoinlib.core.CTransaction.deserialize(txbin) + outkey = [(vin.prevout.hash, vin.prevout.n) for vin in tx.vin] + outkey = hashlib.sha256((f"{outkey}{vout}").encode("ascii")).digest() + + return outkey + + +def make_outkey(output): + return f"{output['txid']}{output['vout']}" + + +def print_coin(coin): + return f"amount: {coin['amount']:.8f}; txid: {coin['txid']}; vout: {coin['vout']}; confirmations: {coin.get('confirmations', '?')}" # simplify and make deterministic + + +class UTXOLocks(metaclass=util.SingletonMeta): + # set higher than the max number of UTXOs we should expect to + # manage in an aging cache for any one source address, at any one period + # UTXO_P2SH_ENCODING_LOCKS is TTLCache for UTXOs that are used for chaining p2sh encoding + # instead of a simple (txid, vout) key we use [(vin.prevout.hash, vin.prevout.n) for vin tx1.vin] + # we cache the make_outkey_vin to avoid having to fetch raw txs too often + + def __init__(self, utxo_locks_max_addresses=None): + self.init(utxo_locks_max_addresses) + + def init(self, utxo_locks_max_addresses=None): + # config + self.utxo_p2sh_encoding_locks = ThreadSafeTTLCache(10000, 180) + self.utxo_p2sh_encoding_locks_cache = ThreadSafeTTLCache(1000, 600) + self.utxo_locks_max_age = config.UTXO_LOCKS_MAX_AGE + self.utxo_locks_max_addresses = utxo_locks_max_addresses or config.UTXO_LOCKS_MAX_ADDRESSES + self.utxo_locks_per_address_maxsize = 5000 + + self.utxo_locks = None + if self.utxo_locks_max_addresses > 0: + self.utxo_locks = util.DictCache(self.utxo_locks_max_addresses) + print("UTXOLocks initialized") + print(self.utxo_locks, self.utxo_locks_max_addresses) + + def make_outkey_vin_txid(self, txid, vout): + if (txid, vout) not in self.utxo_p2sh_encoding_locks_cache: + txhex = backend.bitcoind.getrawtransaction(txid, verbose=False) + self.utxo_p2sh_encoding_locks_cache.set((txid, vout), make_outkey_vin(txhex, vout)) + + return self.utxo_p2sh_encoding_locks_cache.get((txid, vout)) + + def filter_unspents(self, source, unspent, exclude_utxos): + filter_unspents_utxo_locks = [] + if self.utxo_locks is not None and source in self.utxo_locks: + filter_unspents_utxo_locks = self.utxo_locks[source].keys() + filter_unspents_p2sh_locks = self.utxo_p2sh_encoding_locks.keys() # filter out any locked UTXOs to prevent creating transactions that spend the same UTXO when they're created at the same time + filtered_unspent = [] + for output in unspent: + if ( + make_outkey(output) not in filter_unspents_utxo_locks + and self.make_outkey_vin_txid(output["txid"], output["vout"]) + not in filter_unspents_p2sh_locks + and ( + not exclude_utxos + or not isinstance(exclude_utxos, str) + or f"{output['txid']}:{output['vout']}" not in exclude_utxos.split(",") + ) + ): + filtered_unspent.append(output) + return filtered_unspent + + def lock_utxos(self, source, inputs): + # Lock the source's inputs (UTXOs) chosen for this transaction + if self.utxo_locks is not None: + if source not in self.utxo_locks: + self.utxo_locks[source] = ThreadSafeTTLCache( + self.utxo_locks_per_address_maxsize, self.utxo_locks_max_age + ) + for input in inputs: + self.utxo_locks[source].set(make_outkey(input), input) + + def lock_p2sh_utxos(self, unsigned_pretx): + self.utxo_p2sh_encoding_locks.set(make_outkey_vin(unsigned_pretx, 0), True) + + def unlock_utxos(self, source, inputs): + if self.utxo_locks is not None and inputs: + for input in inputs: + self.utxo_locks[source].pop(make_outkey(input), None) + + +def sort_unspent_txouts(unspent, dust_size=config.DEFAULT_REGULAR_DUST_SIZE): + # Filter out all dust amounts to avoid bloating the resultant transaction + unspent = list(filter(lambda x: x["value"] > dust_size, unspent)) + # Sort by amount, using the largest UTXOs available + if config.REGTEST: + # REGTEST has a lot of coinbase inputs that can't be spent due to maturity + # this doesn't usually happens on mainnet or testnet because most fednodes aren't mining + unspent = sorted(unspent, key=lambda x: (x["confirmations"], x["value"]), reverse=True) + else: + unspent = sorted(unspent, key=lambda x: x["value"], reverse=True) + + return unspent + + +def construct_coin_selection( + size_for_fee, + encoding, + data_array, + source, + allow_unconfirmed_inputs, + unspent_tx_hash, + inputs_set, + fee_per_kb, + estimate_fee_per_kb_nblocks, + exact_fee, + fee_provided, + destination_btc_out, + data_btc_out, + regular_dust_size, + multisig_dust_size, + disable_utxo_locks, + exclude_utxos, +): + if inputs_set: + if isinstance(inputs_set, str): + new_inputs_set = [] + utxos_list = inputs_set.split(",") + if len(utxos_list) > MAX_INPUTS_SET: + raise exceptions.ComposeError( + f"too many UTXOs in inputs_set (max. {MAX_INPUTS_SET}): {len(utxos_list)}" + ) + for str_input in utxos_list: + if not util.is_utxo_format(str_input): + raise exceptions.ComposeError(f"invalid UTXO: {str_input}") + try: + amount = backend.bitcoind.get_tx_out_amount( + str_input.split(":")[0], int(str_input.split(":")[1]) + ) + except Exception as e: + raise exceptions.ComposeError(f"invalid UTXO: {str_input}") from e + new_inputs_set.append( + { + "txid": str_input.split(":")[0], + "vout": int(str_input.split(":")[1]), + "amount": amount, + } + ) + use_inputs = unspent = new_inputs_set + elif isinstance(inputs_set, list): + use_inputs = unspent = inputs_set + else: + raise exceptions.ComposeError(f"invalid inputs_set: {inputs_set}") + else: + if unspent_tx_hash is not None: + unspent = backend.addrindexrs.get_unspent_txouts( + source, + unconfirmed=allow_unconfirmed_inputs, + unspent_tx_hash=unspent_tx_hash, + ) + else: + unspent = backend.addrindexrs.get_unspent_txouts( + source, unconfirmed=allow_unconfirmed_inputs + ) + logger.trace(f"TX Construct - Unspent UTXOs: {[print_coin(coin) for coin in unspent]}") + if len(unspent) == 0: + raise exceptions.BalanceError( + f"Insufficient {config.BTC} at address {source}: no unspent outputs." + ) + + unspent = UTXOLocks().filter_unspents(source, unspent, exclude_utxos) + + if encoding == "multisig": + dust = multisig_dust_size + else: + dust = regular_dust_size + + unspent = sort_unspent_txouts(unspent, dust_size=dust) + # self.logger.debug(f"Sorted candidate UTXOs: {[print_coin(coin) for coin in unspent]}") + use_inputs = unspent + + # dont override fee_per_kb if specified + estimate_fee_per_kb = None + if fee_per_kb is not None: + estimate_fee_per_kb = False + else: + fee_per_kb = config.DEFAULT_FEE_PER_KB + + if estimate_fee_per_kb is None: + estimate_fee_per_kb = config.ESTIMATE_FEE_PER_KB + + # use backend estimated fee_per_kb + if estimate_fee_per_kb: + estimated_fee_per_kb = backend.bitcoind.fee_per_kb( + estimate_fee_per_kb_nblocks, config.ESTIMATE_FEE_MODE + ) + if estimated_fee_per_kb is not None: + fee_per_kb = max( + estimated_fee_per_kb, fee_per_kb + ) # never drop below the default fee_per_kb + + logger.trace(f"TX Construct - Fee/KB {fee_per_kb / config.UNIT:.8f}") + + inputs = [] + btc_in = 0 + change_quantity = 0 + sufficient_funds = False + final_fee = fee_per_kb + desired_input_count = 1 + + if encoding == "multisig" and data_array and util.enabled("bytespersigop"): + desired_input_count = len(data_array) * 2 + + # pop inputs until we can pay for the fee + use_inputs_index = 0 + for coin in use_inputs: + logger.trace(f"TX Construct - New input: {print_coin(coin)}") + inputs.append(coin) + btc_in += round(coin["amount"] * config.UNIT) + + # If exact fee is specified, use that. Otherwise, calculate size of tx + # and base fee on that (plus provide a minimum fee for selling BTC). + size = 181 * len(inputs) + size_for_fee + 10 + if exact_fee: + final_fee = exact_fee + else: + necessary_fee = int(size / 1000 * fee_per_kb) + final_fee = max(fee_provided, necessary_fee) + logger.trace( + f"TX Construct - final_fee inputs: {len(inputs)} size: {size} final_fee {final_fee}" + ) + + # Check if good. + btc_out = destination_btc_out + data_btc_out + change_quantity = btc_in - (btc_out + final_fee) + logger.trace( + f"TX Construct - Size: {size} Fee: {final_fee / config.UNIT:.8f} Change quantity: {change_quantity / config.UNIT:.8f} BTC" + ) + + # If after the sum of all the utxos the change is dust, then it will be added to the miners instead of returning an error + if ( + (use_inputs_index == len(use_inputs) - 1) + and (change_quantity > 0) + and (change_quantity < regular_dust_size) + ): + sufficient_funds = True + final_fee = final_fee + change_quantity + change_quantity = 0 + # If change is necessary, must not be a dust output. + elif change_quantity == 0 or change_quantity >= regular_dust_size: + sufficient_funds = True + if len(inputs) >= desired_input_count: + break + + use_inputs_index = use_inputs_index + 1 + + if not sufficient_funds: + # Approximate needed change, fee by with most recently calculated + # quantities. + btc_out = destination_btc_out + data_btc_out + total_btc_out = btc_out + max(change_quantity, 0) + final_fee + + need = f"{D(total_btc_out) / D(config.UNIT)} {config.BTC}" + include_fee = f"{D(final_fee) / D(config.UNIT)} {config.BTC}" + available = f"{D(btc_in) / D(config.UNIT)} {config.BTC}" + error_message = f"Insufficient {config.BTC} at address {source}. Need: {need} (Including fee: {include_fee}), available: {available}." + error_message += f" These fees are estimated for a confirmation target of {estimate_fee_per_kb_nblocks} blocks, you can reduce them by using the `confirmation_target` parameter with a higher value or by manually setting the fees with the `fee` parameter." + + if not allow_unconfirmed_inputs: + error_message += " To spend unconfirmed coins, use the flag `--unconfirmed`. (Unconfirmed coins cannot be spent from multi‐sig addresses.)" + + raise exceptions.BalanceError(error_message) + + if not disable_utxo_locks: + UTXOLocks().lock_utxos(source, inputs) + + # ensure inputs have scriptPubKey + # this is not provided by indexd + inputs = script.ensure_script_pub_key_for_inputs(inputs) + + return inputs, change_quantity, btc_in, final_fee + + +def prepare_inputs( + encoding, + data, + destination_outputs, + data_array, + destination_btc_out, + data_btc_out, + source, + p2sh_pretx_txid, + allow_unconfirmed_inputs, + unspent_tx_hash, + inputs_set, + fee_per_kb, + estimate_fee_per_kb_nblocks, + exact_fee, + fee_provided, + regular_dust_size, + multisig_dust_size, + disable_utxo_locks, + exclude_utxos, +): + btc_in = 0 + final_fee = 0 + # Calculate collective size of outputs, for fee calculation + p2pkhsize = 25 + 9 + if encoding == "multisig": + data_output_size = 81 # 71 for the data + elif encoding == "opreturn": + # prefix + data + 10 bytes script overhead + data_output_size = len(config.PREFIX) + 10 + if data is not None: + data_output_size = data_output_size + len(data) + else: + data_output_size = p2pkhsize # Pay‐to‐PubKeyHash (25 for the data?) + + if encoding == "p2sh": + # calculate all the p2sh outputs + size_for_fee, datatx_necessary_fee, data_value, data_btc_out = ( + p2sh_encoding.calculate_outputs(destination_outputs, data_array, fee_per_kb, exact_fee) + ) + # replace the data value + # data_output = (data_array, data_value) + else: + sum_data_output_size = len(data_array) * data_output_size + size_for_fee = ((25 + 9) * len(destination_outputs)) + sum_data_output_size + + if not (encoding == "p2sh" and p2sh_pretx_txid): + inputs, change_quantity, n_btc_in, n_final_fee = construct_coin_selection( + size_for_fee, + encoding, + data_array, + source, + allow_unconfirmed_inputs, + unspent_tx_hash, + inputs_set, + fee_per_kb, + estimate_fee_per_kb_nblocks, + exact_fee, + fee_provided, + destination_btc_out, + data_btc_out, + regular_dust_size, + multisig_dust_size, + disable_utxo_locks, + exclude_utxos, + ) + btc_in = n_btc_in + final_fee = n_final_fee + else: + # when encoding is P2SH and the pretx txid is passed we can skip coinselection + inputs, change_quantity = None, None + + return inputs, change_quantity, btc_in, final_fee diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/utxo_locks.py b/counterparty-core/counterpartycore/lib/transaction_helper/utxo_locks.py deleted file mode 100644 index 832dcd4c26..0000000000 --- a/counterparty-core/counterpartycore/lib/transaction_helper/utxo_locks.py +++ /dev/null @@ -1,158 +0,0 @@ -import binascii -import hashlib -import threading - -import bitcoin as bitcoinlib -import cachetools - -from counterpartycore.lib import backend, config, util - - -class BaseThreadSafeCache: - def __init__(self, *args, **kwargs): - # Note: reading is thread safe out of the box - self.lock = threading.Lock() - self.__cache = self.create_cache(*args, **kwargs) - - def create_cache(self, *args, **kwargs): - raise NotImplementedError - - def get(self, key, default=None): - return self.__cache.get(key, default) - - def pop(self, key, default=None): - with self.lock: - return self.__cache.pop(key, default) - - def delete(self, key): - with self.lock: - try: - del self.__cache[key] - except KeyError: - pass - - def _get_cache(self): - return self.__cache - - def set(self, key, value): - with self.lock: - try: - self.__cache[key] = value - except KeyError: - pass - - def keys(self): - return self.__cache.keys() - - def __len__(self): - return len(self.__cache) - - def __iter__(self): - return iter(self.__cache) - - def __contains__(self, key): - return key in self.__cache - - -class ThreadSafeTTLCache(BaseThreadSafeCache): - def create_cache(self, *args, **kwargs): - return cachetools.TTLCache(*args, **kwargs) - - -def make_outkey_vin(txhex, vout): - txbin = binascii.unhexlify(txhex) if isinstance(txhex, str) else txhex - assert isinstance(vout, int) - - tx = bitcoinlib.core.CTransaction.deserialize(txbin) - outkey = [(vin.prevout.hash, vin.prevout.n) for vin in tx.vin] - outkey = hashlib.sha256((f"{outkey}{vout}").encode("ascii")).digest() - - return outkey - - -def make_outkey(output): - return f"{output['txid']}{output['vout']}" - - -class UTXOLocks(metaclass=util.SingletonMeta): - # set higher than the max number of UTXOs we should expect to - # manage in an aging cache for any one source address, at any one period - # UTXO_P2SH_ENCODING_LOCKS is TTLCache for UTXOs that are used for chaining p2sh encoding - # instead of a simple (txid, vout) key we use [(vin.prevout.hash, vin.prevout.n) for vin tx1.vin] - # we cache the make_outkey_vin to avoid having to fetch raw txs too often - - def __init__(self, utxo_locks_max_addresses=None): - self.init(utxo_locks_max_addresses) - - def init(self, utxo_locks_max_addresses=None): - # config - self.utxo_p2sh_encoding_locks = ThreadSafeTTLCache(10000, 180) - self.utxo_p2sh_encoding_locks_cache = ThreadSafeTTLCache(1000, 600) - self.utxo_locks_max_age = config.UTXO_LOCKS_MAX_AGE - self.utxo_locks_max_addresses = utxo_locks_max_addresses or config.UTXO_LOCKS_MAX_ADDRESSES - self.utxo_locks_per_address_maxsize = 5000 - - self.utxo_locks = None - if self.utxo_locks_max_addresses > 0: - self.utxo_locks = util.DictCache(self.utxo_locks_max_addresses) - print("UTXOLocks initialized") - print(self.utxo_locks, self.utxo_locks_max_addresses) - - def make_outkey_vin_txid(self, txid, vout): - if (txid, vout) not in self.utxo_p2sh_encoding_locks_cache: - txhex = backend.bitcoind.getrawtransaction(txid, verbose=False) - self.utxo_p2sh_encoding_locks_cache.set((txid, vout), make_outkey_vin(txhex, vout)) - - return self.utxo_p2sh_encoding_locks_cache.get((txid, vout)) - - def filter_unspents(self, source, unspent, exclude_utxos): - filter_unspents_utxo_locks = [] - if self.utxo_locks is not None and source in self.utxo_locks: - filter_unspents_utxo_locks = self.utxo_locks[source].keys() - filter_unspents_p2sh_locks = self.utxo_p2sh_encoding_locks.keys() # filter out any locked UTXOs to prevent creating transactions that spend the same UTXO when they're created at the same time - filtered_unspent = [] - for output in unspent: - if ( - make_outkey(output) not in filter_unspents_utxo_locks - and self.make_outkey_vin_txid(output["txid"], output["vout"]) - not in filter_unspents_p2sh_locks - and ( - not exclude_utxos - or not isinstance(exclude_utxos, str) - or f"{output['txid']}:{output['vout']}" not in exclude_utxos.split(",") - ) - ): - filtered_unspent.append(output) - return filtered_unspent - - def lock_utxos(self, source, inputs): - # Lock the source's inputs (UTXOs) chosen for this transaction - if self.utxo_locks is not None: - if source not in self.utxo_locks: - self.utxo_locks[source] = ThreadSafeTTLCache( - self.utxo_locks_per_address_maxsize, self.utxo_locks_max_age - ) - for input in inputs: - self.utxo_locks[source].set(make_outkey(input), input) - - def lock_p2sh_utxos(self, unsigned_pretx): - self.utxo_p2sh_encoding_locks.set(make_outkey_vin(unsigned_pretx, 0), True) - - def unlock_utxos(self, source, inputs): - if self.utxo_locks is not None and inputs: - for input in inputs: - self.utxo_locks[source].pop(make_outkey(input), None) - - -def sort_unspent_txouts(unspent, dust_size=config.DEFAULT_REGULAR_DUST_SIZE): - # Filter out all dust amounts to avoid bloating the resultant transaction - unspent = list(filter(lambda x: x["value"] > dust_size, unspent)) - # Sort by amount, using the largest UTXOs available - if config.REGTEST: - # REGTEST has a lot of coinbase inputs that can't be spent due to maturity - # this doesn't usually happens on mainnet or testnet because most fednodes aren't mining - unspent = sorted(unspent, key=lambda x: (x["confirmations"], x["value"]), reverse=True) - else: - unspent = sorted(unspent, key=lambda x: x["value"], reverse=True) - - return unspent diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 42adeb9180..f89d98426d 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -9983,10 +9983,10 @@ "required": false }, { - "name": "pubkey", + "name": "pubkeys", "type": "str", "default": null, - "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + "description": "The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", "required": false }, { @@ -10066,13 +10066,6 @@ "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, - { - "name": "accept_missing_params", - "type": "bool", - "default": false, - "description": "Accept missing parameters with no default value (True by default for API v1)", - "required": false - }, { "name": "return_psbt", "type": "bool", @@ -10180,10 +10173,10 @@ "required": false }, { - "name": "pubkey", + "name": "pubkeys", "type": "str", "default": null, - "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + "description": "The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", "required": false }, { @@ -10263,13 +10256,6 @@ "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, - { - "name": "accept_missing_params", - "type": "bool", - "default": false, - "description": "Accept missing parameters with no default value (True by default for API v1)", - "required": false - }, { "name": "return_psbt", "type": "bool", @@ -10359,10 +10345,10 @@ "required": false }, { - "name": "pubkey", + "name": "pubkeys", "type": "str", "default": null, - "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + "description": "The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", "required": false }, { @@ -10442,13 +10428,6 @@ "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, - { - "name": "accept_missing_params", - "type": "bool", - "default": false, - "description": "Accept missing parameters with no default value (True by default for API v1)", - "required": false - }, { "name": "return_psbt", "type": "bool", @@ -10545,10 +10524,10 @@ "required": false }, { - "name": "pubkey", + "name": "pubkeys", "type": "str", "default": null, - "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + "description": "The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", "required": false }, { @@ -10628,13 +10607,6 @@ "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, - { - "name": "accept_missing_params", - "type": "bool", - "default": false, - "description": "Accept missing parameters with no default value (True by default for API v1)", - "required": false - }, { "name": "return_psbt", "type": "bool", @@ -10724,10 +10696,10 @@ "required": false }, { - "name": "pubkey", + "name": "pubkeys", "type": "str", "default": null, - "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + "description": "The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", "required": false }, { @@ -10807,13 +10779,6 @@ "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, - { - "name": "accept_missing_params", - "type": "bool", - "default": false, - "description": "Accept missing parameters with no default value (True by default for API v1)", - "required": false - }, { "name": "return_psbt", "type": "bool", @@ -10915,10 +10880,10 @@ "required": false }, { - "name": "pubkey", + "name": "pubkeys", "type": "str", "default": null, - "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + "description": "The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", "required": false }, { @@ -10998,13 +10963,6 @@ "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, - { - "name": "accept_missing_params", - "type": "bool", - "default": false, - "description": "Accept missing parameters with no default value (True by default for API v1)", - "required": false - }, { "name": "return_psbt", "type": "bool", @@ -11132,10 +11090,10 @@ "required": false }, { - "name": "pubkey", + "name": "pubkeys", "type": "str", "default": null, - "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + "description": "The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", "required": false }, { @@ -11215,13 +11173,6 @@ "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, - { - "name": "accept_missing_params", - "type": "bool", - "default": false, - "description": "Accept missing parameters with no default value (True by default for API v1)", - "required": false - }, { "name": "return_psbt", "type": "bool", @@ -11323,10 +11274,10 @@ "required": false }, { - "name": "pubkey", + "name": "pubkeys", "type": "str", "default": null, - "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + "description": "The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", "required": false }, { @@ -11406,13 +11357,6 @@ "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, - { - "name": "accept_missing_params", - "type": "bool", - "default": false, - "description": "Accept missing parameters with no default value (True by default for API v1)", - "required": false - }, { "name": "return_psbt", "type": "bool", @@ -11543,10 +11487,10 @@ "required": false }, { - "name": "pubkey", + "name": "pubkeys", "type": "str", "default": null, - "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + "description": "The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", "required": false }, { @@ -11626,13 +11570,6 @@ "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, - { - "name": "accept_missing_params", - "type": "bool", - "default": false, - "description": "Accept missing parameters with no default value (True by default for API v1)", - "required": false - }, { "name": "return_psbt", "type": "bool", @@ -11748,10 +11685,10 @@ "required": false }, { - "name": "pubkey", + "name": "pubkeys", "type": "str", "default": null, - "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + "description": "The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", "required": false }, { @@ -11831,13 +11768,6 @@ "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, - { - "name": "accept_missing_params", - "type": "bool", - "default": false, - "description": "Accept missing parameters with no default value (True by default for API v1)", - "required": false - }, { "name": "return_psbt", "type": "bool", @@ -11957,10 +11887,10 @@ "required": false }, { - "name": "pubkey", + "name": "pubkeys", "type": "str", "default": null, - "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + "description": "The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", "required": false }, { @@ -12040,13 +11970,6 @@ "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, - { - "name": "accept_missing_params", - "type": "bool", - "default": false, - "description": "Accept missing parameters with no default value (True by default for API v1)", - "required": false - }, { "name": "return_psbt", "type": "bool", @@ -12169,10 +12092,10 @@ "required": false }, { - "name": "pubkey", + "name": "pubkeys", "type": "str", "default": null, - "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + "description": "The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", "required": false }, { @@ -12252,13 +12175,6 @@ "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, - { - "name": "accept_missing_params", - "type": "bool", - "default": false, - "description": "Accept missing parameters with no default value (True by default for API v1)", - "required": false - }, { "name": "return_psbt", "type": "bool", @@ -12360,10 +12276,10 @@ "required": false }, { - "name": "pubkey", + "name": "pubkeys", "type": "str", "default": null, - "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + "description": "The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", "required": false }, { @@ -12443,13 +12359,6 @@ "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, - { - "name": "accept_missing_params", - "type": "bool", - "default": false, - "description": "Accept missing parameters with no default value (True by default for API v1)", - "required": false - }, { "name": "return_psbt", "type": "bool", @@ -12545,10 +12454,10 @@ "required": false }, { - "name": "pubkey", + "name": "pubkeys", "type": "str", "default": null, - "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + "description": "The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", "required": false }, { @@ -12628,13 +12537,6 @@ "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, - { - "name": "accept_missing_params", - "type": "bool", - "default": false, - "description": "Accept missing parameters with no default value (True by default for API v1)", - "required": false - }, { "name": "return_psbt", "type": "bool", @@ -12836,10 +12738,10 @@ "required": false }, { - "name": "pubkey", + "name": "pubkeys", "type": "str", "default": null, - "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + "description": "The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", "required": false }, { @@ -12919,13 +12821,6 @@ "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, - { - "name": "accept_missing_params", - "type": "bool", - "default": false, - "description": "Accept missing parameters with no default value (True by default for API v1)", - "required": false - }, { "name": "return_psbt", "type": "bool", @@ -13022,10 +12917,10 @@ "required": false }, { - "name": "pubkey", + "name": "pubkeys", "type": "str", "default": null, - "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + "description": "The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", "required": false }, { @@ -13105,13 +13000,6 @@ "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, - { - "name": "accept_missing_params", - "type": "bool", - "default": false, - "description": "Accept missing parameters with no default value (True by default for API v1)", - "required": false - }, { "name": "return_psbt", "type": "bool", @@ -13214,10 +13102,10 @@ "required": false }, { - "name": "pubkey", + "name": "pubkeys", "type": "str", "default": null, - "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + "description": "The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", "required": false }, { @@ -13297,13 +13185,6 @@ "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, - { - "name": "accept_missing_params", - "type": "bool", - "default": false, - "description": "Accept missing parameters with no default value (True by default for API v1)", - "required": false - }, { "name": "return_psbt", "type": "bool", @@ -13405,10 +13286,10 @@ "required": false }, { - "name": "pubkey", + "name": "pubkeys", "type": "str", "default": null, - "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", + "description": "The hexadecimal public key of the source address (or a comma separated list of keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.", "required": false }, { @@ -13488,13 +13369,6 @@ "description": "A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created", "required": false }, - { - "name": "accept_missing_params", - "type": "bool", - "default": false, - "description": "Accept missing parameters with no default value (True by default for API v1)", - "required": false - }, { "name": "return_psbt", "type": "bool", diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/transaction.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/transaction.py index 5419f9a207..65787adb2e 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/transaction.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/transaction.py @@ -23,7 +23,7 @@ [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)], None, ), - {"encoding": "multisig", "exact_fee": 1.0}, + {"encoding": "multisig", "fee": 1.0}, ), "error": (exceptions.TransactionError, "Exact fees must be in satoshis."), }, @@ -121,6 +121,7 @@ {"encoding": "opreturn"}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", "btc_change": 37992125, "btc_fee": 7875, "btc_in": 100000000, @@ -140,6 +141,7 @@ {"encoding": "multisig"}, ), "out": { + "data": None, "btc_change": 37994375, "btc_fee": 5625, "btc_in": 100000000, @@ -155,6 +157,7 @@ {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, ), "out": { + "data": None, "btc_change": 37994375, "btc_fee": 5625, "btc_in": 100000000, @@ -174,6 +177,7 @@ {"encoding": "multisig"}, ), "out": { + "data": None, "btc_change": 49994375, "btc_fee": 5625, "btc_in": 100000000, @@ -193,6 +197,7 @@ {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", "btc_change": 199895060, "btc_fee": 7650, "btc_in": 199909140, @@ -257,6 +262,7 @@ }, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", "btc_change": 199895060, "btc_fee": 7650, "btc_in": 199909140, @@ -277,6 +283,7 @@ {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", "btc_change": 111103058, "btc_fee": 12175, "btc_in": 111121663, @@ -300,6 +307,7 @@ }, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", "btc_change": 199895060, "btc_fee": 7650, "btc_in": 199909140, @@ -323,6 +331,7 @@ }, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", "btc_change": 199895060, "btc_fee": 7650, "btc_in": 199909140, @@ -346,6 +355,7 @@ }, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", "btc_change": 99985920, "btc_fee": 7650, "btc_in": 100000000, @@ -365,6 +375,7 @@ {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80", "btc_change": 199895060, "btc_fee": 7650, "btc_in": 199909140, @@ -389,6 +400,7 @@ {"encoding": "multisig"}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", "btc_change": 199899490, "btc_fee": 7650, "btc_in": 199909140, @@ -410,9 +422,10 @@ ], b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", ), - {"encoding": "multisig", "exact_fee": 1}, + {"encoding": "multisig", "fee": 1}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", "btc_change": 199907139, "btc_fee": 1, "btc_in": 199909140, @@ -437,6 +450,7 @@ {"encoding": "opreturn"}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", "btc_change": 199901565, "btc_fee": 6575, "btc_in": 199909140, @@ -461,6 +475,7 @@ {"encoding": "pubkeyhash", "regular_dust_size": DP["regular_dust_size"]}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", "btc_change": 199889955, "btc_fee": 7325, "btc_in": 199909140, @@ -492,6 +507,7 @@ {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", "btc_change": 99985920, "btc_fee": 7650, "btc_in": 100000000, @@ -516,6 +532,7 @@ {"encoding": "multisig"}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", "btc_change": 99990350, "btc_fee": 7650, "btc_in": 100000000, @@ -535,6 +552,7 @@ {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff", "btc_change": 199895060, "btc_fee": 7650, "btc_in": 199909140, @@ -554,6 +572,7 @@ {"encoding": "multisig"}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL", "btc_change": 199901340, "btc_fee": 6800, "btc_in": 199909140, @@ -573,6 +592,7 @@ {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x16\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL", "btc_change": 199895060, "btc_fee": 7650, "btc_in": 199909140, @@ -592,6 +612,7 @@ {"encoding": "multisig"}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL", "btc_change": 99992200, "btc_fee": 6800, "btc_in": 100000000, @@ -611,6 +632,7 @@ {"encoding": "multisig"}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x16\x00\x00\x00\x00\xdd\x96\xd2t\x7f\xff\xff\xff\xff\xff\xff\xff\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL", "btc_change": 199901340, "btc_fee": 6800, "btc_in": 199909140, @@ -635,6 +657,7 @@ {"encoding": "multisig"}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x16\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL", "btc_change": 199899490, "btc_fee": 7650, "btc_in": 199909140, @@ -654,6 +677,7 @@ {"encoding": "multisig", "fee_provided": DP["fee_provided"]}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00", "btc_change": 198908140, "btc_fee": 1000000, "btc_in": 199909140, @@ -673,6 +697,7 @@ {"encoding": "multisig", "fee_provided": DP["fee_provided"]}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00", "btc_change": 98999000, "btc_fee": 1000000, "btc_in": 100000000, @@ -692,6 +717,7 @@ {"encoding": "multisig"}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x06B,@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0", "btc_change": 99992200, "btc_fee": 6800, "btc_in": 100000000, @@ -711,6 +737,7 @@ {"encoding": "multisig"}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\n\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0", "btc_change": 199901340, "btc_fee": 6800, "btc_in": 199909140, @@ -730,6 +757,7 @@ {"encoding": "multisig"}, ), "out": { + "data": b"TESTXXXX\x00\x00\x002\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x01", "btc_change": 199901340, "btc_fee": 6800, "btc_in": 199909140, @@ -749,6 +777,7 @@ {"encoding": "multisig"}, ), "out": { + "data": b"TESTXXXX\x00\x00\x002\x00\x00\x00\x00\x00\x00\x00\x01\x00\x06\xca\xd8\xdc\x7f\x0bf\x00\x00\x00\x00\x00\x00\x00\x01", "btc_change": 199901340, "btc_fee": 6800, "btc_in": 199909140, @@ -768,6 +797,7 @@ {"encoding": "multisig"}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x16\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL", "btc_change": 199901340, "btc_fee": 6800, "btc_in": 199909140, @@ -787,6 +817,7 @@ {}, ), "out": { + "data": b"TESTXXXX\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00LK@lOver 80 characters test test test test test test test test test test test test test test test test test test", "btc_change": 199895290, "btc_fee": 10850, "btc_in": 199909140, diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 834a901ffe..25682e8eb2 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": 193, - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", - "block_time": 1727031747, - "previous_block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_time": 1727080029, + "previous_block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", "difficulty": 545259519, - "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", - "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", - "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", + "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", + "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", + "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", - "block_time": 1727031743, - "previous_block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", + "block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", + "block_time": 1727080026, + "previous_block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", "difficulty": 545259519, - "ledger_hash": "fa0b578aced75a2921d789d45e44adfd47e5d88461643b2ce6ea1ceb910adad1", - "txlist_hash": "2c7de06f03054aca49c6c2f06ddc5ec8bd61983af282e627ed9f50585bd202d8", - "messages_hash": "090feaaedca28407d3331bc3fe26eebf0530ca50ebd9e2da53bf8540c21f8a62", + "ledger_hash": "0a01bff8eb1c310d8222e4ccb4760085675430d12422c8dd6c1406862fd2bcd5", + "txlist_hash": "cd465c4124d8f65b6f8d4112a5934530f16fcb6a7ac9f405937f60b64cac9f03", + "messages_hash": "3fc52191dfde04576e3cd5974b4af5b7e1c3ec66fa0d275067d2c8ece10ef148", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", - "block_time": 1727031738, - "previous_block_hash": "1e1af2aaab6cfea61a31d3c2cda9e566643cab68018f3b8071bf25da826b9a80", + "block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", + "block_time": 1727080022, + "previous_block_hash": "27631674929a77b7907c42d4559d560e994bddb1c5dc880e51ac065952ccc04b", "difficulty": 545259519, - "ledger_hash": "819df0c3e08eb202c13f42015c631ff2930b5d88e353a12cb0dd87a665b3161f", - "txlist_hash": "a7a675b242b6d548ce6ec2e153192f4585eded5175a62fd9e05fdf51c56cf8c1", - "messages_hash": "eb0766f796663bf744df95fd3479e7fd22221c5d7c916d4fa8db0b30f36fb871", + "ledger_hash": "c918416572951e1e48365514f20bdd3d512f8a1ceef0accbc5e41f80724e81ba", + "txlist_hash": "300cac11ea531e4e01f87018a1e392ed79f5273964799d1f25a4d70f2df71439", + "messages_hash": "d004ba210b48210939040d6d03420f5eecfeeb330a2c32b5cf9be077a32818fc", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "1e1af2aaab6cfea61a31d3c2cda9e566643cab68018f3b8071bf25da826b9a80", - "block_time": 1727031724, - "previous_block_hash": "4b4c3d089292ec004e7c2f38f68a929bba6d7c6e6101db9616fe21b785fae411", + "block_hash": "27631674929a77b7907c42d4559d560e994bddb1c5dc880e51ac065952ccc04b", + "block_time": 1727080007, + "previous_block_hash": "6fb0ca06b43613ffed61018fcb6082c59452492ba985576337703460a5a270f0", "difficulty": 545259519, - "ledger_hash": "0099ef580927aaadd3a4cdd5697bf92e1a50a1fd8e2d3170753ce6630c24d405", - "txlist_hash": "86415c7a3a453a12483a9aae337e80e414bcbff7c90b489516acb9d140b6b861", - "messages_hash": "683adc9e8b2cc2d071e0c233d29de6e5bd98870cb12cc2b80ca5c5180df7ba76", + "ledger_hash": "51469f0e92c07c9a475dddf1df377bdd6b740d6cec92661eaf9fff84113fddcc", + "txlist_hash": "97b3b22f1089946ec419f2824b21c0c0d7810013a5fbeb5bf8d9cb15d4d0e015", + "messages_hash": "52a4e5b87f05460ee8c0a6d8c8d7b6444216529a0e072a6a4e90e4b7a6ac2205", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "4b4c3d089292ec004e7c2f38f68a929bba6d7c6e6101db9616fe21b785fae411", - "block_time": 1727031720, - "previous_block_hash": "7aebb16eecf937a615a0835e17c17a727757a47eff751dbe07bf38199690cf08", + "block_hash": "6fb0ca06b43613ffed61018fcb6082c59452492ba985576337703460a5a270f0", + "block_time": 1727079993, + "previous_block_hash": "48b2d19d551135b795db9414be8cef12acb0b131f1d153c2e457362aee6f39fa", "difficulty": 545259519, - "ledger_hash": "0b26ae6a4101f8ee1171c73abb8eb127ce3858e0636eb007e197d874f6585c14", - "txlist_hash": "774182af21312f5df376340be52610f164eb091908d4fc958181a876965bbb3a", - "messages_hash": "48c2cfa20f6d110df351d1f08373fc78ec72329ff9baa5ed0e3e0c895348c7ef", + "ledger_hash": "53951e46fc709ae22d91dde1f09c776635c86a1f6148f4509e0a2bd3e5dab77a", + "txlist_hash": "1e2450020fb89ed8fbfa6b65fc361d79b6ffaa2a7c0d1c0a1ba8f07b8e820fd2", + "messages_hash": "92c69ccbc7509d2230f7338d7e4a1877e33012a84995ba281e76d99fc4709d67", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", - "block_time": 1727031747, - "previous_block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_time": 1727080029, + "previous_block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", "difficulty": 545259519, - "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", - "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", - "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", + "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", + "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", + "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", - "block_time": 1727031747, - "previous_block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_time": 1727080029, + "previous_block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", "difficulty": 545259519, - "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", - "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", - "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", + "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", + "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", + "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", - "block_time": 1727031747, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_time": 1727080029, + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", + "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -139,11 +139,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "fa0b578aced75a2921d789d45e44adfd47e5d88461643b2ce6ea1ceb910adad1", - "messages_hash": "090feaaedca28407d3331bc3fe26eebf0530ca50ebd9e2da53bf8540c21f8a62", + "ledger_hash": "0a01bff8eb1c310d8222e4ccb4760085675430d12422c8dd6c1406862fd2bcd5", + "messages_hash": "3fc52191dfde04576e3cd5974b4af5b7e1c3ec66fa0d275067d2c8ece10ef148", "transaction_count": 1, - "txlist_hash": "2c7de06f03054aca49c6c2f06ddc5ec8bd61983af282e627ed9f50585bd202d8", - "block_time": 1727031743 + "txlist_hash": "cd465c4124d8f65b6f8d4112a5934530f16fcb6a7ac9f405937f60b64cac9f03", + "block_time": 1727080026 }, "tx_hash": null }, @@ -152,43 +152,43 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58 }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "status": "valid", - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, - "block_time": 1727031743, + "block_time": 1727080026, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -198,22 +198,22 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "XCP", "block_index": 192, - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -223,7 +223,7 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" } ], "next_cursor": 524, @@ -261,16 +261,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -280,57 +280,57 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" } ], "next_cursor": null, @@ -340,16 +340,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -361,20 +361,20 @@ }, { "block_index": 192, - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -382,20 +382,20 @@ }, { "block_index": 192, - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -409,16 +409,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "event": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -436,24 +436,24 @@ "result": [ { "type": "order", - "object_id": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "object_id": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", "block_index": 182, "confirmed": true, - "block_time": 1727031616 + "block_time": 1727079898 }, { "type": "order", - "object_id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", + "object_id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", "block_index": 182, "confirmed": true, - "block_time": 1727031616 + "block_time": 1727079898 }, { "type": "order_match", - "object_id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "object_id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", "block_index": 182, "confirmed": true, - "block_time": 1727031616 + "block_time": 1727079898 } ], "next_cursor": null, @@ -463,13 +463,13 @@ "result": [ { "tx_index": 56, - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "block_index": 190, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "status": "valid", "confirmed": true, - "block_time": 1727031724 + "block_time": 1727080007 } ], "next_cursor": null, @@ -479,15 +479,15 @@ "result": [ { "tx_index": 59, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -505,14 +505,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", + "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -527,7 +527,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031601, + "block_time": 1727079873, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -539,10 +539,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -550,7 +550,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "divisible": true, "asset_longname": null, @@ -563,10 +563,10 @@ }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -574,11 +574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -587,10 +587,10 @@ }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -598,11 +598,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -618,27 +618,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", - "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "last_status_tx_hash": null, - "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -653,7 +653,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727031536, + "block_time": 1727079818, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,16 +672,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "fee_paid_normalized": "0.00600000" } ], @@ -692,17 +692,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", - "block_time": 1727031747, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_time": 1727080029, + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", + "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -725,23 +725,23 @@ }, { "tx_index": 58, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736", - "block_time": 1727031743, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", + "block_time": 1727080026, + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480fcd4fef91bbb7752401bda00950d4c9047d04028017377656570206d7920617373657473", + "data": "0480c4fb36b92d4e34760a7faccb00cc7340befb1809017377656570206d7920617373657473", "supported": true, - "utxos_info": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703:1", + "utxos_info": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "flags": 1, "memo": "sweep my assets" } @@ -754,18 +754,18 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4695e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "9d5f93e8240a3eb6d45a6a38f32109200b3304bace7538254a8505103ff1c866", + "hash": "1f52299e86e352cb7b1a484767c18433a8dd5da0be5e6ade2766ef0b36630799", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -775,27 +775,49 @@ "vout": [ { "value": 0, - "script_pub_key": "6a293d9ec3ff5bde53950f82911ac15d6fa531e7c349a0a07a8e1ad2c0abfbc8b3ea7cefd68ca7a6280e2b" + "script_pub_key": "6a335561f66404c41e80f8fa2cee94d1a41a13dcd65aa53f7799adaf41771323736e95069860c3a4105c96a9e810a95e8711d2c989" }, { "value": 4999990000, - "script_pub_key": "0014ab1ca0986fe508fb370b5937169762b6328c900c" + "script_pub_key": "001452e48a2420dddb4d5239ee4f509da9a34bff777a" } ], "vtxinwit": [ - "304402204b12834ecdeec860345887155b44f9d78ff4a637d4323c347b6e0c1d0df3865702207e546a79aa5d4ea6a4e9b8fb06f1277b48cb93ba78ab305d6c9a9095ea64e76a01", - "0303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b132" + "3044022070c3fd6ffa1fda1ff311bbf79dafbcf3e6f73f40c0487d24dbf104726282eb770220303ef3f0cf64bf814af3e138301eec9d77f7d1f2467a751d3b69f1193421ca6301", + "038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c" ], "lock_time": 0, - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", - "tx_id": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84" + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_id": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f" }, "unpacked_data": { - "message_type": "cancel", - "message_type_id": 70, + "message_type": "order", + "message_type_id": 10, "message_data": { - "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", - "status": "valid" + "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" @@ -803,18 +825,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710806dfffb33ff9bf38009f5261067fd1af98dadcc3c", + "data": "0200000000000000010000000000002710803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "033829dd00ce92492643b8d140f4f5e0e40880eb1d304c5ef75052b518910fdb", + "hash": "ec72b6da61eb4096c6eb25484cb721bb26e2429cd539df769f552c680d7f8a1e", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -824,20 +846,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e86c1932312faa583fe5f71bdf0c7db3e42b4ce0034d8c1a4e0081e1920d840e4601e56ea066ca5f270b671ee4f60" + "script_pub_key": "6a2e175501a67a71a7042d4669c22cdd7e97cb14c3c52a8c426fe0176eff948d3ec0cc3c68ddd322d1e0661b59cee4bb" }, { "value": 4999955000, - "script_pub_key": "0014fcd4fef91bbb7752401bda00950d4c9047d04028" + "script_pub_key": "0014c4fb36b92d4e34760a7faccb00cc7340befb1809" } ], "vtxinwit": [ - "304402201b2685911b529dddd19a94a0444d789c65d7538076984cd0f5e5764fd2fdaea70220305e38b12b39c8fd2199e37ed0b6c8a45faabcdf92fe527cf74115dd817bd60601", - "02d0179aa601d1b2caddcfe88c73ca7bf71949d02e3645f85bd050b7b64868f248" + "304402207a5d46bd6b01b7b76e17241f3cd9588203d36982448497e39cda7d2c60013ce602207e65bccfb61296531321c1fd74bd4f85dc4f4bc8049c5f9819d4313e2340c88c01", + "0245711205fa34c28180371a8e6a071cd643ec0f98772bebba59d21b2bf8023721" ], "lock_time": 0, - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", - "tx_id": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4" + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_id": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47" }, "unpacked_data": { "message_type": "enhanced_send", @@ -845,7 +867,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "memo": null, "asset_info": { "divisible": true, @@ -872,17 +894,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", - "block_time": 1727031747, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_time": 1727080029, + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", + "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -907,17 +929,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", - "block_time": 1727031747, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_time": 1727080029, + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", + "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -946,47 +968,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58 }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "status": "valid", - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, - "block_time": 1727031743, + "block_time": 1727080026, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -996,24 +1018,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "XCP", "block_index": 192, - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -1023,36 +1045,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 } ], "next_cursor": 523, @@ -1065,47 +1087,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58 }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "status": "valid", - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, - "block_time": 1727031743, + "block_time": 1727080026, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -1115,24 +1137,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "XCP", "block_index": 192, - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -1142,36 +1164,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 } ], "next_cursor": 523, @@ -1181,10 +1203,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -1192,7 +1214,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "divisible": true, "asset_longname": null, @@ -1205,10 +1227,10 @@ }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1216,11 +1238,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -1229,10 +1251,10 @@ }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1240,11 +1262,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -1260,27 +1282,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", - "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "last_status_tx_hash": null, - "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -1295,7 +1317,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727031536, + "block_time": 1727079818, "asset_info": { "divisible": true, "asset_longname": null, @@ -1316,16 +1338,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -1335,63 +1357,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 } ], "next_cursor": null, @@ -1403,16 +1425,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -1422,63 +1444,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 } ], "next_cursor": null, @@ -1491,7 +1513,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1501,7 +1523,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -1512,7 +1534,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1522,7 +1544,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -1533,7 +1555,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1543,7 +1565,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -1554,7 +1576,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1564,7 +1586,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -1575,7 +1597,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1585,7 +1607,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -1599,17 +1621,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", - "block_time": 1727031738, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", + "block_time": 1727080022, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d:1", + "utxos_info": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1645,23 +1667,23 @@ }, { "tx_index": 56, - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "block_index": 190, - "block_hash": "1e1af2aaab6cfea61a31d3c2cda9e566643cab68018f3b8071bf25da826b9a80", - "block_time": 1727031724, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "27631674929a77b7907c42d4559d560e994bddb1c5dc880e51ac065952ccc04b", + "block_time": 1727080007, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4695e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "data": "46c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "supported": true, - "utxos_info": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84:1", + "utxos_info": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "status": "valid" } }, @@ -1669,17 +1691,17 @@ }, { "tx_index": 55, - "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "block_index": 189, - "block_hash": "4b4c3d089292ec004e7c2f38f68a929bba6d7c6e6101db9616fe21b785fae411", - "block_time": 1727031720, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "6fb0ca06b43613ffed61018fcb6082c59452492ba985576337703460a5a270f0", + "block_time": 1727079993, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a:1", + "utxos_info": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1715,17 +1737,17 @@ }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "block_hash": "7aebb16eecf937a615a0835e17c17a727757a47eff751dbe07bf38199690cf08", - "block_time": 1727031716, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "48b2d19d551135b795db9414be8cef12acb0b131f1d153c2e457362aee6f39fa", + "block_time": 1727079989, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a4ca4c30f02016b9d3311b06228bced4605a672d806dfffb33ff9bf38009f5261067fd1af98dadcc3c80fcd4fef91bbb7752401bda00950d4c9047d04028400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a34288aaa16cb6a9c7065f6fedddf0f15f400ec9803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc80c4fb36b92d4e34760a7faccb00cc7340befb1809400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6:0", + "utxos_info": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1733,14 +1755,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -1748,7 +1770,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1767,25 +1789,25 @@ }, { "tx_index": 51, - "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", + "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", "block_index": 185, - "block_hash": "1f5af0e7cec205944b080b4ab1df4487aa0f0dc1b8acf9bfe09a4004e1f6afc7", - "block_time": 1727031703, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "0019336d8185362941e07f3b889ad1fcec836b89b1848ef0b1acd905e5d68e55", + "block_time": 1727079976, + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "btc_amount": 2000, "fee": 10000, - "data": "0bbb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874aca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "data": "0bf1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "supported": true, - "utxos_info": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549:0", + "utxos_info": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", - "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", - "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "status": "valid" } }, @@ -1814,11 +1836,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "status": "open", - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "tx_index": 57, - "block_time": 1727031738, + "block_time": 1727080022, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1842,24 +1864,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "block_time": 1727031738 + "block_time": 1727080022 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "block_index": 191, - "event": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "event": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727031738, + "block_time": 1727080022, "asset_info": { "divisible": true, "asset_longname": null, @@ -1869,25 +1891,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "block_time": 1727031738 + "block_time": 1727080022 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", + "block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", "block_index": 191, - "block_time": 1727031738, + "block_time": 1727080022, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "tx_index": 57, - "utxos_info": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d:1", + "utxos_info": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1919,40 +1941,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "block_time": 1727031738 + "block_time": 1727080022 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "status": "valid", - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "tx_index": 56, - "block_time": 1727031724 + "block_time": 1727080007 }, - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "block_index": 190, - "block_time": 1727031724 + "block_time": 1727080007 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727031724, + "block_time": 1727080007, "asset_info": { "divisible": true, "asset_longname": null, @@ -1962,9 +1984,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "block_index": 190, - "block_time": 1727031724 + "block_time": 1727080007 } ], "next_cursor": 506, @@ -1973,17 +1995,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "memo": null, "quantity": 10000, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "status": "valid", - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "tx_index": 60, "asset_info": { "divisible": true, @@ -1996,19 +2018,19 @@ } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "CREDIT", "params": { - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -2020,19 +2042,19 @@ } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 193, - "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -2044,27 +2066,27 @@ } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727031751.6192584, + "block_time": 1727080033.9107606, "btc_amount": 0, - "data": "0200000000000000010000000000002710806dfffb33ff9bf38009f5261067fd1af98dadcc3c", + "data": "0200000000000000010000000000002710803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc", "destination": "", "fee": 10000, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "tx_index": 60, - "utxos_info": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4:1", + "utxos_info": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "memo": null, "asset_info": { "divisible": true, @@ -2086,7 +2108,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2094,14 +2116,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2109,14 +2131,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2131,7 +2153,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2139,7 +2161,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2151,7 +2173,7 @@ }, "/v2/addresses/
/balances/": { "result": { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2170,16 +2192,16 @@ "result": [ { "block_index": 190, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031724, + "block_time": 1727080007, "asset_info": { "divisible": true, "asset_longname": null, @@ -2191,16 +2213,16 @@ }, { "block_index": 182, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", + "event": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031616, + "block_time": 1727079898, "asset_info": { "divisible": true, "asset_longname": null, @@ -2212,20 +2234,20 @@ }, { "block_index": 159, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", + "event": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031601, + "block_time": 1727079873, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2233,20 +2255,20 @@ }, { "block_index": 156, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "78d87a84a548e802140107907dab0b844c078356f9fcce558b74909d159796a6", + "event": "c5f0754dd7d1082a77f739c930d90d5684bb394c04a01e9acf2c0a1742b4dc87", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031579, + "block_time": 1727079860, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2258,16 +2280,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", + "event": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", "tx_index": 38, - "utxo": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450:1", - "utxo_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "utxo": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8:1", + "utxo_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "confirmed": true, - "block_time": 1727031557, + "block_time": 1727079839, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2281,16 +2303,16 @@ "result": [ { "block_index": 191, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "event": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031738, + "block_time": 1727080022, "asset_info": { "divisible": true, "asset_longname": null, @@ -2302,16 +2324,16 @@ }, { "block_index": 189, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031720, + "block_time": 1727079993, "asset_info": { "divisible": true, "asset_longname": null, @@ -2323,16 +2345,16 @@ }, { "block_index": 188, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "event": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "divisible": true, "asset_longname": null, @@ -2344,20 +2366,20 @@ }, { "block_index": 188, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "event": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2365,16 +2387,16 @@ }, { "block_index": 183, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "event": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031685, + "block_time": 1727079968, "asset_info": { "divisible": true, "asset_longname": null, @@ -2397,9 +2419,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "70bbbef4d727695c9dfe5767a7984c541fa63ee857b8a6f9d4fd484e7e9bb559", + "tx_hash": "7145912710e264e9c5b45407d43bc8fd5318db28c30836a01c4862e2ded179d5", "block_index": 137, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2407,7 +2429,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727031498, + "block_time": 1727079780, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2418,14 +2440,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "c3ef7038264f09a6f51fb5f6471cfc4b095d6356440d83546aafcd77da3327bc", + "tx_hash": "45fcd30b26481dc7d15d3e290ffc8c6f576a8940987ab179d8171b9929dad6aa", "block_index": 112, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1727031394, + "block_time": 1727079676, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2437,10 +2459,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2448,7 +2470,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "divisible": true, "asset_longname": null, @@ -2461,10 +2483,10 @@ }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2472,11 +2494,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2485,10 +2507,10 @@ }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2496,11 +2518,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2509,10 +2531,10 @@ }, { "tx_index": 38, - "tx_hash": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", + "tx_hash": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", "block_index": 151, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450:1", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2520,11 +2542,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031557, + "block_time": 1727079839, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2533,10 +2555,10 @@ }, { "tx_index": 35, - "tx_hash": "c2895e011f9b472f28337f45d9c4e55b74d73cbb0a4b6fad43b9bbff93937d9e", + "tx_hash": "8e6e5e86390b1d35d8140150b424da7aba62e5e93c431bd2645ef98ebe79c705", "block_index": 148, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "c7f128443db9a77d1633ed327ba6bff1a7df40904a0bcc0aeef69925fc748a83:1", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "8ef179e266d7b41d18f9c03097396fe4b3ec9a584925e023130ca6e7104fe97e:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2544,11 +2566,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031544, + "block_time": 1727079826, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2563,10 +2585,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "b24c9eeabf64bf130cf647b5b044590691cd4d002ece233465f257abf436ad6c", + "tx_hash": "989604467561753724a036703d19ac691dfe4a5ced843c42f9d1834068e7158f", "block_index": 150, - "source": "eabb3b7be615850b99b1401f3f242c8fa8e18d2d0ba58915a003fa589718cf11:0", - "destination": "bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0", + "source": "e0fb6c717053ccace6058ea89673a15dff5b190c77211ffd001c4094c8df382a:0", + "destination": "bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2574,11 +2596,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031553, + "block_time": 1727079835, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2593,10 +2615,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2604,11 +2626,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2617,10 +2639,10 @@ }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2628,11 +2650,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2641,10 +2663,10 @@ }, { "tx_index": 38, - "tx_hash": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", + "tx_hash": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", "block_index": 151, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450:1", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2652,11 +2674,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031557, + "block_time": 1727079839, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2665,10 +2687,10 @@ }, { "tx_index": 35, - "tx_hash": "c2895e011f9b472f28337f45d9c4e55b74d73cbb0a4b6fad43b9bbff93937d9e", + "tx_hash": "8e6e5e86390b1d35d8140150b424da7aba62e5e93c431bd2645ef98ebe79c705", "block_index": 148, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "c7f128443db9a77d1633ed327ba6bff1a7df40904a0bcc0aeef69925fc748a83:1", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "8ef179e266d7b41d18f9c03097396fe4b3ec9a584925e023130ca6e7104fe97e:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2676,11 +2698,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031544, + "block_time": 1727079826, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2695,10 +2717,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "b24c9eeabf64bf130cf647b5b044590691cd4d002ece233465f257abf436ad6c", + "tx_hash": "989604467561753724a036703d19ac691dfe4a5ced843c42f9d1834068e7158f", "block_index": 150, - "source": "eabb3b7be615850b99b1401f3f242c8fa8e18d2d0ba58915a003fa589718cf11:0", - "destination": "bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0", + "source": "e0fb6c717053ccace6058ea89673a15dff5b190c77211ffd001c4094c8df382a:0", + "destination": "bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2706,11 +2728,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031553, + "block_time": 1727079835, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -2725,9 +2747,9 @@ "result": [ { "tx_index": 30, - "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", + "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", "block_index": 144, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2736,7 +2758,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2746,7 +2768,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031527, + "block_time": 1727079809, "asset_info": { "divisible": true, "asset_longname": null, @@ -2762,9 +2784,9 @@ }, { "tx_index": 26, - "tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2773,7 +2795,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2783,7 +2805,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -2804,9 +2826,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 30, - "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", + "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", "block_index": 144, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2815,7 +2837,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2825,7 +2847,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031527, + "block_time": 1727079809, "asset_info": { "divisible": true, "asset_longname": null, @@ -2845,19 +2867,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", + "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2865,7 +2887,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2880,7 +2902,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -2894,19 +2916,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", + "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", "block_index": 140, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2914,7 +2936,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2929,7 +2951,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031510, + "block_time": 1727079793, "asset_info": { "divisible": true, "asset_longname": null, @@ -2949,19 +2971,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", + "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2969,7 +2991,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2984,7 +3006,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -2998,19 +3020,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", + "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", "block_index": 140, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3018,7 +3040,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3033,7 +3055,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031510, + "block_time": 1727079793, "asset_info": { "divisible": true, "asset_longname": null, @@ -3053,19 +3075,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", + "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3073,7 +3095,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3088,7 +3110,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -3102,19 +3124,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", + "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", "block_index": 140, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3122,7 +3144,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3137,7 +3159,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031510, + "block_time": 1727079793, "asset_info": { "divisible": true, "asset_longname": null, @@ -3157,19 +3179,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", + "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3177,7 +3199,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3192,7 +3214,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -3206,19 +3228,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", + "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", "block_index": 140, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3226,7 +3248,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3241,7 +3263,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031510, + "block_time": 1727079793, "asset_info": { "divisible": true, "asset_longname": null, @@ -3260,16 +3282,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "fee_paid_normalized": "0.00600000" } ], @@ -3280,14 +3302,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", + "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -3302,20 +3324,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031601, + "block_time": 1727079873, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "45b68c9ba64fa212a14541b0a2a12205e850ae06f24d5b225f0a5627c23d19e8", + "tx_hash": "ee5b91c03af937b81687cba8cf5de88a889363660243b7f1e3d0721469e82475", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -3330,20 +3352,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727031596, + "block_time": 1727079868, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "f90297d83b71b86f758f716ba6985c3656c2219501bf5577ac2d96103c22be8b", + "tx_hash": "913be4b557b8ae7b33fffad5a68eec87247e587ef1161d91310b90133a1cb304", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -3358,20 +3380,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031593, + "block_time": 1727079864, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "78d87a84a548e802140107907dab0b844c078356f9fcce558b74909d159796a6", + "tx_hash": "c5f0754dd7d1082a77f739c930d90d5684bb394c04a01e9acf2c0a1742b4dc87", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -3386,20 +3408,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031579, + "block_time": 1727079860, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "7eba76181dde66ebc3fdfe33bdf17e5f00aff28437f82870fbc8bf86beccb827", + "tx_hash": "38fd7a78403fa7a17642d00e60ed25b5abec76df7774a00bc77e55574157da48", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -3414,7 +3436,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031540, + "block_time": 1727079822, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -3428,8 +3450,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 10000000000, @@ -3437,16 +3459,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727031579, - "last_issuance_block_time": 1727031596, + "first_issuance_block_time": 1727079860, + "last_issuance_block_time": 1727079868, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 100000000000, @@ -3454,16 +3476,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727031540, - "last_issuance_block_time": 1727031540, + "first_issuance_block_time": 1727079822, + "last_issuance_block_time": 1727079822, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 40, @@ -3471,16 +3493,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727031489, - "last_issuance_block_time": 1727031494, + "first_issuance_block_time": 1727079772, + "last_issuance_block_time": 1727079776, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 19, @@ -3488,16 +3510,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727031472, - "last_issuance_block_time": 1727031485, + "first_issuance_block_time": 1727079755, + "last_issuance_block_time": 1727079767, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 0, @@ -3505,8 +3527,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1727031452, - "last_issuance_block_time": 1727031468, + "first_issuance_block_time": 1727079735, + "last_issuance_block_time": 1727079751, "supply_normalized": "0.00000000" } ], @@ -3517,17 +3539,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "block_hash": "4fdc71ebae41dbea319a8bca36f4c50e5605a2d46f4fd7e3058c7bdb836fb65e", - "block_time": 1727031738, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", + "block_time": 1727080022, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d:1", + "utxos_info": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3563,23 +3585,23 @@ }, { "tx_index": 56, - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "block_index": 190, - "block_hash": "1e1af2aaab6cfea61a31d3c2cda9e566643cab68018f3b8071bf25da826b9a80", - "block_time": 1727031724, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "27631674929a77b7907c42d4559d560e994bddb1c5dc880e51ac065952ccc04b", + "block_time": 1727080007, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4695e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "data": "46c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "supported": true, - "utxos_info": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84:1", + "utxos_info": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "status": "valid" } }, @@ -3587,17 +3609,17 @@ }, { "tx_index": 55, - "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "block_index": 189, - "block_hash": "4b4c3d089292ec004e7c2f38f68a929bba6d7c6e6101db9616fe21b785fae411", - "block_time": 1727031720, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "6fb0ca06b43613ffed61018fcb6082c59452492ba985576337703460a5a270f0", + "block_time": 1727079993, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a:1", + "utxos_info": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3633,17 +3655,17 @@ }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "block_hash": "7aebb16eecf937a615a0835e17c17a727757a47eff751dbe07bf38199690cf08", - "block_time": 1727031716, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "48b2d19d551135b795db9414be8cef12acb0b131f1d153c2e457362aee6f39fa", + "block_time": 1727079989, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a4ca4c30f02016b9d3311b06228bced4605a672d806dfffb33ff9bf38009f5261067fd1af98dadcc3c80fcd4fef91bbb7752401bda00950d4c9047d04028400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a34288aaa16cb6a9c7065f6fedddf0f15f400ec9803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc80c4fb36b92d4e34760a7faccb00cc7340befb1809400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6:0", + "utxos_info": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3651,14 +3673,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -3666,7 +3688,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3685,17 +3707,17 @@ }, { "tx_index": 49, - "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", "block_index": 183, - "block_hash": "5736c35ad7443bd127e2c39121e8accb8483b3fc3458ab2bb197a41f504e1b78", - "block_time": 1727031685, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "block_hash": "2bc00571147a36413c5643be3313556ea1395e88d0ca1a4863bea8ff75854e6e", + "block_time": 1727079968, + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a:1", + "utxos_info": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3737,20 +3759,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", + "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", "block_index": 153, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727031565, + "block_time": 1727079846, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -3772,9 +3794,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3789,7 +3811,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727031738, + "block_time": 1727080022, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3815,9 +3837,9 @@ }, { "tx_index": 55, - "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "block_index": 190, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3832,7 +3854,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727031724, + "block_time": 1727080007, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3858,9 +3880,9 @@ }, { "tx_index": 49, - "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", "block_index": 186, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3875,7 +3897,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727031707, + "block_time": 1727079980, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3901,9 +3923,9 @@ }, { "tx_index": 47, - "tx_hash": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", + "tx_hash": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", "block_index": 182, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3918,7 +3940,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727031616, + "block_time": 1727079898, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3949,10 +3971,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", + "tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", "tx_index": 22, "block_index": 135, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -3977,13 +3999,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727031489 + "block_time": 1727079772 }, { - "tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", + "tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", "tx_index": 18, "block_index": 131, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4008,13 +4030,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727031472 + "block_time": 1727079755 }, { - "tx_hash": "f0dfc17c191520c1e2ba90abccbcc857553adf8a4e40722685a17b81ff2f781a", + "tx_hash": "569b5d76c793d1fbd773e4c21c313d8d9bd4c08354834bd7fff4de4ba36e79c5", "tx_index": 14, "block_index": 130, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4039,13 +4061,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727031468 + "block_time": 1727079751 }, { - "tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4070,7 +4092,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727031448 + "block_time": 1727079731 } ], "next_cursor": null, @@ -4079,127 +4101,127 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "ede174d6ebd168d04cfbc10891f9d7eb903c0d105cd7455db87566871ceb66a4", + "tx_hash": "14b14a8360be741c147b158caf79d5fcf98f9986207c8fe5fe42526940d1ddc1", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "fairminter_tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "fairminter_tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031494, + "block_time": 1727079776, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } }, { - "tx_hash": "1ff72b43cf288d1d3e4e8f3b13df6f687a3b931b5dd479680fd537de7ab91619", + "tx_hash": "e275330435c460f35d517ef441e949efe2dda5aab87caac5a88eed45bebc604f", "tx_index": 21, "block_index": 134, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "fairminter_tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "fairminter_tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031485, + "block_time": 1727079767, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } }, { - "tx_hash": "173860b830f570665ce7176cc62cd77ea47e884cad47be8f881c860357a8fb56", + "tx_hash": "ef310c731fe0e412d40aaf73093d4b9c895a9e93c49834376e75bafefae9189a", "tx_index": 20, "block_index": 133, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "fairminter_tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "fairminter_tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031481, + "block_time": 1727079763, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } }, { - "tx_hash": "8db623e33495f11477f4c1321919da808fa5cdf7a552030355a5a5c9caf913c4", + "tx_hash": "451d2d1096ddc99374296b711b4e3fc31032a76546b006d1765fde3a318fec83", "tx_index": 19, "block_index": 132, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "fairminter_tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "fairminter_tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031477, + "block_time": 1727079759, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } }, { - "tx_hash": "88164f5131f58c578d835121f2d081c1b2452f1074c8c4ab1beb574d190e440c", + "tx_hash": "410b4f5830101c539dfbc12c092162b06f06a32b74696410059f62defe05a071", "tx_index": 15, "block_index": 127, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "fairminter_tx_hash": "f0dfc17c191520c1e2ba90abccbcc857553adf8a4e40722685a17b81ff2f781a", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "fairminter_tx_hash": "569b5d76c793d1fbd773e4c21c313d8d9bd4c08354834bd7fff4de4ba36e79c5", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031457, + "block_time": 1727079739, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } }, { - "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", + "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031440, + "block_time": 1727079722, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } @@ -4211,22 +4233,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", + "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031440, + "block_time": 1727079722, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } @@ -4241,7 +4263,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4253,7 +4275,7 @@ "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "0200000000010168580864de321070d26e22e5619e6235efa1ed8e5673a9fd1a9252056396d98400000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff0200000000000000002b6a29252e87bed754730f6a92caca98637de939fded0640ef6f6e0c13d09e4fbc58ccbc079dd19f40db6a043bb1052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "02000000000101c4fb1d2fe53ad7536b73d5141e8da047ebf3e8b9679ca360228ca07022e363b90000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff0200000000000000002b6a2989c3cfa1e720de3d5f646efca1c2e4d354f4f0ce80e1b27e6d99e9ecca7fdafcaa383e5307886f61963bb1052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4266,16 +4288,16 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f" + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587" }, "name": "btcpay", - "data": "434e5452505254590bbb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "data": "434e5452505254590bf1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999975897, "btc_fee": 21103, - "rawtransaction": "0200000000010152c499e6be8f463ed370997da9a6af073e4f103d6d79b0fca4cf7056b979e65400000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff03b80b000000000000160014ab1ca0986fe508fb370b5937169762b6328c900c00000000000000004b6a494a8ba6c4ab2690f363a9ca8790f3d3f1a5515dbd8c63dc770a469f83cf2f9ca4d710d17171a56f7375c2217e0455bfa4d41d70c1171a56cc2a0041da909987ea41b7c0d83da5293d70d993052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "02000000000101ac1f67aea80e88a5b2bfc4085f99b50356fe5c52b669438eeee67b4fcc966b760000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff03b80b00000000000016001452e48a2420dddb4d5239ee4f509da9a34bff777a00000000000000004b6a492444f87462277d1c2d4b9fb54cd142babed4b8260c32588f1dbfa94fad6b96c309dcef718a3e59d70365542fd2d02a43c31328304af1f5739f5d9c6fc657feb3a9f858a212bbfa67aed993052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4288,7 +4310,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "quantity": 1000, "overburn": false }, @@ -4298,22 +4320,22 @@ "btc_out": 1000, "btc_change": 4999983584, "btc_fee": 15416, - "rawtransaction": "020000000001015335f23ce3fede2504cb86ff4184ab95d163e4a7a0e656afb9430fd1357f0cc600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000" + "rawtransaction": "020000000001017ec6e6c7b47e70f5c63db14d799b147a8a423ac1083c60da8e3c25886e3449c90000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "offer_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d" + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "offer_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f" }, "name": "cancel", - "data": "434e5452505254594671b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "data": "434e5452505254594642351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "020000000001015db7fd7ae00f3185285f83d16e80b67dfc80998416eecad872f0e23ee8a6ce6600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff0200000000000000002b6a294d4e6f4d174cb1aac2eb1dcb8f2649bb3674fa53e2d245ea491e9982391aa6988c4bb3a7a5f6c7c2913bb1052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "02000000000101d74dd7c27ce8b005421eeb92026137926d6782e7ae0ba5bfac9ce6f6cd2abd1c0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff0200000000000000002b6a297b9bb73acef081463740905279c7fe6eaa2af600a703212db716ba19f8cf3632b13ed66d39b40e27073bb1052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4326,7 +4348,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4345,7 +4367,7 @@ "btc_out": 0, "btc_change": 4999984036, "btc_fee": 15964, - "rawtransaction": "02000000000101243012e92ee26aa15a782cb2bbe197c8969a68efba5fa5ffdf8c6629803a1ae800000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000226a20bc7d36e6a6cc85dde26f0bba137fbd3da0f8c9580b38588624e2df93b37eae96a4b3052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "020000000001010fc9eeafc4e63c4e40bbeca65c297455eb5a3414100fa303055d96706f4aae420000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000226a205c6cb1e1bcbfabc97cde4a324c2abc09dbb8974f048899f47c6f158c875271f7a4b3052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4358,7 +4380,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", + "source": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4382,7 +4404,7 @@ "btc_out": 0, "btc_change": 4949953351, "btc_fee": 16649, - "rawtransaction": "020000000001016ca177f459b6c36294fcb4155e83d07122353ab8388ce92973f4e652be3e91c8020000001600140c5f6b2015e1824e0d2b841e238a8fe8e4fe23edffffffff0200000000000000002c6a2a30263885add80b04f339f88a69df0d27f6167813e3f323cfaa236dde5a4a7910ed88bf0a12549501f797474b0a27010000001600140c5f6b2015e1824e0d2b841e238a8fe8e4fe23ed02000000000000", + "rawtransaction": "02000000000101318dbcf475c4b874032fb3f2989349d0695ce469256206b74ca91d4bf5dd0f74020000001600146fc1e09d3d25a8b78c9345abf4733cb0d5882240ffffffff0200000000000000002c6a2a0fae3d503f5f272030f6827403ad73dd0638811e90eb26779a736dd6aa8874775d80d294e1be2127cb07474b0a27010000001600146fc1e09d3d25a8b78c9345abf4733cb0d588224002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4395,14 +4417,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -4421,7 +4443,7 @@ "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "020000000001011cc4f1ec2e36e31211a9399c62df1ab5fd8af892bd5626698abb7f1a824b1a7f00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000236a2152815ea75b3585636dbbcf7e9879494aa1a009d8c27727374d4c47efdeaa5a79f160b3052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "02000000000101772a424f64e888d103ad6b444d8961fdc2d084997e207128a7204a916c8fd7f70000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000236a214264b2defd026c9f8b058fbc9a3ccc8ef14a1635eeef08f1af470f75ac2a94dde160b3052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4434,10 +4456,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "transfer_destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "lock": false, "reset": false, @@ -4450,7 +4472,7 @@ "btc_out": 546, "btc_change": 4999981092, "btc_fee": 18362, - "rawtransaction": "0200000000010103fb4050d4f193e360ad8b027709d53abcbf04a2a1010df3ee4085ce05adde2300000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff032202000000000000160014ab1ca0986fe508fb370b5937169762b6328c900c0000000000000000236a2143df507de8f5a7bf1c9ffa5df39c3d425c98c75defe11495764bf5df144c0c238524a8052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "020000000001013e0e4bd74e37b6311b78dfa53052df39d250afdb47bc36a4b5b1d1cff37d22700000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff03220200000000000016001452e48a2420dddb4d5239ee4f509da9a34bff777a0000000000000000236a21793f612862b2a7beb9354b99022fde7eec9d9d301bde3705a9dac4a697fda9d23c24a8052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4463,16 +4485,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", 1 ], [ "MYASSETA", - "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", 2 ] ], @@ -4480,12 +4502,12 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280ab1ca0986fe508fb370b5937169762b6328c900c80a4ca4c30f02016b9d3311b06228bced4605a672d8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e5452505254590300028052e48a2420dddb4d5239ee4f509da9a34bff777a80a34288aaa16cb6a9c7065f6fedddf0f15f400ec98f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999936609, "btc_fee": 61391, - "rawtransaction": "020000000001046b414523590473e17a060f79d51b143092f0a49fd3c1574cb5c7e8816ffec29600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff6515d67199a23e30ea3e0687743ea61a94b4838a57ecfa86cbd1ab147c003d5800000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff0baa4e42d99e36bd02f37362ccd7959c2714d3addfe4dff113f283be2716734000000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff895f4db1d0bf555d6a70322996020954d8656732fd6e0b7f9129f8b74973cc2b00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff03e803000000000000695121028e1967a49cd0af70d220be6d0499ca4522b167d980b1434a20661459283e699221031daf2ff3356e312c9fea05b6a89292fed1383db83105e08839624392d5a9cce7210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253aee80300000000000069512102811967a49cd0af70d203c900f65eb2c4985e82d17793d398a050833b9e0ce5bb21028da3e757ff2201dcbffcb465998994dc5af6ebd86b62cd071b2a26feb9c6e067210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253ae61d016a804000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000002000002000002000000000000", + "rawtransaction": "020000000001041c554d8764ee6d119d016e24d0fd65836743d8c4438d4388402a77d13c0f3fd20000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffffadac142c6837041de85d3e045f73fef9916d18e6a25bf17bfec4ecb93a8fe9ea0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffffa1840467c0f27dac03f476fdd70722f7daaf74e05a784db506cbd965c2a6b6e10000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff407819504dc30f57271a653a15452cf5d9d82e21aabcde9a21e948e2de95be5a0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff03e803000000000000695121035936f288e6a2e950c979417d5d4f3b446d71e718be0171a8a37da80355f4c99821030d4ea50d0e48026aeb23250c93265a474eb2733f2305c331f13f68345df2cad121038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53aee803000000000000695121025636f288e6a2e950c95a3610af71bbef6bd13ac3ff46d3cd5b0d35aaf6bf36fc21037a346dae4cc0a8cb879584cb957935aa93428060630b0abed3770d58319de65e21038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53ae61d016a80400000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4498,7 +4520,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4515,7 +4537,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -4529,7 +4551,7 @@ "btc_out": 0, "btc_change": 4999982734, "btc_fee": 17266, - "rawtransaction": "02000000000101b11ecb7d27a67136cf85b41c0f1746dd57d2d3a7dc6f554bc5130e8e6df7169c00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000356a3319a3789259879ad196f221e476cd6b47f56525ba5f07aad19e73110a5418e71eb4f883438237b5ca0614a9721c1168c74ebf718eae052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "020000000001016bb7fc25808190b208c7dee271094aa0043a6a1115ee3a5a4dd815e4fb562dad0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000356a33785afb04d6d852d87fb2a584ccd9fa32c43efbcf88f97f71c6287280dc1cca56e96c428ce017a2b255f178b9d53bdba5b8bde48eae052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4542,8 +4564,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4559,12 +4581,12 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880a4ca4c30f02016b9d3311b06228bced4605a672d", + "data": "434e54525052545902000000000000000100000000000003e880a34288aaa16cb6a9c7065f6fedddf0f15f400ec9", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983077, "btc_fee": 16923, - "rawtransaction": "0200000000010158fd1f796df7fea46698bc263a2bd7d424a85d2816510bbdf826be021fab04b400000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000306a2eb06e3c72eb8372859fd223c26c9d6538ae59c8ef14c9d7e98aeb1dd484f73a501c37c81e4d761d5eb3cc7b4cc11ae5af052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "02000000000101583853bdbca05f1cdf88aa192b5724cd3c1d8943b14521aa3e16e452c1140ebc0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000306a2ea68afc5bb95bc1f3c8552f311d0fa507ad98eae55ec7547df98ecf025cd6a9575a98771a161e046bebe05c4c39afe5af052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4577,18 +4599,18 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480a4ca4c30f02016b9d3311b06228bced4605a672d07ffff", + "data": "434e5452505254590480a34288aaa16cb6a9c7065f6fedddf0f15f400ec907ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "02000000000101e28bddd16c488955c1574a8b910920bed71e94cb3424549cfada1dffbf92f4a600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000236a21c6f0014bed1dbb0c63e5c6f4ab9b62aaf1cf8f29b6e1347e7e1b6f9c483a599eaf60b3052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "02000000000101c13a33a55cc4da0d2015c90055619d8f698bd233a8932626abe7fb410f6d728f0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000236a21f5683d8a2a94cc1d0a114e32e61328b41906dc7a99c1e01fc32a5610f42873b3c660b3052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4601,8 +4623,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "quantity": 1000 }, "name": "dispense", @@ -4611,7 +4633,7 @@ "btc_out": 1000, "btc_change": 4949850214, "btc_fee": 16786, - "rawtransaction": "020000000001014965c1a1198d4641adae38c943e3eb0a22e72ee50bc76254283cee7633bc6ca902000000160014a4ca4c30f02016b9d3311b06228bced4605a672dffffffff03e803000000000000160014fcd4fef91bbb7752401bda00950d4c9047d0402800000000000000000c6a0a184253a54004e9393cb266b8082701000000160014a4ca4c30f02016b9d3311b06228bced4605a672d02000000000000", + "rawtransaction": "02000000000101ff2c684a2b3d82813b501e504a4ec3237268859122c8b8d44cc928038298d9a002000000160014a34288aaa16cb6a9c7065f6fedddf0f15f400ec9ffffffff03e803000000000000160014c4fb36b92d4e34760a7faccb00cc7340befb180900000000000000000c6a0ac4557a1a4ec1b4698b2d66b8082701000000160014a34288aaa16cb6a9c7065f6fedddf0f15f400ec902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4624,7 +4646,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4649,7 +4671,7 @@ "btc_out": 0, "btc_change": 4999983008, "btc_fee": 16992, - "rawtransaction": "020000000001019e7e0c7349c31042c37817864ed04394eac047ee9791b172aa8a14fdf4c19a3200000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000316a2fac7eeb583600812eb6b1631a16d1b0a7a79a75c30ea39c7e1a59e3bb4504cc2552cc44343fccc2fd7d3bf2b05dc63ca0af052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "02000000000101edba6678b60b30b896b07bab835b2d27bff4f1a2ef3b0c85fa9d8d509f52fcf70000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000316a2fbc78ad6877f92c6c9063a5baac60ccec90497166faa0e149f52233bcb3765d0c14e4506413953908cdfd54360727a2a0af052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4662,13 +4684,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -4680,7 +4702,7 @@ "btc_out": 0, "btc_change": 4999984858, "btc_fee": 15142, - "rawtransaction": "02000000000101513e585d94693e2e265a99bfab48141b717dfd8dc5193ae57381d547ca8fdff100000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff020000000000000000166a147fee4a8479e15755f753a1cdf924b8686d02c8aadab6052a01000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000000000000", + "rawtransaction": "02000000000101d8db8bab8b2eaf45e73ae61cf0e4ad3217dca2cda44ed3beaaf3fbd8503874850000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000166a148520f4de8ca9160dae71e4febe1a279bc99d6ad3dab6052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4693,8 +4715,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84:1", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4707,12 +4729,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713476773270787230753579306b64637474796d3364396d7a6b636567657971767a6c766a646a7c653461663864363533376631363536383430666638306231653865643432383061373333653434313563333739386632313862656438616634396337326138343a317c5843507c31303030", + "data": "434e5452505254596462637274317132746a67356670716d6864353635336561653834703864663564396c37616d366c61746e6d737c343233353165336263373537343737303430656461633231626163323031623732663735633863356438633139383163363338663061653966396533636130663a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999905256, "btc_fee": 91744, - "rawtransaction": "0200000000010619b635802d062e0f54a0efad67febe746729b3a19c63be03b892f9d66f30e70600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffffaba7e0a56b0cf395747c347a0af12e121a0a8e9f109cd9d78140cf79ccd8e32b00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff36b4a050a5ef3a4860409e9a7d5cd38863eb73f175b0889fa20deb5ba828db3200000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffffad6296b39c4da592264107716b06741fd5f6b6f664432fe3e22765000887fbad00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff11c4a709f74556931b448f065eb8221414d357d1eec183199f6c5e8ea70a2e3e00000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff99421d7eb985e931b30f5f4ed605cedfad817c6a114c92125ac753ccf364c78600000000160014ab1ca0986fe508fb370b5937169762b6328c900cffffffff04e80300000000000069512102e19b774312551ce9ad05c7ad52649b8cc1bf8bbaed53b3f8237c4e12a4ae0dc72102e19bfbce5819425ee7375de33c47f748b619ef29b6067a8e7bd57a6ff1e62892210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253aee80300000000000069512103e19b774312551ce9ad5496f946219cc8c3f1c8b8fb4df9f83478521aaaae5a912102a7d7b2c25c4e4856a9680fb33811b900f805b16ee400759626807d3df0e1290a210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253aee80300000000000069512103cb9b774312551ce9ad53c4f6142a9b81ad8aacf4ac1bf1f856493722cfca6ed4210395ef82a36b7d7b339d5c3e865b228e39c063835fdc6210f21ee11b09c9821ef2210303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b13253aee83922fc06000000160014ab1ca0986fe508fb370b5937169762b6328c900c02000002000002000002000002000002000000000000", + "rawtransaction": "020000000001065d9d5d90602ef0c63cb5c2f71c7207444cfd796ffca66aefdaa9695d50103d790000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff24919df9818f2c23b2c17a43c1eacaf7901ee30d5a484b7c1dbff0890add1bc90000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff960d83f080a9bdef42307111b9cffda8333e9a0a370885b4fc04f981e47107450000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff7ec16616b32c7d5dee428c48e00c530e88d847cf523531cceb4156ba9c835ab20000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffffb9c801d65b42082b83c53cd94b6a23e75bfff63c8bc0f4cc461a7fcc40f3e34d0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff56ea4b7bea9f3325571561e9a5dd52b5d0ab9ef0597ba27739e9f6cefcdabb940000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff04e80300000000000069512102c21d5b917e87e3c707f56838bbb4a555358a3acd795502d40b60e5924b4c187a21030565a6c1e374202dc5c9d9121b372d2fef734dc230371b16b84f3c675a4e34a021038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53aee80300000000000069512102c21d5b917e87e3c707f3696cfcf7a01330ce649a295713c65439e3c61e4b1b3021025166f4cbb1332d2a9b9f884f4f637d7be12e4f806d620e5aed183634524e340321038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53aee80300000000000069512103e81d5b917e87e3c707f26b6baffaa5585fbd00d67d034295660881a77d792b4521026004c3f9d7041849a3fcbd2b77004c42d91f2cb65e5a686a8c7d0f526b2b07c221038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53aee83922fc0600000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4725,8 +4747,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a:1", - "destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6:1", + "destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4739,12 +4761,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964323161393730363531303137313234303438306234303362643834363637333434313264633262363839326630643065666666613364333165613261383137613a317c6263727431713476773270787230753579306b64637474796d3364396d7a6b636567657971767a6c766a646a7c5843507c31303030", + "data": "434e54525052545964616239356165663730393934303131363336633463663561366234393365363262613835623665653664616435363030373366373633373037323263616563363a317c62637274317132746a67356670716d6864353635336561653834703864663564396c37616d366c61746e6d737c5843507c31303030", "btc_in": 4949874900, "btc_out": 3000, "btc_change": 4949842164, "btc_fee": 29736, - "rawtransaction": "020000000001017a812aea313dfaff0e0d2f89b6c22d41346746d83b400b48401217106570a9210100000016001420582a98a28bc63ae45a15b698c57e26fa1be207ffffffff04e80300000000000069512102bf70627fbbd9cc3fc3554a55fd6784c5c5dc1c67645ca0da21af49f034ba20342102738249874b5b409468101cc4006c6585fa1ed00d843437ab5ddbf5814ea3788d2103f746dcb4e4f134685e58226c4d3c6e8be7ab705636aac838644a8adba0b8d0b653aee80300000000000069512103bf70627fbbd9cc3fc3021c57ad3bd2c792d11c603451a09477fc0fbc35a9204d210335c619930b1d46d76a5a189b553d7592b111d551846b2bf05a8ef78251b46f672103f746dcb4e4f134685e58226c4d3c6e8be7ab705636aac838644a8adba0b8d0b653aee803000000000000695121029570627fbbd9cc3fc34b1412f63ad989abaa7d2b645ba1d8159f7dc804d8142e210343b12be3736f76a25f2328f0315e01e6c87ce635bd06519b39eb90e728c519b12103f746dcb4e4f134685e58226c4d3c6e8be7ab705636aac838644a8adba0b8d0b653aef49808270100000016001420582a98a28bc63ae45a15b698c57e26fa1be20702000000000000", + "rawtransaction": "02000000000101c6ae2c727063f7730056ad6deeb685ba623e496b5acfc43616019409f7ae95ab01000000160014f8caf7a9624245ce6d99873e6a23fae0cea1ba18ffffffff04e80300000000000069512102906ba90f50b7c69a6996b9ae8a8bc3f5b011eb413ef6533720c6146e82ec58a321028ed7b4e539ac78f91700a87cb9982e5cb9e5aa0df423a047545b5d806495b2fc2103f654d28f2d46209875e943be3d1b1b665651813787556caecbd1c8b9e2c71c4e53aee80300000000000069512103906ba90f50b7c69a69c4ebfb838990a2b547be1b31f8527a7393552cd0a9099e21039c88b2e63de830a71a52af28ed937e5feab8fb4ba826a24706520180369eb3b42103f654d28f2d46209875e943be3d1b1b665651813787556caecbd1c8b9e2c71c4e53aee80300000000000069512103ba6ba90f50b7c69a699eb9b8ddd3d1ec8e658b0436f2533611f02758e1d83b6d2103e8e2d5d35b9841ca72369a1ed8a01b3e8f80cf3b9042c472626b6db757f385b12103f654d28f2d46209875e943be3d1b1b665651813787556caecbd1c8b9e2c71c4e53aef498082701000000160014f8caf7a9624245ce6d99873e6a23fae0cea1ba1802000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4760,8 +4782,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 10000000000, @@ -4769,16 +4791,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727031579, - "last_issuance_block_time": 1727031596, + "first_issuance_block_time": 1727079860, + "last_issuance_block_time": 1727079868, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", - "owner": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", + "issuer": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", + "owner": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", "divisible": true, "locked": false, "supply": 100000000000, @@ -4786,16 +4808,16 @@ "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1727031574, - "last_issuance_block_time": 1727031574, + "first_issuance_block_time": 1727079855, + "last_issuance_block_time": 1727079855, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 100000000000, @@ -4803,16 +4825,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727031540, - "last_issuance_block_time": 1727031540, + "first_issuance_block_time": 1727079822, + "last_issuance_block_time": 1727079822, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 40, @@ -4820,16 +4842,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727031489, - "last_issuance_block_time": 1727031494, + "first_issuance_block_time": 1727079772, + "last_issuance_block_time": 1727079776, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 19, @@ -4837,8 +4859,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727031472, - "last_issuance_block_time": 1727031485, + "first_issuance_block_time": 1727079755, + "last_issuance_block_time": 1727079767, "supply_normalized": "0.00000019" } ], @@ -4850,8 +4872,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 10000000000, @@ -4859,15 +4881,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1727031435, - "last_issuance_block_time": 1727031448, + "first_issuance_block_time": 1727079718, + "last_issuance_block_time": 1727079731, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4875,14 +4897,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4890,7 +4912,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -4902,7 +4924,7 @@ }, "/v2/assets//balances/
": { "result": { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4921,9 +4943,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4938,7 +4960,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727031738, + "block_time": 1727080022, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4964,9 +4986,9 @@ }, { "tx_index": 55, - "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "block_index": 190, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4981,7 +5003,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727031724, + "block_time": 1727080007, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5007,9 +5029,9 @@ }, { "tx_index": 52, - "tx_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "tx_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "block_index": 186, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -5024,7 +5046,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727031707, + "block_time": 1727079980, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5050,9 +5072,9 @@ }, { "tx_index": 50, - "tx_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "tx_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "block_index": 185, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5067,7 +5089,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727031703, + "block_time": 1727079976, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5093,9 +5115,9 @@ }, { "tx_index": 49, - "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", "block_index": 186, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5110,7 +5132,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727031707, + "block_time": 1727079980, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5141,13 +5163,13 @@ "/v2/assets//matches": { "result": [ { - "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "tx0_index": 49, - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 52, - "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", - "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5161,7 +5183,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727031707, + "block_time": 1727079980, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5181,13 +5203,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "tx0_index": 49, - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 50, - "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", - "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5201,7 +5223,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727031703, + "block_time": 1727079976, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5221,13 +5243,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", "tx0_index": 47, - "tx0_hash": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 48, - "tx1_hash": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", - "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "tx1_hash": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5241,7 +5263,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727031616, + "block_time": 1727079898, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5268,20 +5290,20 @@ "result": [ { "block_index": 192, - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5289,20 +5311,20 @@ }, { "block_index": 125, - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "233dc7165588f359608bc62642e47111d3bfbf33f36cce0c33ba1a62b65c49d3", + "event": "aba09e8187e96520b24e280f230363e20f8f4b7a2c1f87395b3b7c4e5ccccd4a", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031448, + "block_time": 1727079731, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5310,20 +5332,20 @@ }, { "block_index": 124, - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144", + "event": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031444, + "block_time": 1727079726, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5331,20 +5353,20 @@ }, { "block_index": 124, - "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", + "event": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031444, + "block_time": 1727079726, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5356,16 +5378,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144", + "event": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031444, + "block_time": 1727079726, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5379,16 +5401,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "event": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -5400,16 +5422,16 @@ }, { "block_index": 192, - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -5421,16 +5443,16 @@ }, { "block_index": 192, - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -5442,16 +5464,16 @@ }, { "block_index": 191, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "event": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031738, + "block_time": 1727080022, "asset_info": { "divisible": true, "asset_longname": null, @@ -5463,16 +5485,16 @@ }, { "block_index": 189, - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031720, + "block_time": 1727079993, "asset_info": { "divisible": true, "asset_longname": null, @@ -5490,20 +5512,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", + "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", "block_index": 153, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727031565, + "block_time": 1727079846, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5525,14 +5547,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "233dc7165588f359608bc62642e47111d3bfbf33f36cce0c33ba1a62b65c49d3", + "tx_hash": "aba09e8187e96520b24e280f230363e20f8f4b7a2c1f87395b3b7c4e5ccccd4a", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -5547,20 +5569,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727031448, + "block_time": 1727079731, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144", + "tx_hash": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -5575,20 +5597,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727031444, + "block_time": 1727079726, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", + "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -5603,20 +5625,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727031440, + "block_time": 1727079722, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -5631,7 +5653,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1727031435, + "block_time": 1727079718, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5643,10 +5665,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5654,7 +5676,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "divisible": true, "asset_longname": null, @@ -5667,10 +5689,10 @@ }, { "tx_index": 53, - "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763", + "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68", "block_index": 187, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5678,7 +5700,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031711, + "block_time": 1727079984, "asset_info": { "divisible": true, "asset_longname": null, @@ -5691,10 +5713,10 @@ }, { "tx_index": 42, - "tx_hash": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", + "tx_hash": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", "block_index": 155, - "source": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1:0", - "destination": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a:1", + "source": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9:0", + "destination": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5702,7 +5724,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031574, + "block_time": 1727079855, "asset_info": { "divisible": true, "asset_longname": null, @@ -5715,10 +5737,10 @@ }, { "tx_index": 41, - "tx_hash": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1", + "tx_hash": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9", "block_index": 154, - "source": "db0f9118b55250f75e4c301deb8008e4e0f5f440d1b843264992ce00dd293803:0", - "destination": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1:0", + "source": "1e8a7f0d682c559f76df39d59c42e226bb21b74c4825ebc69640eb61dab672ec:0", + "destination": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5726,7 +5748,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031570, + "block_time": 1727079851, "asset_info": { "divisible": true, "asset_longname": null, @@ -5745,18 +5767,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "last_status_tx_hash": null, - "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5766,7 +5788,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727031536, + "block_time": 1727079818, "asset_info": { "divisible": true, "asset_longname": null, @@ -5782,9 +5804,9 @@ }, { "tx_index": 30, - "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", + "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", "block_index": 144, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5793,7 +5815,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5803,7 +5825,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031527, + "block_time": 1727079809, "asset_info": { "divisible": true, "asset_longname": null, @@ -5819,9 +5841,9 @@ }, { "tx_index": 29, - "tx_hash": "d3bbef12243451e8ad3a4da485b4b206a0fa90300424e3639deb554c3b73301a", + "tx_hash": "b16d62f7019440d104a33daf489474a166d0013d0fe9cdd515da181e91bf44aa", "block_index": 142, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5830,7 +5852,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "origin": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5840,7 +5862,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031518, + "block_time": 1727079802, "asset_info": { "divisible": true, "asset_longname": null, @@ -5856,9 +5878,9 @@ }, { "tx_index": 26, - "tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5867,7 +5889,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5877,7 +5899,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -5898,9 +5920,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 30, - "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", + "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", "block_index": 144, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5909,7 +5931,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5919,7 +5941,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031527, + "block_time": 1727079809, "asset_info": { "divisible": true, "asset_longname": null, @@ -5947,7 +5969,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5955,7 +5977,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -5964,7 +5986,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5972,7 +5994,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -5981,7 +6003,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -5989,7 +6011,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -5998,7 +6020,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -6013,27 +6035,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", - "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "last_status_tx_hash": null, - "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6048,7 +6070,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727031536, + "block_time": 1727079818, "asset_info": { "divisible": true, "asset_longname": null, @@ -6062,19 +6084,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", + "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6082,7 +6104,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6097,7 +6119,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -6111,19 +6133,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", + "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", "block_index": 140, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6131,7 +6153,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6146,7 +6168,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031510, + "block_time": 1727079793, "asset_info": { "divisible": true, "asset_longname": null, @@ -6167,8 +6189,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "owner": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false, "supply": 0, @@ -6176,8 +6198,8 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1727031593, - "last_issuance_block_time": 1727031593, + "first_issuance_block_time": 1727079864, + "last_issuance_block_time": 1727079864, "supply_normalized": "0.00000000" } ], @@ -6187,10 +6209,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6215,7 +6237,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727031448 + "block_time": 1727079731 } ], "next_cursor": null, @@ -6224,64 +6246,64 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "233dc7165588f359608bc62642e47111d3bfbf33f36cce0c33ba1a62b65c49d3", + "tx_hash": "aba09e8187e96520b24e280f230363e20f8f4b7a2c1f87395b3b7c4e5ccccd4a", "tx_index": 13, "block_index": 125, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", - "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031448, + "block_time": 1727079731, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } }, { - "tx_hash": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144", + "tx_hash": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153", "tx_index": 12, "block_index": 124, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", - "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031444, + "block_time": 1727079726, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } }, { - "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", + "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031440, + "block_time": 1727079722, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } @@ -6293,22 +6315,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "41f000ae66920b9760e84a71f16201e77f080cc40269f875a89fe18bbd08f478", + "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "fairminter_tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727031440, + "block_time": 1727079722, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } @@ -6321,9 +6343,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6338,7 +6360,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727031738, + "block_time": 1727080022, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6364,9 +6386,9 @@ }, { "tx_index": 55, - "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "block_index": 190, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6381,7 +6403,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727031724, + "block_time": 1727080007, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6407,9 +6429,9 @@ }, { "tx_index": 52, - "tx_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "tx_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "block_index": 186, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6424,7 +6446,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727031707, + "block_time": 1727079980, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6450,9 +6472,9 @@ }, { "tx_index": 50, - "tx_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "tx_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "block_index": 185, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6467,7 +6489,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727031703, + "block_time": 1727079976, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6493,9 +6515,9 @@ }, { "tx_index": 49, - "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", "block_index": 186, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6510,7 +6532,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727031707, + "block_time": 1727079980, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6541,9 +6563,9 @@ "/v2/orders/": { "result": { "tx_index": 57, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6558,7 +6580,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727031738, + "block_time": 1727080022, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6586,13 +6608,13 @@ "/v2/orders//matches": { "result": [ { - "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "tx0_index": 49, - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 52, - "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", - "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6606,7 +6628,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727031707, + "block_time": 1727079980, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6626,13 +6648,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "tx0_index": 49, - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 50, - "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", - "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6646,7 +6668,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727031703, + "block_time": 1727079976, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6673,15 +6695,15 @@ "result": [ { "tx_index": 51, - "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", + "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", "block_index": 185, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "btc_amount": 2000, - "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "status": "valid", "confirmed": true, - "block_time": 1727031703, + "block_time": 1727079976, "btc_amount_normalized": "0.00002000" } ], @@ -6692,9 +6714,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6712,7 +6734,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727031738, + "block_time": 1727080022, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6738,9 +6760,9 @@ }, { "tx_index": 55, - "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "block_index": 190, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6758,7 +6780,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727031724, + "block_time": 1727080007, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6784,9 +6806,9 @@ }, { "tx_index": 52, - "tx_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "tx_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "block_index": 186, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6804,7 +6826,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727031707, + "block_time": 1727079980, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6830,9 +6852,9 @@ }, { "tx_index": 50, - "tx_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "tx_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "block_index": 185, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6850,7 +6872,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727031703, + "block_time": 1727079976, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6876,9 +6898,9 @@ }, { "tx_index": 49, - "tx_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", "block_index": 186, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6896,7 +6918,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727031707, + "block_time": 1727079980, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6927,13 +6949,13 @@ "/v2/orders///matches": { "result": [ { - "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "tx0_index": 49, - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 52, - "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", - "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6950,7 +6972,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727031707, + "block_time": 1727079980, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6970,13 +6992,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "tx0_index": 49, - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 50, - "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", - "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6993,7 +7015,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727031703, + "block_time": 1727079976, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7013,13 +7035,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", "tx0_index": 47, - "tx0_hash": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 48, - "tx1_hash": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", - "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "tx1_hash": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7036,7 +7058,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727031616, + "block_time": 1727079898, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7062,13 +7084,13 @@ "/v2/order_matches": { "result": [ { - "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "tx0_index": 49, - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 52, - "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", - "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7082,7 +7104,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727031707, + "block_time": 1727079980, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7102,13 +7124,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "tx0_index": 49, - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 50, - "tx1_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", - "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7122,7 +7144,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727031703, + "block_time": 1727079976, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7142,13 +7164,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", + "id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", "tx0_index": 47, - "tx0_hash": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_hash": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx1_index": 48, - "tx1_hash": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", - "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "tx1_hash": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7162,7 +7184,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727031616, + "block_time": 1727079898, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7207,66 +7229,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "6428abb0788142a72920efd1a8b5dcdde89c7f503ca062322bcd573acac0e136", + "tx_hash": "913a6e309d29d939a9b42c5b239eda58fd12b57ab1aefd856fe908cc2f03c87a", "block_index": 121, - "source": "bcrt1qyqvw64v3g6jjw0hkydjnz03emknd689c9m445j", + "source": "bcrt1qtlpkqnw458wcn6ggjgl0qhncr5azj57dwx79c9", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1727031432, + "block_time": 1727079713, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "44f44f9f98d05d9ff88e87c42eebe0b002a603f79c116708ea623c2f8c5cb313", + "tx_hash": "23ad1009c59d686328df3821813909176348ca6e1e56cb7b202e128adf338560", "block_index": 120, - "source": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", + "source": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1727031428, + "block_time": 1727079709, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "1e79447843eb5dc9086921e2ded16a84c3271e35d5fe01b149623a4276548de1", + "tx_hash": "4ca2ca199b3ee04e12640955c1b53d6b89ba9df69be6685d3c6d0444a9a4eb1e", "block_index": 119, - "source": "bcrt1qtfj6sgngh8qduq9cl5kqdxwjvjdtfprgxr0re6", + "source": "bcrt1qkwr9w42qzvnq5xgc696j57z7t2pe4tmzmx2nje", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1727031423, + "block_time": 1727079705, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "8619c6ed6633efdb103fc7b72e015e8d9ef017415f20f8778c96116c9766c4ed", + "tx_hash": "35289688c8de88663730c5b8f2f6842ad3fb0dc4cdfe162ba089a104bc04d407", "block_index": 118, - "source": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", + "source": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1727031419, + "block_time": 1727079701, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "d96a0715d3e1a34ea51ca28ce1b475e299ee9a2fd28e2d7955e84b61c541ebd5", + "tx_hash": "324e90e34ddcca760891986a9243dedfbec99c1df8c445016da9df08c1fd821d", "block_index": 117, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1727031415, + "block_time": 1727079697, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7278,18 +7300,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "last_status_tx_hash": null, - "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7299,7 +7321,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727031536, + "block_time": 1727079818, "asset_info": { "divisible": true, "asset_longname": null, @@ -7315,9 +7337,9 @@ }, { "tx_index": 30, - "tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", + "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", "block_index": 144, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7326,7 +7348,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7336,7 +7358,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031527, + "block_time": 1727079809, "asset_info": { "divisible": true, "asset_longname": null, @@ -7352,9 +7374,9 @@ }, { "tx_index": 29, - "tx_hash": "d3bbef12243451e8ad3a4da485b4b206a0fa90300424e3639deb554c3b73301a", + "tx_hash": "b16d62f7019440d104a33daf489474a166d0013d0fe9cdd515da181e91bf44aa", "block_index": 142, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7363,7 +7385,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "origin": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7373,7 +7395,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031518, + "block_time": 1727079802, "asset_info": { "divisible": true, "asset_longname": null, @@ -7389,9 +7411,9 @@ }, { "tx_index": 26, - "tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7400,7 +7422,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7410,7 +7432,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -7431,9 +7453,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7442,7 +7464,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7452,7 +7474,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -7472,19 +7494,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", + "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7492,7 +7514,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7507,7 +7529,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -7521,19 +7543,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", + "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", "block_index": 140, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7541,7 +7563,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7556,7 +7578,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031510, + "block_time": 1727079793, "asset_info": { "divisible": true, "asset_longname": null, @@ -7575,20 +7597,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", + "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", "block_index": 153, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727031565, + "block_time": 1727079846, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -7609,20 +7631,20 @@ "/v2/dividends/": { "result": { "tx_index": 40, - "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", + "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", "block_index": 153, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727031565, + "block_time": 1727079846, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -7645,12 +7667,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", + "event": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", "tx_index": 40, - "utxo": "db0f9118b55250f75e4c301deb8008e4e0f5f440d1b843264992ce00dd293803:0", - "utxo_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "utxo": "1e8a7f0d682c559f76df39d59c42e226bb21b74c4825ebc69640eb61dab672ec:0", + "utxo_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "confirmed": true, - "block_time": 1727031565, + "block_time": 1727079846, "asset_info": { "divisible": true, "asset_longname": null, @@ -7662,16 +7684,16 @@ }, { "block_index": 153, - "address": "bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0", + "address": "bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", + "event": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727031565, + "block_time": 1727079846, "asset_info": { "divisible": true, "asset_longname": null, @@ -7692,27 +7714,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", - "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", + "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", + "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", "transaction_count": 1, - "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", - "block_time": 1727031747 + "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", + "block_time": 1727080029 }, "tx_hash": null, "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "tx_index": 59 }, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 }, { "event_index": 533, @@ -7721,12 +7743,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "status": "valid", "tag": "64657374726f79", - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "tx_index": 59, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -7736,24 +7758,24 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 193, - "event": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "event": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -7763,25 +7785,25 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", "block_index": 193, - "block_time": 1727031747, + "block_time": 1727080029, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "tx_index": 59, - "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", + "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -7801,9 +7823,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 } ], "next_cursor": 530, @@ -7815,15 +7837,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", - "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", + "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", + "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", "transaction_count": 1, - "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", - "block_time": 1727031747 + "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", + "block_time": 1727080029 }, "tx_hash": null, "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 } }, "/v2/events/counts": { @@ -7858,16 +7880,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -7877,78 +7899,78 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", + "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727031724, + "block_time": 1727080007, "asset_info": { "divisible": true, "asset_longname": null, @@ -7958,24 +7980,24 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "block_index": 190, - "block_time": 1727031724 + "block_time": 1727080007 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "event": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "divisible": true, "asset_longname": null, @@ -7985,9 +8007,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "block_time": 1727031716 + "block_time": 1727079989 } ], "next_cursor": 490, @@ -8004,27 +8026,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", - "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "last_status_tx_hash": null, - "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8039,7 +8061,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727031536, + "block_time": 1727079818, "asset_info": { "divisible": true, "asset_longname": null, @@ -8053,19 +8075,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9b550f5e7c999db650aecab1b45c9d40e756836c44825c6b919baf4e924b7194", + "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8073,7 +8095,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8088,7 +8110,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031514, + "block_time": 1727079797, "asset_info": { "divisible": true, "asset_longname": null, @@ -8102,19 +8124,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7b18843a7dd58eab98010b4d5be5ddbd7a965add2a270bb4486191d5d0152a57", + "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", "block_index": 140, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2fdc32a9ff39fd6a6cf380bc70f1eaa429769666853d6a3b476ceaf5b9d3e8a6", + "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8122,7 +8144,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8137,7 +8159,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727031510, + "block_time": 1727079793, "asset_info": { "divisible": true, "asset_longname": null, @@ -8156,10 +8178,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8167,7 +8189,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "divisible": true, "asset_longname": null, @@ -8180,10 +8202,10 @@ }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8191,11 +8213,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -8204,10 +8226,10 @@ }, { "tx_index": 54, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8215,11 +8237,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -8228,10 +8250,10 @@ }, { "tx_index": 53, - "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763", + "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68", "block_index": 187, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -8239,7 +8261,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031711, + "block_time": 1727079984, "asset_info": { "divisible": true, "asset_longname": null, @@ -8252,10 +8274,10 @@ }, { "tx_index": 42, - "tx_hash": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", + "tx_hash": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", "block_index": 155, - "source": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1:0", - "destination": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a:1", + "source": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9:0", + "destination": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8263,7 +8285,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727031574, + "block_time": 1727079855, "asset_info": { "divisible": true, "asset_longname": null, @@ -8282,14 +8304,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", + "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -8304,20 +8326,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031601, + "block_time": 1727079873, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "45b68c9ba64fa212a14541b0a2a12205e850ae06f24d5b225f0a5627c23d19e8", + "tx_hash": "ee5b91c03af937b81687cba8cf5de88a889363660243b7f1e3d0721469e82475", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -8332,20 +8354,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727031596, + "block_time": 1727079868, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "f90297d83b71b86f758f716ba6985c3656c2219501bf5577ac2d96103c22be8b", + "tx_hash": "913be4b557b8ae7b33fffad5a68eec87247e587ef1161d91310b90133a1cb304", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -8360,20 +8382,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031593, + "block_time": 1727079864, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "78d87a84a548e802140107907dab0b844c078356f9fcce558b74909d159796a6", + "tx_hash": "c5f0754dd7d1082a77f739c930d90d5684bb394c04a01e9acf2c0a1742b4dc87", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -8388,20 +8410,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031579, + "block_time": 1727079860, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", + "tx_hash": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", - "issuer": "bcrt1qypvz4x9z30rr4ez6zkmf33t7ymaphcs8qfs34w", + "source": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", + "issuer": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", "transfer": false, "callable": false, "call_date": 0, @@ -8416,7 +8438,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031574, + "block_time": 1727079855, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8427,14 +8449,14 @@ "/v2/issuances/": { "result": { "tx_index": 46, - "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", + "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "transfer": false, "callable": false, "call_date": 0, @@ -8449,7 +8471,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727031601, + "block_time": 1727079873, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8458,16 +8480,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "fee_paid_normalized": "0.00600000" } ], @@ -8478,16 +8500,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727031743, + "block_time": 1727080026, "fee_paid_normalized": "0.00600000" } ], @@ -8498,9 +8520,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06", + "tx_hash": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3", "block_index": 138, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8508,14 +8530,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727031502, + "block_time": 1727079784, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "70bbbef4d727695c9dfe5767a7984c541fa63ee857b8a6f9d4fd484e7e9bb559", + "tx_hash": "7145912710e264e9c5b45407d43bc8fd5318db28c30836a01c4862e2ded179d5", "block_index": 137, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8523,7 +8545,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727031498, + "block_time": 1727079780, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8533,9 +8555,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06", + "tx_hash": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3", "block_index": 138, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8543,17 +8565,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727031502, + "block_time": 1727079784, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", + "tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", "tx_index": 22, "block_index": 135, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8578,13 +8600,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727031489 + "block_time": 1727079772 }, { - "tx_hash": "2e5545a7895d31f04e6d0ef0b6b6fd74d5d2152156a8027604ef94fbcbd454bf", + "tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", "tx_index": 18, "block_index": 131, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8609,13 +8631,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727031472 + "block_time": 1727079755 }, { - "tx_hash": "f0dfc17c191520c1e2ba90abccbcc857553adf8a4e40722685a17b81ff2f781a", + "tx_hash": "569b5d76c793d1fbd773e4c21c313d8d9bd4c08354834bd7fff4de4ba36e79c5", "tx_index": 14, "block_index": 130, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8640,13 +8662,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727031468 + "block_time": 1727079751 }, { - "tx_hash": "43af0db7a980d8246dd0bc878e26bcf245153000020533b6361d99d51904bff2", + "tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8671,7 +8693,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727031448 + "block_time": 1727079731 } ], "next_cursor": null, @@ -8685,8 +8707,8 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", - "address": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8" + "txid": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "address": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj" }, { "vout": 2, @@ -8694,8 +8716,8 @@ "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", - "address": "bcrt1qtfj6sgngh8qduq9cl5kqdxwjvjdtfprgxr0re6" + "txid": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", + "address": "bcrt1qkwr9w42qzvnq5xgc696j57z7t2pe4tmzmx2nje" } ], "next_cursor": null, @@ -8704,28 +8726,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703" + "tx_hash": "e0fb6c717053ccace6058ea89673a15dff5b190c77211ffd001c4094c8df382a" }, { - "tx_hash": "eabb3b7be615850b99b1401f3f242c8fa8e18d2d0ba58915a003fa589718cf11" + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" }, { - "tx_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f" + "tx_hash": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153" }, { - "tx_hash": "b4ad913a4da0b8a1aea7ff383797cd36bd71ec0c696472492482fb488f1e1144" + "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68" }, { - "tx_hash": "298f64a8390e187860e44c4d640b7d4d770a5e900ef83d0a97fa86d29f04c158" + "tx_hash": "8ef179e266d7b41d18f9c03097396fe4b3ec9a584925e023130ca6e7104fe97e" }, { - "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763" + "tx_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587" }, { - "tx_hash": "bbf285a2631b2b28d813ffa0d762877fde240e44f671fd4de2212601b2c96180" + "tx_hash": "edcb65463b8df565685e14b28ef3bfb1c6b8a890786da55ad8c98f75aae755dc" }, { - "tx_hash": "c7f128443db9a77d1633ed327ba6bff1a7df40904a0bcc0aeef69925fc748a83" + "tx_hash": "49ef44a3197cb95a81e7d7af2f370d66b6a5aa5e622be34b111129c5c5eb2be9" } ], "next_cursor": null, @@ -8734,7 +8756,7 @@ "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { "block_index": 7, - "tx_hash": "0695fdf0f969745f89d7923c68582b3d3f4c5e5ec410ab681baddb2ec2c26181" + "tx_hash": "f817a39de71520bece9563e033d9f5a46bac47ca12bf1c5ac954e0ea51113a58" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -8745,17 +8767,17 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c" + "txid": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "0303f9f3f6d3a164de082644f4de706e15191e5339b50176a37c2d038428d2b132" + "result": "038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c" }, "/v2/bitcoin/transactions/": { - "result": "020000000001016cad36f4ab57f2653423ce2e004dcd91065944b0b547f60c13bf64bfea9e4cb20300000000ffffffff020000000000000000226a208f44de3448310d5fa0a8b864c3befe8ba7f95bc61cb57f2a89a1021ab70aac46680b0a2701000000160014fcd4fef91bbb7752401bda00950d4c9047d040280247304402206a051daee11301b981edf77e03e2c58ea1dc1936394e5e3c3a5a10c54527afa702207eb071d141d9508a1fe414b83ba4e3b6aaf09e35fedaf97f335a493674ab69fb012102d0179aa601d1b2caddcfe88c73ca7bf71949d02e3645f85bd050b7b64868f24800000000" + "result": "020000000001018f15e7684083d1f9423c84ed5c4afe1d69ac193d7036a02437756175460496980300000000ffffffff020000000000000000226a20491398ceb53d8e260f4143a231bd8209af9dcb656b81ea7a33cc97a98af87c92680b0a2701000000160014c4fb36b92d4e34760a7faccb00cc7340befb1809024730440220508d1f0f8e8d6ac4cecbe67fb5ef5086ab00963efb24f09e4be2bab5115e1d8f02205dffab35c8ebdd280d22fb55c2ebd0aadef1eca80fb98037e3a94e32222f3b5e01210245711205fa34c28180371a8e6a071cd643ec0f98772bebba59d21b2bf802372100000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 68517 @@ -8778,26 +8800,26 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "tx_index": 60 } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "memo": null, "quantity": 10000, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "status": "valid", - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "tx_index": 60, "asset_info": { "divisible": true, @@ -8810,19 +8832,19 @@ } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "CREDIT", "params": { - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -8834,19 +8856,19 @@ } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 193, - "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -8858,27 +8880,27 @@ } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727031751.6192584, + "block_time": 1727080033.9107606, "btc_amount": 0, - "data": "0200000000000000010000000000002710806dfffb33ff9bf38009f5261067fd1af98dadcc3c", + "data": "0200000000000000010000000000002710803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc", "destination": "", "fee": 10000, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "tx_index": 60, - "utxos_info": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4:1", + "utxos_info": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "memo": null, "asset_info": { "divisible": true, @@ -8900,19 +8922,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "CREDIT", "params": { - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -8930,26 +8952,26 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "tx_index": 60 } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "memo": null, "quantity": 10000, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "status": "valid", - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "tx_index": 60, "asset_info": { "divisible": true, @@ -8962,19 +8984,19 @@ } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "CREDIT", "params": { - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -8986,19 +9008,19 @@ } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 193, - "event": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -9010,27 +9032,27 @@ } }, { - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727031751.6192584, + "block_time": 1727080033.9107606, "btc_amount": 0, - "data": "0200000000000000010000000000002710806dfffb33ff9bf38009f5261067fd1af98dadcc3c", + "data": "0200000000000000010000000000002710803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc", "destination": "", "fee": 10000, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", - "tx_hash": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", "tx_index": 60, - "utxos_info": "1d21c35c808a4ea9ed819db31c56453b4fef9effb80da1d191265dba4bfb50f4:1", + "utxos_info": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "memo": null, "asset_info": { "divisible": true, @@ -9065,15 +9087,15 @@ "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", "block_index": 193, - "block_time": 1727031747, + "block_time": 1727080029, "difficulty": 545259519, - "previous_block_hash": "64f477fca0e3a65153bf04d3302f922e0fa1de8210ecc2f91644a9c0e371e736" + "previous_block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf" }, "tx_hash": null, "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 } ], "next_cursor": 518, @@ -9085,17 +9107,17 @@ "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "64e068795dbdab7f32e9859d48d0d045e3161743a08bce47698afe74a12d232c", + "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", "block_index": 193, - "block_time": 1727031747, + "block_time": 1727080029, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "tx_index": 59, - "utxos_info": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e:1", + "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -9115,9 +9137,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 } ], "next_cursor": 519, @@ -9131,16 +9153,16 @@ "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "destination": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "out_index": 0, - "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", "tx_index": 33, - "block_time": 1727031536, + "block_time": 1727079818, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", "block_index": 146, - "block_time": 1727031536 + "block_time": 1727079818 } ], "next_cursor": 237, @@ -9153,15 +9175,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "476f654b4eff99f9693f2283d385cd0d4b7a0a983d701fa74906ba5420a276e1", - "messages_hash": "0591755991446617f8f5965feba0c9accca862f56454bb156d143358e7203048", + "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", + "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", "transaction_count": 1, - "txlist_hash": "aba312c219f8ee5055a9d5b5f7b3e5d5a4f43ee4de6a17abc11f0dee214b688c", - "block_time": 1727031747 + "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", + "block_time": 1727080029 }, "tx_hash": null, "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 } ], "next_cursor": 529, @@ -9174,12 +9196,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "tx_index": 59 }, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 } ], "next_cursor": 528, @@ -9192,15 +9214,15 @@ "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 193, - "event": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "event": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -9210,9 +9232,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 } ], "next_cursor": 525, @@ -9224,16 +9246,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727031743, + "block_time": 1727080026, "asset_info": { "divisible": true, "asset_longname": null, @@ -9243,9 +9265,9 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 } ], "next_cursor": 524, @@ -9259,14 +9281,14 @@ "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "memo": null, "quantity": 10000, - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "status": "valid", - "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763", + "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68", "tx_index": 53, - "block_time": 1727031711, + "block_time": 1727079984, "asset_info": { "divisible": true, "asset_longname": null, @@ -9276,9 +9298,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "44df4871c7daf984199da9b30459ff4df4c46b6cf9832cfcd897aa3c81a55763", + "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68", "block_index": 187, - "block_time": 1727031711 + "block_time": 1727079984 } ], "next_cursor": null, @@ -9292,15 +9314,15 @@ "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "status": "valid", - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "tx_index": 54, - "block_time": 1727031716, + "block_time": 1727079989, "asset_info": { "divisible": true, "asset_longname": null, @@ -9310,9 +9332,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "43382202754e19340e289738df74a982b8078e4303f40239c2a37caa09428cf6", + "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", "block_index": 188, - "block_time": 1727031716 + "block_time": 1727079989 } ], "next_cursor": 495, @@ -9335,20 +9357,20 @@ "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "status": "valid", - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "tx_index": 58, - "block_time": 1727031743, + "block_time": 1727080026, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "2034b7a91415ad4263a1eb9e40e0ebb3f8304b5100eb02cb3208b6b00b334703", + "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", "block_index": 192, - "block_time": 1727031743 + "block_time": 1727080026 } ], "next_cursor": null, @@ -9365,15 +9387,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "status": "valid", - "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", + "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", "tx_index": 40, - "block_time": 1727031565, + "block_time": 1727079846, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, @@ -9387,9 +9409,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "581a5e94bf77649d0b5aee84e63b02cd76a09c0dd16fa2e114307a01872e23fa", + "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", "block_index": 153, - "block_time": 1727031565 + "block_time": 1727079846 } ], "next_cursor": null, @@ -9410,11 +9432,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 159, - "block_time": 1727031601 + "block_time": 1727079873 }, - "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", + "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", "block_index": 159, - "block_time": 1727031601 + "block_time": 1727079873 } ], "next_cursor": 367, @@ -9437,22 +9459,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "status": "valid", "transfer": false, - "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", + "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", "tx_index": 46, - "block_time": 1727031601, + "block_time": 1727079873, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "867f980a7db6bd58670f5e19d86cf969e17658c53dfb4629e2bf37b50c61993b", + "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", "block_index": 159, - "block_time": 1727031601 + "block_time": 1727079873 } ], "next_cursor": 374, @@ -9467,12 +9489,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qln20a7gmhdm4ysqmmgqf2r2vjpraqspg0ur2dt", + "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", "status": "valid", "tag": "64657374726f79", - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "tx_index": 59, - "block_time": 1727031747, + "block_time": 1727080029, "asset_info": { "divisible": true, "asset_longname": null, @@ -9482,9 +9504,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "50e9cc430d5a7d6fabe7cb708a4bb2c204e1a91a56bfac2cdd10c6a18803de0e", + "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", "block_index": 193, - "block_time": 1727031747 + "block_time": 1727080029 } ], "next_cursor": 157, @@ -9509,11 +9531,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "status": "open", - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "tx_index": 57, - "block_time": 1727031738, + "block_time": 1727080022, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9537,9 +9559,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "71b15a03923b763e77d4179f51fdd9671907df80f3e40f3018462c71b83de00d", + "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", "block_index": 191, - "block_time": 1727031738 + "block_time": 1727080022 } ], "next_cursor": 502, @@ -9557,20 +9579,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a", + "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", "tx0_index": 49, - "tx1_address": "bcrt1qdhllkvlln0ecqz04ycgx0lg6lxx6mnpuhwxg7m", + "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "tx1_index": 52, - "block_time": 1727031707, + "block_time": 1727079980, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9589,9 +9611,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "399d435d448f7b3ebb8e8db847ff49da56b8ed436b1949b4a67a909b3f5e781f", + "tx_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", "block_index": 186, - "block_time": 1727031707 + "block_time": 1727079980 } ], "next_cursor": 461, @@ -9604,11 +9626,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a" + "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d" }, - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "block_index": 190, - "block_time": 1727031724 + "block_time": 1727080007 } ], "next_cursor": 476, @@ -9621,11 +9643,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4" + "tx_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674" }, - "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", + "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", "block_index": 185, - "block_time": 1727031703 + "block_time": 1727079976 } ], "next_cursor": null, @@ -9637,13 +9659,13 @@ "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", - "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", + "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", "status": "completed" }, - "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", + "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", "block_index": 185, - "block_time": 1727031703 + "block_time": 1727079976 } ], "next_cursor": 440, @@ -9657,18 +9679,18 @@ "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "order_match_id": "bb021d5c2e1e74364e42b2b4bc90bffdb2c72d4fcb93911a65db622a0f3b874a_ca668340c5187956843ffaeb65edc5eea80f07128e918ad35470f39ffd4080b4", - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "status": "valid", - "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", + "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", "tx_index": 51, - "block_time": 1727031703, + "block_time": 1727079976, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "a96cbc3376ee3c285462c70be52ee7220aebe343c938aead41468d19a1c16549", + "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", "block_index": 185, - "block_time": 1727031703 + "block_time": 1727079976 } ], "next_cursor": null, @@ -9681,16 +9703,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "95e5356ed811f3182b96ed85d14213aad666d4f19be50f8054d760c3750b9b3a", - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "status": "valid", - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "tx_index": 56, - "block_time": 1727031724 + "block_time": 1727080007 }, - "tx_hash": "e4af8d6537f1656840ff80b1e8ed4280a733e4415c3798f218bed8af49c72a84", + "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", "block_index": 190, - "block_time": 1727031724 + "block_time": 1727080007 } ], "next_cursor": null, @@ -9703,13 +9725,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "block_time": 1727031616 + "order_hash": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "block_time": 1727079898 }, "tx_hash": null, "block_index": 182, - "block_time": 1727031616 + "block_time": 1727079898 } ], "next_cursor": 446, @@ -9722,14 +9744,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "a8f2f09d9eb1c29c4fad73bd44caef58a29b7e8adc1fb5d002981d2a9e50a6af_05c20a5150f3bea6e6bc7880bdb2ff303d5526814290905f5aa3368df2757eb2", - "tx0_address": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "tx1_address": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", - "block_time": 1727031616 + "order_match_id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "block_time": 1727079898 }, "tx_hash": null, "block_index": 182, - "block_time": 1727031616 + "block_time": 1727079898 } ], "next_cursor": null, @@ -9747,14 +9769,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", - "origin": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "satoshirate": 1, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "status": 0, - "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", "tx_index": 32, - "block_time": 1727031531, + "block_time": 1727079813, "asset_info": { "divisible": true, "asset_longname": null, @@ -9767,9 +9789,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", "block_index": 145, - "block_time": 1727031531 + "block_time": 1727079813 } ], "next_cursor": 254, @@ -9784,9 +9806,9 @@ "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "status": 0, - "tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", + "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", "asset_info": { "divisible": true, "asset_longname": null, @@ -9796,9 +9818,9 @@ }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", "block_index": 146, - "block_time": 1727031536 + "block_time": 1727079818 } ], "next_cursor": 260, @@ -9812,13 +9834,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "n2FYo3mrzKRadxtnoovPfHyBikXVxXta5Y", + "destination": "mkJcSPmH7qxK3hZtjfj2T3TuuHiGZh3VFp", "dispense_quantity": 10, - "dispenser_tx_hash": "8e626bb554643fec68f07b753329479127fc0cd9944ce6e8ce3afc99876297c7", - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", - "tx_hash": "12cff7ed44f7f2a7e9a0fca9448cafbb92641815b36160fff5a0181d181bf0d0", + "dispenser_tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx_hash": "677868f74ae703fe6e541c7a6b9bc66ccbfa9996472a98fa16bbecd9bcc1a9f0", "tx_index": 31, - "block_time": 1727031527, + "block_time": 1727079809, "asset_info": { "divisible": true, "asset_longname": null, @@ -9828,9 +9850,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "12cff7ed44f7f2a7e9a0fca9448cafbb92641815b36160fff5a0181d181bf0d0", + "tx_hash": "677868f74ae703fe6e541c7a6b9bc66ccbfa9996472a98fa16bbecd9bcc1a9f0", "block_index": 144, - "block_time": 1727031527 + "block_time": 1727079809 } ], "next_cursor": null, @@ -9845,14 +9867,14 @@ "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qp30kkgq4uxpyurftss0z8z50arj0ugldhenzf8", + "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "880a0764df90f8e0397c414a4d4a1ad019d1e1b0590378117680a0924ac132ef", - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", - "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", "tx_index": 33, - "block_time": 1727031536, + "block_time": 1727079818, "asset_info": { "divisible": true, "asset_longname": null, @@ -9863,9 +9885,9 @@ "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "c8913ebe52e6f47329e98c38b83a352271d0835e15b4fc9462c3b659f477a16c", + "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", "block_index": 146, - "block_time": 1727031536 + "block_time": 1727079818 } ], "next_cursor": 240, @@ -9880,19 +9902,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qnaau3xglq2a4xavlcfm6qex680u7fqay9vm48x", + "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06", + "tx_hash": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3", "tx_index": 25, "value": 66600.0, - "block_time": 1727031502, + "block_time": 1727079784, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "fcfdb6a111e93304254c341c3a432364dcf48da66f395a319ea7ec0d28e48d06", + "tx_hash": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3", "block_index": 138, - "block_time": 1727031502 + "block_time": 1727079784 } ], "next_cursor": 213, @@ -9923,16 +9945,16 @@ "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "start_block": 0, "status": "open", - "tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", + "tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", "tx_index": 22, - "block_time": 1727031489 + "block_time": 1727079772 }, - "tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", + "tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", "block_index": 135, - "block_time": 1727031489 + "block_time": 1727079772 } ], "next_cursor": 161, @@ -9945,11 +9967,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "f0dfc17c191520c1e2ba90abccbcc857553adf8a4e40722685a17b81ff2f781a" + "tx_hash": "569b5d76c793d1fbd773e4c21c313d8d9bd4c08354834bd7fff4de4ba36e79c5" }, "tx_hash": null, "block_index": 130, - "block_time": 1727031468 + "block_time": 1727079751 } ], "next_cursor": 110, @@ -9965,24 +9987,24 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "c0434e39999fc883b4a4d911e3fe85da9a69bceadb37c40793f7d782bc140054", + "fairminter_tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", "paid_quantity": 34, - "source": "bcrt1q5n9ycv8syqttn5e3rvrz9z7w63s95eed6tcv0d", + "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", "status": "valid", - "tx_hash": "ede174d6ebd168d04cfbc10891f9d7eb903c0d105cd7455db87566871ceb66a4", + "tx_hash": "14b14a8360be741c147b158caf79d5fcf98f9986207c8fe5fe42526940d1ddc1", "tx_index": 23, - "block_time": 1727031494, + "block_time": 1727079776, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false } }, - "tx_hash": "ede174d6ebd168d04cfbc10891f9d7eb903c0d105cd7455db87566871ceb66a4", + "tx_hash": "14b14a8360be741c147b158caf79d5fcf98f9986207c8fe5fe42526940d1ddc1", "block_index": 136, - "block_time": 1727031494 + "block_time": 1727079776 } ], "next_cursor": 190, @@ -9996,28 +10018,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450:1", + "destination": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "status": "valid", - "tx_hash": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", + "tx_hash": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", "tx_index": 38, - "block_time": 1727031557, + "block_time": 1727079839, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "91d064a4bbd8ac201ad7c59370fd3a413a0f08bdc2a01877e9b3782377d66450", + "tx_hash": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", "block_index": 151, - "block_time": 1727031557 + "block_time": 1727079839 } ], "next_cursor": 291, @@ -10031,28 +10053,28 @@ "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qlulaqmc8sx6k2rvmkyf84uzz4m4nfpcrsdw9j0", + "destination": "bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "eabb3b7be615850b99b1401f3f242c8fa8e18d2d0ba58915a003fa589718cf11:0", + "source": "e0fb6c717053ccace6058ea89673a15dff5b190c77211ffd001c4094c8df382a:0", "status": "valid", - "tx_hash": "b24c9eeabf64bf130cf647b5b044590691cd4d002ece233465f257abf436ad6c", + "tx_hash": "989604467561753724a036703d19ac691dfe4a5ced843c42f9d1834068e7158f", "tx_index": 37, - "block_time": 1727031553, + "block_time": 1727079835, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4vw2pxr0u5y0kdcttym3d9mzkcegeyqvzlvjdj", + "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "b24c9eeabf64bf130cf647b5b044590691cd4d002ece233465f257abf436ad6c", + "tx_hash": "989604467561753724a036703d19ac691dfe4a5ced843c42f9d1834068e7158f", "block_index": 150, - "block_time": 1727031553 + "block_time": 1727079835 } ], "next_cursor": null, @@ -10066,14 +10088,14 @@ "params": { "asset": "XCP", "block_index": 155, - "destination": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a:1", + "destination": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6:1", "msg_index": 1, "quantity": 1500000000, - "source": "42bf5619a999b6fe8e3264dddb9f9a8b5ebfc7f9d5590089d545b8f2ab4b5bc1:0", + "source": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9:0", "status": "valid", - "tx_hash": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", + "tx_hash": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", "tx_index": 42, - "block_time": 1727031574, + "block_time": 1727079855, "asset_info": { "divisible": true, "asset_longname": null, @@ -10083,9 +10105,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "21a9706510171240480b403bd8466734412dc2b6892f0d0efffa3d31ea2a817a", + "tx_hash": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", "block_index": 155, - "block_time": 1727031574 + "block_time": 1727079855 } ], "next_cursor": 346, @@ -10100,17 +10122,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qyqvw64v3g6jjw0hkydjnz03emknd689c9m445j", + "source": "bcrt1qtlpkqnw458wcn6ggjgl0qhncr5azj57dwx79c9", "status": "valid", - "tx_hash": "6428abb0788142a72920efd1a8b5dcdde89c7f503ca062322bcd573acac0e136", + "tx_hash": "913a6e309d29d939a9b42c5b239eda58fd12b57ab1aefd856fe908cc2f03c87a", "tx_index": 9, - "block_time": 1727031432, + "block_time": 1727079713, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "6428abb0788142a72920efd1a8b5dcdde89c7f503ca062322bcd573acac0e136", + "tx_hash": "913a6e309d29d939a9b42c5b239eda58fd12b57ab1aefd856fe908cc2f03c87a", "block_index": 121, - "block_time": 1727031432 + "block_time": 1727079713 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/util_test.py b/counterparty-core/counterpartycore/test/util_test.py index c849c806ba..10fe52763a 100644 --- a/counterparty-core/counterpartycore/test/util_test.py +++ b/counterparty-core/counterpartycore/test/util_test.py @@ -43,6 +43,7 @@ transaction, util, ) +from counterpartycore.lib.api.util import to_json # noqa: E402 from counterpartycore.lib.messages import fairminter, utxo # noqa from counterpartycore.test.fixtures.params import DEFAULT_PARAMS as DP # noqa: E402 from counterpartycore.test.fixtures.scenarios import ( # noqa: E402 @@ -911,9 +912,7 @@ def check_outputs( ) else: msg = f"expected outputs don't match test_outputs: expected_outputs={outputs} test_outputs={test_outputs}" - import json - - print(json.dumps(test_outputs, indent=4)) + print(to_json(test_outputs)) raise Exception(msg) # noqa: B904 if records is not None: for record in records: diff --git a/counterparty-core/counterpartycore/test/utxolocks_test.py b/counterparty-core/counterpartycore/test/utxolocks_test.py index 2c80d7edc8..1bf04ee089 100644 --- a/counterparty-core/counterpartycore/test/utxolocks_test.py +++ b/counterparty-core/counterpartycore/test/utxolocks_test.py @@ -7,6 +7,7 @@ from counterpartycore.lib import transaction from counterpartycore.lib.messages import send +from counterpartycore.lib.transaction_helper import transaction_inputs from counterpartycore.test import ( conftest, # noqa: F401 ) @@ -27,7 +28,7 @@ def construct_tx(db, source, destination, disable_utxo_locks=False, inputs_set=N def test_utxolocks(server_db): - transaction.UTXOLocks().init(utxo_locks_max_addresses=10) # reset UTXO_LOCKS + transaction_inputs.UTXOLocks().init(utxo_locks_max_addresses=10) # reset UTXO_LOCKS """it shouldn't use the same UTXO""" tx1hex = construct_tx( @@ -50,7 +51,7 @@ def test_utxolocks(server_db): def test_utxolocks_custom_input(server_db): - transaction.UTXOLocks().init(utxo_locks_max_addresses=10) # reset UTXO_LOCKS + transaction_inputs.UTXOLocks().init(utxo_locks_max_addresses=10) # reset UTXO_LOCKS """it should use the same UTXO""" inputs_set = [ @@ -91,7 +92,7 @@ def test_utxolocks_custom_input(server_db): def test_disable_utxolocks(server_db): - transaction.UTXOLocks().init(utxo_locks_max_addresses=10) # reset UTXO_LOCKS + transaction_inputs.UTXOLocks().init(utxo_locks_max_addresses=10) # reset UTXO_LOCKS """with `disable_utxo_locks=True` it should use the same UTXO""" tx1hex = construct_tx( From e678f12434ca171eca207ccffbb84c86b1233682 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 23 Sep 2024 11:20:41 +0000 Subject: [PATCH 28/46] Refactor transaction.py final phase --- apiary.apib | 3527 +++++++++-------- .../counterpartycore/lib/api/api_v1.py | 5 +- .../counterpartycore/lib/api/compose.py | 2 +- .../counterpartycore/lib/api/util.py | 14 +- .../counterpartycore/lib/gettxinfo.py | 4 +- .../counterpartycore/lib/transaction.py | 409 +- .../{serializer.py => common_serializer.py} | 0 .../{p2sh_encoding.py => p2sh_serializer.py} | 16 +- .../transaction_helper/transaction_inputs.py | 28 +- .../transaction_helper/transaction_outputs.py | 263 ++ .../counterpartycore/test/conftest.py | 5 +- .../test/fixtures/api_v2_fixtures.json | 36 +- .../fixtures/contract_vectors/transaction.py | 8 +- .../fixtures/scenarios/multisig_1_of_2.log | 24 - .../fixtures/scenarios/multisig_1_of_3.log | 24 - .../fixtures/scenarios/multisig_2_of_2.log | 24 - .../fixtures/scenarios/multisig_2_of_3.log | 24 - .../fixtures/scenarios/multisig_3_of_3.log | 24 - .../scenarios/parseblock_unittest_fixture.log | 64 - .../test/fixtures/scenarios/simplesig.log | 24 - .../fixtures/scenarios/unittest_fixture.log | 64 - .../counterpartycore/test/fixtures/vectors.py | 2 +- .../test/p2sh_encoding_test.py | 12 +- .../test/regtest/apidoc/apicache.json | 3123 ++++++++------- .../test/regtest/regtestnode.py | 2 +- .../test/regtest/testscenarios.py | 4 +- .../counterpartycore/test/util_test.py | 3 +- release-notes/release-notes-v10.4.1.md | 3 +- 28 files changed, 3842 insertions(+), 3896 deletions(-) rename counterparty-core/counterpartycore/lib/transaction_helper/{serializer.py => common_serializer.py} (100%) rename counterparty-core/counterpartycore/lib/transaction_helper/{p2sh_encoding.py => p2sh_serializer.py} (97%) create mode 100644 counterparty-core/counterpartycore/lib/transaction_helper/transaction_outputs.py diff --git a/apiary.apib b/apiary.apib index 9c94ec656a..337264bcc6 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-09-23 08:27:25.448540. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-09-23 11:14:18.402472. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -179,15 +179,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", "block_index": 193, - "block_time": 1727080029, + "block_time": 1727090032, "difficulty": 545259519, - "previous_block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf" + "previous_block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697" }, "tx_hash": null, "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 } ], "next_cursor": 518, @@ -204,17 +204,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", "block_index": 193, - "block_time": 1727080029, + "block_time": 1727090032, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "tx_index": 59, - "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", + "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -234,9 +234,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 } ], "next_cursor": 519, @@ -255,16 +255,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "destination": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "out_index": 0, - "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", "tx_index": 33, - "block_time": 1727079818, + "block_time": 1727089824, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", "block_index": 146, - "block_time": 1727079818 + "block_time": 1727089824 } ], "next_cursor": 237, @@ -282,15 +282,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", - "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", + "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", + "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", "transaction_count": 1, - "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", - "block_time": 1727080029 + "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", + "block_time": 1727090032 }, "tx_hash": null, "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 } ], "next_cursor": 529, @@ -308,12 +308,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "tx_index": 59 }, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 } ], "next_cursor": 528, @@ -333,15 +333,15 @@ Here is a list of events classified by theme and for each an example response: "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 193, - "event": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "event": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -351,9 +351,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 } ], "next_cursor": 525, @@ -370,16 +370,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -389,9 +389,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 } ], "next_cursor": 524, @@ -410,14 +410,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "memo": null, "quantity": 10000, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "status": "valid", - "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68", + "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794", "tx_index": 53, - "block_time": 1727079984, + "block_time": 1727090007, "asset_info": { "divisible": true, "asset_longname": null, @@ -427,9 +427,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68", + "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794", "block_index": 187, - "block_time": 1727079984 + "block_time": 1727090007 } ], "next_cursor": null, @@ -448,15 +448,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "status": "valid", - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "tx_index": 54, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "divisible": true, "asset_longname": null, @@ -466,9 +466,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "block_time": 1727079989 + "block_time": 1727090011 } ], "next_cursor": 495, @@ -506,20 +506,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "status": "valid", - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, - "block_time": 1727080026, + "block_time": 1727090028, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 } ], "next_cursor": null, @@ -541,15 +541,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": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "status": "valid", - "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", + "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", "tx_index": 40, - "block_time": 1727079846, + "block_time": 1727089854, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -563,9 +563,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": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", + "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", "block_index": 153, - "block_time": 1727079846 + "block_time": 1727089854 } ], "next_cursor": null, @@ -598,11 +598,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": 159, - "block_time": 1727079873 + "block_time": 1727089900 }, - "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", + "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", "block_index": 159, - "block_time": 1727079873 + "block_time": 1727089900 } ], "next_cursor": 367, @@ -630,22 +630,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": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "status": "valid", "transfer": false, - "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", + "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", "tx_index": 46, - "block_time": 1727079873, + "block_time": 1727089900, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", + "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", "block_index": 159, - "block_time": 1727079873 + "block_time": 1727089900 } ], "next_cursor": 374, @@ -665,12 +665,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "status": "valid", "tag": "64657374726f79", - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "tx_index": 59, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -680,9 +680,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 } ], "next_cursor": 157, @@ -714,11 +714,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": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "status": "open", - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "tx_index": 57, - "block_time": 1727080022, + "block_time": 1727090024, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -742,9 +742,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": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "block_time": 1727080022 + "block_time": 1727090024 } ], "next_cursor": 502, @@ -767,20 +767,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": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", "tx0_index": 49, - "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "tx1_index": 52, - "block_time": 1727079980, + "block_time": 1727090002, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -799,9 +799,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": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "tx_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "block_index": 186, - "block_time": 1727079980 + "block_time": 1727090002 } ], "next_cursor": 461, @@ -819,11 +819,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d" + "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b" }, - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "block_index": 190, - "block_time": 1727080007 + "block_time": 1727090019 } ], "next_cursor": 476, @@ -841,11 +841,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674" + "tx_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628" }, - "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", + "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", "block_index": 185, - "block_time": 1727079976 + "block_time": 1727089998 } ], "next_cursor": null, @@ -862,13 +862,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", - "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "status": "completed" }, - "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", + "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", "block_index": 185, - "block_time": 1727079976 + "block_time": 1727089998 } ], "next_cursor": 440, @@ -887,18 +887,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "status": "valid", - "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", + "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", "tx_index": 51, - "block_time": 1727079976, + "block_time": 1727089998, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", + "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", "block_index": 185, - "block_time": 1727079976 + "block_time": 1727089998 } ], "next_cursor": null, @@ -916,16 +916,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "status": "valid", - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "tx_index": 56, - "block_time": 1727080007 + "block_time": 1727090019 }, - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "block_index": 190, - "block_time": 1727080007 + "block_time": 1727090019 } ], "next_cursor": null, @@ -943,13 +943,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "block_time": 1727079898 + "order_hash": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "block_time": 1727089916 }, "tx_hash": null, "block_index": 182, - "block_time": 1727079898 + "block_time": 1727089916 } ], "next_cursor": 446, @@ -967,14 +967,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "block_time": 1727079898 + "order_match_id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "block_time": 1727089916 }, "tx_hash": null, "block_index": 182, - "block_time": 1727079898 + "block_time": 1727089916 } ], "next_cursor": null, @@ -999,14 +999,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": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", - "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "satoshirate": 1, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "status": 0, - "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", "tx_index": 32, - "block_time": 1727079813, + "block_time": 1727089820, "asset_info": { "divisible": true, "asset_longname": null, @@ -1019,9 +1019,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": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", "block_index": 145, - "block_time": 1727079813 + "block_time": 1727089820 } ], "next_cursor": 254, @@ -1041,9 +1041,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "status": 0, - "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", "asset_info": { "divisible": true, "asset_longname": null, @@ -1053,9 +1053,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", "block_index": 146, - "block_time": 1727079818 + "block_time": 1727089824 } ], "next_cursor": 260, @@ -1074,13 +1074,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mkJcSPmH7qxK3hZtjfj2T3TuuHiGZh3VFp", + "destination": "mrr2jyjX3kFi5rrXMeDj3zYkjr6YetBX9M", "dispense_quantity": 10, - "dispenser_tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "tx_hash": "677868f74ae703fe6e541c7a6b9bc66ccbfa9996472a98fa16bbecd9bcc1a9f0", + "dispenser_tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_hash": "682a8a0b6713f471954fb331bfb65eac76796efa2f1bdf8d22e67daedd57150e", "tx_index": 31, - "block_time": 1727079809, + "block_time": 1727089816, "asset_info": { "divisible": true, "asset_longname": null, @@ -1090,9 +1090,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "677868f74ae703fe6e541c7a6b9bc66ccbfa9996472a98fa16bbecd9bcc1a9f0", + "tx_hash": "682a8a0b6713f471954fb331bfb65eac76796efa2f1bdf8d22e67daedd57150e", "block_index": 144, - "block_time": 1727079809 + "block_time": 1727089816 } ], "next_cursor": null, @@ -1112,14 +1112,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", + "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", - "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", "tx_index": 33, - "block_time": 1727079818, + "block_time": 1727089824, "asset_info": { "divisible": true, "asset_longname": null, @@ -1130,9 +1130,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", "block_index": 146, - "block_time": 1727079818 + "block_time": 1727089824 } ], "next_cursor": 240, @@ -1154,19 +1154,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": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3", + "tx_hash": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d", "tx_index": 25, "value": 66600.0, - "block_time": 1727079784, + "block_time": 1727089781, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3", + "tx_hash": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d", "block_index": 138, - "block_time": 1727079784 + "block_time": 1727089781 } ], "next_cursor": 213, @@ -1204,16 +1204,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "start_block": 0, "status": "open", - "tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", + "tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", "tx_index": 22, - "block_time": 1727079772 + "block_time": 1727089768 }, - "tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", + "tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", "block_index": 135, - "block_time": 1727079772 + "block_time": 1727089768 } ], "next_cursor": 161, @@ -1231,11 +1231,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "569b5d76c793d1fbd773e4c21c313d8d9bd4c08354834bd7fff4de4ba36e79c5" + "tx_hash": "bb99ad8dc9e2abcd6ec3a52b9cd21471fcbbf9b4d21c6a72ea69dcec59436f48" }, "tx_hash": null, "block_index": 130, - "block_time": 1727079751 + "block_time": 1727089747 } ], "next_cursor": 110, @@ -1256,24 +1256,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", + "fairminter_tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", "paid_quantity": 34, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "status": "valid", - "tx_hash": "14b14a8360be741c147b158caf79d5fcf98f9986207c8fe5fe42526940d1ddc1", + "tx_hash": "336b5e03756508a441266e3629a6ea97f2652ea3ccdc9453459d825b38a65a17", "tx_index": 23, - "block_time": 1727079776, + "block_time": 1727089772, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } }, - "tx_hash": "14b14a8360be741c147b158caf79d5fcf98f9986207c8fe5fe42526940d1ddc1", + "tx_hash": "336b5e03756508a441266e3629a6ea97f2652ea3ccdc9453459d825b38a65a17", "block_index": 136, - "block_time": 1727079776 + "block_time": 1727089772 } ], "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": 151, - "destination": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8:1", + "destination": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "status": "valid", - "tx_hash": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", + "tx_hash": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", "tx_index": 38, - "block_time": 1727079839, + "block_time": 1727089845, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", + "tx_hash": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", "block_index": 151, - "block_time": 1727079839 + "block_time": 1727089845 } ], "next_cursor": 291, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd", + "destination": "bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "e0fb6c717053ccace6058ea89673a15dff5b190c77211ffd001c4094c8df382a:0", + "source": "9c20a315f9dd83391105db586e409f6b237d721fe234db96ff0cab43fa5174af:0", "status": "valid", - "tx_hash": "989604467561753724a036703d19ac691dfe4a5ced843c42f9d1834068e7158f", + "tx_hash": "a592122f19e7c7afd8e7ca3b3fa6c680c8fe697a5efbe3b3c4f6c2758f87370f", "tx_index": 37, - "block_time": 1727079835, + "block_time": 1727089841, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "989604467561753724a036703d19ac691dfe4a5ced843c42f9d1834068e7158f", + "tx_hash": "a592122f19e7c7afd8e7ca3b3fa6c680c8fe697a5efbe3b3c4f6c2758f87370f", "block_index": 150, - "block_time": 1727079835 + "block_time": 1727089841 } ], "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": 155, - "destination": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6:1", + "destination": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c:1", "msg_index": 1, "quantity": 1500000000, - "source": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9:0", + "source": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7:0", "status": "valid", - "tx_hash": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", + "tx_hash": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", "tx_index": 42, - "block_time": 1727079855, + "block_time": 1727089863, "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": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", + "tx_hash": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", "block_index": 155, - "block_time": 1727079855 + "block_time": 1727089863 } ], "next_cursor": 346, @@ -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": "bcrt1qtlpkqnw458wcn6ggjgl0qhncr5azj57dwx79c9", + "source": "bcrt1qwp3vs8yzyz6lc0udjsz37s78rwa908kzgnm7yu", "status": "valid", - "tx_hash": "913a6e309d29d939a9b42c5b239eda58fd12b57ab1aefd856fe908cc2f03c87a", + "tx_hash": "6a8c5d264053a3fe132a67dfd75f6b75be30fbcc6338e9b6df1e8537ac9908e3", "tx_index": 9, - "block_time": 1727079713, + "block_time": 1727089709, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "913a6e309d29d939a9b42c5b239eda58fd12b57ab1aefd856fe908cc2f03c87a", + "tx_hash": "6a8c5d264053a3fe132a67dfd75f6b75be30fbcc6338e9b6df1e8537ac9908e3", "block_index": 121, - "block_time": 1727079713 + "block_time": 1727089709 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 193, - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", - "block_time": 1727080029, - "previous_block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_time": 1727090032, + "previous_block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", "difficulty": 545259519, - "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", - "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", - "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", + "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", + "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", + "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", - "block_time": 1727080026, - "previous_block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", + "block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", + "block_time": 1727090028, + "previous_block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", "difficulty": 545259519, - "ledger_hash": "0a01bff8eb1c310d8222e4ccb4760085675430d12422c8dd6c1406862fd2bcd5", - "txlist_hash": "cd465c4124d8f65b6f8d4112a5934530f16fcb6a7ac9f405937f60b64cac9f03", - "messages_hash": "3fc52191dfde04576e3cd5974b4af5b7e1c3ec66fa0d275067d2c8ece10ef148", + "ledger_hash": "d46c9a79ea9f28e5a8abedc26ec0f354521174a4b6ebe4c696652f7ba6d3eaf6", + "txlist_hash": "9707feba25739b7012ed85043e312c25f56921b21aa328e4be348e4425527ad8", + "messages_hash": "75b5676163832b1dabee3d864b37620ada5061afe4a69701e9e2cc694b8e9e5f", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", - "block_time": 1727080022, - "previous_block_hash": "27631674929a77b7907c42d4559d560e994bddb1c5dc880e51ac065952ccc04b", + "block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", + "block_time": 1727090024, + "previous_block_hash": "4b99bbc6808e4b765e983849737aafe5ef708306f5c65833991a73d0cce49c33", "difficulty": 545259519, - "ledger_hash": "c918416572951e1e48365514f20bdd3d512f8a1ceef0accbc5e41f80724e81ba", - "txlist_hash": "300cac11ea531e4e01f87018a1e392ed79f5273964799d1f25a4d70f2df71439", - "messages_hash": "d004ba210b48210939040d6d03420f5eecfeeb330a2c32b5cf9be077a32818fc", + "ledger_hash": "55612d24a38e775d9ae90229d537d96b0165d975b8fbe0ed5bdd85e8dd396c1f", + "txlist_hash": "8a77df6642e1fcfe0beb18b335a1ad317013b9b9a86929d6d436707327271eab", + "messages_hash": "0eeda5ff9e6480091916f110f8d7aeda363c7c9188d40f33b2a33e0e5e5f6846", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "27631674929a77b7907c42d4559d560e994bddb1c5dc880e51ac065952ccc04b", - "block_time": 1727080007, - "previous_block_hash": "6fb0ca06b43613ffed61018fcb6082c59452492ba985576337703460a5a270f0", + "block_hash": "4b99bbc6808e4b765e983849737aafe5ef708306f5c65833991a73d0cce49c33", + "block_time": 1727090019, + "previous_block_hash": "2923560e2bcacf6e73d9eff03c6d1595137115cb81061d215b3edaa9ff0e70ca", "difficulty": 545259519, - "ledger_hash": "51469f0e92c07c9a475dddf1df377bdd6b740d6cec92661eaf9fff84113fddcc", - "txlist_hash": "97b3b22f1089946ec419f2824b21c0c0d7810013a5fbeb5bf8d9cb15d4d0e015", - "messages_hash": "52a4e5b87f05460ee8c0a6d8c8d7b6444216529a0e072a6a4e90e4b7a6ac2205", + "ledger_hash": "a3a3134ddd4dd5c9ecad8e689725219ba0e003405f6f4fa8d227a19f8495d5d0", + "txlist_hash": "40d6882b32b7c28fa05a9fda718c7d60a0dbc9039a8a1b7b19a1713f988e4859", + "messages_hash": "4a5594b373b41e3b2556bb42861d4e775adad70ffdae75e67864cc8797bec351", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "6fb0ca06b43613ffed61018fcb6082c59452492ba985576337703460a5a270f0", - "block_time": 1727079993, - "previous_block_hash": "48b2d19d551135b795db9414be8cef12acb0b131f1d153c2e457362aee6f39fa", + "block_hash": "2923560e2bcacf6e73d9eff03c6d1595137115cb81061d215b3edaa9ff0e70ca", + "block_time": 1727090015, + "previous_block_hash": "3fa9c2277a64ed52b884ca2a17da14b49509020652eb361abe768ef64c58a8b1", "difficulty": 545259519, - "ledger_hash": "53951e46fc709ae22d91dde1f09c776635c86a1f6148f4509e0a2bd3e5dab77a", - "txlist_hash": "1e2450020fb89ed8fbfa6b65fc361d79b6ffaa2a7c0d1c0a1ba8f07b8e820fd2", - "messages_hash": "92c69ccbc7509d2230f7338d7e4a1877e33012a84995ba281e76d99fc4709d67", + "ledger_hash": "9493cb79f2b216820d42d4c9138cac197dc6cad664473c5fd95156f9ce96127b", + "txlist_hash": "8154a4708a00d17782cfdfe4cbb99ae6b5369bb2abe59c809b471190edc2abe6", + "messages_hash": "17b8c592cef8a595dae2b4c23cf034ec7c522b339169fe4209d65a6f86869d5f", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 193, - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", - "block_time": 1727080029, - "previous_block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_time": 1727090032, + "previous_block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", "difficulty": 545259519, - "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", - "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", - "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", + "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", + "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", + "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e` (str, required) - The index of the block to return + + block_hash: `45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09` (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": 193, - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", - "block_time": 1727080029, - "previous_block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_time": 1727090032, + "previous_block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", "difficulty": 545259519, - "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", - "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", - "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", + "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", + "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", + "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 59, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", - "block_time": 1727080029, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_time": 1727090032, + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", + "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1706,11 +1706,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "0a01bff8eb1c310d8222e4ccb4760085675430d12422c8dd6c1406862fd2bcd5", - "messages_hash": "3fc52191dfde04576e3cd5974b4af5b7e1c3ec66fa0d275067d2c8ece10ef148", + "ledger_hash": "d46c9a79ea9f28e5a8abedc26ec0f354521174a4b6ebe4c696652f7ba6d3eaf6", + "messages_hash": "75b5676163832b1dabee3d864b37620ada5061afe4a69701e9e2cc694b8e9e5f", "transaction_count": 1, - "txlist_hash": "cd465c4124d8f65b6f8d4112a5934530f16fcb6a7ac9f405937f60b64cac9f03", - "block_time": 1727080026 + "txlist_hash": "9707feba25739b7012ed85043e312c25f56921b21aa328e4be348e4425527ad8", + "block_time": 1727090028 }, "tx_hash": null }, @@ -1719,43 +1719,43 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58 }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "status": "valid", - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, - "block_time": 1727080026, + "block_time": 1727090028, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -1765,22 +1765,22 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "XCP", "block_index": 192, - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -1790,7 +1790,7 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" } ], "next_cursor": 524, @@ -1873,16 +1873,16 @@ Returns the events of a block filtered by event "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -1892,57 +1892,57 @@ Returns the events of a block filtered by event }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" } ], "next_cursor": null, @@ -2005,16 +2005,16 @@ Returns the credits of a block "result": [ { "block_index": 192, - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,20 +2026,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2047,20 +2047,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2116,16 +2116,16 @@ Returns the debits of a block "result": [ { "block_index": 193, - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "event": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -2165,24 +2165,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "object_id": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", "block_index": 182, "confirmed": true, - "block_time": 1727079898 + "block_time": 1727089916 }, { "type": "order", - "object_id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", + "object_id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", "block_index": 182, "confirmed": true, - "block_time": 1727079898 + "block_time": 1727089916 }, { "type": "order_match", - "object_id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "object_id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", "block_index": 182, "confirmed": true, - "block_time": 1727079898 + "block_time": 1727089916 } ], "next_cursor": null, @@ -2214,13 +2214,13 @@ Returns the cancels of a block "result": [ { "tx_index": 56, - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "block_index": 190, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "status": "valid", "confirmed": true, - "block_time": 1727080007 + "block_time": 1727090019 } ], "next_cursor": null, @@ -2252,15 +2252,15 @@ Returns the destructions of a block "result": [ { "tx_index": 59, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -2300,14 +2300,14 @@ Returns the issuances of a block "result": [ { "tx_index": 46, - "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", + "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -2322,7 +2322,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079873, + "block_time": 1727089900, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2356,10 +2356,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2367,7 +2367,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "divisible": true, "asset_longname": null, @@ -2380,10 +2380,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2391,11 +2391,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2404,10 +2404,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2415,11 +2415,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2457,27 +2457,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", - "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "last_status_tx_hash": null, - "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2492,7 +2492,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727079818, + "block_time": 1727089824, "asset_info": { "divisible": true, "asset_longname": null, @@ -2533,16 +2533,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 58, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "fee_paid_normalized": "0.00600000" } ], @@ -2576,17 +2576,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3", + "tx_hash": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d", "block_index": 138, - "block_hash": "4b9568c3a5c2fe5daa9f5c819f4fe2ea7b3680d52ec8b57aed75ef6c8f66ab54", - "block_time": 1727079784, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "block_hash": "0e9ac7f24e41046c5436ccbf3f9dffc040d503d0521df3c966f06d7864d735ec", + "block_time": 1727089781, + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3:1", + "utxos_info": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2611,25 +2611,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 51, - "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", + "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", "block_index": 185, - "block_hash": "0019336d8185362941e07f3b889ad1fcec836b89b1848ef0b1acd905e5d68e55", - "block_time": 1727079976, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "2616d6c33121a5276f3fae0f4b3abae36a5e125ba76f11aef7c8404c03cc9576", + "block_time": 1727089998, + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "btc_amount": 2000, "fee": 10000, - "data": "0bf1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "data": "0b5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2db7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "supported": true, - "utxos_info": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff:0", + "utxos_info": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", - "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", - "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "status": "valid" } }, @@ -2644,23 +2644,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "block_index": 190, - "block_hash": "27631674929a77b7907c42d4559d560e994bddb1c5dc880e51ac065952ccc04b", - "block_time": 1727080007, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "4b99bbc6808e4b765e983849737aafe5ef708306f5c65833991a73d0cce49c33", + "block_time": 1727090019, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "data": "460233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "supported": true, - "utxos_info": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18:1", + "utxos_info": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "status": "valid" } }, @@ -2675,17 +2675,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", - "block_time": 1727080029, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_time": 1727090032, + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", + "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2715,17 +2715,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 32, - "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", "block_index": 145, - "block_hash": "76a7eaf478893df47acccb9677142398a1b3cd19a82c0d2c91f1b069dcdb05ac", - "block_time": 1727079813, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "block_hash": "03e461c6ad0cfe961a51c95b835548a90c70a1fd3bdfe06686e389e4266ad40d", + "block_time": 1727089820, + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c000000000000000100000000000000010000000000002710000000000000000100806fd5bdc821a1503fefcb043e805b05d47d3f147d", + "data": "0c000000000000000100000000000000010000000000002710000000000000000100809ee631a2a2bedb89041e0e62cd8ee6280fe11ac7", "supported": true, - "utxos_info": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2:1", + "utxos_info": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2737,7 +2737,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "status": "valid", "asset_info": { "divisible": true, @@ -2761,17 +2761,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", "block_index": 146, - "block_hash": "0b732a89eb8e6d3f82f25a54955bb1877642df0dc58009adbcfeaa8eb5ac49d7", - "block_time": 1727079818, - "source": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", - "destination": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "block_hash": "235ce840ac465e93541518c2a3ffb1decbd73350483032e5732cab51197f4f23", + "block_time": 1727089824, + "source": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", + "destination": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "btc_amount": 10000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31:0", + "utxos_info": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 40, - "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", + "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", "block_index": 153, - "block_hash": "404bcb97e657b6a3c7b0d8c4ae8e3136f6c1f06012d858e0d71d8b2a4d68faef", - "block_time": 1727079846, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "55611241590a0110dc6ebd56714ecbda76a0d395d7b22c795f0922392ee5ba1f", + "block_time": 1727089854, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba:1", + "utxos_info": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2814,7 +2814,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2839,17 +2839,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 46, - "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", + "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", "block_index": 159, - "block_hash": "6d07b356994f63638a9d14fea6ebeeafa8c4f80f6dcba16b98b615bfe109ccff", - "block_time": 1727079873, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "12ff9ff6c5ebcf325cee3d737fee5333669d4d67f757797cfaf3dc62bc6df185", + "block_time": 1727089900, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1:1", + "utxos_info": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2881,17 +2881,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", - "block_time": 1727080022, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", + "block_time": 1727090024, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1", + "utxos_info": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2934,17 +2934,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68", + "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794", "block_index": 187, - "block_hash": "246ae1d4c1389f2581d04fb413f68547ce8f920f92c7db7998e7af7264aacdeb", - "block_time": 1727079984, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "block_hash": "59e1d8651bb1451ffda240866cfe352d6149b8b1c69956f891a20e9569d97007", + "block_time": 1727090007, + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080c4fb36b92d4e34760a7faccb00cc7340befb1809", + "data": "020000000000000001000000000000271080fa167162004bd108ffc4b1cfaf62ff500d14c741", "supported": true, - "utxos_info": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68:1", + "utxos_info": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2952,7 +2952,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "memo": null, "asset_info": { "divisible": true, @@ -2975,17 +2975,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "block_hash": "48b2d19d551135b795db9414be8cef12acb0b131f1d153c2e457362aee6f39fa", - "block_time": 1727079989, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "3fa9c2277a64ed52b884ca2a17da14b49509020652eb361abe768ef64c58a8b1", + "block_time": 1727090011, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a34288aaa16cb6a9c7065f6fedddf0f15f400ec9803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc80c4fb36b92d4e34760a7faccb00cc7340befb1809400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380c7da25416c8a05ef76411973556de567bdc97a8a80b24ca3b3deb516bc15248b8c9c92dd48a1518ca780fa167162004bd108ffc4b1cfaf62ff500d14c741400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e:0", + "utxos_info": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2993,14 +2993,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -3008,7 +3008,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3034,23 +3034,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", - "block_time": 1727080026, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", + "block_time": 1727090028, + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480c4fb36b92d4e34760a7faccb00cc7340befb1809017377656570206d7920617373657473", + "data": "0480fa167162004bd108ffc4b1cfaf62ff500d14c741017377656570206d7920617373657473", "supported": true, - "utxos_info": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36:1", + "utxos_info": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "flags": 1, "memo": "sweep my assets" } @@ -3083,17 +3083,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 59, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", - "block_time": 1727080029, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_time": 1727090032, + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", + "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3116,23 +3116,23 @@ Returns the list of the last ten transactions }, { "tx_index": 58, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", - "block_time": 1727080026, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", + "block_time": 1727090028, + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480c4fb36b92d4e34760a7faccb00cc7340befb1809017377656570206d7920617373657473", + "data": "0480fa167162004bd108ffc4b1cfaf62ff500d14c741017377656570206d7920617373657473", "supported": true, - "utxos_info": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36:1", + "utxos_info": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "flags": 1, "memo": "sweep my assets" } @@ -3150,7 +3150,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001011f52299e86e352cb7b1a484767c18433a8dd5da0be5e6ade2766ef0b366307990000000000ffffffff020000000000000000356a335561f66404c41e80f8fa2cee94d1a41a13dcd65aa53f7799adaf41771323736e95069860c3a4105c96a9e810a95e8711d2c989f0ca052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02473044022070c3fd6ffa1fda1ff311bbf79dafbcf3e6f73f40c0487d24dbf104726282eb770220303ef3f0cf64bf814af3e138301eec9d77f7d1f2467a751d3b69f1193421ca630121038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c00000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000106f6cc2420145554ce6268b5591389e27dacd582e5d2acc52d56a6babbb75a7f280000000000fffffffff3b3de71a0969cedbef3cdc13e40f4889952c8ef98164f69028c4f91bd7278d40000000000ffffffff92726094dbe07463c3eee1d0ba3fb96a69e09dd2133dc3347bca3590dede23020000000000ffffffff87450a5778fe441e8a81b45bc3e443dac9f7d9297a56cc5e1f2f2ff865e34d8e0000000000ffffffff32741d8f4ed0b0204e54c358ce24e1dd92645fb5cdaca06ad3ffbb42da74482d0000000000ffffffff3839cbfe95ecceb744d72220256bb2041440232eb1a1bb1a75c442c8436fa68b0000000000ffffffff04e803000000000000695121026308b4f133d29cc4de5d3fc4fe7e55679fbd6f8a57ea772f0423a9121c0703a62102dcbcf496ec026a717d6a095101dae78e579b6786846d0696bfffc63adee6f7552103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee803000000000000695121026308b4f133d29cc4de56c003cf7620202181e89b7fdd76367770ce3abe615ef82102a6367424a0a1d986c87cb54425516b17e5462f27d5e1a11665e9b758dead261e2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee803000000000000695121025508b4f133d29cc4de5e2bc77eb98f42ded1e58fb89c36367776c4f77bbaca142103a6367424a0a1d9afc87cb54425516b12c5462f27d5e1a11645e9b758dead264b2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653ae387923fc060000001600143e5479d90ea1664716c42ff6cd46077c13ccd4730247304402206294f1344e43d7997fb099b5f01a029f9c07201a66c29a6410490f7a12785a5602203e0b03b36a430d2a07f22e53867be22b5ea53795b72a10b5afc3732a442d40af012103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb416995560247304402203c0f122faaf1356982f235dbbd809f052ff7e93326172525318990ed67efb9ee0220724211dcff055bb28b32eb8ee1af0de42f814dbd79c09eb8ab6b7826e3c6c63c012103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb416995560247304402202d0a04ce6f97f79075361c8bddfca2d78e217837e523f60823a98359f46ed7ba022075be37a754f2831a88fd0869fef3eec33af88ac2b7a11563770ca89748ee9ada012103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556024730440220326d5979c6d939d9e4e3423c2bae9cfe22315e07c459d6ee6fdc5a3e343c9c7b022054f38783ed9c73bc3f0f324e58dc3c0c0d41e00770c31764642e23407b49c242012103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955602473044022042abc0fc58e261b5b80cb320bdca8937e2c45b67df2a2c66e582f4486ea4323802202de9684dbee87a7899139a3a9252d9a08e8520d60b9511f73c1dc242af514cda012103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556024730440220305f882370037565e0e9baf696bf07b6af719769b04b9ae6d6bbf0577dd464d002201d539a438eca3142f899c0797b6ce85b94615146a6d2b8db62241d295f0d4a6a012103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955600000000` (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. @@ -3163,18 +3163,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "03000380c7da25416c8a05ef76411973556de567bdc97a8a80b24ca3b3deb516bc15248b8c9c92dd48a1518ca780fa167162004bd108ffc4b1cfaf62ff500d14c741400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "1f52299e86e352cb7b1a484767c18433a8dd5da0be5e6ade2766ef0b36630799", + "hash": "f6cc2420145554ce6268b5591389e27dacd582e5d2acc52d56a6babbb75a7f28", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "f3b3de71a0969cedbef3cdc13e40f4889952c8ef98164f69028c4f91bd7278d4", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "92726094dbe07463c3eee1d0ba3fb96a69e09dd2133dc3347bca3590dede2302", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "87450a5778fe441e8a81b45bc3e443dac9f7d9297a56cc5e1f2f2ff865e34d8e", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "32741d8f4ed0b0204e54c358ce24e1dd92645fb5cdaca06ad3ffbb42da74482d", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "3839cbfe95ecceb744d72220256bb2041440232eb1a1bb1a75c442c8436fa68b", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3183,51 +3218,75 @@ Returns Counterparty information from a raw transaction in hex format. ], "vout": [ { - "value": 0, - "script_pub_key": "6a335561f66404c41e80f8fa2cee94d1a41a13dcd65aa53f7799adaf41771323736e95069860c3a4105c96a9e810a95e8711d2c989" + "value": 1000, + "script_pub_key": "5121026308b4f133d29cc4de5d3fc4fe7e55679fbd6f8a57ea772f0423a9121c0703a62102dcbcf496ec026a717d6a095101dae78e579b6786846d0696bfffc63adee6f7552103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653ae" + }, + { + "value": 1000, + "script_pub_key": "5121026308b4f133d29cc4de56c003cf7620202181e89b7fdd76367770ce3abe615ef82102a6367424a0a1d986c87cb54425516b17e5462f27d5e1a11665e9b758dead261e2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653ae" }, { - "value": 4999990000, - "script_pub_key": "001452e48a2420dddb4d5239ee4f509da9a34bff777a" + "value": 1000, + "script_pub_key": "5121025508b4f133d29cc4de5e2bc77eb98f42ded1e58fb89c36367776c4f77bbaca142103a6367424a0a1d9afc87cb54425516b12c5462f27d5e1a11645e9b758dead264b2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653ae" + }, + { + "value": 29999987000, + "script_pub_key": "00143e5479d90ea1664716c42ff6cd46077c13ccd473" } ], "vtxinwit": [ - "3044022070c3fd6ffa1fda1ff311bbf79dafbcf3e6f73f40c0487d24dbf104726282eb770220303ef3f0cf64bf814af3e138301eec9d77f7d1f2467a751d3b69f1193421ca6301", - "038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c" + "304402206294f1344e43d7997fb099b5f01a029f9c07201a66c29a6410490f7a12785a5602203e0b03b36a430d2a07f22e53867be22b5ea53795b72a10b5afc3732a442d40af01", + "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", + "304402203c0f122faaf1356982f235dbbd809f052ff7e93326172525318990ed67efb9ee0220724211dcff055bb28b32eb8ee1af0de42f814dbd79c09eb8ab6b7826e3c6c63c01", + "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", + "304402202d0a04ce6f97f79075361c8bddfca2d78e217837e523f60823a98359f46ed7ba022075be37a754f2831a88fd0869fef3eec33af88ac2b7a11563770ca89748ee9ada01", + "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", + "30440220326d5979c6d939d9e4e3423c2bae9cfe22315e07c459d6ee6fdc5a3e343c9c7b022054f38783ed9c73bc3f0f324e58dc3c0c0d41e00770c31764642e23407b49c24201", + "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", + "3044022042abc0fc58e261b5b80cb320bdca8937e2c45b67df2a2c66e582f4486ea4323802202de9684dbee87a7899139a3a9252d9a08e8520d60b9511f73c1dc242af514cda01", + "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", + "30440220305f882370037565e0e9baf696bf07b6af719769b04b9ae6d6bbf0577dd464d002201d539a438eca3142f899c0797b6ce85b94615146a6d2b8db62241d295f0d4a6a01", + "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556" ], "lock_time": 0, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", - "tx_id": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f" + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_id": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0" }, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MYASSETA", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "quantity": 10, + "memo": null, + "memo_is_hex": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } + { + "asset": "XCP", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "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" } @@ -3239,7 +3298,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47` (str, required) - Transaction hash + + tx_hash: `9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5` (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. @@ -3250,18 +3309,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc", + "data": "020000000000000001000000000000271080b24ca3b3deb516bc15248b8c9c92dd48a1518ca7", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "ec72b6da61eb4096c6eb25484cb721bb26e2429cd539df769f552c680d7f8a1e", + "hash": "90d52d518cfbcdc0871e27e36b9b6fb7fcf65082d910b2a35da606e2321a8153", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3271,20 +3330,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e175501a67a71a7042d4669c22cdd7e97cb14c3c52a8c426fe0176eff948d3ec0cc3c68ddd322d1e0661b59cee4bb" + "script_pub_key": "6a2edcbe7f1ee60c29bb3b38aa206872872b7d3e57f6c749e3b111f4c3fdae73f7ed0495c59089cc7c51ed023e418d87" }, { "value": 4999955000, - "script_pub_key": "0014c4fb36b92d4e34760a7faccb00cc7340befb1809" + "script_pub_key": "0014fa167162004bd108ffc4b1cfaf62ff500d14c741" } ], "vtxinwit": [ - "304402207a5d46bd6b01b7b76e17241f3cd9588203d36982448497e39cda7d2c60013ce602207e65bccfb61296531321c1fd74bd4f85dc4f4bc8049c5f9819d4313e2340c88c01", - "0245711205fa34c28180371a8e6a071cd643ec0f98772bebba59d21b2bf8023721" + "3044022066eada7777201ae400b9d5680564eac7406e3368e31d7e42e897a335bab70e4d022008d95ed963507d80de84b9dfed13a59f7f0a2ad4817b291caf59c4eb8a7f617001", + "02748e93e3b51c48fcf700c353ec69d192cd4c589703e899b4f8b2983d3a722c4b" ], "lock_time": 0, - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", - "tx_id": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47" + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_id": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3292,7 +3351,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "memo": null, "asset_info": { "divisible": true, @@ -3353,17 +3412,17 @@ Returns a transaction by its index. { "result": { "tx_index": 59, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", - "block_time": 1727080029, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_time": 1727090032, + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", + "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3392,7 +3451,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527` (str, required) - The hash of the transaction + + tx_hash: `7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9` (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. @@ -3404,17 +3463,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 59, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", - "block_time": 1727080029, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_time": 1727090032, + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", + "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3467,47 +3526,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58 }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "status": "valid", - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, - "block_time": 1727080026, + "block_time": 1727090028, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -3517,24 +3576,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "XCP", "block_index": 192, - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -3544,36 +3603,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 } ], "next_cursor": 523, @@ -3586,7 +3645,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36` (str, required) - The hash of the transaction to return + + tx_hash: `53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -3610,47 +3669,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58 }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "status": "valid", - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, - "block_time": 1727080026, + "block_time": 1727090028, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -3660,24 +3719,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "XCP", "block_index": 192, - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -3687,36 +3746,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 } ], "next_cursor": 523, @@ -3729,7 +3788,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e` (str, required) - The hash of the transaction to return + + tx_hash: `3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0` (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 @@ -3748,10 +3807,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "quantity": 10, "status": "valid", @@ -3759,7 +3818,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "divisible": true, "asset_longname": null, @@ -3772,10 +3831,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3783,11 +3842,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -3796,10 +3855,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3807,11 +3866,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -3829,7 +3888,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31` (str, required) - The hash of the transaction to return + + tx_hash: `ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a` (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 @@ -3849,27 +3908,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", - "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "last_status_tx_hash": null, - "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3884,7 +3943,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727079818, + "block_time": 1727089824, "asset_info": { "divisible": true, "asset_longname": null, @@ -3928,16 +3987,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -3947,63 +4006,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 } ], "next_cursor": null, @@ -4016,7 +4075,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36` (str, required) - The hash of the transaction to return + + tx_hash: `53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `535` (str, optional) - The last event index to return + Default: `None` @@ -4038,16 +4097,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -4057,63 +4116,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 } ], "next_cursor": null, @@ -4128,7 +4187,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms,bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz,bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (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 @@ -4152,7 +4211,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4162,7 +4221,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -4173,7 +4232,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4183,7 +4242,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -4194,7 +4253,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4204,7 +4263,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -4215,7 +4274,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4225,7 +4284,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -4236,7 +4295,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4246,7 +4305,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -4263,7 +4322,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms,bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz,bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (str, required) - Comma separated list of addresses to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4282,17 +4341,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 57, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", - "block_time": 1727080022, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", + "block_time": 1727090024, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1", + "utxos_info": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4328,23 +4387,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "block_index": 190, - "block_hash": "27631674929a77b7907c42d4559d560e994bddb1c5dc880e51ac065952ccc04b", - "block_time": 1727080007, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "4b99bbc6808e4b765e983849737aafe5ef708306f5c65833991a73d0cce49c33", + "block_time": 1727090019, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "data": "460233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "supported": true, - "utxos_info": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18:1", + "utxos_info": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "status": "valid" } }, @@ -4352,17 +4411,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 55, - "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "block_index": 189, - "block_hash": "6fb0ca06b43613ffed61018fcb6082c59452492ba985576337703460a5a270f0", - "block_time": 1727079993, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "2923560e2bcacf6e73d9eff03c6d1595137115cb81061d215b3edaa9ff0e70ca", + "block_time": 1727090015, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d:1", + "utxos_info": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4398,17 +4457,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "block_hash": "48b2d19d551135b795db9414be8cef12acb0b131f1d153c2e457362aee6f39fa", - "block_time": 1727079989, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "3fa9c2277a64ed52b884ca2a17da14b49509020652eb361abe768ef64c58a8b1", + "block_time": 1727090011, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a34288aaa16cb6a9c7065f6fedddf0f15f400ec9803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc80c4fb36b92d4e34760a7faccb00cc7340befb1809400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380c7da25416c8a05ef76411973556de567bdc97a8a80b24ca3b3deb516bc15248b8c9c92dd48a1518ca780fa167162004bd108ffc4b1cfaf62ff500d14c741400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e:0", + "utxos_info": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4416,14 +4475,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -4431,7 +4490,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4450,25 +4509,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 51, - "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", + "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", "block_index": 185, - "block_hash": "0019336d8185362941e07f3b889ad1fcec836b89b1848ef0b1acd905e5d68e55", - "block_time": 1727079976, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "2616d6c33121a5276f3fae0f4b3abae36a5e125ba76f11aef7c8404c03cc9576", + "block_time": 1727089998, + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "btc_amount": 2000, "fee": 10000, - "data": "0bf1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "data": "0b5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2db7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "supported": true, - "utxos_info": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff:0", + "utxos_info": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", - "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", - "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "status": "valid" } }, @@ -4485,7 +4544,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms,bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz,bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -4521,11 +4580,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "status": "open", - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "tx_index": 57, - "block_time": 1727080022, + "block_time": 1727090024, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4549,24 +4608,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "block_time": 1727080022 + "block_time": 1727090024 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "block_index": 191, - "event": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "event": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727080022, + "block_time": 1727090024, "asset_info": { "divisible": true, "asset_longname": null, @@ -4576,25 +4635,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "block_time": 1727080022 + "block_time": 1727090024 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", + "block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", "block_index": 191, - "block_time": 1727080022, + "block_time": 1727090024, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "tx_index": 57, - "utxos_info": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1", + "utxos_info": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4626,40 +4685,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "block_time": 1727080022 + "block_time": 1727090024 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "status": "valid", - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "tx_index": 56, - "block_time": 1727080007 + "block_time": 1727090019 }, - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "block_index": 190, - "block_time": 1727080007 + "block_time": 1727090019 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727080007, + "block_time": 1727090019, "asset_info": { "divisible": true, "asset_longname": null, @@ -4669,9 +4728,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "block_index": 190, - "block_time": 1727080007 + "block_time": 1727090019 } ], "next_cursor": 506, @@ -4684,7 +4743,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss,bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g,bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt` (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 @@ -4700,17 +4759,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "memo": null, "quantity": 10000, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "status": "valid", - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "tx_index": 60, "asset_info": { "divisible": true, @@ -4723,19 +4782,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "CREDIT", "params": { - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -4747,19 +4806,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 193, - "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -4771,27 +4830,27 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727080033.9107606, + "block_time": 1727090046.9235783, "btc_amount": 0, - "data": "0200000000000000010000000000002710803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc", + "data": "020000000000000001000000000000271080b24ca3b3deb516bc15248b8c9c92dd48a1518ca7", "destination": "", "fee": 10000, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "tx_index": 60, - "utxos_info": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47:1", + "utxos_info": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "memo": null, "asset_info": { "divisible": true, @@ -4817,7 +4876,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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 @@ -4837,7 +4896,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4845,14 +4904,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4860,14 +4919,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4882,7 +4941,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4890,7 +4949,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -4907,7 +4966,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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` @@ -4919,7 +4978,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4941,7 +5000,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4991,16 +5050,16 @@ Returns the credits of an address "result": [ { "block_index": 190, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080007, + "block_time": 1727090019, "asset_info": { "divisible": true, "asset_longname": null, @@ -5012,16 +5071,16 @@ Returns the credits of an address }, { "block_index": 182, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", + "event": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079898, + "block_time": 1727089916, "asset_info": { "divisible": true, "asset_longname": null, @@ -5033,20 +5092,20 @@ Returns the credits of an address }, { "block_index": 159, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", + "event": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079873, + "block_time": 1727089900, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5054,20 +5113,20 @@ Returns the credits of an address }, { "block_index": 156, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "c5f0754dd7d1082a77f739c930d90d5684bb394c04a01e9acf2c0a1742b4dc87", + "event": "f16fadc9b332b83f0383c930c2392d6d2c06410ff8f5ea2a9fa0b1ee4713590e", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079860, + "block_time": 1727089867, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5079,16 +5138,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", + "event": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", "tx_index": 38, - "utxo": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8:1", - "utxo_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "utxo": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505:1", + "utxo_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "confirmed": true, - "block_time": 1727079839, + "block_time": 1727089845, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5105,7 +5164,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5144,16 +5203,16 @@ Returns the debits of an address "result": [ { "block_index": 191, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "event": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080022, + "block_time": 1727090024, "asset_info": { "divisible": true, "asset_longname": null, @@ -5165,16 +5224,16 @@ Returns the debits of an address }, { "block_index": 189, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079993, + "block_time": 1727090015, "asset_info": { "divisible": true, "asset_longname": null, @@ -5186,16 +5245,16 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "event": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "divisible": true, "asset_longname": null, @@ -5207,20 +5266,20 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "event": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5228,16 +5287,16 @@ Returns the debits of an address }, { "block_index": 183, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "event": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079968, + "block_time": 1727089990, "asset_info": { "divisible": true, "asset_longname": null, @@ -5258,7 +5317,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address of the feed + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5293,7 +5352,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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 @@ -5312,9 +5371,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "7145912710e264e9c5b45407d43bc8fd5318db28c30836a01c4862e2ded179d5", + "tx_hash": "d8c73b39bec3ca170f5db0ca4cf42abc7535513ef491131f8986f9b249de2aac", "block_index": 137, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5322,7 +5381,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727079780, + "block_time": 1727089777, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5336,7 +5395,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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 @@ -5355,14 +5414,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "45fcd30b26481dc7d15d3e290ffc8c6f576a8940987ab179d8171b9929dad6aa", + "tx_hash": "e16d235b861cfe7c48a74e0bcdf99b3b7ded94cbc658fb3c7bebb6dd49cde216", "block_index": 112, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1727079676, + "block_time": 1727089675, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5377,7 +5436,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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 @@ -5396,10 +5455,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5407,7 +5466,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "divisible": true, "asset_longname": null, @@ -5420,10 +5479,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5431,11 +5490,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5444,10 +5503,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5455,11 +5514,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5468,10 +5527,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 38, - "tx_hash": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", + "tx_hash": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", "block_index": 151, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8:1", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5479,11 +5538,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079839, + "block_time": 1727089845, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5492,10 +5551,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 35, - "tx_hash": "8e6e5e86390b1d35d8140150b424da7aba62e5e93c431bd2645ef98ebe79c705", + "tx_hash": "fc6c96d70ca302032501a89ff33d3ca64cfe94e875137ac218eb81744063d6c6", "block_index": 148, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "8ef179e266d7b41d18f9c03097396fe4b3ec9a584925e023130ca6e7104fe97e:1", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "dc60251c64cde9adfaf7ea84db0bdaf720119f8f0a796de3bd80fd32a8700e75:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5503,11 +5562,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079826, + "block_time": 1727089833, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5525,7 +5584,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd` (str, required) - The address to return + + address: `bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq` (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 @@ -5544,10 +5603,10 @@ Returns the receives of an address "result": [ { "tx_index": 37, - "tx_hash": "989604467561753724a036703d19ac691dfe4a5ced843c42f9d1834068e7158f", + "tx_hash": "a592122f19e7c7afd8e7ca3b3fa6c680c8fe697a5efbe3b3c4f6c2758f87370f", "block_index": 150, - "source": "e0fb6c717053ccace6058ea89673a15dff5b190c77211ffd001c4094c8df382a:0", - "destination": "bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd", + "source": "9c20a315f9dd83391105db586e409f6b237d721fe234db96ff0cab43fa5174af:0", + "destination": "bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5555,11 +5614,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079835, + "block_time": 1727089841, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5577,7 +5636,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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` @@ -5597,10 +5656,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5608,11 +5667,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5621,10 +5680,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5632,11 +5691,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5645,10 +5704,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 38, - "tx_hash": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", + "tx_hash": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", "block_index": 151, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8:1", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5656,11 +5715,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079839, + "block_time": 1727089845, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5669,10 +5728,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 35, - "tx_hash": "8e6e5e86390b1d35d8140150b424da7aba62e5e93c431bd2645ef98ebe79c705", + "tx_hash": "fc6c96d70ca302032501a89ff33d3ca64cfe94e875137ac218eb81744063d6c6", "block_index": 148, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "8ef179e266d7b41d18f9c03097396fe4b3ec9a584925e023130ca6e7104fe97e:1", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "dc60251c64cde9adfaf7ea84db0bdaf720119f8f0a796de3bd80fd32a8700e75:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5680,11 +5739,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079826, + "block_time": 1727089833, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5702,7 +5761,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd` (str, required) - The address to return + + address: `bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq` (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` @@ -5722,10 +5781,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 37, - "tx_hash": "989604467561753724a036703d19ac691dfe4a5ced843c42f9d1834068e7158f", + "tx_hash": "a592122f19e7c7afd8e7ca3b3fa6c680c8fe697a5efbe3b3c4f6c2758f87370f", "block_index": 150, - "source": "e0fb6c717053ccace6058ea89673a15dff5b190c77211ffd001c4094c8df382a:0", - "destination": "bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd", + "source": "9c20a315f9dd83391105db586e409f6b237d721fe234db96ff0cab43fa5174af:0", + "destination": "bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5733,11 +5792,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079835, + "block_time": 1727089841, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5755,7 +5814,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5782,9 +5841,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 30, - "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", + "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", "block_index": 144, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5793,7 +5852,7 @@ Returns the dispensers of an address "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5803,7 +5862,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079809, + "block_time": 1727089816, "asset_info": { "divisible": true, "asset_longname": null, @@ -5819,9 +5878,9 @@ Returns the dispensers of an address }, { "tx_index": 26, - "tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5830,7 +5889,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5840,7 +5899,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -5865,7 +5924,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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 +5937,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", + "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", "block_index": 144, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5889,7 +5948,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5899,7 +5958,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079809, + "block_time": 1727089816, "asset_info": { "divisible": true, "asset_longname": null, @@ -5921,7 +5980,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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 +6000,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", + "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5961,7 +6020,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5976,7 +6035,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -5990,19 +6049,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", + "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", "block_index": 140, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6010,7 +6069,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6025,7 +6084,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079793, + "block_time": 1727089788, "asset_info": { "divisible": true, "asset_longname": null, @@ -6047,7 +6106,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (str, required) - The address to return + + address: `bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (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 @@ -6067,19 +6126,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", + "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6087,7 +6146,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6102,7 +6161,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -6116,19 +6175,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", + "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", "block_index": 140, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6136,7 +6195,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6151,7 +6210,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079793, + "block_time": 1727089788, "asset_info": { "divisible": true, "asset_longname": null, @@ -6173,7 +6232,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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` @@ -6194,19 +6253,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", + "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6214,7 +6273,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6229,7 +6288,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -6243,19 +6302,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", + "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", "block_index": 140, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6263,7 +6322,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6278,7 +6337,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079793, + "block_time": 1727089788, "asset_info": { "divisible": true, "asset_longname": null, @@ -6300,7 +6359,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (str, required) - The address to return + + address: `bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (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` @@ -6321,19 +6380,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", + "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6341,7 +6400,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6356,7 +6415,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -6370,19 +6429,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", + "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", "block_index": 140, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6390,7 +6449,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6405,7 +6464,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079793, + "block_time": 1727089788, "asset_info": { "divisible": true, "asset_longname": null, @@ -6427,7 +6486,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss` (str, required) - The address to return + + address: `bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g` (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 @@ -6446,16 +6505,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 58, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "fee_paid_normalized": "0.00600000" } ], @@ -6469,7 +6528,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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 @@ -6488,14 +6547,14 @@ Returns the issuances of an address "result": [ { "tx_index": 46, - "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", + "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -6510,20 +6569,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079873, + "block_time": 1727089900, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "ee5b91c03af937b81687cba8cf5de88a889363660243b7f1e3d0721469e82475", + "tx_hash": "e6abd286bdba5ba6f4e5dbe333fd2ab733fb42428230b79b68741f9678c28897", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -6538,20 +6597,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727079868, + "block_time": 1727089896, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "913be4b557b8ae7b33fffad5a68eec87247e587ef1161d91310b90133a1cb304", + "tx_hash": "67c806f2224d86f97c2532de5cd43bca5dff4a3a6951b17b37dafc06cceada13", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -6566,20 +6625,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079864, + "block_time": 1727089881, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "c5f0754dd7d1082a77f739c930d90d5684bb394c04a01e9acf2c0a1742b4dc87", + "tx_hash": "f16fadc9b332b83f0383c930c2392d6d2c06410ff8f5ea2a9fa0b1ee4713590e", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -6594,20 +6653,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079860, + "block_time": 1727089867, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "38fd7a78403fa7a17642d00e60ed25b5abec76df7774a00bc77e55574157da48", + "tx_hash": "97b732eec3a1d7005106f8ed821ed94d1df26d1c501b8f6011dc5c9226d1343a", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -6622,7 +6681,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079822, + "block_time": 1727089828, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -6637,7 +6696,7 @@ Returns the issuances of an address Returns the valid assets of an issuer + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The issuer to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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 @@ -6660,8 +6719,8 @@ Returns the valid assets of an issuer "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 10000000000, @@ -6669,16 +6728,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727079860, - "last_issuance_block_time": 1727079868, + "first_issuance_block_time": 1727089867, + "last_issuance_block_time": 1727089896, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 100000000000, @@ -6686,16 +6745,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727079822, - "last_issuance_block_time": 1727079822, + "first_issuance_block_time": 1727089828, + "last_issuance_block_time": 1727089828, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 40, @@ -6703,16 +6762,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727079772, - "last_issuance_block_time": 1727079776, + "first_issuance_block_time": 1727089768, + "last_issuance_block_time": 1727089772, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 19, @@ -6720,16 +6779,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727079755, - "last_issuance_block_time": 1727079767, + "first_issuance_block_time": 1727089751, + "last_issuance_block_time": 1727089764, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 0, @@ -6737,8 +6796,8 @@ Returns the valid assets of an issuer "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1727079735, - "last_issuance_block_time": 1727079751, + "first_issuance_block_time": 1727089730, + "last_issuance_block_time": 1727089747, "supply_normalized": "0.00000000" } ], @@ -6752,7 +6811,7 @@ Returns the valid assets of an issuer Returns the transactions of an address + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -6771,17 +6830,17 @@ Returns the transactions of an address "result": [ { "tx_index": 57, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", - "block_time": 1727080022, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", + "block_time": 1727090024, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1", + "utxos_info": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6817,23 +6876,23 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "block_index": 190, - "block_hash": "27631674929a77b7907c42d4559d560e994bddb1c5dc880e51ac065952ccc04b", - "block_time": 1727080007, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "4b99bbc6808e4b765e983849737aafe5ef708306f5c65833991a73d0cce49c33", + "block_time": 1727090019, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "data": "460233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "supported": true, - "utxos_info": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18:1", + "utxos_info": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "status": "valid" } }, @@ -6841,17 +6900,17 @@ Returns the transactions of an address }, { "tx_index": 55, - "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "block_index": 189, - "block_hash": "6fb0ca06b43613ffed61018fcb6082c59452492ba985576337703460a5a270f0", - "block_time": 1727079993, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "2923560e2bcacf6e73d9eff03c6d1595137115cb81061d215b3edaa9ff0e70ca", + "block_time": 1727090015, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d:1", + "utxos_info": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6887,17 +6946,17 @@ Returns the transactions of an address }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "block_hash": "48b2d19d551135b795db9414be8cef12acb0b131f1d153c2e457362aee6f39fa", - "block_time": 1727079989, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "3fa9c2277a64ed52b884ca2a17da14b49509020652eb361abe768ef64c58a8b1", + "block_time": 1727090011, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a34288aaa16cb6a9c7065f6fedddf0f15f400ec9803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc80c4fb36b92d4e34760a7faccb00cc7340befb1809400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380c7da25416c8a05ef76411973556de567bdc97a8a80b24ca3b3deb516bc15248b8c9c92dd48a1518ca780fa167162004bd108ffc4b1cfaf62ff500d14c741400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e:0", + "utxos_info": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -6905,14 +6964,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -6920,7 +6979,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -6939,17 +6998,17 @@ Returns the transactions of an address }, { "tx_index": 49, - "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", "block_index": 183, - "block_hash": "2bc00571147a36413c5643be3313556ea1395e88d0ca1a4863bea8ff75854e6e", - "block_time": 1727079968, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "4330a150c5e7206108e14d0ffd3cec0c33c681d56b494bffec379232028fa69e", + "block_time": 1727089990, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d:1", + "utxos_info": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6994,7 +7053,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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 @@ -7013,20 +7072,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 40, - "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", + "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", "block_index": 153, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727079846, + "block_time": 1727089854, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -7051,7 +7110,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7078,9 +7137,9 @@ Returns the orders of an address "result": [ { "tx_index": 57, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7095,7 +7154,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727080022, + "block_time": 1727090024, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7121,9 +7180,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "block_index": 190, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7138,7 +7197,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727080007, + "block_time": 1727090019, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7164,9 +7223,9 @@ Returns the orders of an address }, { "tx_index": 49, - "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", "block_index": 186, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7181,7 +7240,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727079980, + "block_time": 1727090002, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7207,9 +7266,9 @@ Returns the orders of an address }, { "tx_index": 47, - "tx_hash": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", + "tx_hash": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", "block_index": 182, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7224,7 +7283,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727079898, + "block_time": 1727089916, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7259,7 +7318,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The source of the fairminter to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7277,10 +7336,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", + "tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7305,13 +7364,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727079772 + "block_time": 1727089768 }, { - "tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", + "tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7336,13 +7395,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727079755 + "block_time": 1727089751 }, { - "tx_hash": "569b5d76c793d1fbd773e4c21c313d8d9bd4c08354834bd7fff4de4ba36e79c5", + "tx_hash": "bb99ad8dc9e2abcd6ec3a52b9cd21471fcbbf9b4d21c6a72ea69dcec59436f48", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7367,13 +7426,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727079751 + "block_time": 1727089747 }, { - "tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7398,7 +7457,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727079731 + "block_time": 1727089726 } ], "next_cursor": null, @@ -7411,7 +7470,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (str, required) - The address of the mints to return + + address: `bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7429,127 +7488,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "14b14a8360be741c147b158caf79d5fcf98f9986207c8fe5fe42526940d1ddc1", + "tx_hash": "336b5e03756508a441266e3629a6ea97f2652ea3ccdc9453459d825b38a65a17", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "fairminter_tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "fairminter_tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079776, + "block_time": 1727089772, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } }, { - "tx_hash": "e275330435c460f35d517ef441e949efe2dda5aab87caac5a88eed45bebc604f", + "tx_hash": "8d49a34c9963f9211b6679edb54d613c8db35c6a98405ba0f25e0ab9c93a7c2b", "tx_index": 21, "block_index": 134, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "fairminter_tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "fairminter_tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079767, + "block_time": 1727089764, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } }, { - "tx_hash": "ef310c731fe0e412d40aaf73093d4b9c895a9e93c49834376e75bafefae9189a", + "tx_hash": "612d7e8119370fff298f17800d9d75f9a4ac40c829cfc574a0364e688f05f94a", "tx_index": 20, "block_index": 133, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "fairminter_tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "fairminter_tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079763, + "block_time": 1727089760, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } }, { - "tx_hash": "451d2d1096ddc99374296b711b4e3fc31032a76546b006d1765fde3a318fec83", + "tx_hash": "985be77c4294a50484a675bbd3d9da5953dba18532d0518caabe7c127730c884", "tx_index": 19, "block_index": 132, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "fairminter_tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "fairminter_tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079759, + "block_time": 1727089755, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } }, { - "tx_hash": "410b4f5830101c539dfbc12c092162b06f06a32b74696410059f62defe05a071", + "tx_hash": "5b1ebf326d704e905ec5b9ac0b6fb1898f7fe6e4353ab1f0c6326c3ea3e15bdd", "tx_index": 15, "block_index": 127, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "fairminter_tx_hash": "569b5d76c793d1fbd773e4c21c313d8d9bd4c08354834bd7fff4de4ba36e79c5", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "fairminter_tx_hash": "bb99ad8dc9e2abcd6ec3a52b9cd21471fcbbf9b4d21c6a72ea69dcec59436f48", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079739, + "block_time": 1727089734, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } }, { - "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", + "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079722, + "block_time": 1727089717, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } @@ -7565,7 +7624,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (str, required) - The address of the mints to return + + address: `bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (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` @@ -7584,22 +7643,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", + "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079722, + "block_time": 1727089717, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } @@ -7633,13 +7692,13 @@ By default the default value of the `encoding` parameter detailed above is `auto - Sign the transaction following the `Bitcoinjs-lib on javascript, signing a P2SH redeeming transaction` section - **NOTE**: Don't leave pretxs hanging without transmitting the second transaction as this pollutes the UTXO set and risks making bitcoin harder to run on low spec nodes. -### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a bet against a feed. + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address that will make the bet - + feed_address: `bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address that will make the bet + + feed_address: `bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (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) @@ -7661,7 +7720,7 @@ Composes a transaction to issue a bet against a feed. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + + exact_fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` @@ -7702,12 +7761,12 @@ Composes a transaction to issue a bet against a feed. } ``` -### Compose Broadcast [GET /v2/addresses/{address}/compose/broadcast{?timestamp}{&value}{&fee_fraction}{&text}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Broadcast [GET /v2/addresses/{address}/compose/broadcast{?timestamp}{&value}{&fee_fraction}{&text}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to broadcast textual and numerical information to the network. + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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) @@ -7724,7 +7783,7 @@ Composes a transaction to broadcast textual and numerical information to the net + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + + exact_fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` @@ -7763,7 +7822,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7775,7 +7834,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "02000000000101c4fb1d2fe53ad7536b73d5141e8da047ebf3e8b9679ca360228ca07022e363b90000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff0200000000000000002b6a2989c3cfa1e720de3d5f646efca1c2e4d354f4f0ce80e1b27e6d99e9ecca7fdafcaa383e5307886f61963bb1052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "02000000000101b4b598cd41bc31759ebf6bee28904f2aa1175c771be894634d9524762fac1ce8000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0200000000000000002b6a29fe74f7aeed291791d734c55b11dae63870bc7e446476419ffc069c589dde961eb4e1b9563e5da9f70b3bb1052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7787,13 +7846,13 @@ Composes a transaction to broadcast textual and numerical information to the net } ``` -### Compose BTCPay [GET /v2/addresses/{address}/compose/btcpay{?order_match_id}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose BTCPay [GET /v2/addresses/{address}/compose/btcpay{?order_match_id}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to pay for a BTC order match. + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address that will be sending the payment - + order_match_id: `f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587` (str, required) - The ID of the order match to pay for + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address that will be sending the payment + + order_match_id: `5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8` (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) @@ -7806,7 +7865,7 @@ Composes a transaction to pay for a BTC order match. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + + exact_fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` @@ -7845,16 +7904,16 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587" + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8" }, "name": "btcpay", - "data": "434e5452505254590bf1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "data": "434e5452505254590b5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999975897, "btc_fee": 21103, - "rawtransaction": "02000000000101ac1f67aea80e88a5b2bfc4085f99b50356fe5c52b669438eeee67b4fcc966b760000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff03b80b00000000000016001452e48a2420dddb4d5239ee4f509da9a34bff777a00000000000000004b6a492444f87462277d1c2d4b9fb54cd142babed4b8260c32588f1dbfa94fad6b96c309dcef718a3e59d70365542fd2d02a43c31328304af1f5739f5d9c6fc657feb3a9f858a212bbfa67aed993052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "020000000001018490d82f5ee2dc69c5f6fd9dba66003d99787608a9ec612280008517efe723cb000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff03b80b0000000000001600143e5479d90ea1664716c42ff6cd46077c13ccd47300000000000000004b6a49cbd9df07d2c0cf1faceab3f0edb6f6419178b8a63a7e1e03b185ff36066d2dd235d3935fdcb6871e51592e162833edfb0957298045a65d09352536edc99b4bee0a17c7decdb6e47b78d993052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7866,12 +7925,12 @@ Composes a transaction to pay for a BTC order match. } ``` -### Compose Burn [GET /v2/addresses/{address}/compose/burn{?quantity}{&overburn}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Burn [GET /v2/addresses/{address}/compose/burn{?quantity}{&overburn}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, possible between blocks 278310 and 283810; on testnet it is still available). + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address with the BTC to burn + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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` @@ -7887,7 +7946,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + + exact_fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` @@ -7926,7 +7985,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "quantity": 1000, "overburn": false }, @@ -7936,18 +7995,18 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999983584, "btc_fee": 15416, - "rawtransaction": "020000000001017ec6e6c7b47e70f5c63db14d799b147a8a423ac1083c60da8e3c25886e3449c90000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000" + "rawtransaction": "02000000000101f361033ca8ff78cfe2c7ccd8395a2200ac958126a35cf9ae4ac360fee67aff41000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000" } } ``` -### Compose Cancel [GET /v2/addresses/{address}/compose/cancel{?offer_hash}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Cancel [GET /v2/addresses/{address}/compose/cancel{?offer_hash}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to cancel an open order or bet. + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d` (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) @@ -7960,7 +8019,7 @@ Composes a transaction to cancel an open order or bet. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + + exact_fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` @@ -7999,16 +8058,16 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "offer_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f" + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "offer_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d" }, "name": "cancel", - "data": "434e5452505254594642351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "data": "434e54525052545946bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "02000000000101d74dd7c27ce8b005421eeb92026137926d6782e7ae0ba5bfac9ce6f6cd2abd1c0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff0200000000000000002b6a297b9bb73acef081463740905279c7fe6eaa2af600a703212db716ba19f8cf3632b13ed66d39b40e27073bb1052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "0200000000010166ea96e8827d7da9ccc3935789e2f358b0dd57ef70f4df9babce0b3ee3426003000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0200000000000000002b6a29edeb6da89b03d0bac7ce2725a3c19ca4b64dedfda8d0f252d9955856c5d051d9a008834400300837ae3bb1052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8020,12 +8079,12 @@ Composes a transaction to cancel an open order or bet. } ``` -### Compose Destroy [GET /v2/addresses/{address}/compose/destroy{?asset}{&quantity}{&tag}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Destroy [GET /v2/addresses/{address}/compose/destroy{?asset}{&quantity}{&tag}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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 @@ -8041,7 +8100,7 @@ Composes a transaction to destroy a quantity of an asset. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + + exact_fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` @@ -8080,7 +8139,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8099,7 +8158,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999984036, "btc_fee": 15964, - "rawtransaction": "020000000001010fc9eeafc4e63c4e40bbeca65c297455eb5a3414100fa303055d96706f4aae420000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000226a205c6cb1e1bcbfabc97cde4a324c2abc09dbb8974f048899f47c6f158c875271f7a4b3052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "020000000001018976a99b326a0dc82cf6e0e5fed53708928ca98a81d8f0cfa7b7125a1424561a000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000226a20881c0df8401793cdfcece793396094a09e0915766a089c2d106205a9e68a7efba4b3052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8111,12 +8170,12 @@ Composes a transaction to destroy a quantity of an asset. } ``` -### Compose Dispenser [GET /v2/addresses/{address}/compose/dispenser{?asset}{&give_quantity}{&escrow_quantity}{&mainchainrate}{&status}{&open_address}{&oracle_address}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Dispenser [GET /v2/addresses/{address}/compose/dispenser{?asset}{&give_quantity}{&escrow_quantity}{&mainchainrate}{&status}{&open_address}{&oracle_address}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to opens or closes a dispenser for a given asset at a given rate of main chain asset (BTC). Escrowed quantity on open must be equal or greater than give_quantity. It is suggested that you escrow multiples of give_quantity to ease dispenser operation. + Parameters - + address: `bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3` (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) @@ -8138,7 +8197,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + + exact_fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` @@ -8177,7 +8236,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", + "source": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8201,7 +8260,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949953351, "btc_fee": 16649, - "rawtransaction": "02000000000101318dbcf475c4b874032fb3f2989349d0695ce469256206b74ca91d4bf5dd0f74020000001600146fc1e09d3d25a8b78c9345abf4733cb0d5882240ffffffff0200000000000000002c6a2a0fae3d503f5f272030f6827403ad73dd0638811e90eb26779a736dd6aa8874775d80d294e1be2127cb07474b0a27010000001600146fc1e09d3d25a8b78c9345abf4733cb0d588224002000000000000", + "rawtransaction": "020000000001012a3cd6a47ff542d48d0438c9c75876eab28b1c2e4563d535f366eb89776eaacc0200000016001401d840dfc6dc260745ae69084785f48258eb45baffffffff0200000000000000002c6a2a8ca5fc6e87e042c2e3aab97566b9033d1baccced54f9b60eafc388ac3b4cd95c62e97630ebccdd5babf0474b0a270100000016001401d840dfc6dc260745ae69084785f48258eb45ba02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8213,12 +8272,12 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv } ``` -### Compose Dividend [GET /v2/addresses/{address}/compose/dividend{?quantity_per_unit}{&asset}{÷nd_asset}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Dividend [GET /v2/addresses/{address}/compose/dividend{?quantity_per_unit}{&asset}{÷nd_asset}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a dividend to holders of a given asset. + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (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: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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 @@ -8234,7 +8293,7 @@ Composes a transaction to issue a dividend to holders of a given asset. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + + exact_fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` @@ -8273,14 +8332,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -8299,7 +8358,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "02000000000101772a424f64e888d103ad6b444d8961fdc2d084997e207128a7204a916c8fd7f70000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000236a214264b2defd026c9f8b058fbc9a3ccc8ef14a1635eeef08f1af470f75ac2a94dde160b3052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "020000000001013c7f0b32e7fb4d3ba8a7b73836b864035340234f09cf4622cdef5734b4dbbe11000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000236a21a95ab6bd82627fe910fc48fa44001f03c85813455ab3eccb65502acea69a8d126c60b3052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8311,15 +8370,15 @@ Composes a transaction to issue a dividend to holders of a given asset. } ``` -### Compose Issuance [GET /v2/addresses/{address}/compose/issuance{?asset}{&quantity}{&transfer_destination}{&divisible}{&lock}{&reset}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Issuance [GET /v2/addresses/{address}/compose/issuance{?asset}{&quantity}{&transfer_destination}{&divisible}{&lock}{&reset}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to Issue a new asset, issue more of an existing asset, lock an asset, reset existing supply, or transfer the ownership of an asset. + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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` @@ -8341,7 +8400,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + + exact_fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` @@ -8380,10 +8439,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "transfer_destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "lock": false, "reset": false, @@ -8396,7 +8455,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999981092, "btc_fee": 18362, - "rawtransaction": "020000000001013e0e4bd74e37b6311b78dfa53052df39d250afdb47bc36a4b5b1d1cff37d22700000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff03220200000000000016001452e48a2420dddb4d5239ee4f509da9a34bff777a0000000000000000236a21793f612862b2a7beb9354b99022fde7eec9d9d301bde3705a9dac4a697fda9d23c24a8052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "02000000000101000425aa8500aea9b9d5cb296947b0b6d71f64cf8dd639b63f5a2883de8bad6d000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0322020000000000001600143e5479d90ea1664716c42ff6cd46077c13ccd4730000000000000000236a21cc8ec18aca84767b144ecbac109c4b6812357f9bc58bdcbfa8f667098e2d2853ab24a8052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8408,14 +8467,14 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo } ``` -### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to send multiple payments to multiple addresses. + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms,bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz,bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (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` @@ -8433,7 +8492,7 @@ Composes a transaction to send multiple payments to multiple addresses. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + + exact_fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` @@ -8472,16 +8531,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", 1 ], [ "MYASSETA", - "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", 2 ] ], @@ -8489,12 +8548,12 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e5452505254590300028052e48a2420dddb4d5239ee4f509da9a34bff777a80a34288aaa16cb6a9c7065f6fedddf0f15f400ec98f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e545250525459030002803e5479d90ea1664716c42ff6cd46077c13ccd47380c7da25416c8a05ef76411973556de567bdc97a8a8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999936609, "btc_fee": 61391, - "rawtransaction": "020000000001041c554d8764ee6d119d016e24d0fd65836743d8c4438d4388402a77d13c0f3fd20000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffffadac142c6837041de85d3e045f73fef9916d18e6a25bf17bfec4ecb93a8fe9ea0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffffa1840467c0f27dac03f476fdd70722f7daaf74e05a784db506cbd965c2a6b6e10000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff407819504dc30f57271a653a15452cf5d9d82e21aabcde9a21e948e2de95be5a0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff03e803000000000000695121035936f288e6a2e950c979417d5d4f3b446d71e718be0171a8a37da80355f4c99821030d4ea50d0e48026aeb23250c93265a474eb2733f2305c331f13f68345df2cad121038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53aee803000000000000695121025636f288e6a2e950c95a3610af71bbef6bd13ac3ff46d3cd5b0d35aaf6bf36fc21037a346dae4cc0a8cb879584cb957935aa93428060630b0abed3770d58319de65e21038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53ae61d016a80400000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000002000002000002000000000000", + "rawtransaction": "02000000000104be380ad9f6118df88b30e5ba9df40f45180c2e4578fd44bd16bbe32537dc30c5000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff7070290d1c1af1350dbf89f6d850b13bbf26df47a4a85d899375c522a73a2fad000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0a29fba38b0824e461b534ecc37540382cccfae1ac9451e166b3acf0d4056c11000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffffdb75b1232299c696cc2b5ca1707bedcba354f3412e2128dcf5554ddb766cafe2000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff03e80300000000000069512102eaa8c97299750142bc49ab3dd0b3442290d87e85e1d4b3933c22e3ae2517f42c210302ad2794f10b8d00c7f2173dc385a052af1e6a5a204f1df4b3dfdc796820fb5d2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee80300000000000069512102e5a8c97299750142bc6adc5022e1747a6b56dfe3aad7ec377dcfa5a9590438bc2102d6deef532b2ecc6c4df7f04b829cd307c2fb0fe7e935977b9197b915044fd74e2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653ae61d016a8040000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8506,12 +8565,12 @@ Composes a transaction to send multiple payments to multiple addresses. } ``` -### Compose Order [GET /v2/addresses/{address}/compose/order{?give_asset}{&give_quantity}{&get_asset}{&get_quantity}{&expiration}{&fee_required}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Order [GET /v2/addresses/{address}/compose/order{?give_asset}{&give_quantity}{&get_asset}{&get_quantity}{&expiration}{&fee_required}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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 @@ -8530,7 +8589,7 @@ Composes a transaction to place an order on the distributed exchange. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + + exact_fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` @@ -8569,7 +8628,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8586,7 +8645,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -8600,7 +8659,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999982734, "btc_fee": 17266, - "rawtransaction": "020000000001016bb7fc25808190b208c7dee271094aa0043a6a1115ee3a5a4dd815e4fb562dad0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000356a33785afb04d6d852d87fb2a584ccd9fa32c43efbcf88f97f71c6287280dc1cca56e96c428ce017a2b255f178b9d53bdba5b8bde48eae052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "02000000000101928834522e5fdb45cc387ed9c78a3d7ed808b04988bcb5e354444a3c00305ee7000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000356a33c97bbef8ea2d606a49d860a2b66e866b30ffc12f6625b1b2cb00c5f0270cc1225425393eae0fea5f402c4197742a38e5220d078eae052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8612,13 +8671,13 @@ Composes a transaction to place an order on the distributed exchange. } ``` -### Compose Send [GET /v2/addresses/{address}/compose/send{?destination}{&asset}{&quantity}{&memo}{&memo_is_hex}{&use_enhanced_send}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Send [GET /v2/addresses/{address}/compose/send{?destination}{&asset}{&quantity}{&memo}{&memo_is_hex}{&use_enhanced_send}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to send a quantity of an asset to another address. + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (str, required) - The address that will be receiving the asset + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (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 @@ -8639,7 +8698,7 @@ Composes a transaction to send a quantity of an asset to another address. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + + exact_fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` @@ -8678,8 +8737,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8695,12 +8754,12 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880a34288aaa16cb6a9c7065f6fedddf0f15f400ec9", + "data": "434e54525052545902000000000000000100000000000003e880c7da25416c8a05ef76411973556de567bdc97a8a", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983077, "btc_fee": 16923, - "rawtransaction": "02000000000101583853bdbca05f1cdf88aa192b5724cd3c1d8943b14521aa3e16e452c1140ebc0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000306a2ea68afc5bb95bc1f3c8552f311d0fa507ad98eae55ec7547df98ecf025cd6a9575a98771a161e046bebe05c4c39afe5af052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "02000000000101c20d010724af411a2a247fe4dd5848d2b83a47b9fe770cf250ace476a9d4c941000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000306a2ea8baea27a49118c0c972ff0e0197e5821c7ad67e9aa2b4e864831807efeca4c94f8ade8a47195c988596dd65a692e5af052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8712,13 +8771,13 @@ Composes a transaction to send a quantity of an asset to another address. } ``` -### Compose Sweep [GET /v2/addresses/{address}/compose/sweep{?destination}{&flags}{&memo}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Sweep [GET /v2/addresses/{address}/compose/sweep{?destination}{&flags}{&memo}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to Sends all assets and/or transfer ownerships to a destination address. + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address that will be sending - + destination: `bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address that will be sending + + destination: `bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (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 @@ -8733,7 +8792,7 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + + exact_fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` @@ -8772,18 +8831,18 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480a34288aaa16cb6a9c7065f6fedddf0f15f400ec907ffff", + "data": "434e5452505254590480c7da25416c8a05ef76411973556de567bdc97a8a07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "02000000000101c13a33a55cc4da0d2015c90055619d8f698bd233a8932626abe7fb410f6d728f0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000236a21f5683d8a2a94cc1d0a114e32e61328b41906dc7a99c1e01fc32a5610f42873b3c660b3052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "020000000001016e81923da0987e761c47ff80393af0bea0a0b5ef1679b1b76878c68753d01c31000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000236a21e50cc89fd41bab833f848e0b2e4649e3ce7243b5baf441d6c57493d2abfa88d82b60b3052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8795,13 +8854,13 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti } ``` -### Compose Dispense [GET /v2/addresses/{address}/compose/dispense{?dispenser}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Dispense [GET /v2/addresses/{address}/compose/dispense{?dispenser}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to send BTC to a dispenser. + Parameters - + address: `bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt` (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` @@ -8815,7 +8874,7 @@ Composes a transaction to send BTC to a dispenser. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + + exact_fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` @@ -8854,8 +8913,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "quantity": 1000 }, "name": "dispense", @@ -8864,7 +8923,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949850214, "btc_fee": 16786, - "rawtransaction": "02000000000101ff2c684a2b3d82813b501e504a4ec3237268859122c8b8d44cc928038298d9a002000000160014a34288aaa16cb6a9c7065f6fedddf0f15f400ec9ffffffff03e803000000000000160014c4fb36b92d4e34760a7faccb00cc7340befb180900000000000000000c6a0ac4557a1a4ec1b4698b2d66b8082701000000160014a34288aaa16cb6a9c7065f6fedddf0f15f400ec902000000000000", + "rawtransaction": "02000000000101dea30e8328b8079583b96c3ef77f9b7009ce379259fb87bcd088633f21a61c8302000000160014c7da25416c8a05ef76411973556de567bdc97a8affffffff03e803000000000000160014fa167162004bd108ffc4b1cfaf62ff500d14c74100000000000000000c6a0ac01c12de2331cceff02a66b8082701000000160014c7da25416c8a05ef76411973556de567bdc97a8a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8876,12 +8935,12 @@ Composes a transaction to send BTC to a dispenser. } ``` -### Compose Fairminter [GET /v2/addresses/{address}/compose/fairminter{?asset}{&asset_parent}{&price}{&quantity_by_price}{&max_mint_per_tx}{&hard_cap}{&premint_quantity}{&start_block}{&end_block}{&soft_cap}{&soft_cap_deadline_block}{&minted_asset_commission}{&burn_payment}{&lock_description}{&lock_quantity}{&divisible}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Fairminter [GET /v2/addresses/{address}/compose/fairminter{?asset}{&asset_parent}{&price}{&quantity_by_price}{&max_mint_per_tx}{&hard_cap}{&premint_quantity}{&start_block}{&end_block}{&soft_cap}{&soft_cap_deadline_block}{&minted_asset_commission}{&burn_payment}{&lock_description}{&lock_quantity}{&divisible}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address that will be issuing the asset + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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: `` @@ -8927,7 +8986,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + + exact_fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` @@ -8966,7 +9025,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -8991,7 +9050,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999983008, "btc_fee": 16992, - "rawtransaction": "02000000000101edba6678b60b30b896b07bab835b2d27bff4f1a2ef3b0c85fa9d8d509f52fcf70000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000316a2fbc78ad6877f92c6c9063a5baac60ccec90497166faa0e149f52233bcb3765d0c14e4506413953908cdfd54360727a2a0af052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "02000000000101aa7ce43971254a90d4ccc6b79aa2ef799a9a4b00bbedbd1942eae5c1b55a2af2000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000316a2f715c94a7f4fb2b8ff0d449110ddebde8509f5199e9d24d15a03d253a7d71824a88a648920d2907b225109a6f72df18a0af052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9003,12 +9062,12 @@ Composes a transaction to issue a new asset using the FairMinter protocol. } ``` -### Compose Fairmint [GET /v2/addresses/{address}/compose/fairmint{?asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Fairmint [GET /v2/addresses/{address}/compose/fairmint{?asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to mint a quantity of an asset using the FairMinter protocol. + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address that will be minting the asset + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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` @@ -9024,7 +9083,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + + exact_fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` @@ -9063,13 +9122,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -9081,7 +9140,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999984858, "btc_fee": 15142, - "rawtransaction": "02000000000101d8db8bab8b2eaf45e73ae61cf0e4ad3217dca2cda44ed3beaaf3fbd8503874850000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000166a148520f4de8ca9160dae71e4febe1a279bc99d6ad3dab6052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "020000000001013d689999212a122c2985028b16378a094bf53062bf1faf12a751052a4bd35754000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000166a14257a90a16c25b2e5f878513a635d0805d4678aeadab6052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9093,15 +9152,15 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto } ``` -### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address from which the assets are attached + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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: `42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1` (str, optional) - The utxo to attach the assets to + + destination: `3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0:3` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9115,7 +9174,7 @@ Composes a transaction to attach assets from an address to UTXO. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + + exact_fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` @@ -9154,8 +9213,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0:3", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9168,12 +9227,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317132746a67356670716d6864353635336561653834703864663564396c37616d366c61746e6d737c343233353165336263373537343737303430656461633231626163323031623732663735633863356438633139383163363338663061653966396533636130663a317c5843507c31303030", + "data": "434e54525052545964626372743171386532386e6b677735396e7977396b79396c6d7636337338307366756534726e756b6b64637a7c333937386436636233666530613664613830356136323037313461643262633330346530383264373331343263643831303732396338356338623462313264303a337c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999905256, "btc_fee": 91744, - "rawtransaction": "020000000001065d9d5d90602ef0c63cb5c2f71c7207444cfd796ffca66aefdaa9695d50103d790000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff24919df9818f2c23b2c17a43c1eacaf7901ee30d5a484b7c1dbff0890add1bc90000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff960d83f080a9bdef42307111b9cffda8333e9a0a370885b4fc04f981e47107450000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff7ec16616b32c7d5dee428c48e00c530e88d847cf523531cceb4156ba9c835ab20000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffffb9c801d65b42082b83c53cd94b6a23e75bfff63c8bc0f4cc461a7fcc40f3e34d0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff56ea4b7bea9f3325571561e9a5dd52b5d0ab9ef0597ba27739e9f6cefcdabb940000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff04e80300000000000069512102c21d5b917e87e3c707f56838bbb4a555358a3acd795502d40b60e5924b4c187a21030565a6c1e374202dc5c9d9121b372d2fef734dc230371b16b84f3c675a4e34a021038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53aee80300000000000069512102c21d5b917e87e3c707f3696cfcf7a01330ce649a295713c65439e3c61e4b1b3021025166f4cbb1332d2a9b9f884f4f637d7be12e4f806d620e5aed183634524e340321038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53aee80300000000000069512103e81d5b917e87e3c707f26b6baffaa5585fbd00d67d034295660881a77d792b4521026004c3f9d7041849a3fcbd2b77004c42d91f2cb65e5a686a8c7d0f526b2b07c221038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53aee83922fc0600000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000002000002000002000002000002000000000000", + "rawtransaction": "020000000001062333447ebbea0fd6a2a225010dccc6d3c5477c35a8acef277d20e91565d7c347000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffffc1d16b68605c411e45ad8e0397dac1b581a6df12f2f06fe2af40ff24e952d19e000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffffbf74197d364fdbe426f1daaec1c656e575ed2231d18da43348467151bae2522c000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0b32d484d9546ad3bef76d6dc3906513d3b8a82998967e49c9130849194a8fcb000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473fffffffffabcd8acadac9fb2cacb64d909a9948acdc57c7c19105ae5560d7272811de972000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffffb8523f38389b9e6699298411af04bac6a1cd1713eaf4a97bac2c71bedf70eb4e000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff04e80300000000000069512102be6824c9c2837855acb7c2552a01165fbb89f27130a7ff4a4f8cd8111cc905ac2103efa04bf310d554e2f9edaa566eaeae7459e864db0620471418ac9a1078c967262103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee80300000000000069512102be6824c9c2837855acb193503d454618e78df8796badae0f4a82875c0a945c242102f4fa14ae528657a9f3b9ee032affa86553a53e805571040b13a0ce107ecb66d92103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee80300000000000069512102946824c9c2837855ace29252684f1452dbaf90356ffca80d7ab5b6686bf06e1821029699279e66e36791c1ddd9301bcb9a06379d0fb062433d682b95ad281cff04e62103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee83922fc060000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9185,13 +9244,13 @@ Composes a transaction to attach assets from an address to UTXO. } ``` -### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?destination}{&asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?destination}{&asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6:1` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to detach the assets to + + utxo: `a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c:1` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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 @@ -9206,7 +9265,7 @@ Composes a transaction to detach assets from UTXO to an address. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + + exact_fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose + Default: `None` + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value + Default: `0` @@ -9245,8 +9304,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6:1", - "destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c:1", + "destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9259,12 +9318,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964616239356165663730393934303131363336633463663561366234393365363262613835623665653664616435363030373366373633373037323263616563363a317c62637274317132746a67356670716d6864353635336561653834703864663564396c37616d366c61746e6d737c5843507c31303030", + "data": "434e54525052545964613239393834616131613833316366616539306235336338303930306666396431303865353735613365633736636138646563663666363138653163356130633a317c626372743171386532386e6b677735396e7977396b79396c6d7636337338307366756534726e756b6b64637a7c5843507c31303030", "btc_in": 4949874900, "btc_out": 3000, "btc_change": 4949842164, "btc_fee": 29736, - "rawtransaction": "02000000000101c6ae2c727063f7730056ad6deeb685ba623e496b5acfc43616019409f7ae95ab01000000160014f8caf7a9624245ce6d99873e6a23fae0cea1ba18ffffffff04e80300000000000069512102906ba90f50b7c69a6996b9ae8a8bc3f5b011eb413ef6533720c6146e82ec58a321028ed7b4e539ac78f91700a87cb9982e5cb9e5aa0df423a047545b5d806495b2fc2103f654d28f2d46209875e943be3d1b1b665651813787556caecbd1c8b9e2c71c4e53aee80300000000000069512103906ba90f50b7c69a69c4ebfb838990a2b547be1b31f8527a7393552cd0a9099e21039c88b2e63de830a71a52af28ed937e5feab8fb4ba826a24706520180369eb3b42103f654d28f2d46209875e943be3d1b1b665651813787556caecbd1c8b9e2c71c4e53aee80300000000000069512103ba6ba90f50b7c69a699eb9b8ddd3d1ec8e658b0436f2533611f02758e1d83b6d2103e8e2d5d35b9841ca72369a1ed8a01b3e8f80cf3b9042c472626b6db757f385b12103f654d28f2d46209875e943be3d1b1b665651813787556caecbd1c8b9e2c71c4e53aef498082701000000160014f8caf7a9624245ce6d99873e6a23fae0cea1ba1802000000000000", + "rawtransaction": "020000000001010c5a1c8e616fcfdea86cc73e5a578e109dff0009c8530be9fa1c831aaa8499a201000000160014e4967dc95a9dc087b320508b527a8ba2f1641404ffffffff04e8030000000000006951210338cb0920482201a454429a0b10c677b9c57a58e648ef9f97e8160f1fa75ac903210251e0e4c133f7e8f49b4a561bec2b72b93b0a59a5e5b0a29f1dfaefdd745c6c4c2102e211c75c1f658711fb2f12f9538ca309f92b3e249f764e2a1bb312f311c8e81453aee8030000000000006951210338cb0920482201a454109d0f18c72abcc72e08b713e69f88ec141852a649c46d210207b1e49f61a0afa7c41d4b5de5786eb560524ea0b3a0ad990dfda2dc254d640f2102e211c75c1f658711fb2f12f9538ca309f92b3e249f764e2a1bb312f311c8e81453aee8030000000000006951210312cb0920482201a4545390524d9c35f1fc5839fb41ec9ec48e776a269738fc5421026283dcf10ac7d892fd73322adc13178c0c3f389680d395a97e9bd7b9113f0ad82102e211c75c1f658711fb2f12f9538ca309f92b3e249f764e2a1bb312f311c8e81453aef498082701000000160014e4967dc95a9dc087b320508b527a8ba2f164140402000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9319,8 +9378,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 10000000000, @@ -9328,16 +9387,16 @@ Returns the valid assets "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727079860, - "last_issuance_block_time": 1727079868, + "first_issuance_block_time": 1727089867, + "last_issuance_block_time": 1727089896, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", - "owner": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", + "issuer": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", + "owner": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", "divisible": true, "locked": false, "supply": 100000000000, @@ -9345,16 +9404,16 @@ Returns the valid assets "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1727079855, - "last_issuance_block_time": 1727079855, + "first_issuance_block_time": 1727089863, + "last_issuance_block_time": 1727089863, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 100000000000, @@ -9362,16 +9421,16 @@ Returns the valid assets "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727079822, - "last_issuance_block_time": 1727079822, + "first_issuance_block_time": 1727089828, + "last_issuance_block_time": 1727089828, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 40, @@ -9379,16 +9438,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727079772, - "last_issuance_block_time": 1727079776, + "first_issuance_block_time": 1727089768, + "last_issuance_block_time": 1727089772, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 19, @@ -9396,8 +9455,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727079755, - "last_issuance_block_time": 1727079767, + "first_issuance_block_time": 1727089751, + "last_issuance_block_time": 1727089764, "supply_normalized": "0.00000019" } ], @@ -9425,8 +9484,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 10000000000, @@ -9434,8 +9493,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1727079718, - "last_issuance_block_time": 1727079731, + "first_issuance_block_time": 1727089713, + "last_issuance_block_time": 1727089726, "supply_normalized": "100.00000000" } } @@ -9466,7 +9525,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9474,14 +9533,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9489,7 +9548,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -9506,7 +9565,7 @@ Returns the asset balances Returns the balance of an address and asset + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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` @@ -9518,7 +9577,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -9567,9 +9626,9 @@ Returns the orders of an asset "result": [ { "tx_index": 57, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9584,7 +9643,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727080022, + "block_time": 1727090024, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9610,9 +9669,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "block_index": 190, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9627,7 +9686,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727080007, + "block_time": 1727090019, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9653,9 +9712,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "tx_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "block_index": 186, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -9670,7 +9729,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727079980, + "block_time": 1727090002, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9696,9 +9755,9 @@ Returns the orders of an asset }, { "tx_index": 50, - "tx_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "tx_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "block_index": 185, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -9713,7 +9772,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727079976, + "block_time": 1727089998, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9739,9 +9798,9 @@ Returns the orders of an asset }, { "tx_index": 49, - "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", "block_index": 186, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9756,7 +9815,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727079980, + "block_time": 1727090002, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9816,13 +9875,13 @@ Returns the orders of an asset { "result": [ { - "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "tx0_index": 49, - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 52, - "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", - "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -9836,7 +9895,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727079980, + "block_time": 1727090002, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9856,13 +9915,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "tx0_index": 49, - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 50, - "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", - "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -9876,7 +9935,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727079976, + "block_time": 1727089998, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9896,13 +9955,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", "tx0_index": 47, - "tx0_hash": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 48, - "tx1_hash": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", - "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "tx1_hash": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -9916,7 +9975,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727079898, + "block_time": 1727089916, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9996,20 +10055,20 @@ Returns the credits of an asset "result": [ { "block_index": 192, - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -10017,20 +10076,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "aba09e8187e96520b24e280f230363e20f8f4b7a2c1f87395b3b7c4e5ccccd4a", + "event": "acf48dd0934a72afc03c4f60973d9546548128c16f7dd8a2d27d53d9cefd51d2", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079731, + "block_time": 1727089726, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -10038,20 +10097,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153", + "event": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079726, + "block_time": 1727089722, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -10059,20 +10118,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", + "event": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079726, + "block_time": 1727089722, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -10084,16 +10143,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153", + "event": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079726, + "block_time": 1727089722, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -10149,16 +10208,16 @@ Returns the debits of an asset "result": [ { "block_index": 193, - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "event": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -10170,16 +10229,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -10191,16 +10250,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -10212,16 +10271,16 @@ Returns the debits of an asset }, { "block_index": 191, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "event": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080022, + "block_time": 1727090024, "asset_info": { "divisible": true, "asset_longname": null, @@ -10233,16 +10292,16 @@ Returns the debits of an asset }, { "block_index": 189, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079993, + "block_time": 1727090015, "asset_info": { "divisible": true, "asset_longname": null, @@ -10282,20 +10341,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 40, - "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", + "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", "block_index": 153, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727079846, + "block_time": 1727089854, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -10339,14 +10398,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "aba09e8187e96520b24e280f230363e20f8f4b7a2c1f87395b3b7c4e5ccccd4a", + "tx_hash": "acf48dd0934a72afc03c4f60973d9546548128c16f7dd8a2d27d53d9cefd51d2", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -10361,20 +10420,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727079731, + "block_time": 1727089726, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153", + "tx_hash": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -10389,20 +10448,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727079726, + "block_time": 1727089722, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", + "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -10417,20 +10476,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727079722, + "block_time": 1727089717, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -10445,7 +10504,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1727079718, + "block_time": 1727089713, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10479,10 +10538,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10490,7 +10549,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "divisible": true, "asset_longname": null, @@ -10503,10 +10562,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 53, - "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68", + "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794", "block_index": 187, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10514,7 +10573,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079984, + "block_time": 1727090007, "asset_info": { "divisible": true, "asset_longname": null, @@ -10527,10 +10586,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 42, - "tx_hash": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", + "tx_hash": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", "block_index": 155, - "source": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9:0", - "destination": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6:1", + "source": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7:0", + "destination": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10538,7 +10597,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079855, + "block_time": 1727089863, "asset_info": { "divisible": true, "asset_longname": null, @@ -10551,10 +10610,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 41, - "tx_hash": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9", + "tx_hash": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7", "block_index": 154, - "source": "1e8a7f0d682c559f76df39d59c42e226bb21b74c4825ebc69640eb61dab672ec:0", - "destination": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9:0", + "source": "53811a32e206a65da3b210d98250f6fcb76f9b6be3271e87c0cdfb8c512dd590:0", + "destination": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10562,7 +10621,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079851, + "block_time": 1727089858, "asset_info": { "divisible": true, "asset_longname": null, @@ -10611,18 +10670,18 @@ Returns the dispensers of an asset "result": [ { "tx_index": 32, - "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "last_status_tx_hash": null, - "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10632,7 +10691,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727079818, + "block_time": 1727089824, "asset_info": { "divisible": true, "asset_longname": null, @@ -10648,9 +10707,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", + "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", "block_index": 144, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10659,7 +10718,7 @@ Returns the dispensers of an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10669,7 +10728,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079809, + "block_time": 1727089816, "asset_info": { "divisible": true, "asset_longname": null, @@ -10685,9 +10744,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "b16d62f7019440d104a33daf489474a166d0013d0fe9cdd515da181e91bf44aa", + "tx_hash": "3a6af3e11c6339f8caf016fedef2856a68de90aa0e72317b4ee81e38c80c4fdd", "block_index": 142, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10696,7 +10755,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "origin": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10706,7 +10765,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079802, + "block_time": 1727089797, "asset_info": { "divisible": true, "asset_longname": null, @@ -10722,9 +10781,9 @@ Returns the dispensers of an asset }, { "tx_index": 26, - "tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10733,7 +10792,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10743,7 +10802,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -10768,7 +10827,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - The address to return + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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` @@ -10781,9 +10840,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", + "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", "block_index": 144, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10792,7 +10851,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10802,7 +10861,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079809, + "block_time": 1727089816, "asset_info": { "divisible": true, "asset_longname": null, @@ -10852,7 +10911,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -10860,7 +10919,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -10869,7 +10928,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -10877,7 +10936,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -10886,7 +10945,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -10894,7 +10953,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -10903,7 +10962,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -10940,27 +10999,27 @@ Returns the dispenses of an asset { "tx_index": 33, "dispense_index": 0, - "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", - "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "last_status_tx_hash": null, - "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10975,7 +11034,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727079818, + "block_time": 1727089824, "asset_info": { "divisible": true, "asset_longname": null, @@ -10989,19 +11048,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", + "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11009,7 +11068,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11024,7 +11083,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -11038,19 +11097,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", + "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", "block_index": 140, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11058,7 +11117,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11073,7 +11132,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079793, + "block_time": 1727089788, "asset_info": { "divisible": true, "asset_longname": null, @@ -11116,8 +11175,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 0, @@ -11125,8 +11184,8 @@ Returns asset subassets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1727079864, - "last_issuance_block_time": 1727079864, + "first_issuance_block_time": 1727089881, + "last_issuance_block_time": 1727089881, "supply_normalized": "0.00000000" } ], @@ -11158,10 +11217,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11186,7 +11245,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727079731 + "block_time": 1727089726 } ], "next_cursor": null, @@ -11217,64 +11276,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "aba09e8187e96520b24e280f230363e20f8f4b7a2c1f87395b3b7c4e5ccccd4a", + "tx_hash": "acf48dd0934a72afc03c4f60973d9546548128c16f7dd8a2d27d53d9cefd51d2", "tx_index": 13, "block_index": 125, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", - "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079731, + "block_time": 1727089726, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } }, { - "tx_hash": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153", + "tx_hash": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075", "tx_index": 12, "block_index": 124, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", - "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079726, + "block_time": 1727089722, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } }, { - "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", + "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079722, + "block_time": 1727089717, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } @@ -11290,7 +11349,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9` (str, required) - The address of the mints to return + + address: `bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (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` @@ -11309,22 +11368,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", + "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079722, + "block_time": 1727089717, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } @@ -11368,9 +11427,9 @@ Returns all the orders "result": [ { "tx_index": 57, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11385,7 +11444,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727080022, + "block_time": 1727090024, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11411,9 +11470,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "block_index": 190, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11428,7 +11487,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727080007, + "block_time": 1727090019, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11454,9 +11513,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "tx_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "block_index": 186, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11471,7 +11530,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727079980, + "block_time": 1727090002, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11497,9 +11556,9 @@ Returns all the orders }, { "tx_index": 50, - "tx_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "tx_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "block_index": 185, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11514,7 +11573,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727079976, + "block_time": 1727089998, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11540,9 +11599,9 @@ Returns all the orders }, { "tx_index": 49, - "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", "block_index": 186, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11557,7 +11616,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727079980, + "block_time": 1727090002, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11592,7 +11651,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f` (str, required) - The hash of the transaction that created the order + + order_hash: `bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d` (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. @@ -11604,9 +11663,9 @@ Returns the information of an order { "result": { "tx_index": 57, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11621,7 +11680,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727080022, + "block_time": 1727090024, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11653,7 +11712,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d` (str, required) - The hash of the transaction that created the order + + order_hash: `5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d` (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 @@ -11678,13 +11737,13 @@ Returns the order matches of an order { "result": [ { - "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "tx0_index": 49, - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 52, - "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", - "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11698,7 +11757,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727079980, + "block_time": 1727090002, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11718,13 +11777,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "tx0_index": 49, - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 50, - "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", - "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11738,7 +11797,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727079976, + "block_time": 1727089998, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11768,7 +11827,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d` (str, required) - The hash of the transaction that created the order + + order_hash: `5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d` (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 @@ -11787,15 +11846,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 51, - "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", + "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", "block_index": 185, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "btc_amount": 2000, - "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "status": "valid", "confirmed": true, - "block_time": 1727079976, + "block_time": 1727089998, "btc_amount_normalized": "0.00002000" } ], @@ -11837,9 +11896,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 57, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11857,7 +11916,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727080022, + "block_time": 1727090024, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11883,9 +11942,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "block_index": 190, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11903,7 +11962,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727080007, + "block_time": 1727090019, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11929,9 +11988,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "tx_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "block_index": 186, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11949,7 +12008,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727079980, + "block_time": 1727090002, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11975,9 +12034,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "tx_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "block_index": 185, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11995,7 +12054,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727079976, + "block_time": 1727089998, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12021,9 +12080,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", "block_index": 186, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12041,7 +12100,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727079980, + "block_time": 1727090002, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12102,13 +12161,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "tx0_index": 49, - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 52, - "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", - "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12125,7 +12184,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727079980, + "block_time": 1727090002, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12145,13 +12204,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "tx0_index": 49, - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 50, - "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", - "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12168,7 +12227,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727079976, + "block_time": 1727089998, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12188,13 +12247,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", "tx0_index": 47, - "tx0_hash": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 48, - "tx1_hash": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", - "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "tx1_hash": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12211,7 +12270,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727079898, + "block_time": 1727089916, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12267,13 +12326,13 @@ Returns all the order matches { "result": [ { - "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "tx0_index": 49, - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 52, - "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", - "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12287,7 +12346,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727079980, + "block_time": 1727090002, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12307,13 +12366,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "tx0_index": 49, - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 50, - "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", - "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12327,7 +12386,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727079976, + "block_time": 1727089998, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12347,13 +12406,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", "tx0_index": 47, - "tx0_hash": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 48, - "tx1_hash": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", - "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "tx1_hash": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12367,7 +12426,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727079898, + "block_time": 1727089916, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12535,66 +12594,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "913a6e309d29d939a9b42c5b239eda58fd12b57ab1aefd856fe908cc2f03c87a", + "tx_hash": "6a8c5d264053a3fe132a67dfd75f6b75be30fbcc6338e9b6df1e8537ac9908e3", "block_index": 121, - "source": "bcrt1qtlpkqnw458wcn6ggjgl0qhncr5azj57dwx79c9", + "source": "bcrt1qwp3vs8yzyz6lc0udjsz37s78rwa908kzgnm7yu", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1727079713, + "block_time": 1727089709, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "23ad1009c59d686328df3821813909176348ca6e1e56cb7b202e128adf338560", + "tx_hash": "063848e75c5fff12624ce719a4a817957db286aff18fe03a6c95a277a5da8258", "block_index": 120, - "source": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", + "source": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1727079709, + "block_time": 1727089705, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "4ca2ca199b3ee04e12640955c1b53d6b89ba9df69be6685d3c6d0444a9a4eb1e", + "tx_hash": "5e3d5bfcd850b9bb5fe0330972c9c0c3006ca502cbe308c24c89e02a84b2444a", "block_index": 119, - "source": "bcrt1qkwr9w42qzvnq5xgc696j57z7t2pe4tmzmx2nje", + "source": "bcrt1qr6g583q4apu77vem308rd09m65hmh5j5gly0mm", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1727079705, + "block_time": 1727089701, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "35289688c8de88663730c5b8f2f6842ad3fb0dc4cdfe162ba089a104bc04d407", + "tx_hash": "165a6c8507e1a26b393699c7b5f1edbe9fd62bbe8ff4047eea004a8469262dfe", "block_index": 118, - "source": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", + "source": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1727079701, + "block_time": 1727089697, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "324e90e34ddcca760891986a9243dedfbec99c1df8c445016da9df08c1fd821d", + "tx_hash": "591582bf8f85502b086d90fc4edd97cf117c8f8fdd92f958b40d006818dd9219", "block_index": 117, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1727079697, + "block_time": 1727089693, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12637,18 +12696,18 @@ Returns all dispensers "result": [ { "tx_index": 32, - "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "last_status_tx_hash": null, - "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -12658,7 +12717,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727079818, + "block_time": 1727089824, "asset_info": { "divisible": true, "asset_longname": null, @@ -12674,9 +12733,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", + "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", "block_index": 144, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -12685,7 +12744,7 @@ Returns all dispensers "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12695,7 +12754,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079809, + "block_time": 1727089816, "asset_info": { "divisible": true, "asset_longname": null, @@ -12711,9 +12770,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "b16d62f7019440d104a33daf489474a166d0013d0fe9cdd515da181e91bf44aa", + "tx_hash": "3a6af3e11c6339f8caf016fedef2856a68de90aa0e72317b4ee81e38c80c4fdd", "block_index": 142, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12722,7 +12781,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "origin": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12732,7 +12791,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079802, + "block_time": 1727089797, "asset_info": { "divisible": true, "asset_longname": null, @@ -12748,9 +12807,9 @@ Returns all dispensers }, { "tx_index": 26, - "tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12759,7 +12818,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12769,7 +12828,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -12794,7 +12853,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9` (str, required) - The hash of the dispenser to return + + dispenser_hash: `c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24` (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. @@ -12806,9 +12865,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12817,7 +12876,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12827,7 +12886,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -12849,7 +12908,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9` (str, required) - The hash of the dispenser to return + + dispenser_hash: `c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24` (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 @@ -12869,19 +12928,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", + "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12889,7 +12948,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12904,7 +12963,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -12918,19 +12977,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", + "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", "block_index": 140, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12938,7 +12997,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12953,7 +13012,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079793, + "block_time": 1727089788, "asset_info": { "divisible": true, "asset_longname": null, @@ -12995,20 +13054,20 @@ Returns all the dividends "result": [ { "tx_index": 40, - "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", + "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", "block_index": 153, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727079846, + "block_time": 1727089854, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -13033,7 +13092,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba` (str, required) - The hash of the dividend to return + + dividend_hash: `b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb` (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. @@ -13045,20 +13104,20 @@ Returns a dividend by its hash { "result": { "tx_index": 40, - "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", + "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", "block_index": 153, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727079846, + "block_time": 1727089854, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -13080,7 +13139,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb` (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 @@ -13103,12 +13162,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", + "event": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", "tx_index": 40, - "utxo": "1e8a7f0d682c559f76df39d59c42e226bb21b74c4825ebc69640eb61dab672ec:0", - "utxo_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "utxo": "53811a32e206a65da3b210d98250f6fcb76f9b6be3271e87c0cdfb8c512dd590:0", + "utxo_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "confirmed": true, - "block_time": 1727079846, + "block_time": 1727089854, "asset_info": { "divisible": true, "asset_longname": null, @@ -13120,16 +13179,16 @@ Returns a dividend distribution by its hash }, { "block_index": 153, - "address": "bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd", + "address": "bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", + "event": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079846, + "block_time": 1727089854, "asset_info": { "divisible": true, "asset_longname": null, @@ -13175,27 +13234,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", - "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", + "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", + "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", "transaction_count": 1, - "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", - "block_time": 1727080029 + "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", + "block_time": 1727090032 }, "tx_hash": null, "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "tx_index": 59 }, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 }, { "event_index": 533, @@ -13204,12 +13263,12 @@ Returns all events "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "status": "valid", "tag": "64657374726f79", - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "tx_index": 59, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -13219,24 +13278,24 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 193, - "event": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "event": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -13246,25 +13305,25 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", "block_index": 193, - "block_time": 1727080029, + "block_time": 1727090032, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "tx_index": 59, - "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", + "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -13284,9 +13343,9 @@ Returns all events }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 } ], "next_cursor": 530, @@ -13314,15 +13373,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", - "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", + "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", + "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", "transaction_count": 1, - "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", - "block_time": 1727080029 + "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", + "block_time": 1727090032 }, "tx_hash": null, "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 } } ``` @@ -13400,16 +13459,16 @@ Returns the events filtered by event name "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -13419,78 +13478,78 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727080007, + "block_time": 1727090019, "asset_info": { "divisible": true, "asset_longname": null, @@ -13500,24 +13559,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "block_index": 190, - "block_time": 1727080007 + "block_time": 1727090019 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "event": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "divisible": true, "asset_longname": null, @@ -13527,9 +13586,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "block_time": 1727079989 + "block_time": 1727090011 } ], "next_cursor": 490, @@ -13585,27 +13644,27 @@ Returns all the dispenses { "tx_index": 33, "dispense_index": 0, - "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", - "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "last_status_tx_hash": null, - "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13620,7 +13679,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727079818, + "block_time": 1727089824, "asset_info": { "divisible": true, "asset_longname": null, @@ -13634,19 +13693,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", + "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13654,7 +13713,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13669,7 +13728,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -13683,19 +13742,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", + "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", "block_index": 140, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13703,7 +13762,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13718,7 +13777,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079793, + "block_time": 1727089788, "asset_info": { "divisible": true, "asset_longname": null, @@ -13760,10 +13819,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "quantity": 10, "status": "valid", @@ -13771,7 +13830,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "divisible": true, "asset_longname": null, @@ -13784,10 +13843,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13795,11 +13854,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -13808,10 +13867,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13819,11 +13878,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -13832,10 +13891,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 53, - "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68", + "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794", "block_index": 187, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -13843,7 +13902,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079984, + "block_time": 1727090007, "asset_info": { "divisible": true, "asset_longname": null, @@ -13856,10 +13915,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 42, - "tx_hash": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", + "tx_hash": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", "block_index": 155, - "source": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9:0", - "destination": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6:1", + "source": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7:0", + "destination": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -13867,7 +13926,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079855, + "block_time": 1727089863, "asset_info": { "divisible": true, "asset_longname": null, @@ -13909,14 +13968,14 @@ Returns all the issuances "result": [ { "tx_index": 46, - "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", + "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -13931,20 +13990,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079873, + "block_time": 1727089900, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "ee5b91c03af937b81687cba8cf5de88a889363660243b7f1e3d0721469e82475", + "tx_hash": "e6abd286bdba5ba6f4e5dbe333fd2ab733fb42428230b79b68741f9678c28897", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -13959,20 +14018,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727079868, + "block_time": 1727089896, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "913be4b557b8ae7b33fffad5a68eec87247e587ef1161d91310b90133a1cb304", + "tx_hash": "67c806f2224d86f97c2532de5cd43bca5dff4a3a6951b17b37dafc06cceada13", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -13987,20 +14046,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079864, + "block_time": 1727089881, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "c5f0754dd7d1082a77f739c930d90d5684bb394c04a01e9acf2c0a1742b4dc87", + "tx_hash": "f16fadc9b332b83f0383c930c2392d6d2c06410ff8f5ea2a9fa0b1ee4713590e", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -14015,20 +14074,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079860, + "block_time": 1727089867, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", + "tx_hash": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", - "issuer": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", + "source": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", + "issuer": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", "transfer": false, "callable": false, "call_date": 0, @@ -14043,7 +14102,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079855, + "block_time": 1727089863, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -14058,7 +14117,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1` (str, required) - The hash of the transaction to return + + tx_hash: `1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa` (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. @@ -14070,14 +14129,14 @@ Returns the issuances of a block { "result": { "tx_index": 46, - "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", + "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -14092,7 +14151,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079873, + "block_time": 1727089900, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14124,16 +14183,16 @@ Returns all sweeps "result": [ { "tx_index": 58, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "fee_paid_normalized": "0.00600000" } ], @@ -14147,7 +14206,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36` (str, required) - The hash of the transaction to return + + tx_hash: `53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33` (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. @@ -14160,16 +14219,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 58, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "fee_paid_normalized": "0.00600000" } ], @@ -14203,9 +14262,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3", + "tx_hash": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d", "block_index": 138, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14213,14 +14272,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727079784, + "block_time": 1727089781, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "7145912710e264e9c5b45407d43bc8fd5318db28c30836a01c4862e2ded179d5", + "tx_hash": "d8c73b39bec3ca170f5db0ca4cf42abc7535513ef491131f8986f9b249de2aac", "block_index": 137, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14228,7 +14287,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727079780, + "block_time": 1727089777, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14242,7 +14301,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3` (str, required) - The hash of the transaction to return + + tx_hash: `6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d` (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. @@ -14254,9 +14313,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3", + "tx_hash": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d", "block_index": 138, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14264,7 +14323,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727079784, + "block_time": 1727089781, "fee_fraction_int_normalized": "0.00000000" } } @@ -14294,10 +14353,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", + "tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14322,13 +14381,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727079772 + "block_time": 1727089768 }, { - "tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", + "tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14353,13 +14412,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727079755 + "block_time": 1727089751 }, { - "tx_hash": "569b5d76c793d1fbd773e4c21c313d8d9bd4c08354834bd7fff4de4ba36e79c5", + "tx_hash": "bb99ad8dc9e2abcd6ec3a52b9cd21471fcbbf9b4d21c6a72ea69dcec59436f48", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14384,13 +14443,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727079751 + "block_time": 1727089747 }, { - "tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14415,7 +14474,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727079731 + "block_time": 1727089726 } ], "next_cursor": null, @@ -14458,7 +14517,7 @@ Returns the mints by fairminter Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj,bcrt1qkwr9w42qzvnq5xgc696j57z7t2pe4tmzmx2nje` (str, required) - The addresses to search for + + addresses: `bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3,bcrt1qr6g583q4apu77vem308rd09m65hmh5j5gly0mm` (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. @@ -14477,8 +14536,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", - "address": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj" + "txid": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "address": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3" }, { "vout": 2, @@ -14486,8 +14545,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", - "address": "bcrt1qkwr9w42qzvnq5xgc696j57z7t2pe4tmzmx2nje" + "txid": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", + "address": "bcrt1qr6g583q4apu77vem308rd09m65hmh5j5gly0mm" } ], "next_cursor": null, @@ -14500,7 +14559,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss` (str, required) - The address to search for + + address: `bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g` (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 @@ -14516,28 +14575,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "e0fb6c717053ccace6058ea89673a15dff5b190c77211ffd001c4094c8df382a" + "tx_hash": "20fa426beb275ab9aa19563cd3634c5e94a8a7b4fe7a8c4457baf6e2104f3028" }, { - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" }, { - "tx_hash": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153" + "tx_hash": "cf60fbda90f616c1b78c427d1f5e43c972f4b2ce47c44d24b87fd88f9f25fb68" }, { - "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68" + "tx_hash": "dc60251c64cde9adfaf7ea84db0bdaf720119f8f0a796de3bd80fd32a8700e75" }, { - "tx_hash": "8ef179e266d7b41d18f9c03097396fe4b3ec9a584925e023130ca6e7104fe97e" + "tx_hash": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075" }, { - "tx_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587" + "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794" }, { - "tx_hash": "edcb65463b8df565685e14b28ef3bfb1c6b8a890786da55ad8c98f75aae755dc" + "tx_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8" }, { - "tx_hash": "49ef44a3197cb95a81e7d7af2f370d66b6a5aa5e622be34b111129c5c5eb2be9" + "tx_hash": "9c20a315f9dd83391105db586e409f6b237d721fe234db96ff0cab43fa5174af" } ], "next_cursor": null, @@ -14550,7 +14609,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv` (str, required) - The address to search for. + + address: `bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy` (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. @@ -14563,8 +14622,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 7, - "tx_hash": "f817a39de71520bece9563e033d9f5a46bac47ca12bf1c5ac954e0ea51113a58" + "block_index": 9, + "tx_hash": "19d7ad6a7debbabdf862640263659bfeb1a9916a4d80ae8d3146789b1cb56978" } } ``` @@ -14574,7 +14633,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj` (str, required) - The address to search for + + address: `bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3` (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 @@ -14595,7 +14654,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31" + "txid": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a" } ], "next_cursor": null, @@ -14608,7 +14667,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms` (str, required) - Address to get pubkey for. + + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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. @@ -14620,7 +14679,7 @@ Get pubkey for an address. ``` { - "result": "038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c" + "result": "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556" } ``` @@ -14629,7 +14688,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527` (str, required) - The transaction hash + + tx_hash: `7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9` (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. @@ -14641,7 +14700,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001018f15e7684083d1f9423c84ed5c4afe1d69ac193d7036a02437756175460496980300000000ffffffff020000000000000000226a20491398ceb53d8e260f4143a231bd8209af9dcb656b81ea7a33cc97a98af87c92680b0a2701000000160014c4fb36b92d4e34760a7faccb00cc7340befb1809024730440220508d1f0f8e8d6ac4cecbe67fb5ef5086ab00963efb24f09e4be2bab5115e1d8f02205dffab35c8ebdd280d22fb55c2ebd0aadef1eca80fb98037e3a94e32222f3b5e01210245711205fa34c28180371a8e6a071cd643ec0f98772bebba59d21b2bf802372100000000" + "result": "020000000001010f37878f75c2f6c4b3e3fb5e7a69fec880c6a63f3bcae7d8afc7e7192f1292a50300000000ffffffff020000000000000000226a2060a32da42184ccea8214f59b284252342f58d0932c6adabcca89abc1cc505b65680b0a2701000000160014fa167162004bd108ffc4b1cfaf62ff500d14c7410247304402202ad0965c2307e9c401ff2e7cc89aa61b2f20800b61acc22d72f28514b754e0ac0220678c882ba6f89156de8da5eb81bc54c44c4a95e7a7ae537b7271e1aaac13eafd012102748e93e3b51c48fcf700c353ec69d192cd4c589703e899b4f8b2983d3a722c4b00000000" } ``` @@ -14734,26 +14793,26 @@ Returns all mempool events { "result": [ { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "tx_index": 60 } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "memo": null, "quantity": 10000, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "status": "valid", - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "tx_index": 60, "asset_info": { "divisible": true, @@ -14766,19 +14825,19 @@ Returns all mempool events } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "CREDIT", "params": { - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -14790,19 +14849,19 @@ Returns all mempool events } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 193, - "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -14814,27 +14873,27 @@ Returns all mempool events } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727080033.9107606, + "block_time": 1727090046.9235783, "btc_amount": 0, - "data": "0200000000000000010000000000002710803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc", + "data": "020000000000000001000000000000271080b24ca3b3deb516bc15248b8c9c92dd48a1518ca7", "destination": "", "fee": 10000, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "tx_index": 60, - "utxos_info": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47:1", + "utxos_info": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "memo": null, "asset_info": { "divisible": true, @@ -14878,19 +14937,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "CREDIT", "params": { - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -14912,7 +14971,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47` (str, required) - The hash of the transaction to return + + tx_hash: `9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5` (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 @@ -14932,26 +14991,26 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "tx_index": 60 } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "memo": null, "quantity": 10000, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "status": "valid", - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "tx_index": 60, "asset_info": { "divisible": true, @@ -14964,19 +15023,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "CREDIT", "params": { - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -14988,19 +15047,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 193, - "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -15012,27 +15071,27 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727080033.9107606, + "block_time": 1727090046.9235783, "btc_amount": 0, - "data": "0200000000000000010000000000002710803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc", + "data": "020000000000000001000000000000271080b24ca3b3deb516bc15248b8c9c92dd48a1518ca7", "destination": "", "fee": 10000, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "tx_index": 60, - "utxos_info": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47:1", + "utxos_info": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "memo": null, "asset_info": { "divisible": true, diff --git a/counterparty-core/counterpartycore/lib/api/api_v1.py b/counterparty-core/counterpartycore/lib/api/api_v1.py index 23db7b123f..1844ceea6c 100644 --- a/counterparty-core/counterpartycore/lib/api/api_v1.py +++ b/counterparty-core/counterpartycore/lib/api/api_v1.py @@ -29,6 +29,7 @@ message_type, script, transaction, + transaction_helper, util, ) from counterpartycore.lib.api import compose as api_compose @@ -1003,7 +1004,9 @@ def unpack(data_hex): @dispatcher.add_method # TODO: Rename this method. def search_pubkey(pubkeyhash, provided_pubkeys=None): - return transaction.pubkeyhash_to_pubkey(pubkeyhash, provided_pubkeys=provided_pubkeys) + return transaction_helper.transaction_outputs.pubkeyhash_to_pubkey( + pubkeyhash, provided_pubkeys=provided_pubkeys + ) @dispatcher.add_method def get_dispenser_info(tx_hash=None, tx_index=None): diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 48faee6ddb..902583bee5 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -63,7 +63,7 @@ False, "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs", ), - "fee": ( + "exact_fee": ( int, None, "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", diff --git a/counterparty-core/counterpartycore/lib/api/util.py b/counterparty-core/counterpartycore/lib/api/util.py index b22d326cdf..61db1f1979 100644 --- a/counterparty-core/counterpartycore/lib/api/util.py +++ b/counterparty-core/counterpartycore/lib/api/util.py @@ -11,7 +11,15 @@ import flask import requests import werkzeug -from counterpartycore.lib import backend, config, exceptions, ledger, transaction, util +from counterpartycore.lib import ( + backend, + config, + exceptions, + ledger, + transaction, + transaction_helper, + util, +) from counterpartycore.lib.api import compose from docstring_parser import parse as parse_docstring @@ -137,7 +145,9 @@ def pubkeyhash_to_pubkey(address: str, provided_pubkeys: str = None): provided_pubkeys_list = provided_pubkeys.split(",") else: provided_pubkeys_list = None - return transaction.pubkeyhash_to_pubkey(address, provided_pubkeys=provided_pubkeys_list) + return transaction_helper.transaction_outputs.pubkeyhash_to_pubkey( + address, provided_pubkeys=provided_pubkeys_list + ) def get_transaction(tx_hash: str, format: str = "json"): diff --git a/counterparty-core/counterpartycore/lib/gettxinfo.py b/counterparty-core/counterpartycore/lib/gettxinfo.py index 88a6b6b33b..b7faf496b2 100644 --- a/counterparty-core/counterpartycore/lib/gettxinfo.py +++ b/counterparty-core/counterpartycore/lib/gettxinfo.py @@ -6,7 +6,7 @@ from counterpartycore.lib.exceptions import BTCOnlyError, DecodeError from counterpartycore.lib.messages import dispenser from counterpartycore.lib.opcodes import * # noqa: F403 -from counterpartycore.lib.transaction_helper import p2sh_encoding +from counterpartycore.lib.transaction_helper import p2sh_serializer from counterpartycore.lib.util import inverse_hash logger = logging.getLogger(config.LOGGER_NAME) @@ -213,7 +213,7 @@ def get_transaction_source_from_p2sh(decoded_tx, p2sh_is_segwit): # Ignore transactions with invalid script. asm = script.script_to_asm(vin["script_sig"]) - new_source, new_destination, new_data = p2sh_encoding.decode_p2sh_input( + new_source, new_destination, new_data = p2sh_serializer.decode_p2sh_input( asm, p2sh_is_segwit=prevout_is_segwit ) # this could be a p2sh source address with no encoded data diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index 732e72f255..0376da8d07 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -19,101 +19,34 @@ script, util, ) -from counterpartycore.lib.backend import addrindexrs -from counterpartycore.lib.messages import dispense # noqa: F401 -from counterpartycore.lib.transaction_helper import p2sh_encoding, serializer, transaction_inputs +from counterpartycore.lib.transaction_helper import ( + common_serializer, + p2sh_serializer, + transaction_inputs, + transaction_outputs, +) logger = logging.getLogger(config.LOGGER_NAME) -# Constants -OP_RETURN = b"\x6a" -OP_PUSHDATA1 = b"\x4c" -OP_DUP = b"\x76" -OP_HASH160 = b"\xa9" -OP_EQUALVERIFY = b"\x88" -OP_CHECKSIG = b"\xac" -OP_0 = b"\x00" -OP_1 = b"\x51" -OP_2 = b"\x52" -OP_3 = b"\x53" -OP_CHECKMULTISIG = b"\xae" -OP_EQUAL = b"\x87" D = decimal.Decimal -def pubkeyhash_to_pubkey(pubkeyhash, provided_pubkeys=None): - # Search provided pubkeys. - if provided_pubkeys: - if type(provided_pubkeys) != list: # noqa: E721 - provided_pubkeys = [provided_pubkeys] - for pubkey in provided_pubkeys: - if pubkeyhash == script.pubkey_to_pubkeyhash(util.unhexlify(pubkey)): - return pubkey - elif pubkeyhash == script.pubkey_to_p2whash(util.unhexlify(pubkey)): - return pubkey - - # Search blockchain. - raw_transactions = addrindexrs.search_raw_transactions(pubkeyhash, unconfirmed=True) - for tx_id in raw_transactions: - tx = raw_transactions[tx_id] - for vin in tx["vin"]: - if "txinwitness" in vin: - if len(vin["txinwitness"]) >= 2: - # catch unhexlify errs for when txinwitness[1] isn't a witness program (eg; for P2W) - try: - pubkey = vin["txinwitness"][1] - if pubkeyhash == script.pubkey_to_p2whash(util.unhexlify(pubkey)): - return pubkey - except binascii.Error: - pass - elif "coinbase" not in vin: - scriptsig = vin["scriptSig"] - asm = scriptsig["asm"].split(" ") - if len(asm) >= 2: - # catch unhexlify errs for when asm[1] isn't a pubkey (eg; for P2SH) - try: - pubkey = asm[1] - if pubkeyhash == script.pubkey_to_pubkeyhash(util.unhexlify(pubkey)): - return pubkey - except binascii.Error: - pass - - raise exceptions.UnknownPubKeyError( - "Public key was neither provided nor published in blockchain." - ) - - -def multisig_pubkeyhashes_to_pubkeys(address, provided_pubkeys=None): - signatures_required, pubkeyhashes, signatures_possible = script.extract_array(address) - pubkeys = [pubkeyhash_to_pubkey(pubkeyhash, provided_pubkeys) for pubkeyhash in pubkeyhashes] - return script.construct_array(signatures_required, pubkeys, signatures_possible) - - -def get_dust_return_pubkey(source, provided_pubkeys): - """Return the pubkey to which dust from data outputs will be sent. - - This pubkey is used in multi-sig data outputs (as the only real pubkey) to - make those the outputs spendable. It is derived from the source address, so - that the dust is spendable by the creator of the transaction. - """ - # Get hex dust return pubkey. - # inject `script` - if script.is_multisig(source): - a, self_pubkeys, b = script.extract_array( - multisig_pubkeyhashes_to_pubkeys(source, provided_pubkeys) - ) - dust_return_pubkey_hex = self_pubkeys[0] +def collect_public_keys(pubkeys): + # Get provided pubkeys. + if isinstance(pubkeys, str): + provided_pubkeys = pubkeys.split(",") + elif isinstance(pubkeys, list): + provided_pubkeys = pubkeys + elif pubkeys is None: + provided_pubkeys = [] else: - dust_return_pubkey_hex = pubkeyhash_to_pubkey(source, provided_pubkeys) - - # Convert hex public key into the (binary) dust return pubkey. - try: - dust_return_pubkey = binascii.unhexlify(dust_return_pubkey_hex) - except binascii.Error: - raise script.InputError("Invalid private key.") # noqa: B904 + raise exceptions.TransactionError("Invalid pubkeys.") - return dust_return_pubkey + for pubkey in provided_pubkeys: + if not script.is_fully_valid(binascii.unhexlify(pubkey)): + raise exceptions.ComposeError(f"invalid public key: {pubkey}") + return provided_pubkeys def determine_encoding( @@ -142,108 +75,6 @@ def determine_encoding( return encoding -def compute_destinations_and_values( - destination_outputs, encoding, multisig_dust_size, regular_dust_size, provided_pubkeys -): - # Destination outputs. - # Replace multi‐sig addresses with multi‐sig pubkeys. Check that the - # destination output isn’t a dust output. Set null values to dust size. - destination_outputs_new = [] - if encoding != "p2sh": - for address, value in destination_outputs: - # Value. - if script.is_multisig(address): - dust_size = multisig_dust_size - else: - dust_size = regular_dust_size - if value == None: # noqa: E711 - value = dust_size # noqa: PLW2901 - elif value < dust_size: - raise exceptions.TransactionError("Destination output is dust.") - # Address. - script.validate(address) - if script.is_multisig(address): - destination_outputs_new.append( - ( - multisig_pubkeyhashes_to_pubkeys(address, provided_pubkeys), - value, - ) - ) - else: - destination_outputs_new.append((address, value)) - return destination_outputs_new - - -def prepare_data_output( - data, - source, - source_is_p2sh, - ps2h_dust_return_pubkey, - encoding, - multisig_dust_size, - regular_dust_size, - provided_pubkeys, - dust_return_pubkey, - op_return_value, -): - data_value = 0 - data_array = [] - if data: - # @TODO: p2sh encoding require signable dust key - if encoding == "multisig": - # dust_return_pubkey should be set or explicitly set to False to use the default configured for the node - # the default for the node is optional so could fail - if (source_is_p2sh and dust_return_pubkey is None) or ( - dust_return_pubkey is False and ps2h_dust_return_pubkey is None - ): - raise exceptions.TransactionError( - "Can't use multisig encoding when source is P2SH and no dust_return_pubkey is provided." - ) - elif dust_return_pubkey is False: - dust_return_pubkey = binascii.unhexlify(ps2h_dust_return_pubkey) - - if not dust_return_pubkey: - if encoding == "multisig" or encoding == "p2sh" and not source_is_p2sh: - dust_return_pubkey = get_dust_return_pubkey(source, provided_pubkeys) - else: - dust_return_pubkey = None - - # Divide data into chunks. - if encoding == "pubkeyhash": - # Prefix is also a suffix here. - chunk_size = 20 - 1 - 8 - elif encoding == "multisig": - # Two pubkeys, minus length byte, minus prefix, minus two nonces, - # minus two sign bytes. - chunk_size = (33 * 2) - 1 - len(config.PREFIX) - 2 - 2 - elif encoding == "p2sh": - pubkeylength = -1 - if dust_return_pubkey is not None: - pubkeylength = len(dust_return_pubkey) - - chunk_size = p2sh_encoding.maximum_data_chunk_size(pubkeylength) - elif encoding == "opreturn": - chunk_size = config.OP_RETURN_MAX_SIZE - if len(data) + len(config.PREFIX) > chunk_size: - raise exceptions.TransactionError("One `OP_RETURN` output per transaction.") - data_array = list(chunks(data, chunk_size)) - - # Data outputs. - if encoding == "multisig": - data_value = multisig_dust_size - elif encoding == "p2sh": - data_value = 0 # this will be calculated later - elif encoding == "opreturn": - data_value = op_return_value - else: - # Pay‐to‐PubKeyHash, e.g. - data_value = regular_dust_size - else: - dust_return_pubkey = None - - return data_value, data_array, dust_return_pubkey - - def check_transaction_sanity(db, source, tx_info, unsigned_tx_hex, encoding, inputs): (desired_source, desired_destination_outputs, desired_data) = tx_info desired_source = script.make_canonical(desired_source) @@ -252,13 +83,6 @@ def check_transaction_sanity(db, source, tx_info, unsigned_tx_hex, encoding, inp if desired_destination_outputs else "" ) - # NOTE: Include change in destinations for BTC transactions. - # if change_output and not desired_data and desired_destination != config.UNSPENDABLE: - # if desired_destination == '': - # desired_destination = desired_source - # else: - # desired_destination += f'-{desired_source}' - # NOTE if desired_data == None: # noqa: E711 desired_data = b"" @@ -295,21 +119,50 @@ def check_transaction_sanity(db, source, tx_info, unsigned_tx_hex, encoding, inp ) -def collect_public_keys(pubkeys): - # Get provided pubkeys. - if isinstance(pubkeys, str): - provided_pubkeys = pubkeys.split(",") - elif isinstance(pubkeys, list): - provided_pubkeys = pubkeys - elif pubkeys is None: - provided_pubkeys = [] +def serialize_transaction( + inputs, + source, + provided_pubkeys, + destination_outputs, + data_output, + change_output, + encoding, + dust_return_pubkey, + p2sh_source_multisig_pubkeys, + p2sh_source_multisig_pubkeys_required, + p2sh_pretx_txid, + segwit, + exclude_utxos, +): + pretx_txid = unsigned_pretx_hex = unsigned_tx_hex = None + + if encoding == "p2sh": + pretx_txid, unsigned_pretx_hex, unsigned_tx_hex = p2sh_serializer.serialize_p2sh( + inputs, + source, + provided_pubkeys, + destination_outputs, + data_output, + change_output, + dust_return_pubkey, + p2sh_source_multisig_pubkeys, + p2sh_source_multisig_pubkeys_required, + p2sh_pretx_txid, + segwit, + exclude_utxos, + ) else: - raise exceptions.TransactionError("Invalid pubkeys.") + unsigned_tx = common_serializer.serialise( + encoding, + inputs, + destination_outputs, + data_output, + change_output, + dust_return_pubkey=dust_return_pubkey, + ) + unsigned_tx_hex = binascii.hexlify(unsigned_tx).decode("utf-8") - for pubkey in provided_pubkeys: - if not script.is_fully_valid(binascii.unhexlify(pubkey)): - raise exceptions.ComposeError(f"invalid public key: {pubkey}") - return provided_pubkeys + return unsigned_pretx_hex, unsigned_tx_hex, pretx_txid def construct( @@ -318,7 +171,7 @@ def construct( pubkeys=None, encoding="auto", fee_per_kb=None, - fee=None, + exact_fee=None, fee_provided=0, confirmation_target=config.ESTIMATE_FEE_CONF_TARGET, regular_dust_size=config.DEFAULT_REGULAR_DUST_SIZE, @@ -336,35 +189,15 @@ def construct( p2sh_source_multisig_pubkeys_required=None, p2sh_pretx_txid=None, ): - exact_fee = fee - ps2h_dust_return_pubkey = config.P2SH_DUST_RETURN_PUBKEY - - (source, destination_outputs, data) = tx_info + # Extract tx_info + (source, destinations, data) = tx_info + # Collect pubkeys provided_pubkeys = collect_public_keys(pubkeys) - if dust_return_pubkey: - dust_return_pubkey = binascii.unhexlify(dust_return_pubkey) - - if p2sh_source_multisig_pubkeys: - p2sh_source_multisig_pubkeys = [binascii.unhexlify(p) for p in p2sh_source_multisig_pubkeys] - - # Source. - # If public key is necessary for construction of (unsigned) - # transaction, use the public key provided, or find it from the - # blockchain. + # Sanity checks. if source: script.validate(source) - - source_is_p2sh = script.is_p2sh(source) - - # Normalize source - if script.is_multisig(source): - source_address = multisig_pubkeyhashes_to_pubkeys(source, provided_pubkeys) - else: - source_address = source - - # Sanity checks. if exact_fee and not isinstance(exact_fee, int): raise exceptions.TransactionError("Exact fees must be in satoshis.") if not isinstance(fee_provided, int): @@ -373,57 +206,41 @@ def construct( """Determine encoding method""" encoding = determine_encoding(data, encoding, op_return_max_size) - if encoding: - logger.debug(f"TX Construct - Constructing `{encoding.upper()}` transaction from {source}.") - else: - logger.debug(f"TX Construct - Constructing transaction from {source}.") - """Destinations""" + """Outputs""" - destination_outputs = compute_destinations_and_values( - destination_outputs, encoding, multisig_dust_size, regular_dust_size, provided_pubkeys - ) - destination_btc_out = sum([value for address, value in destination_outputs]) - - """Data""" - - data_value, data_array, dust_return_pubkey = prepare_data_output( + ( + destination_outputs, + destination_btc_out, + data_array, + data_btc_out, + data_output, + dust_return_pubkey, + ) = transaction_outputs.prepare_outputs( data, source, - source_is_p2sh, - ps2h_dust_return_pubkey, + destinations, + provided_pubkeys, encoding, multisig_dust_size, regular_dust_size, - provided_pubkeys, dust_return_pubkey, op_return_value, - ) - - if encoding == "p2sh": - _size_for_fee, _datatx_necessary_fee, data_value, data_btc_out = ( - p2sh_encoding.calculate_outputs(destination_outputs, data_array, fee_per_kb, exact_fee) - ) - # replace the data value - data_output = (data_array, data_value) - else: - data_output = (data_array, data_value) if len(data_array) > 0 else None - data_btc_out = data_value * len(data_array) - - logger.trace( - f"TX Construct - data_btc_out={data_btc_out} (data_value={data_value} len(data_array)={len(data_array)})" + exact_fee, + fee_per_kb, ) """Inputs""" - inputs, change_quantity, btc_in, final_fee = transaction_inputs.prepare_inputs( - encoding, + (inputs, change_output, btc_in, final_fee) = transaction_inputs.prepare_inputs( + source, data, destination_outputs, - data_array, destination_btc_out, + data_array, data_btc_out, - source, + provided_pubkeys, + encoding, p2sh_pretx_txid, allow_unconfirmed_inputs, unspent_tx_hash, @@ -440,41 +257,21 @@ def construct( """Finish""" - if change_quantity: - change_output = (source_address, change_quantity) - else: - change_output = None - - unsigned_pretx_hex = None - unsigned_tx_hex = None - - pretx_txid = None - if encoding == "p2sh": - pretx_txid, unsigned_pretx_hex, unsigned_tx_hex = p2sh_encoding.serialize_p2sh( - inputs, - source, - source_address, - destination_outputs, - data_output, - change_output, - dust_return_pubkey, - p2sh_source_multisig_pubkeys, - p2sh_source_multisig_pubkeys_required, - p2sh_pretx_txid, - segwit, - exclude_utxos, - ) - else: - # Serialise inputs and outputs. - unsigned_tx = serializer.serialise( - encoding, - inputs, - destination_outputs, - data_output, - change_output, - dust_return_pubkey=dust_return_pubkey, - ) - unsigned_tx_hex = binascii.hexlify(unsigned_tx).decode("utf-8") + (unsigned_pretx_hex, unsigned_tx_hex, pretx_txid) = serialize_transaction( + inputs, + source, + provided_pubkeys, + destination_outputs, + data_output, + change_output, + encoding, + dust_return_pubkey, + p2sh_source_multisig_pubkeys, + p2sh_source_multisig_pubkeys_required, + p2sh_pretx_txid, + segwit, + exclude_utxos, + ) """Sanity Check""" @@ -486,7 +283,7 @@ def construct( return { "btc_in": btc_in, "btc_out": destination_btc_out + data_btc_out, - "btc_change": change_quantity, + "btc_change": change_output[1] if change_output else None, "btc_fee": final_fee, "unsigned_tx_hex": unsigned_tx_hex, "unsigned_pretx_hex": unsigned_pretx_hex, @@ -494,12 +291,6 @@ def construct( } -def chunks(l, n): # noqa: E741 - """Yield successive n‐sized chunks from l.""" - for i in range(0, len(l), n): - yield l[i : i + n] - - def get_default_args(func): signature = inspect.signature(func) return { diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/serializer.py b/counterparty-core/counterpartycore/lib/transaction_helper/common_serializer.py similarity index 100% rename from counterparty-core/counterpartycore/lib/transaction_helper/serializer.py rename to counterparty-core/counterpartycore/lib/transaction_helper/common_serializer.py diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/p2sh_encoding.py b/counterparty-core/counterpartycore/lib/transaction_helper/p2sh_serializer.py similarity index 97% rename from counterparty-core/counterpartycore/lib/transaction_helper/p2sh_encoding.py rename to counterparty-core/counterpartycore/lib/transaction_helper/p2sh_serializer.py index 6ca9ddcbad..26b0677b7a 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/p2sh_encoding.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/p2sh_serializer.py @@ -12,7 +12,8 @@ from bitcoin.core.script import CScript from counterpartycore.lib import arc4, backend, config, exceptions, script -from counterpartycore.lib.transaction_helper.serializer import ( +from counterpartycore.lib.transaction_helper import transaction_outputs +from counterpartycore.lib.transaction_helper.common_serializer import ( OP_RETURN, get_script, op_push, @@ -414,7 +415,7 @@ def serialise_p2sh_pretx( def serialize_p2sh( inputs, source, - source_address, + provided_pubkeys, destination_outputs, data_output, change_output, @@ -429,6 +430,17 @@ def serialize_p2sh( unsigned_pretx_hex = None unsigned_tx_hex = None + # Normalize source + if script.is_multisig(source): + source_address = transaction_outputs.multisig_pubkeyhashes_to_pubkeys( + source, provided_pubkeys + ) + else: + source_address = source + + if p2sh_source_multisig_pubkeys: + p2sh_source_multisig_pubkeys = [binascii.unhexlify(p) for p in p2sh_source_multisig_pubkeys] + assert not (segwit and p2sh_pretx_txid) # shouldn't do old style with segwit enabled if p2sh_pretx_txid: diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py index 7c273bd148..3d827afbe0 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py @@ -8,7 +8,7 @@ import cachetools from counterpartycore.lib import backend, config, exceptions, script, util -from counterpartycore.lib.transaction_helper import p2sh_encoding +from counterpartycore.lib.transaction_helper import p2sh_serializer, transaction_outputs logger = logging.getLogger(config.LOGGER_NAME) D = decimal.Decimal @@ -349,13 +349,14 @@ def construct_coin_selection( def prepare_inputs( - encoding, + source, data, destination_outputs, - data_array, destination_btc_out, + data_array, data_btc_out, - source, + provided_pubkeys, + encoding, p2sh_pretx_txid, allow_unconfirmed_inputs, unspent_tx_hash, @@ -386,7 +387,9 @@ def prepare_inputs( if encoding == "p2sh": # calculate all the p2sh outputs size_for_fee, datatx_necessary_fee, data_value, data_btc_out = ( - p2sh_encoding.calculate_outputs(destination_outputs, data_array, fee_per_kb, exact_fee) + p2sh_serializer.calculate_outputs( + destination_outputs, data_array, fee_per_kb, exact_fee + ) ) # replace the data value # data_output = (data_array, data_value) @@ -420,4 +423,17 @@ def prepare_inputs( # when encoding is P2SH and the pretx txid is passed we can skip coinselection inputs, change_quantity = None, None - return inputs, change_quantity, btc_in, final_fee + # Normalize source + if script.is_multisig(source): + source_address = transaction_outputs.multisig_pubkeyhashes_to_pubkeys( + source, provided_pubkeys + ) + else: + source_address = source + + if change_quantity: + change_output = (source_address, change_quantity) + else: + change_output = None + + return inputs, change_output, btc_in, final_fee diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_outputs.py b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_outputs.py new file mode 100644 index 0000000000..c3301fb2d1 --- /dev/null +++ b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_outputs.py @@ -0,0 +1,263 @@ +import binascii +import logging + +from counterpartycore.lib import ( + backend, + config, + exceptions, + script, + util, +) +from counterpartycore.lib.transaction_helper import p2sh_serializer + +logger = logging.getLogger(config.LOGGER_NAME) + + +def chunks(l, n): # noqa: E741 + """Yield successive n‐sized chunks from l.""" + for i in range(0, len(l), n): + yield l[i : i + n] + + +def pubkeyhash_to_pubkey(pubkeyhash, provided_pubkeys=None): + # Search provided pubkeys. + if provided_pubkeys: + if type(provided_pubkeys) != list: # noqa: E721 + provided_pubkeys = [provided_pubkeys] + for pubkey in provided_pubkeys: + if pubkeyhash == script.pubkey_to_pubkeyhash(util.unhexlify(pubkey)): + return pubkey + elif pubkeyhash == script.pubkey_to_p2whash(util.unhexlify(pubkey)): + return pubkey + + # Search blockchain. + raw_transactions = backend.addrindexrs.search_raw_transactions(pubkeyhash, unconfirmed=True) + for tx_id in raw_transactions: + tx = raw_transactions[tx_id] + for vin in tx["vin"]: + if "txinwitness" in vin: + if len(vin["txinwitness"]) >= 2: + # catch unhexlify errs for when txinwitness[1] isn't a witness program (eg; for P2W) + try: + pubkey = vin["txinwitness"][1] + if pubkeyhash == script.pubkey_to_p2whash(util.unhexlify(pubkey)): + return pubkey + except binascii.Error: + pass + elif "coinbase" not in vin: + scriptsig = vin["scriptSig"] + asm = scriptsig["asm"].split(" ") + if len(asm) >= 2: + # catch unhexlify errs for when asm[1] isn't a pubkey (eg; for P2SH) + try: + pubkey = asm[1] + if pubkeyhash == script.pubkey_to_pubkeyhash(util.unhexlify(pubkey)): + return pubkey + except binascii.Error: + pass + + raise exceptions.UnknownPubKeyError( + "Public key was neither provided nor published in blockchain." + ) + + +def multisig_pubkeyhashes_to_pubkeys(address, provided_pubkeys=None): + signatures_required, pubkeyhashes, signatures_possible = script.extract_array(address) + pubkeys = [pubkeyhash_to_pubkey(pubkeyhash, provided_pubkeys) for pubkeyhash in pubkeyhashes] + return script.construct_array(signatures_required, pubkeys, signatures_possible) + + +def get_dust_return_pubkey(source, provided_pubkeys): + """Return the pubkey to which dust from data outputs will be sent. + + This pubkey is used in multi-sig data outputs (as the only real pubkey) to + make those the outputs spendable. It is derived from the source address, so + that the dust is spendable by the creator of the transaction. + """ + # Get hex dust return pubkey. + # inject `script` + if script.is_multisig(source): + a, self_pubkeys, b = script.extract_array( + multisig_pubkeyhashes_to_pubkeys(source, provided_pubkeys) + ) + dust_return_pubkey_hex = self_pubkeys[0] + else: + dust_return_pubkey_hex = pubkeyhash_to_pubkey(source, provided_pubkeys) + + # Convert hex public key into the (binary) dust return pubkey. + try: + dust_return_pubkey = binascii.unhexlify(dust_return_pubkey_hex) + except binascii.Error: + raise script.InputError("Invalid private key.") # noqa: B904 + + return dust_return_pubkey + + +def compute_destinations_and_values( + destination_outputs, encoding, multisig_dust_size, regular_dust_size, provided_pubkeys +): + # Destination outputs. + # Replace multi‐sig addresses with multi‐sig pubkeys. Check that the + # destination output isn’t a dust output. Set null values to dust size. + destination_outputs_new = [] + if encoding != "p2sh": + for address, value in destination_outputs: + # Value. + if script.is_multisig(address): + dust_size = multisig_dust_size + else: + dust_size = regular_dust_size + if value == None: # noqa: E711 + value = dust_size # noqa: PLW2901 + elif value < dust_size: + raise exceptions.TransactionError("Destination output is dust.") + # Address. + script.validate(address) + if script.is_multisig(address): + destination_outputs_new.append( + ( + multisig_pubkeyhashes_to_pubkeys(address, provided_pubkeys), + value, + ) + ) + else: + destination_outputs_new.append((address, value)) + return destination_outputs_new + + +def prepare_data_output( + data, + source, + destination_outputs, + provided_pubkeys, + encoding, + multisig_dust_size, + regular_dust_size, + dust_return_pubkey, + op_return_value, + exact_fee, + fee_per_kb, +): + source_is_p2sh = script.is_p2sh(source) + + if dust_return_pubkey: + dust_return_pubkey = binascii.unhexlify(dust_return_pubkey) + + ps2h_dust_return_pubkey = config.P2SH_DUST_RETURN_PUBKEY + + data_value = 0 + data_array = [] + if data: + # @TODO: p2sh encoding require signable dust key + if encoding == "multisig": + # dust_return_pubkey should be set or explicitly set to False to use the default configured for the node + # the default for the node is optional so could fail + if (source_is_p2sh and dust_return_pubkey is None) or ( + dust_return_pubkey is False and ps2h_dust_return_pubkey is None + ): + raise exceptions.TransactionError( + "Can't use multisig encoding when source is P2SH and no dust_return_pubkey is provided." + ) + elif dust_return_pubkey is False: + dust_return_pubkey = binascii.unhexlify(ps2h_dust_return_pubkey) + + if not dust_return_pubkey: + if encoding == "multisig" or encoding == "p2sh" and not source_is_p2sh: + dust_return_pubkey = get_dust_return_pubkey(source, provided_pubkeys) + else: + dust_return_pubkey = None + + # Divide data into chunks. + if encoding == "pubkeyhash": + # Prefix is also a suffix here. + chunk_size = 20 - 1 - 8 + elif encoding == "multisig": + # Two pubkeys, minus length byte, minus prefix, minus two nonces, + # minus two sign bytes. + chunk_size = (33 * 2) - 1 - len(config.PREFIX) - 2 - 2 + elif encoding == "p2sh": + pubkeylength = -1 + if dust_return_pubkey is not None: + pubkeylength = len(dust_return_pubkey) + + chunk_size = p2sh_serializer.maximum_data_chunk_size(pubkeylength) + elif encoding == "opreturn": + chunk_size = config.OP_RETURN_MAX_SIZE + if len(data) + len(config.PREFIX) > chunk_size: + raise exceptions.TransactionError("One `OP_RETURN` output per transaction.") + data_array = list(chunks(data, chunk_size)) + + # Data outputs. + if encoding == "multisig": + data_value = multisig_dust_size + elif encoding == "p2sh": + data_value = 0 # this will be calculated later + elif encoding == "opreturn": + data_value = op_return_value + else: + # Pay‐to‐PubKeyHash, e.g. + data_value = regular_dust_size + else: + dust_return_pubkey = None + + if encoding == "p2sh": + _size_for_fee, _datatx_necessary_fee, data_value, data_btc_out = ( + p2sh_serializer.calculate_outputs( + destination_outputs, data_array, fee_per_kb, exact_fee + ) + ) + else: + data_btc_out = data_value * len(data_array) + + logger.trace( + f"TX Construct - data_btc_out={data_btc_out} (data_value={data_value} len(data_array)={len(data_array)})" + ) + + return data_value, data_array, data_btc_out, dust_return_pubkey + + +def prepare_outputs( + data, + source, + destinations, + provided_pubkeys, + encoding, + multisig_dust_size, + regular_dust_size, + dust_return_pubkey, + op_return_value, + exact_fee, + fee_per_kb, +): + """Destinations""" + + destination_outputs = compute_destinations_and_values( + destinations, encoding, multisig_dust_size, regular_dust_size, provided_pubkeys + ) + destination_btc_out = sum([value for address, value in destination_outputs]) + + """Data""" + + data_value, data_array, data_btc_out, dust_return_pubkey = prepare_data_output( + data, + source, + destination_outputs, + provided_pubkeys, + encoding, + multisig_dust_size, + regular_dust_size, + dust_return_pubkey, + op_return_value, + exact_fee, + fee_per_kb, + ) + data_output = (data_array, data_value) if len(data_array) > 0 else None + + return ( + destination_outputs, + destination_btc_out, + data_array, + data_btc_out, + data_output, + dust_return_pubkey, + ) diff --git a/counterparty-core/counterpartycore/test/conftest.py b/counterparty-core/counterpartycore/test/conftest.py index cfd3637626..0a853bdcdd 100644 --- a/counterparty-core/counterpartycore/test/conftest.py +++ b/counterparty-core/counterpartycore/test/conftest.py @@ -622,10 +622,11 @@ def get_transaction_fee(db, transaction_type, block_index): mocked_search_raw_transactions, ) monkeypatch.setattr( - "counterpartycore.lib.transaction.pubkeyhash_to_pubkey", pubkeyhash_to_pubkey + "counterpartycore.lib.transaction_helper.transaction_outputs.pubkeyhash_to_pubkey", + pubkeyhash_to_pubkey, ) monkeypatch.setattr( - "counterpartycore.lib.transaction.multisig_pubkeyhashes_to_pubkeys", + "counterpartycore.lib.transaction_helper.transaction_outputs.multisig_pubkeyhashes_to_pubkeys", multisig_pubkeyhashes_to_pubkeys, ) monkeypatch.setattr("counterpartycore.lib.database.check_wal_file", check_wal_file) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index f89d98426d..ebd652d75d 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -9997,7 +9997,7 @@ "required": false }, { - "name": "fee", + "name": "exact_fee", "type": "int", "default": null, "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", @@ -10187,7 +10187,7 @@ "required": false }, { - "name": "fee", + "name": "exact_fee", "type": "int", "default": null, "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", @@ -10359,7 +10359,7 @@ "required": false }, { - "name": "fee", + "name": "exact_fee", "type": "int", "default": null, "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", @@ -10538,7 +10538,7 @@ "required": false }, { - "name": "fee", + "name": "exact_fee", "type": "int", "default": null, "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", @@ -10710,7 +10710,7 @@ "required": false }, { - "name": "fee", + "name": "exact_fee", "type": "int", "default": null, "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", @@ -10894,7 +10894,7 @@ "required": false }, { - "name": "fee", + "name": "exact_fee", "type": "int", "default": null, "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", @@ -11104,7 +11104,7 @@ "required": false }, { - "name": "fee", + "name": "exact_fee", "type": "int", "default": null, "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", @@ -11288,7 +11288,7 @@ "required": false }, { - "name": "fee", + "name": "exact_fee", "type": "int", "default": null, "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", @@ -11501,7 +11501,7 @@ "required": false }, { - "name": "fee", + "name": "exact_fee", "type": "int", "default": null, "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", @@ -11699,7 +11699,7 @@ "required": false }, { - "name": "fee", + "name": "exact_fee", "type": "int", "default": null, "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", @@ -11901,7 +11901,7 @@ "required": false }, { - "name": "fee", + "name": "exact_fee", "type": "int", "default": null, "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", @@ -12106,7 +12106,7 @@ "required": false }, { - "name": "fee", + "name": "exact_fee", "type": "int", "default": null, "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", @@ -12290,7 +12290,7 @@ "required": false }, { - "name": "fee", + "name": "exact_fee", "type": "int", "default": null, "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", @@ -12468,7 +12468,7 @@ "required": false }, { - "name": "fee", + "name": "exact_fee", "type": "int", "default": null, "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", @@ -12752,7 +12752,7 @@ "required": false }, { - "name": "fee", + "name": "exact_fee", "type": "int", "default": null, "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", @@ -12931,7 +12931,7 @@ "required": false }, { - "name": "fee", + "name": "exact_fee", "type": "int", "default": null, "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", @@ -13116,7 +13116,7 @@ "required": false }, { - "name": "fee", + "name": "exact_fee", "type": "int", "default": null, "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", @@ -13300,7 +13300,7 @@ "required": false }, { - "name": "fee", + "name": "exact_fee", "type": "int", "default": null, "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose", diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/transaction.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/transaction.py index 65787adb2e..81ff4439c0 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/transaction.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/transaction.py @@ -7,7 +7,7 @@ ) TRANSACTION_VECTOR = { - "transaction": { + "transaction_helper.transaction_outputs": { "get_dust_return_pubkey": [ {"in": (ADDR[1], None), "out": None}, { @@ -15,6 +15,8 @@ "out": b"\x03\x19\xf6\xe0{\x0b\x8duaV9K\x9d\xcf;\x01\x1f\xe9\xac\x19\xf2p\x0b\xd6\xb6\x9aj\x17\x83\xdb\xb8\xb9w", }, ], + }, + "transaction": { "construct": [ { "in": ( @@ -23,7 +25,7 @@ [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)], None, ), - {"encoding": "multisig", "fee": 1.0}, + {"encoding": "multisig", "exact_fee": 1.0}, ), "error": (exceptions.TransactionError, "Exact fees must be in satoshis."), }, @@ -422,7 +424,7 @@ ], b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", ), - {"encoding": "multisig", "fee": 1}, + {"encoding": "multisig", "exact_fee": 1}, ), "out": { "data": b"TESTXXXX\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00", 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 9724a4681e..6fbcc8fecf 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,49 +1,35 @@ Creating connection to `:memory:`... Initializing database... -TX Construct - Constructing transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 burned 62000000 BTC for 93000000000 XCP (9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30) [valid] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Send XCP from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 to 1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c) [valid] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Order opened for 50000000 BTC at 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367) [open] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Order opened for 105000000 XCP at 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f) [open] Order match for 50000000 BTC against 100000000 XCP (332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f) [pending] Order match has only -10 confirmation(s). -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. BTC Pay for order match 332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f (ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8) [valid] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Issuance of 1000000000 BBBB by 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 [cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25] (valid) -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Issuance of 100000 BBBC by 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 [ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9] (valid) -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Send BBBB from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 to 1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c) [valid] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Send BBBC from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 to 1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394) [valid] Total quantity to be distributed in dividends: 0.00000024 XCP -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Dividend of 600 XCP per unit of BBBB (7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8) [valid] Total quantity to be distributed in dividends: 0.004208 XCP -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Dividend of 800 XCP per unit of BBBC (c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7) [valid] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Broadcast from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d) [valid] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Open Bet (74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f) [open] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Order cancelled BTC / XCP (332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367) [expired] Open Bet (6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167) [open] @@ -55,11 +41,9 @@ Backward Quantity: 20750000 Bet 74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f updated (6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167) [open] Bet 6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167 updated (6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167) [filled] Bet match 13 for 41500000 XCP against 20750000 XCP on 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Order cancelled XCP / BTC (f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f) [expired] Open Bet (2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3) [open] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Open Bet (65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e) [open] Considering: 74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f @@ -72,10 +56,8 @@ Backward Quantity: 350000000 Bet 2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3 updated (65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e) [filled] Bet 65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e updated (65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e) [filled] Bet match 15 for 150000000 XCP against 350000000 XCP on 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Open Bet (94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4) [open] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Open Bet (a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e) [open] Considering: 94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4 @@ -86,28 +68,22 @@ Backward Quantity: 650000000 Bet 94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4 updated (a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e) [filled] Bet a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e updated (a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e) [filled] Bet match 17 for 750000000 XCP against 650000000 XCP on 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Broadcast from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4) [valid] Bet Match 74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f_6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167 resolved Bet Match 74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f_6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167 updated [settled: liquidated for bear] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Broadcast from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600) [valid] Bet Match 2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3_65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e resolved Bet Match 2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3_65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e updated [settled] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Broadcast from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e) [valid] Bet Match 94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4_a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e resolved Bet Match 94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4_a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e updated [settled: for notequal] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Order opened for 50000000 BBBB at 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee) [open] -TX Construct - Constructing transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 burned 38000000 BTC for 56999887262 XCP (c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda) [valid] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Bet 74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f canceled [expired] Bet Expiration 74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f 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 28cd8db500..5984ce9bdd 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,49 +1,35 @@ Creating connection to `:memory:`... Initializing database... -TX Construct - Constructing transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 burned 62000000 BTC for 93000000000 XCP (63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2) [valid] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Send XCP from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 to 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3 (5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4) [valid] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Order opened for 50000000 BTC at 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6) [open] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Order opened for 105000000 XCP at 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52) [open] Order match for 50000000 BTC against 100000000 XCP (04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52) [pending] Order match has only -10 confirmation(s). -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. BTC Pay for order match 04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52 (90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613) [valid] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Issuance of 1000000000 BBBB by 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 [1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7] (valid) -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Issuance of 100000 BBBC by 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 [3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846] (valid) -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Send BBBB from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 to 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3 (30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65) [valid] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Send BBBC from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 to 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3 (7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849) [valid] Total quantity to be distributed in dividends: 0.00000024 XCP -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Dividend of 600 XCP per unit of BBBB (f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f) [valid] Total quantity to be distributed in dividends: 0.004208 XCP -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Dividend of 800 XCP per unit of BBBC (15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59) [valid] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Broadcast from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a) [valid] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Open Bet (1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887) [open] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Order cancelled BTC / XCP (04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6) [expired] Open Bet (a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33) [open] @@ -55,11 +41,9 @@ Backward Quantity: 20750000 Bet 1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887 updated (a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33) [open] Bet a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33 updated (a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33) [filled] Bet match 13 for 41500000 XCP against 20750000 XCP on 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Order cancelled XCP / BTC (98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52) [expired] Open Bet (040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b) [open] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Open Bet (62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2) [open] Considering: 1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887 @@ -72,10 +56,8 @@ Backward Quantity: 350000000 Bet 040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b updated (62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2) [filled] Bet 62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2 updated (62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2) [filled] Bet match 15 for 150000000 XCP against 350000000 XCP on 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Open Bet (578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f) [open] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Open Bet (479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183) [open] Considering: 578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f @@ -86,28 +68,22 @@ Backward Quantity: 650000000 Bet 578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f updated (479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183) [filled] Bet 479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183 updated (479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183) [filled] Bet match 17 for 750000000 XCP against 650000000 XCP on 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Broadcast from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485) [valid] Bet Match 1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887_a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33 resolved Bet Match 1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887_a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33 updated [settled: liquidated for bear] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Broadcast from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37) [valid] Bet Match 040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b_62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2 resolved Bet Match 040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b_62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2 updated [settled] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Broadcast from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e) [valid] Bet Match 578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f_479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183 resolved Bet Match 578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f_479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183 updated [settled: for notequal] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Order opened for 50000000 BBBB at 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee) [open] -TX Construct - Constructing transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 burned 38000000 BTC for 56999887262 XCP (ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa) [valid] -TX Construct - Constructing `MULTISIG` transaction from 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Bet 1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887 canceled [expired] Bet Expiration 1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887 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 68bafcd5a9..b52a2e2bb1 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,49 +1,35 @@ Creating connection to `:memory:`... Initializing database... -TX Construct - Constructing transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 burned 62000000 BTC for 93000000000 XCP (5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb) [valid] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Send XCP from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 to 2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3) [valid] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Order opened for 50000000 BTC at 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0) [open] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Order opened for 105000000 XCP at 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee) [open] Order match for 50000000 BTC against 100000000 XCP (025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee) [pending] Order match has only -10 confirmation(s). -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. BTC Pay for order match 025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee (b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2) [valid] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Issuance of 1000000000 BBBB by 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 [93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2] (valid) -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Issuance of 100000 BBBC by 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 [3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404] (valid) -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Send BBBB from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 to 2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe) [valid] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Send BBBC from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 to 2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9) [valid] Total quantity to be distributed in dividends: 0.00000024 XCP -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Dividend of 600 XCP per unit of BBBB (cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81) [valid] Total quantity to be distributed in dividends: 0.004208 XCP -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Dividend of 800 XCP per unit of BBBC (c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97) [valid] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Broadcast from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61) [valid] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Open Bet (c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8) [open] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Order cancelled BTC / XCP (025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0) [expired] Open Bet (23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1) [open] @@ -55,11 +41,9 @@ Backward Quantity: 20750000 Bet c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8 updated (23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1) [open] Bet 23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1 updated (23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1) [filled] Bet match 13 for 41500000 XCP against 20750000 XCP on 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Order cancelled XCP / BTC (c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee) [expired] Open Bet (a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd) [open] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Open Bet (6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75) [open] Considering: c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8 @@ -72,10 +56,8 @@ Backward Quantity: 350000000 Bet a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd updated (6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75) [filled] Bet 6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75 updated (6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75) [filled] Bet match 15 for 150000000 XCP against 350000000 XCP on 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Open Bet (91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1) [open] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Open Bet (c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a) [open] Considering: 91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1 @@ -86,28 +68,22 @@ Backward Quantity: 650000000 Bet 91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1 updated (c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a) [filled] Bet c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a updated (c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a) [filled] Bet match 17 for 750000000 XCP against 650000000 XCP on 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Broadcast from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4) [valid] Bet Match c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8_23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1 resolved Bet Match c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8_23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1 updated [settled: liquidated for bear] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Broadcast from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0) [valid] Bet Match a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd_6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75 resolved Bet Match a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd_6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75 updated [settled] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Broadcast from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e) [valid] Bet Match 91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1_c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a resolved Bet Match 91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1_c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a updated [settled: for notequal] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Order opened for 50000000 BBBB at 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e) [open] -TX Construct - Constructing transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 burned 38000000 BTC for 56999887262 XCP (df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1) [valid] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2. TX Construct - Transaction constructed. Bet c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8 canceled [expired] Bet Expiration c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8 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 083b7e4e63..e0994ae835 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,49 +1,35 @@ Creating connection to `:memory:`... Initializing database... -TX Construct - Constructing transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 burned 62000000 BTC for 93000000000 XCP (15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399) [valid] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Send XCP from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 to 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3 (121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f) [valid] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Order opened for 50000000 BTC at 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375) [open] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Order opened for 105000000 XCP at 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a) [open] Order match for 50000000 BTC against 100000000 XCP (c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a) [pending] Order match has only -10 confirmation(s). -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. BTC Pay for order match c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a (f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6) [valid] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Issuance of 1000000000 BBBB by 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 [9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9] (valid) -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Issuance of 100000 BBBC by 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 [19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8] (valid) -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Send BBBB from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 to 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3 (b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0) [valid] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Send BBBC from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 to 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3 (592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11) [valid] Total quantity to be distributed in dividends: 0.00000024 XCP -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Dividend of 600 XCP per unit of BBBB (f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a) [valid] Total quantity to be distributed in dividends: 0.004208 XCP -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Dividend of 800 XCP per unit of BBBC (a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8) [valid] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Broadcast from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084) [valid] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Open Bet (ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c) [open] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Order cancelled BTC / XCP (c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375) [expired] Open Bet (ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943) [open] @@ -55,11 +41,9 @@ Backward Quantity: 20750000 Bet ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c updated (ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943) [open] Bet ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943 updated (ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943) [filled] Bet match 13 for 41500000 XCP against 20750000 XCP on 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Order cancelled XCP / BTC (89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a) [expired] Open Bet (6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d) [open] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Open Bet (10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd) [open] Considering: ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c @@ -72,10 +56,8 @@ Backward Quantity: 350000000 Bet 6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d updated (10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd) [filled] Bet 10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd updated (10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd) [filled] Bet match 15 for 150000000 XCP against 350000000 XCP on 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Open Bet (caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc) [open] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Open Bet (67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c) [open] Considering: caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc @@ -86,28 +68,22 @@ Backward Quantity: 650000000 Bet caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc updated (67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c) [filled] Bet 67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c updated (67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c) [filled] Bet match 17 for 750000000 XCP against 650000000 XCP on 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Broadcast from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd) [valid] Bet Match ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c_ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943 resolved Bet Match ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c_ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943 updated [settled: liquidated for bear] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Broadcast from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df) [valid] Bet Match 6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d_10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd resolved Bet Match 6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d_10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd updated [settled] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Broadcast from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73) [valid] Bet Match caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc_67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c resolved Bet Match caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc_67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c updated [settled: for notequal] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Order opened for 50000000 BBBB at 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7) [open] -TX Construct - Constructing transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 burned 38000000 BTC for 56999887262 XCP (181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01) [valid] -TX Construct - Constructing `MULTISIG` transaction from 2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Bet ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c canceled [expired] Bet Expiration ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c 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 8dd5c15504..614057c588 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,49 +1,35 @@ Creating connection to `:memory:`... Initializing database... -TX Construct - Constructing transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 burned 62000000 BTC for 93000000000 XCP (c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5) [valid] -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Send XCP from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 to 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3 (8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32) [valid] -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Order opened for 50000000 BTC at 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093) [open] -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Order opened for 105000000 XCP at 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e) [open] Order match for 50000000 BTC against 100000000 XCP (1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e) [pending] Order match has only -10 confirmation(s). -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. BTC Pay for order match 1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e (06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac) [valid] -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Issuance of 1000000000 BBBB by 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 [57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406] (valid) -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Issuance of 100000 BBBC by 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 [6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975] (valid) -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Send BBBB from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 to 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3 (8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b) [valid] -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Send BBBC from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 to 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3 (3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391) [valid] Total quantity to be distributed in dividends: 0.00000024 XCP -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Dividend of 600 XCP per unit of BBBB (6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29) [valid] Total quantity to be distributed in dividends: 0.004208 XCP -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Dividend of 800 XCP per unit of BBBC (8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e) [valid] -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Broadcast from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060) [valid] -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Open Bet (5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16) [open] -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Order cancelled BTC / XCP (1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093) [expired] Open Bet (813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3) [open] @@ -55,11 +41,9 @@ Backward Quantity: 20750000 Bet 5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16 updated (813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3) [open] Bet 813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3 updated (813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3) [filled] Bet match 13 for 41500000 XCP against 20750000 XCP on 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Order cancelled XCP / BTC (a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e) [expired] Open Bet (33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41) [open] -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Open Bet (22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f) [open] Considering: 5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16 @@ -72,10 +56,8 @@ Backward Quantity: 350000000 Bet 33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41 updated (22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f) [filled] Bet 22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f updated (22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f) [filled] Bet match 15 for 150000000 XCP against 350000000 XCP on 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Open Bet (5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede) [open] -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Open Bet (07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a) [open] Considering: 5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede @@ -86,28 +68,22 @@ Backward Quantity: 650000000 Bet 5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede updated (07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a) [filled] Bet 07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a updated (07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a) [filled] Bet match 17 for 750000000 XCP against 650000000 XCP on 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Broadcast from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66) [valid] Bet Match 5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16_813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3 resolved Bet Match 5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16_813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3 updated [settled: liquidated for bear] -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Broadcast from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17) [valid] Bet Match 33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41_22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f resolved Bet Match 33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41_22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f updated [settled] -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Broadcast from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402) [valid] Bet Match 5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede_07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a resolved Bet Match 5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede_07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a updated [settled: for notequal] -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Order opened for 50000000 BBBB at 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 (19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323) [open] -TX Construct - Constructing transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3 burned 38000000 BTC for 56999887262 XCP (3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22) [valid] -TX Construct - Constructing `MULTISIG` transaction from 3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3. TX Construct - Transaction constructed. Bet 5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16 canceled [expired] Bet Expiration 5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16 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 4a38a98ae5..0749fc2e6a 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log @@ -1,67 +1,46 @@ Creating connection to `:memory:`... Initializing database... -TX Construct - Constructing transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc burned 62000000 BTC for 93000000000 XCP (6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Issuance of 100000000000 DIVISIBLE by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1] (valid) -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Issuance of 1000 NODIVISIBLE by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584] (valid) -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Issuance of 1000 CALLABLE by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140] (valid) -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Issuance of 1000 LOCKED by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da] (valid) -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Issuance of 0 LOCKED by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc] (valid) -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Order opened for 100000000 XCP at mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8) [open] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Send DIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns (6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Send XCP from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns (4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. BUMP TXID 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8 Order opened for 100000000 XCP at mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b) [open] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Order opened for 100000000 XCP at mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a) [open] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Order opened for 666667 BTC at mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6) [open] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Send XCP from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Send DIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Send NODIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns (1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Send NODIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Issuance of 9223372036854775807 MAXI by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39] (valid) -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Broadcast from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af) [valid] -TX Construct - Constructing `MULTISIG` transaction from mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH. TX Construct - Transaction constructed. Broadcast from mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH (f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Open Bet (2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1) [open] -TX Construct - Constructing `MULTISIG` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. TX Construct - Transaction constructed. Open Bet (5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93) [open] Considering: 2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1 @@ -72,136 +51,93 @@ Backward Quantity: 9 Bet 2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1 updated (5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93) [filled] Bet 5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93 updated (5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93) [filled] Bet match 20 for 9 XCP against 9 XCP on mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc -TX Construct - Constructing `MULTISIG` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. TX Construct - Transaction constructed. Open Bet (db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e) [open] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Broadcast from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae) [valid] Bet Match 2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93 resolved Bet Match 2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93 updated [settled] -TX Construct - Constructing transaction from myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM. TX Construct - Transaction constructed. myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM burned 62000000 BTC for 92999138821 XCP (65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b) [valid] -TX Construct - Constructing transaction from munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b. TX Construct - Transaction constructed. munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b burned 62000000 BTC for 92999130460 XCP (95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff) [valid] -TX Construct - Constructing transaction from mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42. TX Construct - Transaction constructed. mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42 burned 62000000 BTC for 92999122099 XCP (e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa) [valid] -TX Construct - Constructing transaction from mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK. TX Construct - Transaction constructed. mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK burned 10000 BTC for 14999857 XCP (bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3) [valid] -TX Construct - Constructing `OPRETURN` transaction from munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b. TX Construct - Transaction constructed. Dispenser opened for XCP at munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b (9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec) [valid] -TX Construct - Constructing transaction from 2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy. TX Construct - Transaction constructed. 2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy burned 31000000 BTC for 46499548508 XCP (93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73) [valid] -TX Construct - Constructing `MULTISIG` transaction from 2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy. TX Construct - Transaction constructed. Issuance of 1000 PAYTOSCRIPT by 2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy [e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e] (valid) -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Send DIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to 2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy (f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7) [valid] -TX Construct - Constructing `OPRETURN` transaction from 2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy. TX Construct - Transaction constructed. Broadcast from 2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy (510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186) [valid] -TX Construct - Constructing `OPRETURN` transaction from 2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy. TX Construct - Transaction constructed. Open Bet (d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048) [open] -TX Construct - Constructing `MULTISIG` transaction from mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42. TX Construct - Transaction constructed. Issuance of 1000 LOCKEDPREV by mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42 [34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63] (valid) -TX Construct - Constructing `MULTISIG` transaction from mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42. TX Construct - Transaction constructed. Issuance of 0 LOCKEDPREV by mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42 [025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2] (valid) -TX Construct - Constructing `MULTISIG` transaction from mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42. TX Construct - Transaction constructed. Issuance of 0 LOCKEDPREV by mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42 [4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb] (valid) -TX Construct - Constructing transaction from tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx. TX Construct - Transaction constructed. tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx burned 62000000 BTC for 92999030129 XCP (27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9) [valid] -TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Send (Enhanced) XCP from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns (b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5) [valid] -TX Construct - Constructing `OPRETURN` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. TX Construct - Transaction constructed. Send (Enhanced) XCP from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns to mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34) [valid] -TX Construct - Constructing `MULTISIG` transaction from myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM. TX Construct - Transaction constructed. Broadcast from myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM (3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14) [valid] -TX Construct - Constructing `MULTISIG` transaction from myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM. TX Construct - Transaction constructed. Open Bet (41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef) [open] -TX Construct - Constructing `MULTISIG` transaction from myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM. TX Construct - Transaction constructed. Broadcast from myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM (870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638) [valid] -TX Construct - Constructing `MULTISIG` transaction from myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM. TX Construct - Transaction constructed. Broadcast from myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM (685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1) [valid] -TX Construct - Constructing `MULTISIG` transaction from mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42. TX Construct - Transaction constructed. Broadcast from mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42 (7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Order opened for 100000000 XCP at mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498) [open] -TX Construct - Constructing `MULTISIG` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. TX Construct - Transaction constructed. Order opened for 800000 BTC at mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns (1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81) [open] Order match for 100000000 XCP against 800000 BTC (74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81) [pending] -TX Construct - Constructing transaction from mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH. TX Construct - Transaction constructed. mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH burned 62000000 BTC for 92995878046 XCP (c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a) [valid] -TX Construct - Constructing `MULTISIG` transaction from mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH. TX Construct - Transaction constructed. Issuance of 100 DIVIDEND by mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH [321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503] (valid) -TX Construct - Constructing `MULTISIG` transaction from mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH. TX Construct - Transaction constructed. Send DIVIDEND from mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH to mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj (02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e) [valid] -TX Construct - Constructing `MULTISIG` transaction from mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH. TX Construct - Transaction constructed. Send XCP from mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH to mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj (a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba) [valid] -TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Issuance of 100000000 PARENT by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f] (valid) -TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Issuance of 100000000 A95428956661682277 by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf] (valid) -TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Fair minter opened for FREEFAIRMIN by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. -TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Fair minter opened for PAIDFAIRMIN by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. -TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. 10 FREEFAIRMIN minted for 0 XCP by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc -TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Fair minter opened for RAIDFAIRMIN by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. -TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Fair minter opened for QAIDFAIRMIN by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. -TX Construct - Constructing `MULTISIG` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. TX Construct - Transaction constructed. Fair minter opened for A160361285792733729 by mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. -TX Construct - Constructing `OPRETURN` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. TX Construct - Transaction constructed. 10 A160361285792733729 minted for 100 XCP by mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns -TX Construct - Constructing `OPRETURN` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. TX Construct - Transaction constructed. 20 A160361285792733729 minted for 200 XCP by mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Attach XCP from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 (9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Attach DIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 (ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e) [valid] -TX Construct - Constructing `MULTISIG` transaction from munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b. TX Construct - Transaction constructed. Issuance of 1000 TESTDISP by munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b [01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1] (valid) -TX Construct - Constructing `OPRETURN` transaction from munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b. TX Construct - Transaction constructed. Dispenser opened for TESTDISP at munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b (af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e) [valid] Order match cancelled XCP / BTC (74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81) [expired] diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log index 3ef05839c7..3bb37ae2b8 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log @@ -1,49 +1,35 @@ Creating connection to `:memory:`... Initializing database... -TX Construct - Constructing transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc burned 62000000 BTC for 93000000000 XCP (6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Send XCP from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns (3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Order opened for 50000000 BTC at mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59) [open] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Order opened for 105000000 XCP at mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c) [open] Order match for 50000000 BTC against 100000000 XCP (6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c) [pending] Order match has only -10 confirmation(s). -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. BTC Pay for order match 6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c (843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Issuance of 1000000000 BBBB by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf] (valid) -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Issuance of 100000 BBBC by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59] (valid) -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Send BBBB from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns (5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Send BBBC from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns (843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412) [valid] Total quantity to be distributed in dividends: 0.00000024 XCP -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Dividend of 600 XCP per unit of BBBB (42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518) [valid] Total quantity to be distributed in dividends: 0.004208 XCP -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Dividend of 800 XCP per unit of BBBC (201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Broadcast from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Open Bet (7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81) [open] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Order cancelled BTC / XCP (6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59) [expired] Open Bet (e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42) [open] @@ -55,11 +41,9 @@ Backward Quantity: 20750000 Bet 7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81 updated (e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42) [open] Bet e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42 updated (e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42) [filled] Bet match 13 for 41500000 XCP against 20750000 XCP on mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Order cancelled XCP / BTC (36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c) [expired] Open Bet (3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a) [open] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Open Bet (a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8) [open] Considering: 7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81 @@ -72,10 +56,8 @@ Backward Quantity: 350000000 Bet 3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a updated (a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8) [filled] Bet a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8 updated (a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8) [filled] Bet match 15 for 150000000 XCP against 350000000 XCP on mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Open Bet (194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5) [open] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Open Bet (72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207) [open] Considering: 194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5 @@ -86,28 +68,22 @@ Backward Quantity: 650000000 Bet 194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5 updated (72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207) [filled] Bet 72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207 updated (72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207) [filled] Bet match 17 for 750000000 XCP against 650000000 XCP on mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Broadcast from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f) [valid] Bet Match 7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81_e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42 resolved Bet Match 7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81_e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42 updated [settled: liquidated for bear] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Broadcast from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e) [valid] Bet Match 3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a_a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8 resolved Bet Match 3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a_a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8 updated [settled] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Broadcast from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9) [valid] Bet Match 194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5_72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207 resolved Bet Match 194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5_72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207 updated [settled: for notequal] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Order opened for 50000000 BBBB at mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a) [open] -TX Construct - Constructing transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc burned 38000000 BTC for 56999887262 XCP (c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Bet 7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81 canceled [expired] Bet Expiration 7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81 diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log index 6075a82ad0..838429adc6 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log @@ -1,69 +1,48 @@ Creating connection to `:memory:`... Initializing database... -TX Construct - Constructing transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc burned 62000000 BTC for 93000000000 XCP (6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Issuance of 100000000000 DIVISIBLE by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1] (valid) -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Issuance of 1000 NODIVISIBLE by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584] (valid) -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Issuance of 1000 CALLABLE by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140] (valid) -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Issuance of 1000 LOCKED by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da] (valid) -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Issuance of 0 LOCKED by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc] (valid) -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Initialising orders cache... Creating connection to `:memory:`... Order opened for 100000000 XCP at mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8) [open] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Send DIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns (6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Send XCP from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns (4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. BUMP TXID 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8 Order opened for 100000000 XCP at mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b) [open] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Order opened for 100000000 XCP at mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a) [open] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Order opened for 666667 BTC at mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6) [open] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Send XCP from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Send DIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Send NODIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns (1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Send NODIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to 1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2 (e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Issuance of 9223372036854775807 MAXI by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39] (valid) -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Broadcast from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af) [valid] -TX Construct - Constructing `MULTISIG` transaction from mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH. TX Construct - Transaction constructed. Broadcast from mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH (f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Open Bet (2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1) [open] -TX Construct - Constructing `MULTISIG` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. TX Construct - Transaction constructed. Open Bet (5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93) [open] Considering: 2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1 @@ -74,137 +53,94 @@ Backward Quantity: 9 Bet 2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1 updated (5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93) [filled] Bet 5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93 updated (5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93) [filled] Bet match 20 for 9 XCP against 9 XCP on mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc -TX Construct - Constructing `MULTISIG` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. TX Construct - Transaction constructed. Open Bet (db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e) [open] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Broadcast from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae) [valid] Bet Match 2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93 resolved Bet Match 2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93 updated [settled] -TX Construct - Constructing transaction from myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM. TX Construct - Transaction constructed. myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM burned 62000000 BTC for 92999138821 XCP (65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b) [valid] -TX Construct - Constructing transaction from munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b. TX Construct - Transaction constructed. munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b burned 62000000 BTC for 92999130460 XCP (95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff) [valid] -TX Construct - Constructing transaction from mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42. TX Construct - Transaction constructed. mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42 burned 62000000 BTC for 92999122099 XCP (e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa) [valid] -TX Construct - Constructing transaction from mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK. TX Construct - Transaction constructed. mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK burned 10000 BTC for 14999857 XCP (bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3) [valid] -TX Construct - Constructing `OPRETURN` transaction from munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b. TX Construct - Transaction constructed. Initialising Dispensable Cache... Dispenser opened for XCP at munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b (9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec) [valid] -TX Construct - Constructing transaction from 2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy. TX Construct - Transaction constructed. 2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy burned 31000000 BTC for 46499548508 XCP (93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73) [valid] -TX Construct - Constructing `MULTISIG` transaction from 2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy. TX Construct - Transaction constructed. Issuance of 1000 PAYTOSCRIPT by 2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy [e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e] (valid) -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Send DIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to 2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy (f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7) [valid] -TX Construct - Constructing `OPRETURN` transaction from 2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy. TX Construct - Transaction constructed. Broadcast from 2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy (510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186) [valid] -TX Construct - Constructing `OPRETURN` transaction from 2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy. TX Construct - Transaction constructed. Open Bet (d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048) [open] -TX Construct - Constructing `MULTISIG` transaction from mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42. TX Construct - Transaction constructed. Issuance of 1000 LOCKEDPREV by mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42 [34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63] (valid) -TX Construct - Constructing `MULTISIG` transaction from mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42. TX Construct - Transaction constructed. Issuance of 0 LOCKEDPREV by mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42 [025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2] (valid) -TX Construct - Constructing `MULTISIG` transaction from mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42. TX Construct - Transaction constructed. Issuance of 0 LOCKEDPREV by mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42 [4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb] (valid) -TX Construct - Constructing transaction from tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx. TX Construct - Transaction constructed. tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx burned 62000000 BTC for 92999030129 XCP (27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9) [valid] -TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Send (Enhanced) XCP from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns (b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5) [valid] -TX Construct - Constructing `OPRETURN` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. TX Construct - Transaction constructed. Send (Enhanced) XCP from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns to mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34) [valid] -TX Construct - Constructing `MULTISIG` transaction from myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM. TX Construct - Transaction constructed. Broadcast from myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM (3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14) [valid] -TX Construct - Constructing `MULTISIG` transaction from myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM. TX Construct - Transaction constructed. Open Bet (41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef) [open] -TX Construct - Constructing `MULTISIG` transaction from myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM. TX Construct - Transaction constructed. Broadcast from myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM (870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638) [valid] -TX Construct - Constructing `MULTISIG` transaction from myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM. TX Construct - Transaction constructed. Broadcast from myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM (685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1) [valid] -TX Construct - Constructing `MULTISIG` transaction from mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42. TX Construct - Transaction constructed. Broadcast from mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42 (7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Order opened for 100000000 XCP at mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498) [open] -TX Construct - Constructing `MULTISIG` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. TX Construct - Transaction constructed. Order opened for 800000 BTC at mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns (1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81) [open] Order match for 100000000 XCP against 800000 BTC (74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81) [pending] -TX Construct - Constructing transaction from mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH. TX Construct - Transaction constructed. mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH burned 62000000 BTC for 92995878046 XCP (c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a) [valid] -TX Construct - Constructing `MULTISIG` transaction from mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH. TX Construct - Transaction constructed. Issuance of 100 DIVIDEND by mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH [321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503] (valid) -TX Construct - Constructing `MULTISIG` transaction from mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH. TX Construct - Transaction constructed. Send DIVIDEND from mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH to mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj (02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e) [valid] -TX Construct - Constructing `MULTISIG` transaction from mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH. TX Construct - Transaction constructed. Send XCP from mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH to mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj (a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba) [valid] -TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Issuance of 100000000 PARENT by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f] (valid) -TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Issuance of 100000000 A95428956661682277 by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf] (valid) -TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Fair minter opened for FREEFAIRMIN by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. -TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Fair minter opened for PAIDFAIRMIN by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. -TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. 10 FREEFAIRMIN minted for 0 XCP by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc -TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Fair minter opened for RAIDFAIRMIN by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. -TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Fair minter opened for QAIDFAIRMIN by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. -TX Construct - Constructing `MULTISIG` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. TX Construct - Transaction constructed. Fair minter opened for A160361285792733729 by mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. -TX Construct - Constructing `OPRETURN` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. TX Construct - Transaction constructed. 10 A160361285792733729 minted for 100 XCP by mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns -TX Construct - Constructing `OPRETURN` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. TX Construct - Transaction constructed. 20 A160361285792733729 minted for 200 XCP by mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Attach XCP from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 (9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883) [valid] -TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. TX Construct - Transaction constructed. Attach DIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 (ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e) [valid] -TX Construct - Constructing `MULTISIG` transaction from munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b. TX Construct - Transaction constructed. Issuance of 1000 TESTDISP by munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b [01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1] (valid) -TX Construct - Constructing `OPRETURN` transaction from munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b. TX Construct - Transaction constructed. Dispenser opened for TESTDISP at munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b (af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e) [valid] Order match cancelled XCP / BTC (74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81) [expired] diff --git a/counterparty-core/counterpartycore/test/fixtures/vectors.py b/counterparty-core/counterpartycore/test/fixtures/vectors.py index 1dfd3a9383..87bc73d499 100644 --- a/counterparty-core/counterpartycore/test/fixtures/vectors.py +++ b/counterparty-core/counterpartycore/test/fixtures/vectors.py @@ -6216,7 +6216,7 @@ }, ], }, - "transaction_helper.serializer": { + "transaction_helper.common_serializer": { "var_int": [ {"in": (252,), "out": b"\xfc"}, {"in": (65535,), "out": b"\xfd\xff\xff"}, diff --git a/counterparty-core/counterpartycore/test/p2sh_encoding_test.py b/counterparty-core/counterpartycore/test/p2sh_encoding_test.py index 9170d54ba0..b427f05250 100644 --- a/counterparty-core/counterpartycore/test/p2sh_encoding_test.py +++ b/counterparty-core/counterpartycore/test/p2sh_encoding_test.py @@ -27,7 +27,7 @@ transaction, util, ) -from counterpartycore.lib.transaction_helper import p2sh_encoding # noqa: E402 +from counterpartycore.lib.transaction_helper import p2sh_serializer # noqa: E402 FIXTURE_SQL_FILE = CURR_DIR + "/fixtures/scenarios/unittest_fixture.sql" FIXTURE_DB = tempfile.gettempdir() + "/fixtures.unittest_fixture.db" @@ -84,7 +84,7 @@ def test_p2sh_encoding(server_db): {"source": source, "destination": destination, "asset": "XCP", "quantity": 100}, encoding="p2sh", fee_per_kb=fee_per_kb, - fee=fee, + exact_fee=fee, ) assert not isinstance(result, list) pretxhex = result["unsigned_pretx_hex"] @@ -447,7 +447,7 @@ def test_p2sh_encoding_p2sh_source_not_supported(server_db): {"source": source, "destination": destination, "asset": "XCP", "quantity": 100}, encoding="p2sh", fee_per_kb=fee_per_kb, - fee=fee, + exact_fee=fee, ) @@ -467,7 +467,7 @@ def test_p2sh_encoding_manual_multisig_transaction(server_db): for p in [DP["pubkey"][ADDR[0]], DP["pubkey"][ADDR[1]], DP["pubkey"][ADDR[2]]] ] data_drop = b"deadbeef01" - script_sig, redeem_script, output_script = p2sh_encoding.make_p2sh_encoding_redeemscript( + script_sig, redeem_script, output_script = p2sh_serializer.make_p2sh_encoding_redeemscript( data_drop, n=0, pub_key=None, @@ -500,7 +500,7 @@ def test_p2sh_encoding_manual_multisig_transaction(server_db): p2sh_source_multisig_pubkeys_required=2, encoding="p2sh", fee_per_kb=fee_per_kb, - fee=fee, + exact_fee=fee, ) pretxhex = pretxhex["unsigned_pretx_hex"] # debugTransaction = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(pretxhex)) @@ -595,7 +595,7 @@ def test_p2sh_signed_multisig_script_decoding(): ctx = deserialize.deserialize_tx(txHex, True) vin = ctx["vin"][0] asm = script.script_to_asm(vin["script_sig"]) - new_source, new_destination, new_data = p2sh_encoding.decode_p2sh_input(asm) + new_source, new_destination, new_data = p2sh_serializer.decode_p2sh_input(asm) assert new_data == binascii.unhexlify( "1e5a3ae08000000000000000000000000073434950203620737570706f727473207573696e672070327368206164647265737365732061732074686520736f7572636520616464726573732062757420726571756972657320616e206164646974696f6e616c20696e70757420696e207468652064617461207472616e73616374696f6e2e" diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 25682e8eb2..2294eeae74 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": 193, - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", - "block_time": 1727080029, - "previous_block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_time": 1727090032, + "previous_block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", "difficulty": 545259519, - "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", - "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", - "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", + "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", + "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", + "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", - "block_time": 1727080026, - "previous_block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", + "block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", + "block_time": 1727090028, + "previous_block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", "difficulty": 545259519, - "ledger_hash": "0a01bff8eb1c310d8222e4ccb4760085675430d12422c8dd6c1406862fd2bcd5", - "txlist_hash": "cd465c4124d8f65b6f8d4112a5934530f16fcb6a7ac9f405937f60b64cac9f03", - "messages_hash": "3fc52191dfde04576e3cd5974b4af5b7e1c3ec66fa0d275067d2c8ece10ef148", + "ledger_hash": "d46c9a79ea9f28e5a8abedc26ec0f354521174a4b6ebe4c696652f7ba6d3eaf6", + "txlist_hash": "9707feba25739b7012ed85043e312c25f56921b21aa328e4be348e4425527ad8", + "messages_hash": "75b5676163832b1dabee3d864b37620ada5061afe4a69701e9e2cc694b8e9e5f", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", - "block_time": 1727080022, - "previous_block_hash": "27631674929a77b7907c42d4559d560e994bddb1c5dc880e51ac065952ccc04b", + "block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", + "block_time": 1727090024, + "previous_block_hash": "4b99bbc6808e4b765e983849737aafe5ef708306f5c65833991a73d0cce49c33", "difficulty": 545259519, - "ledger_hash": "c918416572951e1e48365514f20bdd3d512f8a1ceef0accbc5e41f80724e81ba", - "txlist_hash": "300cac11ea531e4e01f87018a1e392ed79f5273964799d1f25a4d70f2df71439", - "messages_hash": "d004ba210b48210939040d6d03420f5eecfeeb330a2c32b5cf9be077a32818fc", + "ledger_hash": "55612d24a38e775d9ae90229d537d96b0165d975b8fbe0ed5bdd85e8dd396c1f", + "txlist_hash": "8a77df6642e1fcfe0beb18b335a1ad317013b9b9a86929d6d436707327271eab", + "messages_hash": "0eeda5ff9e6480091916f110f8d7aeda363c7c9188d40f33b2a33e0e5e5f6846", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "27631674929a77b7907c42d4559d560e994bddb1c5dc880e51ac065952ccc04b", - "block_time": 1727080007, - "previous_block_hash": "6fb0ca06b43613ffed61018fcb6082c59452492ba985576337703460a5a270f0", + "block_hash": "4b99bbc6808e4b765e983849737aafe5ef708306f5c65833991a73d0cce49c33", + "block_time": 1727090019, + "previous_block_hash": "2923560e2bcacf6e73d9eff03c6d1595137115cb81061d215b3edaa9ff0e70ca", "difficulty": 545259519, - "ledger_hash": "51469f0e92c07c9a475dddf1df377bdd6b740d6cec92661eaf9fff84113fddcc", - "txlist_hash": "97b3b22f1089946ec419f2824b21c0c0d7810013a5fbeb5bf8d9cb15d4d0e015", - "messages_hash": "52a4e5b87f05460ee8c0a6d8c8d7b6444216529a0e072a6a4e90e4b7a6ac2205", + "ledger_hash": "a3a3134ddd4dd5c9ecad8e689725219ba0e003405f6f4fa8d227a19f8495d5d0", + "txlist_hash": "40d6882b32b7c28fa05a9fda718c7d60a0dbc9039a8a1b7b19a1713f988e4859", + "messages_hash": "4a5594b373b41e3b2556bb42861d4e775adad70ffdae75e67864cc8797bec351", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "6fb0ca06b43613ffed61018fcb6082c59452492ba985576337703460a5a270f0", - "block_time": 1727079993, - "previous_block_hash": "48b2d19d551135b795db9414be8cef12acb0b131f1d153c2e457362aee6f39fa", + "block_hash": "2923560e2bcacf6e73d9eff03c6d1595137115cb81061d215b3edaa9ff0e70ca", + "block_time": 1727090015, + "previous_block_hash": "3fa9c2277a64ed52b884ca2a17da14b49509020652eb361abe768ef64c58a8b1", "difficulty": 545259519, - "ledger_hash": "53951e46fc709ae22d91dde1f09c776635c86a1f6148f4509e0a2bd3e5dab77a", - "txlist_hash": "1e2450020fb89ed8fbfa6b65fc361d79b6ffaa2a7c0d1c0a1ba8f07b8e820fd2", - "messages_hash": "92c69ccbc7509d2230f7338d7e4a1877e33012a84995ba281e76d99fc4709d67", + "ledger_hash": "9493cb79f2b216820d42d4c9138cac197dc6cad664473c5fd95156f9ce96127b", + "txlist_hash": "8154a4708a00d17782cfdfe4cbb99ae6b5369bb2abe59c809b471190edc2abe6", + "messages_hash": "17b8c592cef8a595dae2b4c23cf034ec7c522b339169fe4209d65a6f86869d5f", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", - "block_time": 1727080029, - "previous_block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_time": 1727090032, + "previous_block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", "difficulty": 545259519, - "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", - "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", - "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", + "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", + "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", + "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", - "block_time": 1727080029, - "previous_block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_time": 1727090032, + "previous_block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", "difficulty": 545259519, - "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", - "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", - "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", + "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", + "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", + "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", - "block_time": 1727080029, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_time": 1727090032, + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", + "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -139,11 +139,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "0a01bff8eb1c310d8222e4ccb4760085675430d12422c8dd6c1406862fd2bcd5", - "messages_hash": "3fc52191dfde04576e3cd5974b4af5b7e1c3ec66fa0d275067d2c8ece10ef148", + "ledger_hash": "d46c9a79ea9f28e5a8abedc26ec0f354521174a4b6ebe4c696652f7ba6d3eaf6", + "messages_hash": "75b5676163832b1dabee3d864b37620ada5061afe4a69701e9e2cc694b8e9e5f", "transaction_count": 1, - "txlist_hash": "cd465c4124d8f65b6f8d4112a5934530f16fcb6a7ac9f405937f60b64cac9f03", - "block_time": 1727080026 + "txlist_hash": "9707feba25739b7012ed85043e312c25f56921b21aa328e4be348e4425527ad8", + "block_time": 1727090028 }, "tx_hash": null }, @@ -152,43 +152,43 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58 }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "status": "valid", - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, - "block_time": 1727080026, + "block_time": 1727090028, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -198,22 +198,22 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "XCP", "block_index": 192, - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -223,7 +223,7 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" } ], "next_cursor": 524, @@ -261,16 +261,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -280,57 +280,57 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" } ], "next_cursor": null, @@ -340,16 +340,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -361,20 +361,20 @@ }, { "block_index": 192, - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -382,20 +382,20 @@ }, { "block_index": 192, - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -409,16 +409,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "event": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -436,24 +436,24 @@ "result": [ { "type": "order", - "object_id": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "object_id": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", "block_index": 182, "confirmed": true, - "block_time": 1727079898 + "block_time": 1727089916 }, { "type": "order", - "object_id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", + "object_id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", "block_index": 182, "confirmed": true, - "block_time": 1727079898 + "block_time": 1727089916 }, { "type": "order_match", - "object_id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "object_id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", "block_index": 182, "confirmed": true, - "block_time": 1727079898 + "block_time": 1727089916 } ], "next_cursor": null, @@ -463,13 +463,13 @@ "result": [ { "tx_index": 56, - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "block_index": 190, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "status": "valid", "confirmed": true, - "block_time": 1727080007 + "block_time": 1727090019 } ], "next_cursor": null, @@ -479,15 +479,15 @@ "result": [ { "tx_index": 59, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -505,14 +505,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", + "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -527,7 +527,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079873, + "block_time": 1727089900, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -539,10 +539,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "quantity": 10, "status": "valid", @@ -550,7 +550,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "divisible": true, "asset_longname": null, @@ -563,10 +563,10 @@ }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -574,11 +574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -587,10 +587,10 @@ }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -598,11 +598,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -618,27 +618,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", - "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "last_status_tx_hash": null, - "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -653,7 +653,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727079818, + "block_time": 1727089824, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,16 +672,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "fee_paid_normalized": "0.00600000" } ], @@ -692,17 +692,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", - "block_time": 1727080029, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_time": 1727090032, + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", + "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -725,23 +725,23 @@ }, { "tx_index": 58, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf", - "block_time": 1727080026, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", + "block_time": 1727090028, + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480c4fb36b92d4e34760a7faccb00cc7340befb1809017377656570206d7920617373657473", + "data": "0480fa167162004bd108ffc4b1cfaf62ff500d14c741017377656570206d7920617373657473", "supported": true, - "utxos_info": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36:1", + "utxos_info": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "flags": 1, "memo": "sweep my assets" } @@ -754,18 +754,53 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "03000380c7da25416c8a05ef76411973556de567bdc97a8a80b24ca3b3deb516bc15248b8c9c92dd48a1518ca780fa167162004bd108ffc4b1cfaf62ff500d14c741400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "1f52299e86e352cb7b1a484767c18433a8dd5da0be5e6ade2766ef0b36630799", + "hash": "f6cc2420145554ce6268b5591389e27dacd582e5d2acc52d56a6babbb75a7f28", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "f3b3de71a0969cedbef3cdc13e40f4889952c8ef98164f69028c4f91bd7278d4", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "92726094dbe07463c3eee1d0ba3fb96a69e09dd2133dc3347bca3590dede2302", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "87450a5778fe441e8a81b45bc3e443dac9f7d9297a56cc5e1f2f2ff865e34d8e", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "32741d8f4ed0b0204e54c358ce24e1dd92645fb5cdaca06ad3ffbb42da74482d", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "3839cbfe95ecceb744d72220256bb2041440232eb1a1bb1a75c442c8436fa68b", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -774,69 +809,93 @@ ], "vout": [ { - "value": 0, - "script_pub_key": "6a335561f66404c41e80f8fa2cee94d1a41a13dcd65aa53f7799adaf41771323736e95069860c3a4105c96a9e810a95e8711d2c989" + "value": 1000, + "script_pub_key": "5121026308b4f133d29cc4de5d3fc4fe7e55679fbd6f8a57ea772f0423a9121c0703a62102dcbcf496ec026a717d6a095101dae78e579b6786846d0696bfffc63adee6f7552103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653ae" + }, + { + "value": 1000, + "script_pub_key": "5121026308b4f133d29cc4de56c003cf7620202181e89b7fdd76367770ce3abe615ef82102a6367424a0a1d986c87cb54425516b17e5462f27d5e1a11665e9b758dead261e2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653ae" }, { - "value": 4999990000, - "script_pub_key": "001452e48a2420dddb4d5239ee4f509da9a34bff777a" + "value": 1000, + "script_pub_key": "5121025508b4f133d29cc4de5e2bc77eb98f42ded1e58fb89c36367776c4f77bbaca142103a6367424a0a1d9afc87cb54425516b12c5462f27d5e1a11645e9b758dead264b2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653ae" + }, + { + "value": 29999987000, + "script_pub_key": "00143e5479d90ea1664716c42ff6cd46077c13ccd473" } ], "vtxinwit": [ - "3044022070c3fd6ffa1fda1ff311bbf79dafbcf3e6f73f40c0487d24dbf104726282eb770220303ef3f0cf64bf814af3e138301eec9d77f7d1f2467a751d3b69f1193421ca6301", - "038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c" + "304402206294f1344e43d7997fb099b5f01a029f9c07201a66c29a6410490f7a12785a5602203e0b03b36a430d2a07f22e53867be22b5ea53795b72a10b5afc3732a442d40af01", + "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", + "304402203c0f122faaf1356982f235dbbd809f052ff7e93326172525318990ed67efb9ee0220724211dcff055bb28b32eb8ee1af0de42f814dbd79c09eb8ab6b7826e3c6c63c01", + "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", + "304402202d0a04ce6f97f79075361c8bddfca2d78e217837e523f60823a98359f46ed7ba022075be37a754f2831a88fd0869fef3eec33af88ac2b7a11563770ca89748ee9ada01", + "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", + "30440220326d5979c6d939d9e4e3423c2bae9cfe22315e07c459d6ee6fdc5a3e343c9c7b022054f38783ed9c73bc3f0f324e58dc3c0c0d41e00770c31764642e23407b49c24201", + "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", + "3044022042abc0fc58e261b5b80cb320bdca8937e2c45b67df2a2c66e582f4486ea4323802202de9684dbee87a7899139a3a9252d9a08e8520d60b9511f73c1dc242af514cda01", + "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", + "30440220305f882370037565e0e9baf696bf07b6af719769b04b9ae6d6bbf0577dd464d002201d539a438eca3142f899c0797b6ce85b94615146a6d2b8db62241d295f0d4a6a01", + "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556" ], "lock_time": 0, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", - "tx_id": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f" + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_id": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0" }, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MYASSETA", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "quantity": 10, + "memo": null, + "memo_is_hex": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } + { + "asset": "XCP", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "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" } }, "/v2/transactions//info": { "result": { - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc", + "data": "020000000000000001000000000000271080b24ca3b3deb516bc15248b8c9c92dd48a1518ca7", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "ec72b6da61eb4096c6eb25484cb721bb26e2429cd539df769f552c680d7f8a1e", + "hash": "90d52d518cfbcdc0871e27e36b9b6fb7fcf65082d910b2a35da606e2321a8153", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -846,20 +905,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e175501a67a71a7042d4669c22cdd7e97cb14c3c52a8c426fe0176eff948d3ec0cc3c68ddd322d1e0661b59cee4bb" + "script_pub_key": "6a2edcbe7f1ee60c29bb3b38aa206872872b7d3e57f6c749e3b111f4c3fdae73f7ed0495c59089cc7c51ed023e418d87" }, { "value": 4999955000, - "script_pub_key": "0014c4fb36b92d4e34760a7faccb00cc7340befb1809" + "script_pub_key": "0014fa167162004bd108ffc4b1cfaf62ff500d14c741" } ], "vtxinwit": [ - "304402207a5d46bd6b01b7b76e17241f3cd9588203d36982448497e39cda7d2c60013ce602207e65bccfb61296531321c1fd74bd4f85dc4f4bc8049c5f9819d4313e2340c88c01", - "0245711205fa34c28180371a8e6a071cd643ec0f98772bebba59d21b2bf8023721" + "3044022066eada7777201ae400b9d5680564eac7406e3368e31d7e42e897a335bab70e4d022008d95ed963507d80de84b9dfed13a59f7f0a2ad4817b291caf59c4eb8a7f617001", + "02748e93e3b51c48fcf700c353ec69d192cd4c589703e899b4f8b2983d3a722c4b" ], "lock_time": 0, - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", - "tx_id": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47" + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_id": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5" }, "unpacked_data": { "message_type": "enhanced_send", @@ -867,7 +926,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "memo": null, "asset_info": { "divisible": true, @@ -894,17 +953,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", - "block_time": 1727080029, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_time": 1727090032, + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", + "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -929,17 +988,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", - "block_time": 1727080029, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_time": 1727090032, + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", + "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -968,47 +1027,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58 }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "status": "valid", - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, - "block_time": 1727080026, + "block_time": 1727090028, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -1018,24 +1077,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "XCP", "block_index": 192, - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,36 +1104,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 } ], "next_cursor": 523, @@ -1087,47 +1146,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58 }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "status": "valid", - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, - "block_time": 1727080026, + "block_time": 1727090028, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -1137,24 +1196,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "XCP", "block_index": 192, - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -1164,36 +1223,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 } ], "next_cursor": 523, @@ -1203,10 +1262,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "quantity": 10, "status": "valid", @@ -1214,7 +1273,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "divisible": true, "asset_longname": null, @@ -1227,10 +1286,10 @@ }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1238,11 +1297,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -1251,10 +1310,10 @@ }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1262,11 +1321,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -1282,27 +1341,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", - "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "last_status_tx_hash": null, - "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -1317,7 +1376,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727079818, + "block_time": 1727089824, "asset_info": { "divisible": true, "asset_longname": null, @@ -1338,16 +1397,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -1357,63 +1416,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 } ], "next_cursor": null, @@ -1425,16 +1484,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -1444,63 +1503,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 } ], "next_cursor": null, @@ -1513,7 +1572,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1523,7 +1582,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -1534,7 +1593,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1544,7 +1603,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -1555,7 +1614,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1565,7 +1624,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -1576,7 +1635,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1586,7 +1645,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -1597,7 +1656,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1607,7 +1666,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -1621,17 +1680,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", - "block_time": 1727080022, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", + "block_time": 1727090024, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1", + "utxos_info": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1667,23 +1726,23 @@ }, { "tx_index": 56, - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "block_index": 190, - "block_hash": "27631674929a77b7907c42d4559d560e994bddb1c5dc880e51ac065952ccc04b", - "block_time": 1727080007, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "4b99bbc6808e4b765e983849737aafe5ef708306f5c65833991a73d0cce49c33", + "block_time": 1727090019, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "data": "460233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "supported": true, - "utxos_info": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18:1", + "utxos_info": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "status": "valid" } }, @@ -1691,17 +1750,17 @@ }, { "tx_index": 55, - "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "block_index": 189, - "block_hash": "6fb0ca06b43613ffed61018fcb6082c59452492ba985576337703460a5a270f0", - "block_time": 1727079993, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "2923560e2bcacf6e73d9eff03c6d1595137115cb81061d215b3edaa9ff0e70ca", + "block_time": 1727090015, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d:1", + "utxos_info": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1737,17 +1796,17 @@ }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "block_hash": "48b2d19d551135b795db9414be8cef12acb0b131f1d153c2e457362aee6f39fa", - "block_time": 1727079989, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "3fa9c2277a64ed52b884ca2a17da14b49509020652eb361abe768ef64c58a8b1", + "block_time": 1727090011, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a34288aaa16cb6a9c7065f6fedddf0f15f400ec9803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc80c4fb36b92d4e34760a7faccb00cc7340befb1809400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380c7da25416c8a05ef76411973556de567bdc97a8a80b24ca3b3deb516bc15248b8c9c92dd48a1518ca780fa167162004bd108ffc4b1cfaf62ff500d14c741400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e:0", + "utxos_info": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1755,14 +1814,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -1770,7 +1829,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1789,25 +1848,25 @@ }, { "tx_index": 51, - "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", + "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", "block_index": 185, - "block_hash": "0019336d8185362941e07f3b889ad1fcec836b89b1848ef0b1acd905e5d68e55", - "block_time": 1727079976, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "2616d6c33121a5276f3fae0f4b3abae36a5e125ba76f11aef7c8404c03cc9576", + "block_time": 1727089998, + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "btc_amount": 2000, "fee": 10000, - "data": "0bf1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "data": "0b5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2db7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "supported": true, - "utxos_info": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff:0", + "utxos_info": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", - "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", - "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "status": "valid" } }, @@ -1836,11 +1895,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "status": "open", - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "tx_index": 57, - "block_time": 1727080022, + "block_time": 1727090024, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1864,24 +1923,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "block_time": 1727080022 + "block_time": 1727090024 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "block_index": 191, - "event": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "event": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727080022, + "block_time": 1727090024, "asset_info": { "divisible": true, "asset_longname": null, @@ -1891,25 +1950,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "block_time": 1727080022 + "block_time": 1727090024 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", + "block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", "block_index": 191, - "block_time": 1727080022, + "block_time": 1727090024, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "tx_index": 57, - "utxos_info": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1", + "utxos_info": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1941,40 +2000,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "block_time": 1727080022 + "block_time": 1727090024 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "status": "valid", - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "tx_index": 56, - "block_time": 1727080007 + "block_time": 1727090019 }, - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "block_index": 190, - "block_time": 1727080007 + "block_time": 1727090019 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727080007, + "block_time": 1727090019, "asset_info": { "divisible": true, "asset_longname": null, @@ -1984,9 +2043,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "block_index": 190, - "block_time": 1727080007 + "block_time": 1727090019 } ], "next_cursor": 506, @@ -1995,17 +2054,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "memo": null, "quantity": 10000, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "status": "valid", - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "tx_index": 60, "asset_info": { "divisible": true, @@ -2018,19 +2077,19 @@ } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "CREDIT", "params": { - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -2042,19 +2101,19 @@ } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 193, - "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -2066,27 +2125,27 @@ } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727080033.9107606, + "block_time": 1727090046.9235783, "btc_amount": 0, - "data": "0200000000000000010000000000002710803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc", + "data": "020000000000000001000000000000271080b24ca3b3deb516bc15248b8c9c92dd48a1518ca7", "destination": "", "fee": 10000, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "tx_index": 60, - "utxos_info": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47:1", + "utxos_info": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "memo": null, "asset_info": { "divisible": true, @@ -2108,7 +2167,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2116,14 +2175,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2131,14 +2190,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2153,7 +2212,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2161,7 +2220,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2173,7 +2232,7 @@ }, "/v2/addresses/
/balances/": { "result": { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2192,16 +2251,16 @@ "result": [ { "block_index": 190, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080007, + "block_time": 1727090019, "asset_info": { "divisible": true, "asset_longname": null, @@ -2213,16 +2272,16 @@ }, { "block_index": 182, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", + "event": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079898, + "block_time": 1727089916, "asset_info": { "divisible": true, "asset_longname": null, @@ -2234,20 +2293,20 @@ }, { "block_index": 159, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", + "event": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079873, + "block_time": 1727089900, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2255,20 +2314,20 @@ }, { "block_index": 156, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "c5f0754dd7d1082a77f739c930d90d5684bb394c04a01e9acf2c0a1742b4dc87", + "event": "f16fadc9b332b83f0383c930c2392d6d2c06410ff8f5ea2a9fa0b1ee4713590e", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079860, + "block_time": 1727089867, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2280,16 +2339,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", + "event": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", "tx_index": 38, - "utxo": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8:1", - "utxo_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "utxo": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505:1", + "utxo_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "confirmed": true, - "block_time": 1727079839, + "block_time": 1727089845, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2303,16 +2362,16 @@ "result": [ { "block_index": 191, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "event": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080022, + "block_time": 1727090024, "asset_info": { "divisible": true, "asset_longname": null, @@ -2324,16 +2383,16 @@ }, { "block_index": 189, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079993, + "block_time": 1727090015, "asset_info": { "divisible": true, "asset_longname": null, @@ -2345,16 +2404,16 @@ }, { "block_index": 188, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "event": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "divisible": true, "asset_longname": null, @@ -2366,20 +2425,20 @@ }, { "block_index": 188, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "event": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2387,16 +2446,16 @@ }, { "block_index": 183, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "event": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079968, + "block_time": 1727089990, "asset_info": { "divisible": true, "asset_longname": null, @@ -2419,9 +2478,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "7145912710e264e9c5b45407d43bc8fd5318db28c30836a01c4862e2ded179d5", + "tx_hash": "d8c73b39bec3ca170f5db0ca4cf42abc7535513ef491131f8986f9b249de2aac", "block_index": 137, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2429,7 +2488,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727079780, + "block_time": 1727089777, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2440,14 +2499,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "45fcd30b26481dc7d15d3e290ffc8c6f576a8940987ab179d8171b9929dad6aa", + "tx_hash": "e16d235b861cfe7c48a74e0bcdf99b3b7ded94cbc658fb3c7bebb6dd49cde216", "block_index": 112, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1727079676, + "block_time": 1727089675, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2459,10 +2518,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2470,7 +2529,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "divisible": true, "asset_longname": null, @@ -2483,10 +2542,10 @@ }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2494,11 +2553,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2507,10 +2566,10 @@ }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2518,11 +2577,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2531,10 +2590,10 @@ }, { "tx_index": 38, - "tx_hash": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", + "tx_hash": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", "block_index": 151, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8:1", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2542,11 +2601,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079839, + "block_time": 1727089845, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2555,10 +2614,10 @@ }, { "tx_index": 35, - "tx_hash": "8e6e5e86390b1d35d8140150b424da7aba62e5e93c431bd2645ef98ebe79c705", + "tx_hash": "fc6c96d70ca302032501a89ff33d3ca64cfe94e875137ac218eb81744063d6c6", "block_index": 148, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "8ef179e266d7b41d18f9c03097396fe4b3ec9a584925e023130ca6e7104fe97e:1", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "dc60251c64cde9adfaf7ea84db0bdaf720119f8f0a796de3bd80fd32a8700e75:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2566,11 +2625,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079826, + "block_time": 1727089833, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2585,10 +2644,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "989604467561753724a036703d19ac691dfe4a5ced843c42f9d1834068e7158f", + "tx_hash": "a592122f19e7c7afd8e7ca3b3fa6c680c8fe697a5efbe3b3c4f6c2758f87370f", "block_index": 150, - "source": "e0fb6c717053ccace6058ea89673a15dff5b190c77211ffd001c4094c8df382a:0", - "destination": "bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd", + "source": "9c20a315f9dd83391105db586e409f6b237d721fe234db96ff0cab43fa5174af:0", + "destination": "bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2596,11 +2655,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079835, + "block_time": 1727089841, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2615,10 +2674,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2626,11 +2685,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2639,10 +2698,10 @@ }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2650,11 +2709,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2663,10 +2722,10 @@ }, { "tx_index": 38, - "tx_hash": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", + "tx_hash": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", "block_index": 151, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8:1", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2674,11 +2733,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079839, + "block_time": 1727089845, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2687,10 +2746,10 @@ }, { "tx_index": 35, - "tx_hash": "8e6e5e86390b1d35d8140150b424da7aba62e5e93c431bd2645ef98ebe79c705", + "tx_hash": "fc6c96d70ca302032501a89ff33d3ca64cfe94e875137ac218eb81744063d6c6", "block_index": 148, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "8ef179e266d7b41d18f9c03097396fe4b3ec9a584925e023130ca6e7104fe97e:1", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "dc60251c64cde9adfaf7ea84db0bdaf720119f8f0a796de3bd80fd32a8700e75:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2698,11 +2757,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079826, + "block_time": 1727089833, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2717,10 +2776,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "989604467561753724a036703d19ac691dfe4a5ced843c42f9d1834068e7158f", + "tx_hash": "a592122f19e7c7afd8e7ca3b3fa6c680c8fe697a5efbe3b3c4f6c2758f87370f", "block_index": 150, - "source": "e0fb6c717053ccace6058ea89673a15dff5b190c77211ffd001c4094c8df382a:0", - "destination": "bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd", + "source": "9c20a315f9dd83391105db586e409f6b237d721fe234db96ff0cab43fa5174af:0", + "destination": "bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2728,11 +2787,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079835, + "block_time": 1727089841, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -2747,9 +2806,9 @@ "result": [ { "tx_index": 30, - "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", + "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", "block_index": 144, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2758,7 +2817,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2768,7 +2827,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079809, + "block_time": 1727089816, "asset_info": { "divisible": true, "asset_longname": null, @@ -2784,9 +2843,9 @@ }, { "tx_index": 26, - "tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2795,7 +2854,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2805,7 +2864,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -2826,9 +2885,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 30, - "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", + "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", "block_index": 144, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2837,7 +2896,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2847,7 +2906,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079809, + "block_time": 1727089816, "asset_info": { "divisible": true, "asset_longname": null, @@ -2867,19 +2926,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", + "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2887,7 +2946,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2902,7 +2961,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -2916,19 +2975,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", + "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", "block_index": 140, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2936,7 +2995,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2951,7 +3010,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079793, + "block_time": 1727089788, "asset_info": { "divisible": true, "asset_longname": null, @@ -2971,19 +3030,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", + "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2991,7 +3050,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3006,7 +3065,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -3020,19 +3079,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", + "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", "block_index": 140, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3040,7 +3099,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3055,7 +3114,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079793, + "block_time": 1727089788, "asset_info": { "divisible": true, "asset_longname": null, @@ -3075,19 +3134,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", + "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3095,7 +3154,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3110,7 +3169,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -3124,19 +3183,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", + "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", "block_index": 140, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3144,7 +3203,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3159,7 +3218,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079793, + "block_time": 1727089788, "asset_info": { "divisible": true, "asset_longname": null, @@ -3179,19 +3238,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", + "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3199,7 +3258,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3214,7 +3273,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -3228,19 +3287,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", + "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", "block_index": 140, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3248,7 +3307,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3263,7 +3322,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079793, + "block_time": 1727089788, "asset_info": { "divisible": true, "asset_longname": null, @@ -3282,16 +3341,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "fee_paid_normalized": "0.00600000" } ], @@ -3302,14 +3361,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", + "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -3324,20 +3383,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079873, + "block_time": 1727089900, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "ee5b91c03af937b81687cba8cf5de88a889363660243b7f1e3d0721469e82475", + "tx_hash": "e6abd286bdba5ba6f4e5dbe333fd2ab733fb42428230b79b68741f9678c28897", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -3352,20 +3411,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727079868, + "block_time": 1727089896, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "913be4b557b8ae7b33fffad5a68eec87247e587ef1161d91310b90133a1cb304", + "tx_hash": "67c806f2224d86f97c2532de5cd43bca5dff4a3a6951b17b37dafc06cceada13", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -3380,20 +3439,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079864, + "block_time": 1727089881, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "c5f0754dd7d1082a77f739c930d90d5684bb394c04a01e9acf2c0a1742b4dc87", + "tx_hash": "f16fadc9b332b83f0383c930c2392d6d2c06410ff8f5ea2a9fa0b1ee4713590e", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -3408,20 +3467,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079860, + "block_time": 1727089867, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "38fd7a78403fa7a17642d00e60ed25b5abec76df7774a00bc77e55574157da48", + "tx_hash": "97b732eec3a1d7005106f8ed821ed94d1df26d1c501b8f6011dc5c9226d1343a", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -3436,7 +3495,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079822, + "block_time": 1727089828, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -3450,8 +3509,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 10000000000, @@ -3459,16 +3518,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727079860, - "last_issuance_block_time": 1727079868, + "first_issuance_block_time": 1727089867, + "last_issuance_block_time": 1727089896, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 100000000000, @@ -3476,16 +3535,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727079822, - "last_issuance_block_time": 1727079822, + "first_issuance_block_time": 1727089828, + "last_issuance_block_time": 1727089828, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 40, @@ -3493,16 +3552,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727079772, - "last_issuance_block_time": 1727079776, + "first_issuance_block_time": 1727089768, + "last_issuance_block_time": 1727089772, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 19, @@ -3510,16 +3569,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727079755, - "last_issuance_block_time": 1727079767, + "first_issuance_block_time": 1727089751, + "last_issuance_block_time": 1727089764, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 0, @@ -3527,8 +3586,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1727079735, - "last_issuance_block_time": 1727079751, + "first_issuance_block_time": 1727089730, + "last_issuance_block_time": 1727089747, "supply_normalized": "0.00000000" } ], @@ -3539,17 +3598,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "block_hash": "1a5528b36801a6265f442091aa835cd3dde947c089da6295ff0f8fc630f0e0a5", - "block_time": 1727080022, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", + "block_time": 1727090024, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1", + "utxos_info": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3585,23 +3644,23 @@ }, { "tx_index": 56, - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "block_index": 190, - "block_hash": "27631674929a77b7907c42d4559d560e994bddb1c5dc880e51ac065952ccc04b", - "block_time": 1727080007, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "4b99bbc6808e4b765e983849737aafe5ef708306f5c65833991a73d0cce49c33", + "block_time": 1727090019, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "data": "460233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "supported": true, - "utxos_info": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18:1", + "utxos_info": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "status": "valid" } }, @@ -3609,17 +3668,17 @@ }, { "tx_index": 55, - "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "block_index": 189, - "block_hash": "6fb0ca06b43613ffed61018fcb6082c59452492ba985576337703460a5a270f0", - "block_time": 1727079993, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "2923560e2bcacf6e73d9eff03c6d1595137115cb81061d215b3edaa9ff0e70ca", + "block_time": 1727090015, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d:1", + "utxos_info": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3655,17 +3714,17 @@ }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "block_hash": "48b2d19d551135b795db9414be8cef12acb0b131f1d153c2e457362aee6f39fa", - "block_time": 1727079989, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "3fa9c2277a64ed52b884ca2a17da14b49509020652eb361abe768ef64c58a8b1", + "block_time": 1727090011, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a34288aaa16cb6a9c7065f6fedddf0f15f400ec9803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc80c4fb36b92d4e34760a7faccb00cc7340befb1809400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380c7da25416c8a05ef76411973556de567bdc97a8a80b24ca3b3deb516bc15248b8c9c92dd48a1518ca780fa167162004bd108ffc4b1cfaf62ff500d14c741400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e:0", + "utxos_info": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3673,14 +3732,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -3688,7 +3747,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3707,17 +3766,17 @@ }, { "tx_index": 49, - "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", "block_index": 183, - "block_hash": "2bc00571147a36413c5643be3313556ea1395e88d0ca1a4863bea8ff75854e6e", - "block_time": 1727079968, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "block_hash": "4330a150c5e7206108e14d0ffd3cec0c33c681d56b494bffec379232028fa69e", + "block_time": 1727089990, + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d:1", + "utxos_info": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3759,20 +3818,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", + "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", "block_index": 153, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727079846, + "block_time": 1727089854, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -3794,9 +3853,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3811,7 +3870,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727080022, + "block_time": 1727090024, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3837,9 +3896,9 @@ }, { "tx_index": 55, - "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "block_index": 190, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3854,7 +3913,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727080007, + "block_time": 1727090019, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3880,9 +3939,9 @@ }, { "tx_index": 49, - "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", "block_index": 186, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3897,7 +3956,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727079980, + "block_time": 1727090002, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3923,9 +3982,9 @@ }, { "tx_index": 47, - "tx_hash": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", + "tx_hash": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", "block_index": 182, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3940,7 +3999,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727079898, + "block_time": 1727089916, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3971,10 +4030,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", + "tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -3999,13 +4058,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727079772 + "block_time": 1727089768 }, { - "tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", + "tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4030,13 +4089,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727079755 + "block_time": 1727089751 }, { - "tx_hash": "569b5d76c793d1fbd773e4c21c313d8d9bd4c08354834bd7fff4de4ba36e79c5", + "tx_hash": "bb99ad8dc9e2abcd6ec3a52b9cd21471fcbbf9b4d21c6a72ea69dcec59436f48", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4061,13 +4120,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727079751 + "block_time": 1727089747 }, { - "tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4092,7 +4151,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727079731 + "block_time": 1727089726 } ], "next_cursor": null, @@ -4101,127 +4160,127 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "14b14a8360be741c147b158caf79d5fcf98f9986207c8fe5fe42526940d1ddc1", + "tx_hash": "336b5e03756508a441266e3629a6ea97f2652ea3ccdc9453459d825b38a65a17", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "fairminter_tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "fairminter_tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079776, + "block_time": 1727089772, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } }, { - "tx_hash": "e275330435c460f35d517ef441e949efe2dda5aab87caac5a88eed45bebc604f", + "tx_hash": "8d49a34c9963f9211b6679edb54d613c8db35c6a98405ba0f25e0ab9c93a7c2b", "tx_index": 21, "block_index": 134, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "fairminter_tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "fairminter_tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079767, + "block_time": 1727089764, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } }, { - "tx_hash": "ef310c731fe0e412d40aaf73093d4b9c895a9e93c49834376e75bafefae9189a", + "tx_hash": "612d7e8119370fff298f17800d9d75f9a4ac40c829cfc574a0364e688f05f94a", "tx_index": 20, "block_index": 133, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "fairminter_tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "fairminter_tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079763, + "block_time": 1727089760, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } }, { - "tx_hash": "451d2d1096ddc99374296b711b4e3fc31032a76546b006d1765fde3a318fec83", + "tx_hash": "985be77c4294a50484a675bbd3d9da5953dba18532d0518caabe7c127730c884", "tx_index": 19, "block_index": 132, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "fairminter_tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "fairminter_tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079759, + "block_time": 1727089755, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } }, { - "tx_hash": "410b4f5830101c539dfbc12c092162b06f06a32b74696410059f62defe05a071", + "tx_hash": "5b1ebf326d704e905ec5b9ac0b6fb1898f7fe6e4353ab1f0c6326c3ea3e15bdd", "tx_index": 15, "block_index": 127, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "fairminter_tx_hash": "569b5d76c793d1fbd773e4c21c313d8d9bd4c08354834bd7fff4de4ba36e79c5", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "fairminter_tx_hash": "bb99ad8dc9e2abcd6ec3a52b9cd21471fcbbf9b4d21c6a72ea69dcec59436f48", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079739, + "block_time": 1727089734, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } }, { - "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", + "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079722, + "block_time": 1727089717, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } @@ -4233,22 +4292,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", + "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079722, + "block_time": 1727089717, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } @@ -4263,7 +4322,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4275,7 +4334,7 @@ "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "02000000000101c4fb1d2fe53ad7536b73d5141e8da047ebf3e8b9679ca360228ca07022e363b90000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff0200000000000000002b6a2989c3cfa1e720de3d5f646efca1c2e4d354f4f0ce80e1b27e6d99e9ecca7fdafcaa383e5307886f61963bb1052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "02000000000101b4b598cd41bc31759ebf6bee28904f2aa1175c771be894634d9524762fac1ce8000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0200000000000000002b6a29fe74f7aeed291791d734c55b11dae63870bc7e446476419ffc069c589dde961eb4e1b9563e5da9f70b3bb1052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4288,16 +4347,16 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587" + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8" }, "name": "btcpay", - "data": "434e5452505254590bf1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "data": "434e5452505254590b5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999975897, "btc_fee": 21103, - "rawtransaction": "02000000000101ac1f67aea80e88a5b2bfc4085f99b50356fe5c52b669438eeee67b4fcc966b760000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff03b80b00000000000016001452e48a2420dddb4d5239ee4f509da9a34bff777a00000000000000004b6a492444f87462277d1c2d4b9fb54cd142babed4b8260c32588f1dbfa94fad6b96c309dcef718a3e59d70365542fd2d02a43c31328304af1f5739f5d9c6fc657feb3a9f858a212bbfa67aed993052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "020000000001018490d82f5ee2dc69c5f6fd9dba66003d99787608a9ec612280008517efe723cb000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff03b80b0000000000001600143e5479d90ea1664716c42ff6cd46077c13ccd47300000000000000004b6a49cbd9df07d2c0cf1faceab3f0edb6f6419178b8a63a7e1e03b185ff36066d2dd235d3935fdcb6871e51592e162833edfb0957298045a65d09352536edc99b4bee0a17c7decdb6e47b78d993052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4310,7 +4369,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "quantity": 1000, "overburn": false }, @@ -4320,22 +4379,22 @@ "btc_out": 1000, "btc_change": 4999983584, "btc_fee": 15416, - "rawtransaction": "020000000001017ec6e6c7b47e70f5c63db14d799b147a8a423ac1083c60da8e3c25886e3449c90000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000" + "rawtransaction": "02000000000101f361033ca8ff78cfe2c7ccd8395a2200ac958126a35cf9ae4ac360fee67aff41000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "offer_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f" + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "offer_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d" }, "name": "cancel", - "data": "434e5452505254594642351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "data": "434e54525052545946bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "02000000000101d74dd7c27ce8b005421eeb92026137926d6782e7ae0ba5bfac9ce6f6cd2abd1c0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff0200000000000000002b6a297b9bb73acef081463740905279c7fe6eaa2af600a703212db716ba19f8cf3632b13ed66d39b40e27073bb1052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "0200000000010166ea96e8827d7da9ccc3935789e2f358b0dd57ef70f4df9babce0b3ee3426003000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0200000000000000002b6a29edeb6da89b03d0bac7ce2725a3c19ca4b64dedfda8d0f252d9955856c5d051d9a008834400300837ae3bb1052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4348,7 +4407,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4367,7 +4426,7 @@ "btc_out": 0, "btc_change": 4999984036, "btc_fee": 15964, - "rawtransaction": "020000000001010fc9eeafc4e63c4e40bbeca65c297455eb5a3414100fa303055d96706f4aae420000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000226a205c6cb1e1bcbfabc97cde4a324c2abc09dbb8974f048899f47c6f158c875271f7a4b3052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "020000000001018976a99b326a0dc82cf6e0e5fed53708928ca98a81d8f0cfa7b7125a1424561a000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000226a20881c0df8401793cdfcece793396094a09e0915766a089c2d106205a9e68a7efba4b3052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4380,7 +4439,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", + "source": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4404,7 +4463,7 @@ "btc_out": 0, "btc_change": 4949953351, "btc_fee": 16649, - "rawtransaction": "02000000000101318dbcf475c4b874032fb3f2989349d0695ce469256206b74ca91d4bf5dd0f74020000001600146fc1e09d3d25a8b78c9345abf4733cb0d5882240ffffffff0200000000000000002c6a2a0fae3d503f5f272030f6827403ad73dd0638811e90eb26779a736dd6aa8874775d80d294e1be2127cb07474b0a27010000001600146fc1e09d3d25a8b78c9345abf4733cb0d588224002000000000000", + "rawtransaction": "020000000001012a3cd6a47ff542d48d0438c9c75876eab28b1c2e4563d535f366eb89776eaacc0200000016001401d840dfc6dc260745ae69084785f48258eb45baffffffff0200000000000000002c6a2a8ca5fc6e87e042c2e3aab97566b9033d1baccced54f9b60eafc388ac3b4cd95c62e97630ebccdd5babf0474b0a270100000016001401d840dfc6dc260745ae69084785f48258eb45ba02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4417,14 +4476,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -4443,7 +4502,7 @@ "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "02000000000101772a424f64e888d103ad6b444d8961fdc2d084997e207128a7204a916c8fd7f70000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000236a214264b2defd026c9f8b058fbc9a3ccc8ef14a1635eeef08f1af470f75ac2a94dde160b3052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "020000000001013c7f0b32e7fb4d3ba8a7b73836b864035340234f09cf4622cdef5734b4dbbe11000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000236a21a95ab6bd82627fe910fc48fa44001f03c85813455ab3eccb65502acea69a8d126c60b3052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4456,10 +4515,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "transfer_destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "lock": false, "reset": false, @@ -4472,7 +4531,7 @@ "btc_out": 546, "btc_change": 4999981092, "btc_fee": 18362, - "rawtransaction": "020000000001013e0e4bd74e37b6311b78dfa53052df39d250afdb47bc36a4b5b1d1cff37d22700000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff03220200000000000016001452e48a2420dddb4d5239ee4f509da9a34bff777a0000000000000000236a21793f612862b2a7beb9354b99022fde7eec9d9d301bde3705a9dac4a697fda9d23c24a8052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "02000000000101000425aa8500aea9b9d5cb296947b0b6d71f64cf8dd639b63f5a2883de8bad6d000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0322020000000000001600143e5479d90ea1664716c42ff6cd46077c13ccd4730000000000000000236a21cc8ec18aca84767b144ecbac109c4b6812357f9bc58bdcbfa8f667098e2d2853ab24a8052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4485,16 +4544,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", 1 ], [ "MYASSETA", - "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", 2 ] ], @@ -4502,12 +4561,12 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e5452505254590300028052e48a2420dddb4d5239ee4f509da9a34bff777a80a34288aaa16cb6a9c7065f6fedddf0f15f400ec98f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e545250525459030002803e5479d90ea1664716c42ff6cd46077c13ccd47380c7da25416c8a05ef76411973556de567bdc97a8a8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999936609, "btc_fee": 61391, - "rawtransaction": "020000000001041c554d8764ee6d119d016e24d0fd65836743d8c4438d4388402a77d13c0f3fd20000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffffadac142c6837041de85d3e045f73fef9916d18e6a25bf17bfec4ecb93a8fe9ea0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffffa1840467c0f27dac03f476fdd70722f7daaf74e05a784db506cbd965c2a6b6e10000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff407819504dc30f57271a653a15452cf5d9d82e21aabcde9a21e948e2de95be5a0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff03e803000000000000695121035936f288e6a2e950c979417d5d4f3b446d71e718be0171a8a37da80355f4c99821030d4ea50d0e48026aeb23250c93265a474eb2733f2305c331f13f68345df2cad121038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53aee803000000000000695121025636f288e6a2e950c95a3610af71bbef6bd13ac3ff46d3cd5b0d35aaf6bf36fc21037a346dae4cc0a8cb879584cb957935aa93428060630b0abed3770d58319de65e21038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53ae61d016a80400000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000002000002000002000000000000", + "rawtransaction": "02000000000104be380ad9f6118df88b30e5ba9df40f45180c2e4578fd44bd16bbe32537dc30c5000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff7070290d1c1af1350dbf89f6d850b13bbf26df47a4a85d899375c522a73a2fad000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0a29fba38b0824e461b534ecc37540382cccfae1ac9451e166b3acf0d4056c11000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffffdb75b1232299c696cc2b5ca1707bedcba354f3412e2128dcf5554ddb766cafe2000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff03e80300000000000069512102eaa8c97299750142bc49ab3dd0b3442290d87e85e1d4b3933c22e3ae2517f42c210302ad2794f10b8d00c7f2173dc385a052af1e6a5a204f1df4b3dfdc796820fb5d2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee80300000000000069512102e5a8c97299750142bc6adc5022e1747a6b56dfe3aad7ec377dcfa5a9590438bc2102d6deef532b2ecc6c4df7f04b829cd307c2fb0fe7e935977b9197b915044fd74e2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653ae61d016a8040000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4520,7 +4579,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4537,7 +4596,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -4551,7 +4610,7 @@ "btc_out": 0, "btc_change": 4999982734, "btc_fee": 17266, - "rawtransaction": "020000000001016bb7fc25808190b208c7dee271094aa0043a6a1115ee3a5a4dd815e4fb562dad0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000356a33785afb04d6d852d87fb2a584ccd9fa32c43efbcf88f97f71c6287280dc1cca56e96c428ce017a2b255f178b9d53bdba5b8bde48eae052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "02000000000101928834522e5fdb45cc387ed9c78a3d7ed808b04988bcb5e354444a3c00305ee7000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000356a33c97bbef8ea2d606a49d860a2b66e866b30ffc12f6625b1b2cb00c5f0270cc1225425393eae0fea5f402c4197742a38e5220d078eae052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4564,8 +4623,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4581,12 +4640,12 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880a34288aaa16cb6a9c7065f6fedddf0f15f400ec9", + "data": "434e54525052545902000000000000000100000000000003e880c7da25416c8a05ef76411973556de567bdc97a8a", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983077, "btc_fee": 16923, - "rawtransaction": "02000000000101583853bdbca05f1cdf88aa192b5724cd3c1d8943b14521aa3e16e452c1140ebc0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000306a2ea68afc5bb95bc1f3c8552f311d0fa507ad98eae55ec7547df98ecf025cd6a9575a98771a161e046bebe05c4c39afe5af052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "02000000000101c20d010724af411a2a247fe4dd5848d2b83a47b9fe770cf250ace476a9d4c941000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000306a2ea8baea27a49118c0c972ff0e0197e5821c7ad67e9aa2b4e864831807efeca4c94f8ade8a47195c988596dd65a692e5af052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4599,18 +4658,18 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480a34288aaa16cb6a9c7065f6fedddf0f15f400ec907ffff", + "data": "434e5452505254590480c7da25416c8a05ef76411973556de567bdc97a8a07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "02000000000101c13a33a55cc4da0d2015c90055619d8f698bd233a8932626abe7fb410f6d728f0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000236a21f5683d8a2a94cc1d0a114e32e61328b41906dc7a99c1e01fc32a5610f42873b3c660b3052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "020000000001016e81923da0987e761c47ff80393af0bea0a0b5ef1679b1b76878c68753d01c31000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000236a21e50cc89fd41bab833f848e0b2e4649e3ce7243b5baf441d6c57493d2abfa88d82b60b3052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4623,8 +4682,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "quantity": 1000 }, "name": "dispense", @@ -4633,7 +4692,7 @@ "btc_out": 1000, "btc_change": 4949850214, "btc_fee": 16786, - "rawtransaction": "02000000000101ff2c684a2b3d82813b501e504a4ec3237268859122c8b8d44cc928038298d9a002000000160014a34288aaa16cb6a9c7065f6fedddf0f15f400ec9ffffffff03e803000000000000160014c4fb36b92d4e34760a7faccb00cc7340befb180900000000000000000c6a0ac4557a1a4ec1b4698b2d66b8082701000000160014a34288aaa16cb6a9c7065f6fedddf0f15f400ec902000000000000", + "rawtransaction": "02000000000101dea30e8328b8079583b96c3ef77f9b7009ce379259fb87bcd088633f21a61c8302000000160014c7da25416c8a05ef76411973556de567bdc97a8affffffff03e803000000000000160014fa167162004bd108ffc4b1cfaf62ff500d14c74100000000000000000c6a0ac01c12de2331cceff02a66b8082701000000160014c7da25416c8a05ef76411973556de567bdc97a8a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4646,7 +4705,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4671,7 +4730,7 @@ "btc_out": 0, "btc_change": 4999983008, "btc_fee": 16992, - "rawtransaction": "02000000000101edba6678b60b30b896b07bab835b2d27bff4f1a2ef3b0c85fa9d8d509f52fcf70000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000316a2fbc78ad6877f92c6c9063a5baac60ccec90497166faa0e149f52233bcb3765d0c14e4506413953908cdfd54360727a2a0af052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "02000000000101aa7ce43971254a90d4ccc6b79aa2ef799a9a4b00bbedbd1942eae5c1b55a2af2000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000316a2f715c94a7f4fb2b8ff0d449110ddebde8509f5199e9d24d15a03d253a7d71824a88a648920d2907b225109a6f72df18a0af052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4684,13 +4743,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -4702,7 +4761,7 @@ "btc_out": 0, "btc_change": 4999984858, "btc_fee": 15142, - "rawtransaction": "02000000000101d8db8bab8b2eaf45e73ae61cf0e4ad3217dca2cda44ed3beaaf3fbd8503874850000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff020000000000000000166a148520f4de8ca9160dae71e4febe1a279bc99d6ad3dab6052a0100000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000000000000", + "rawtransaction": "020000000001013d689999212a122c2985028b16378a094bf53062bf1faf12a751052a4bd35754000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000166a14257a90a16c25b2e5f878513a635d0805d4678aeadab6052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4715,8 +4774,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f:1", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0:3", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4729,12 +4788,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317132746a67356670716d6864353635336561653834703864663564396c37616d366c61746e6d737c343233353165336263373537343737303430656461633231626163323031623732663735633863356438633139383163363338663061653966396533636130663a317c5843507c31303030", + "data": "434e54525052545964626372743171386532386e6b677735396e7977396b79396c6d7636337338307366756534726e756b6b64637a7c333937386436636233666530613664613830356136323037313461643262633330346530383264373331343263643831303732396338356338623462313264303a337c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999905256, "btc_fee": 91744, - "rawtransaction": "020000000001065d9d5d90602ef0c63cb5c2f71c7207444cfd796ffca66aefdaa9695d50103d790000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff24919df9818f2c23b2c17a43c1eacaf7901ee30d5a484b7c1dbff0890add1bc90000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff960d83f080a9bdef42307111b9cffda8333e9a0a370885b4fc04f981e47107450000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff7ec16616b32c7d5dee428c48e00c530e88d847cf523531cceb4156ba9c835ab20000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffffb9c801d65b42082b83c53cd94b6a23e75bfff63c8bc0f4cc461a7fcc40f3e34d0000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff56ea4b7bea9f3325571561e9a5dd52b5d0ab9ef0597ba27739e9f6cefcdabb940000000016001452e48a2420dddb4d5239ee4f509da9a34bff777affffffff04e80300000000000069512102c21d5b917e87e3c707f56838bbb4a555358a3acd795502d40b60e5924b4c187a21030565a6c1e374202dc5c9d9121b372d2fef734dc230371b16b84f3c675a4e34a021038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53aee80300000000000069512102c21d5b917e87e3c707f3696cfcf7a01330ce649a295713c65439e3c61e4b1b3021025166f4cbb1332d2a9b9f884f4f637d7be12e4f806d620e5aed183634524e340321038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53aee80300000000000069512103e81d5b917e87e3c707f26b6baffaa5585fbd00d67d034295660881a77d792b4521026004c3f9d7041849a3fcbd2b77004c42d91f2cb65e5a686a8c7d0f526b2b07c221038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c53aee83922fc0600000016001452e48a2420dddb4d5239ee4f509da9a34bff777a02000002000002000002000002000002000000000000", + "rawtransaction": "020000000001062333447ebbea0fd6a2a225010dccc6d3c5477c35a8acef277d20e91565d7c347000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffffc1d16b68605c411e45ad8e0397dac1b581a6df12f2f06fe2af40ff24e952d19e000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffffbf74197d364fdbe426f1daaec1c656e575ed2231d18da43348467151bae2522c000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0b32d484d9546ad3bef76d6dc3906513d3b8a82998967e49c9130849194a8fcb000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473fffffffffabcd8acadac9fb2cacb64d909a9948acdc57c7c19105ae5560d7272811de972000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffffb8523f38389b9e6699298411af04bac6a1cd1713eaf4a97bac2c71bedf70eb4e000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff04e80300000000000069512102be6824c9c2837855acb7c2552a01165fbb89f27130a7ff4a4f8cd8111cc905ac2103efa04bf310d554e2f9edaa566eaeae7459e864db0620471418ac9a1078c967262103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee80300000000000069512102be6824c9c2837855acb193503d454618e78df8796badae0f4a82875c0a945c242102f4fa14ae528657a9f3b9ee032affa86553a53e805571040b13a0ce107ecb66d92103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee80300000000000069512102946824c9c2837855ace29252684f1452dbaf90356ffca80d7ab5b6686bf06e1821029699279e66e36791c1ddd9301bcb9a06379d0fb062433d682b95ad281cff04e62103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee83922fc060000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4747,8 +4806,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6:1", - "destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c:1", + "destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4761,12 +4820,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964616239356165663730393934303131363336633463663561366234393365363262613835623665653664616435363030373366373633373037323263616563363a317c62637274317132746a67356670716d6864353635336561653834703864663564396c37616d366c61746e6d737c5843507c31303030", + "data": "434e54525052545964613239393834616131613833316366616539306235336338303930306666396431303865353735613365633736636138646563663666363138653163356130633a317c626372743171386532386e6b677735396e7977396b79396c6d7636337338307366756534726e756b6b64637a7c5843507c31303030", "btc_in": 4949874900, "btc_out": 3000, "btc_change": 4949842164, "btc_fee": 29736, - "rawtransaction": "02000000000101c6ae2c727063f7730056ad6deeb685ba623e496b5acfc43616019409f7ae95ab01000000160014f8caf7a9624245ce6d99873e6a23fae0cea1ba18ffffffff04e80300000000000069512102906ba90f50b7c69a6996b9ae8a8bc3f5b011eb413ef6533720c6146e82ec58a321028ed7b4e539ac78f91700a87cb9982e5cb9e5aa0df423a047545b5d806495b2fc2103f654d28f2d46209875e943be3d1b1b665651813787556caecbd1c8b9e2c71c4e53aee80300000000000069512103906ba90f50b7c69a69c4ebfb838990a2b547be1b31f8527a7393552cd0a9099e21039c88b2e63de830a71a52af28ed937e5feab8fb4ba826a24706520180369eb3b42103f654d28f2d46209875e943be3d1b1b665651813787556caecbd1c8b9e2c71c4e53aee80300000000000069512103ba6ba90f50b7c69a699eb9b8ddd3d1ec8e658b0436f2533611f02758e1d83b6d2103e8e2d5d35b9841ca72369a1ed8a01b3e8f80cf3b9042c472626b6db757f385b12103f654d28f2d46209875e943be3d1b1b665651813787556caecbd1c8b9e2c71c4e53aef498082701000000160014f8caf7a9624245ce6d99873e6a23fae0cea1ba1802000000000000", + "rawtransaction": "020000000001010c5a1c8e616fcfdea86cc73e5a578e109dff0009c8530be9fa1c831aaa8499a201000000160014e4967dc95a9dc087b320508b527a8ba2f1641404ffffffff04e8030000000000006951210338cb0920482201a454429a0b10c677b9c57a58e648ef9f97e8160f1fa75ac903210251e0e4c133f7e8f49b4a561bec2b72b93b0a59a5e5b0a29f1dfaefdd745c6c4c2102e211c75c1f658711fb2f12f9538ca309f92b3e249f764e2a1bb312f311c8e81453aee8030000000000006951210338cb0920482201a454109d0f18c72abcc72e08b713e69f88ec141852a649c46d210207b1e49f61a0afa7c41d4b5de5786eb560524ea0b3a0ad990dfda2dc254d640f2102e211c75c1f658711fb2f12f9538ca309f92b3e249f764e2a1bb312f311c8e81453aee8030000000000006951210312cb0920482201a4545390524d9c35f1fc5839fb41ec9ec48e776a269738fc5421026283dcf10ac7d892fd73322adc13178c0c3f389680d395a97e9bd7b9113f0ad82102e211c75c1f658711fb2f12f9538ca309f92b3e249f764e2a1bb312f311c8e81453aef498082701000000160014e4967dc95a9dc087b320508b527a8ba2f164140402000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4782,8 +4841,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 10000000000, @@ -4791,16 +4850,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727079860, - "last_issuance_block_time": 1727079868, + "first_issuance_block_time": 1727089867, + "last_issuance_block_time": 1727089896, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", - "owner": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", + "issuer": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", + "owner": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", "divisible": true, "locked": false, "supply": 100000000000, @@ -4808,16 +4867,16 @@ "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1727079855, - "last_issuance_block_time": 1727079855, + "first_issuance_block_time": 1727089863, + "last_issuance_block_time": 1727089863, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 100000000000, @@ -4825,16 +4884,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727079822, - "last_issuance_block_time": 1727079822, + "first_issuance_block_time": 1727089828, + "last_issuance_block_time": 1727089828, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 40, @@ -4842,16 +4901,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727079772, - "last_issuance_block_time": 1727079776, + "first_issuance_block_time": 1727089768, + "last_issuance_block_time": 1727089772, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 19, @@ -4859,8 +4918,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727079755, - "last_issuance_block_time": 1727079767, + "first_issuance_block_time": 1727089751, + "last_issuance_block_time": 1727089764, "supply_normalized": "0.00000019" } ], @@ -4872,8 +4931,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 10000000000, @@ -4881,15 +4940,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1727079718, - "last_issuance_block_time": 1727079731, + "first_issuance_block_time": 1727089713, + "last_issuance_block_time": 1727089726, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4897,14 +4956,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4912,7 +4971,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -4924,7 +4983,7 @@ }, "/v2/assets//balances/
": { "result": { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4943,9 +5002,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4960,7 +5019,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727080022, + "block_time": 1727090024, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4986,9 +5045,9 @@ }, { "tx_index": 55, - "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "block_index": 190, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5003,7 +5062,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727080007, + "block_time": 1727090019, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5029,9 +5088,9 @@ }, { "tx_index": 52, - "tx_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "tx_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "block_index": 186, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -5046,7 +5105,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727079980, + "block_time": 1727090002, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5072,9 +5131,9 @@ }, { "tx_index": 50, - "tx_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "tx_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "block_index": 185, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5089,7 +5148,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727079976, + "block_time": 1727089998, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5115,9 +5174,9 @@ }, { "tx_index": 49, - "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", "block_index": 186, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5132,7 +5191,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727079980, + "block_time": 1727090002, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5163,13 +5222,13 @@ "/v2/assets//matches": { "result": [ { - "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "tx0_index": 49, - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 52, - "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", - "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5183,7 +5242,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727079980, + "block_time": 1727090002, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5203,13 +5262,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "tx0_index": 49, - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 50, - "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", - "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5223,7 +5282,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727079976, + "block_time": 1727089998, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5243,13 +5302,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", "tx0_index": 47, - "tx0_hash": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 48, - "tx1_hash": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", - "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "tx1_hash": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5263,7 +5322,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727079898, + "block_time": 1727089916, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5290,20 +5349,20 @@ "result": [ { "block_index": 192, - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5311,20 +5370,20 @@ }, { "block_index": 125, - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "aba09e8187e96520b24e280f230363e20f8f4b7a2c1f87395b3b7c4e5ccccd4a", + "event": "acf48dd0934a72afc03c4f60973d9546548128c16f7dd8a2d27d53d9cefd51d2", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079731, + "block_time": 1727089726, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5332,20 +5391,20 @@ }, { "block_index": 124, - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153", + "event": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079726, + "block_time": 1727089722, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5353,20 +5412,20 @@ }, { "block_index": 124, - "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", + "event": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079726, + "block_time": 1727089722, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5378,16 +5437,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153", + "event": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079726, + "block_time": 1727089722, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5401,16 +5460,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "event": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -5422,16 +5481,16 @@ }, { "block_index": 192, - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -5443,16 +5502,16 @@ }, { "block_index": 192, - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -5464,16 +5523,16 @@ }, { "block_index": 191, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "event": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727080022, + "block_time": 1727090024, "asset_info": { "divisible": true, "asset_longname": null, @@ -5485,16 +5544,16 @@ }, { "block_index": 189, - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079993, + "block_time": 1727090015, "asset_info": { "divisible": true, "asset_longname": null, @@ -5512,20 +5571,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", + "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", "block_index": 153, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727079846, + "block_time": 1727089854, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5547,14 +5606,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "aba09e8187e96520b24e280f230363e20f8f4b7a2c1f87395b3b7c4e5ccccd4a", + "tx_hash": "acf48dd0934a72afc03c4f60973d9546548128c16f7dd8a2d27d53d9cefd51d2", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -5569,20 +5628,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727079731, + "block_time": 1727089726, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153", + "tx_hash": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -5597,20 +5656,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727079726, + "block_time": 1727089722, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", + "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -5625,20 +5684,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727079722, + "block_time": 1727089717, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -5653,7 +5712,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1727079718, + "block_time": 1727089713, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5665,10 +5724,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5676,7 +5735,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "divisible": true, "asset_longname": null, @@ -5689,10 +5748,10 @@ }, { "tx_index": 53, - "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68", + "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794", "block_index": 187, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5700,7 +5759,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079984, + "block_time": 1727090007, "asset_info": { "divisible": true, "asset_longname": null, @@ -5713,10 +5772,10 @@ }, { "tx_index": 42, - "tx_hash": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", + "tx_hash": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", "block_index": 155, - "source": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9:0", - "destination": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6:1", + "source": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7:0", + "destination": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5724,7 +5783,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079855, + "block_time": 1727089863, "asset_info": { "divisible": true, "asset_longname": null, @@ -5737,10 +5796,10 @@ }, { "tx_index": 41, - "tx_hash": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9", + "tx_hash": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7", "block_index": 154, - "source": "1e8a7f0d682c559f76df39d59c42e226bb21b74c4825ebc69640eb61dab672ec:0", - "destination": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9:0", + "source": "53811a32e206a65da3b210d98250f6fcb76f9b6be3271e87c0cdfb8c512dd590:0", + "destination": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5748,7 +5807,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079851, + "block_time": 1727089858, "asset_info": { "divisible": true, "asset_longname": null, @@ -5767,18 +5826,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "last_status_tx_hash": null, - "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5788,7 +5847,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727079818, + "block_time": 1727089824, "asset_info": { "divisible": true, "asset_longname": null, @@ -5804,9 +5863,9 @@ }, { "tx_index": 30, - "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", + "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", "block_index": 144, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5815,7 +5874,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5825,7 +5884,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079809, + "block_time": 1727089816, "asset_info": { "divisible": true, "asset_longname": null, @@ -5841,9 +5900,9 @@ }, { "tx_index": 29, - "tx_hash": "b16d62f7019440d104a33daf489474a166d0013d0fe9cdd515da181e91bf44aa", + "tx_hash": "3a6af3e11c6339f8caf016fedef2856a68de90aa0e72317b4ee81e38c80c4fdd", "block_index": 142, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5852,7 +5911,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "origin": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5862,7 +5921,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079802, + "block_time": 1727089797, "asset_info": { "divisible": true, "asset_longname": null, @@ -5878,9 +5937,9 @@ }, { "tx_index": 26, - "tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5889,7 +5948,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5899,7 +5958,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -5920,9 +5979,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 30, - "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", + "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", "block_index": 144, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5931,7 +5990,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5941,7 +6000,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079809, + "block_time": 1727089816, "asset_info": { "divisible": true, "asset_longname": null, @@ -5969,7 +6028,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5977,7 +6036,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -5986,7 +6045,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -5994,7 +6053,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6003,7 +6062,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -6011,7 +6070,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6020,7 +6079,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -6035,27 +6094,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", - "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "last_status_tx_hash": null, - "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6070,7 +6129,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727079818, + "block_time": 1727089824, "asset_info": { "divisible": true, "asset_longname": null, @@ -6084,19 +6143,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", + "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6104,7 +6163,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6119,7 +6178,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -6133,19 +6192,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", + "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", "block_index": 140, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6153,7 +6212,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6168,7 +6227,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079793, + "block_time": 1727089788, "asset_info": { "divisible": true, "asset_longname": null, @@ -6189,8 +6248,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "owner": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false, "supply": 0, @@ -6198,8 +6257,8 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1727079864, - "last_issuance_block_time": 1727079864, + "first_issuance_block_time": 1727089881, + "last_issuance_block_time": 1727089881, "supply_normalized": "0.00000000" } ], @@ -6209,10 +6268,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6237,7 +6296,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727079731 + "block_time": 1727089726 } ], "next_cursor": null, @@ -6246,64 +6305,64 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "aba09e8187e96520b24e280f230363e20f8f4b7a2c1f87395b3b7c4e5ccccd4a", + "tx_hash": "acf48dd0934a72afc03c4f60973d9546548128c16f7dd8a2d27d53d9cefd51d2", "tx_index": 13, "block_index": 125, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", - "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079731, + "block_time": 1727089726, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } }, { - "tx_hash": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153", + "tx_hash": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075", "tx_index": 12, "block_index": 124, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", - "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079726, + "block_time": 1727089722, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } }, { - "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", + "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079722, + "block_time": 1727089717, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } @@ -6315,22 +6374,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "ef9954c27a3d60a9c3c3858fec3358f4be46f31578fa8f1cfa5ba6d392fa9aae", + "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "fairminter_tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727079722, + "block_time": 1727089717, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } @@ -6343,9 +6402,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6360,7 +6419,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727080022, + "block_time": 1727090024, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6386,9 +6445,9 @@ }, { "tx_index": 55, - "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "block_index": 190, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6403,7 +6462,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727080007, + "block_time": 1727090019, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6429,9 +6488,9 @@ }, { "tx_index": 52, - "tx_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "tx_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "block_index": 186, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6446,7 +6505,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727079980, + "block_time": 1727090002, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6472,9 +6531,9 @@ }, { "tx_index": 50, - "tx_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "tx_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "block_index": 185, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6489,7 +6548,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727079976, + "block_time": 1727089998, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6515,9 +6574,9 @@ }, { "tx_index": 49, - "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", "block_index": 186, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6532,7 +6591,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727079980, + "block_time": 1727090002, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6563,9 +6622,9 @@ "/v2/orders/": { "result": { "tx_index": 57, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6580,7 +6639,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727080022, + "block_time": 1727090024, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6608,13 +6667,13 @@ "/v2/orders//matches": { "result": [ { - "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "tx0_index": 49, - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 52, - "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", - "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6628,7 +6687,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727079980, + "block_time": 1727090002, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6648,13 +6707,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "tx0_index": 49, - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 50, - "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", - "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6668,7 +6727,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727079976, + "block_time": 1727089998, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6695,15 +6754,15 @@ "result": [ { "tx_index": 51, - "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", + "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", "block_index": 185, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "btc_amount": 2000, - "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "status": "valid", "confirmed": true, - "block_time": 1727079976, + "block_time": 1727089998, "btc_amount_normalized": "0.00002000" } ], @@ -6714,9 +6773,9 @@ "result": [ { "tx_index": 57, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6734,7 +6793,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727080022, + "block_time": 1727090024, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6760,9 +6819,9 @@ }, { "tx_index": 55, - "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "block_index": 190, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6780,7 +6839,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727080007, + "block_time": 1727090019, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6806,9 +6865,9 @@ }, { "tx_index": 52, - "tx_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "tx_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "block_index": 186, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6826,7 +6885,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727079980, + "block_time": 1727090002, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6852,9 +6911,9 @@ }, { "tx_index": 50, - "tx_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "tx_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "block_index": 185, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6872,7 +6931,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727079976, + "block_time": 1727089998, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6898,9 +6957,9 @@ }, { "tx_index": 49, - "tx_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", "block_index": 186, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6918,7 +6977,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727079980, + "block_time": 1727090002, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6949,13 +7008,13 @@ "/v2/orders///matches": { "result": [ { - "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "tx0_index": 49, - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 52, - "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", - "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6972,7 +7031,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727079980, + "block_time": 1727090002, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6992,13 +7051,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "tx0_index": 49, - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 50, - "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", - "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7015,7 +7074,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727079976, + "block_time": 1727089998, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7035,13 +7094,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", "tx0_index": 47, - "tx0_hash": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 48, - "tx1_hash": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", - "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "tx1_hash": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7058,7 +7117,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727079898, + "block_time": 1727089916, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7084,13 +7143,13 @@ "/v2/order_matches": { "result": [ { - "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "tx0_index": 49, - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 52, - "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", - "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7104,7 +7163,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727079980, + "block_time": 1727090002, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7124,13 +7183,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "tx0_index": 49, - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 50, - "tx1_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", - "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7144,7 +7203,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727079976, + "block_time": 1727089998, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7164,13 +7223,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", + "id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", "tx0_index": 47, - "tx0_hash": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_hash": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx1_index": 48, - "tx1_hash": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", - "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "tx1_hash": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7184,7 +7243,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727079898, + "block_time": 1727089916, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7229,66 +7288,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "913a6e309d29d939a9b42c5b239eda58fd12b57ab1aefd856fe908cc2f03c87a", + "tx_hash": "6a8c5d264053a3fe132a67dfd75f6b75be30fbcc6338e9b6df1e8537ac9908e3", "block_index": 121, - "source": "bcrt1qtlpkqnw458wcn6ggjgl0qhncr5azj57dwx79c9", + "source": "bcrt1qwp3vs8yzyz6lc0udjsz37s78rwa908kzgnm7yu", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1727079713, + "block_time": 1727089709, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "23ad1009c59d686328df3821813909176348ca6e1e56cb7b202e128adf338560", + "tx_hash": "063848e75c5fff12624ce719a4a817957db286aff18fe03a6c95a277a5da8258", "block_index": 120, - "source": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", + "source": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1727079709, + "block_time": 1727089705, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "4ca2ca199b3ee04e12640955c1b53d6b89ba9df69be6685d3c6d0444a9a4eb1e", + "tx_hash": "5e3d5bfcd850b9bb5fe0330972c9c0c3006ca502cbe308c24c89e02a84b2444a", "block_index": 119, - "source": "bcrt1qkwr9w42qzvnq5xgc696j57z7t2pe4tmzmx2nje", + "source": "bcrt1qr6g583q4apu77vem308rd09m65hmh5j5gly0mm", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1727079705, + "block_time": 1727089701, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "35289688c8de88663730c5b8f2f6842ad3fb0dc4cdfe162ba089a104bc04d407", + "tx_hash": "165a6c8507e1a26b393699c7b5f1edbe9fd62bbe8ff4047eea004a8469262dfe", "block_index": 118, - "source": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", + "source": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1727079701, + "block_time": 1727089697, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "324e90e34ddcca760891986a9243dedfbec99c1df8c445016da9df08c1fd821d", + "tx_hash": "591582bf8f85502b086d90fc4edd97cf117c8f8fdd92f958b40d006818dd9219", "block_index": 117, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1727079697, + "block_time": 1727089693, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7300,18 +7359,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "last_status_tx_hash": null, - "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7321,7 +7380,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727079818, + "block_time": 1727089824, "asset_info": { "divisible": true, "asset_longname": null, @@ -7337,9 +7396,9 @@ }, { "tx_index": 30, - "tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", + "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", "block_index": 144, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7348,7 +7407,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7358,7 +7417,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079809, + "block_time": 1727089816, "asset_info": { "divisible": true, "asset_longname": null, @@ -7374,9 +7433,9 @@ }, { "tx_index": 29, - "tx_hash": "b16d62f7019440d104a33daf489474a166d0013d0fe9cdd515da181e91bf44aa", + "tx_hash": "3a6af3e11c6339f8caf016fedef2856a68de90aa0e72317b4ee81e38c80c4fdd", "block_index": 142, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7385,7 +7444,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "origin": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7395,7 +7454,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079802, + "block_time": 1727089797, "asset_info": { "divisible": true, "asset_longname": null, @@ -7411,9 +7470,9 @@ }, { "tx_index": 26, - "tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7422,7 +7481,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7432,7 +7491,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -7453,9 +7512,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7464,7 +7523,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7474,7 +7533,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -7494,19 +7553,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", + "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7514,7 +7573,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7529,7 +7588,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -7543,19 +7602,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", + "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", "block_index": 140, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7563,7 +7622,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7578,7 +7637,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079793, + "block_time": 1727089788, "asset_info": { "divisible": true, "asset_longname": null, @@ -7597,20 +7656,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", + "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", "block_index": 153, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727079846, + "block_time": 1727089854, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -7631,20 +7690,20 @@ "/v2/dividends/": { "result": { "tx_index": 40, - "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", + "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", "block_index": 153, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727079846, + "block_time": 1727089854, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -7667,12 +7726,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", + "event": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", "tx_index": 40, - "utxo": "1e8a7f0d682c559f76df39d59c42e226bb21b74c4825ebc69640eb61dab672ec:0", - "utxo_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "utxo": "53811a32e206a65da3b210d98250f6fcb76f9b6be3271e87c0cdfb8c512dd590:0", + "utxo_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "confirmed": true, - "block_time": 1727079846, + "block_time": 1727089854, "asset_info": { "divisible": true, "asset_longname": null, @@ -7684,16 +7743,16 @@ }, { "block_index": 153, - "address": "bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd", + "address": "bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", + "event": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727079846, + "block_time": 1727089854, "asset_info": { "divisible": true, "asset_longname": null, @@ -7714,27 +7773,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", - "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", + "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", + "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", "transaction_count": 1, - "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", - "block_time": 1727080029 + "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", + "block_time": 1727090032 }, "tx_hash": null, "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "tx_index": 59 }, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 }, { "event_index": 533, @@ -7743,12 +7802,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "status": "valid", "tag": "64657374726f79", - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "tx_index": 59, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -7758,24 +7817,24 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 193, - "event": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "event": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -7785,25 +7844,25 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", "block_index": 193, - "block_time": 1727080029, + "block_time": 1727090032, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "tx_index": 59, - "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", + "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -7823,9 +7882,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 } ], "next_cursor": 530, @@ -7837,15 +7896,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", - "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", + "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", + "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", "transaction_count": 1, - "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", - "block_time": 1727080029 + "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", + "block_time": 1727090032 }, "tx_hash": null, "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 } }, "/v2/events/counts": { @@ -7880,16 +7939,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -7899,78 +7958,78 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", + "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727080007, + "block_time": 1727090019, "asset_info": { "divisible": true, "asset_longname": null, @@ -7980,24 +8039,24 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "block_index": 190, - "block_time": 1727080007 + "block_time": 1727090019 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "event": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "divisible": true, "asset_longname": null, @@ -8007,9 +8066,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "block_time": 1727079989 + "block_time": 1727090011 } ], "next_cursor": 490, @@ -8026,27 +8085,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", - "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "last_status_tx_hash": null, - "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8061,7 +8120,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727079818, + "block_time": 1727089824, "asset_info": { "divisible": true, "asset_longname": null, @@ -8075,19 +8134,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5bb37a77c3852c6dfdde4a9fcdead152d3bf13e3b7130b91b49eff31dba742b8", + "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8095,7 +8154,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8110,7 +8169,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079797, + "block_time": 1727089793, "asset_info": { "divisible": true, "asset_longname": null, @@ -8124,19 +8183,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c89fe1d75d9c34ab38d7022b034220ec12bd91c85b51f06522e9a3c4e2d383c6", + "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", "block_index": 140, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ad5ea1f3e34bed83abf889d848ca650982a281d2e5315c930f6867f03622fbd9", + "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8144,7 +8203,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8159,7 +8218,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727079793, + "block_time": 1727089788, "asset_info": { "divisible": true, "asset_longname": null, @@ -8178,10 +8237,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8189,7 +8248,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "divisible": true, "asset_longname": null, @@ -8202,10 +8261,10 @@ }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8213,11 +8272,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -8226,10 +8285,10 @@ }, { "tx_index": 54, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8237,11 +8296,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -8250,10 +8309,10 @@ }, { "tx_index": 53, - "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68", + "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794", "block_index": 187, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -8261,7 +8320,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079984, + "block_time": 1727090007, "asset_info": { "divisible": true, "asset_longname": null, @@ -8274,10 +8333,10 @@ }, { "tx_index": 42, - "tx_hash": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", + "tx_hash": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", "block_index": 155, - "source": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9:0", - "destination": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6:1", + "source": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7:0", + "destination": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8285,7 +8344,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727079855, + "block_time": 1727089863, "asset_info": { "divisible": true, "asset_longname": null, @@ -8304,14 +8363,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", + "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -8326,20 +8385,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079873, + "block_time": 1727089900, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "ee5b91c03af937b81687cba8cf5de88a889363660243b7f1e3d0721469e82475", + "tx_hash": "e6abd286bdba5ba6f4e5dbe333fd2ab733fb42428230b79b68741f9678c28897", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -8354,20 +8413,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727079868, + "block_time": 1727089896, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "913be4b557b8ae7b33fffad5a68eec87247e587ef1161d91310b90133a1cb304", + "tx_hash": "67c806f2224d86f97c2532de5cd43bca5dff4a3a6951b17b37dafc06cceada13", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -8382,20 +8441,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079864, + "block_time": 1727089881, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "c5f0754dd7d1082a77f739c930d90d5684bb394c04a01e9acf2c0a1742b4dc87", + "tx_hash": "f16fadc9b332b83f0383c930c2392d6d2c06410ff8f5ea2a9fa0b1ee4713590e", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -8410,20 +8469,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079860, + "block_time": 1727089867, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", + "tx_hash": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", - "issuer": "bcrt1qlr9002tzgfzuumvesulx5gl6ur82rwscy098mv", + "source": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", + "issuer": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", "transfer": false, "callable": false, "call_date": 0, @@ -8438,7 +8497,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079855, + "block_time": 1727089863, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8449,14 +8508,14 @@ "/v2/issuances/": { "result": { "tx_index": 46, - "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", + "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "transfer": false, "callable": false, "call_date": 0, @@ -8471,7 +8530,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727079873, + "block_time": 1727089900, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8480,16 +8539,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "fee_paid_normalized": "0.00600000" } ], @@ -8500,16 +8559,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727080026, + "block_time": 1727090028, "fee_paid_normalized": "0.00600000" } ], @@ -8520,9 +8579,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3", + "tx_hash": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d", "block_index": 138, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8530,14 +8589,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727079784, + "block_time": 1727089781, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "7145912710e264e9c5b45407d43bc8fd5318db28c30836a01c4862e2ded179d5", + "tx_hash": "d8c73b39bec3ca170f5db0ca4cf42abc7535513ef491131f8986f9b249de2aac", "block_index": 137, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8545,7 +8604,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727079780, + "block_time": 1727089777, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8555,9 +8614,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3", + "tx_hash": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d", "block_index": 138, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8565,17 +8624,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727079784, + "block_time": 1727089781, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", + "tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8600,13 +8659,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727079772 + "block_time": 1727089768 }, { - "tx_hash": "57995e125f07616fce0d90379d7aad0ff836c48e1fd8e25574b1eee6c63e55da", + "tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8631,13 +8690,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727079755 + "block_time": 1727089751 }, { - "tx_hash": "569b5d76c793d1fbd773e4c21c313d8d9bd4c08354834bd7fff4de4ba36e79c5", + "tx_hash": "bb99ad8dc9e2abcd6ec3a52b9cd21471fcbbf9b4d21c6a72ea69dcec59436f48", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8662,13 +8721,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727079751 + "block_time": 1727089747 }, { - "tx_hash": "790010495808d06ae67d4f73c48c11e91b27ac8d84a6407aa080fdf81cb77ba5", + "tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8693,7 +8752,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727079731 + "block_time": 1727089726 } ], "next_cursor": null, @@ -8707,8 +8766,8 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", - "address": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj" + "txid": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "address": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3" }, { "vout": 2, @@ -8716,8 +8775,8 @@ "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", - "address": "bcrt1qkwr9w42qzvnq5xgc696j57z7t2pe4tmzmx2nje" + "txid": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", + "address": "bcrt1qr6g583q4apu77vem308rd09m65hmh5j5gly0mm" } ], "next_cursor": null, @@ -8726,28 +8785,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "e0fb6c717053ccace6058ea89673a15dff5b190c77211ffd001c4094c8df382a" + "tx_hash": "20fa426beb275ab9aa19563cd3634c5e94a8a7b4fe7a8c4457baf6e2104f3028" }, { - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36" + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" }, { - "tx_hash": "f74a30e551d29833bf5668d23807958b12b122a6a619f14da90565fa098f7153" + "tx_hash": "cf60fbda90f616c1b78c427d1f5e43c972f4b2ce47c44d24b87fd88f9f25fb68" }, { - "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68" + "tx_hash": "dc60251c64cde9adfaf7ea84db0bdaf720119f8f0a796de3bd80fd32a8700e75" }, { - "tx_hash": "8ef179e266d7b41d18f9c03097396fe4b3ec9a584925e023130ca6e7104fe97e" + "tx_hash": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075" }, { - "tx_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587" + "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794" }, { - "tx_hash": "edcb65463b8df565685e14b28ef3bfb1c6b8a890786da55ad8c98f75aae755dc" + "tx_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8" }, { - "tx_hash": "49ef44a3197cb95a81e7d7af2f370d66b6a5aa5e622be34b111129c5c5eb2be9" + "tx_hash": "9c20a315f9dd83391105db586e409f6b237d721fe234db96ff0cab43fa5174af" } ], "next_cursor": null, @@ -8755,8 +8814,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 7, - "tx_hash": "f817a39de71520bece9563e033d9f5a46bac47ca12bf1c5ac954e0ea51113a58" + "block_index": 9, + "tx_hash": "19d7ad6a7debbabdf862640263659bfeb1a9916a4d80ae8d3146789b1cb56978" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -8767,17 +8826,17 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31" + "txid": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "038abb4218cc845faad5522b54c1fac220f49a484a1022cc9ee7d6cf5fd49acc8c" + "result": "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556" }, "/v2/bitcoin/transactions/": { - "result": "020000000001018f15e7684083d1f9423c84ed5c4afe1d69ac193d7036a02437756175460496980300000000ffffffff020000000000000000226a20491398ceb53d8e260f4143a231bd8209af9dcb656b81ea7a33cc97a98af87c92680b0a2701000000160014c4fb36b92d4e34760a7faccb00cc7340befb1809024730440220508d1f0f8e8d6ac4cecbe67fb5ef5086ab00963efb24f09e4be2bab5115e1d8f02205dffab35c8ebdd280d22fb55c2ebd0aadef1eca80fb98037e3a94e32222f3b5e01210245711205fa34c28180371a8e6a071cd643ec0f98772bebba59d21b2bf802372100000000" + "result": "020000000001010f37878f75c2f6c4b3e3fb5e7a69fec880c6a63f3bcae7d8afc7e7192f1292a50300000000ffffffff020000000000000000226a2060a32da42184ccea8214f59b284252342f58d0932c6adabcca89abc1cc505b65680b0a2701000000160014fa167162004bd108ffc4b1cfaf62ff500d14c7410247304402202ad0965c2307e9c401ff2e7cc89aa61b2f20800b61acc22d72f28514b754e0ac0220678c882ba6f89156de8da5eb81bc54c44c4a95e7a7ae537b7271e1aaac13eafd012102748e93e3b51c48fcf700c353ec69d192cd4c589703e899b4f8b2983d3a722c4b00000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 68517 @@ -8800,26 +8859,26 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "tx_index": 60 } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "memo": null, "quantity": 10000, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "status": "valid", - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "tx_index": 60, "asset_info": { "divisible": true, @@ -8832,19 +8891,19 @@ } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "CREDIT", "params": { - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -8856,19 +8915,19 @@ } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 193, - "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -8880,27 +8939,27 @@ } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727080033.9107606, + "block_time": 1727090046.9235783, "btc_amount": 0, - "data": "0200000000000000010000000000002710803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc", + "data": "020000000000000001000000000000271080b24ca3b3deb516bc15248b8c9c92dd48a1518ca7", "destination": "", "fee": 10000, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "tx_index": 60, - "utxos_info": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47:1", + "utxos_info": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "memo": null, "asset_info": { "divisible": true, @@ -8922,19 +8981,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "CREDIT", "params": { - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -8952,26 +9011,26 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "tx_index": 60 } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "memo": null, "quantity": 10000, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "status": "valid", - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "tx_index": 60, "asset_info": { "divisible": true, @@ -8984,19 +9043,19 @@ } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "CREDIT", "params": { - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -9008,19 +9067,19 @@ } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 193, - "event": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -9032,27 +9091,27 @@ } }, { - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727080033.9107606, + "block_time": 1727090046.9235783, "btc_amount": 0, - "data": "0200000000000000010000000000002710803d8f5aeb70ffd1d86a8a5e1a1962958dbb3db6bc", + "data": "020000000000000001000000000000271080b24ca3b3deb516bc15248b8c9c92dd48a1518ca7", "destination": "", "fee": 10000, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", - "tx_hash": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", "tx_index": 60, - "utxos_info": "91429b227e5a03c3ad9e693b599cf39f67057d7771132f1636b9d17c0475cf47:1", + "utxos_info": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "memo": null, "asset_info": { "divisible": true, @@ -9087,15 +9146,15 @@ "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", "block_index": 193, - "block_time": 1727080029, + "block_time": 1727090032, "difficulty": 545259519, - "previous_block_hash": "62a5a0581f3129f6c59cd7e1a71f17d82a2be32c5a9fa850fe39e048bb75aebf" + "previous_block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697" }, "tx_hash": null, "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 } ], "next_cursor": 518, @@ -9107,17 +9166,17 @@ "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "134137568116e7221a36eb3aaf1843493bca0140ad133029763597094475127e", + "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", "block_index": 193, - "block_time": 1727080029, + "block_time": 1727090032, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "tx_index": 59, - "utxos_info": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527:1", + "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -9137,9 +9196,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 } ], "next_cursor": 519, @@ -9153,16 +9212,16 @@ "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "destination": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "out_index": 0, - "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", "tx_index": 33, - "block_time": 1727079818, + "block_time": 1727089824, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", "block_index": 146, - "block_time": 1727079818 + "block_time": 1727089824 } ], "next_cursor": 237, @@ -9175,15 +9234,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "66f269b0c2afc943d51facfa830dd556f527ffd724f7c756a723fd03818c666c", - "messages_hash": "82a11ad1793e42246c2aa13ab5ff3c6383089057ebbfa50f1169145f8141c9c4", + "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", + "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", "transaction_count": 1, - "txlist_hash": "e7d6c12cf12468862d87d990f690413c4b9cf98ffc701d4ce3f04057151be95e", - "block_time": 1727080029 + "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", + "block_time": 1727090032 }, "tx_hash": null, "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 } ], "next_cursor": 529, @@ -9196,12 +9255,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "tx_index": 59 }, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 } ], "next_cursor": 528, @@ -9214,15 +9273,15 @@ "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 193, - "event": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "event": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -9232,9 +9291,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 } ], "next_cursor": 525, @@ -9246,16 +9305,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727080026, + "block_time": 1727090028, "asset_info": { "divisible": true, "asset_longname": null, @@ -9265,9 +9324,9 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 } ], "next_cursor": 524, @@ -9281,14 +9340,14 @@ "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "memo": null, "quantity": 10000, - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "status": "valid", - "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68", + "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794", "tx_index": 53, - "block_time": 1727079984, + "block_time": 1727090007, "asset_info": { "divisible": true, "asset_longname": null, @@ -9298,9 +9357,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "f1221ac05f583fb068777b846369af752305495621fbb0159b25143a421a1c68", + "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794", "block_index": 187, - "block_time": 1727079984 + "block_time": 1727090007 } ], "next_cursor": null, @@ -9314,15 +9373,15 @@ "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "status": "valid", - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "tx_index": 54, - "block_time": 1727079989, + "block_time": 1727090011, "asset_info": { "divisible": true, "asset_longname": null, @@ -9332,9 +9391,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "965dccb6d32e7bcc488213073dd64c8fa4fd6ee40ff07a627d4faba11994bc8e", + "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", "block_index": 188, - "block_time": 1727079989 + "block_time": 1727090011 } ], "next_cursor": 495, @@ -9357,20 +9416,20 @@ "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "status": "valid", - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "tx_index": 58, - "block_time": 1727080026, + "block_time": 1727090028, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "52a880117ed88d6814e5dfb73628eb8e0f943819d48b93fd91dcb0928e62de36", + "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", "block_index": 192, - "block_time": 1727080026 + "block_time": 1727090028 } ], "next_cursor": null, @@ -9387,15 +9446,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "status": "valid", - "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", + "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", "tx_index": 40, - "block_time": 1727079846, + "block_time": 1727089854, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, @@ -9409,9 +9468,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "311b1434ad51f41a8f686fdc5697158d326d6fc7c7b3d820856599c14b9a55ba", + "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", "block_index": 153, - "block_time": 1727079846 + "block_time": 1727089854 } ], "next_cursor": null, @@ -9432,11 +9491,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 159, - "block_time": 1727079873 + "block_time": 1727089900 }, - "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", + "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", "block_index": 159, - "block_time": 1727079873 + "block_time": 1727089900 } ], "next_cursor": 367, @@ -9459,22 +9518,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "status": "valid", "transfer": false, - "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", + "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", "tx_index": 46, - "block_time": 1727079873, + "block_time": 1727089900, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1133a5869ad4943469ee5b6df1f639d4d412037ea3d1fb6fc07f86a5cefacab1", + "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", "block_index": 159, - "block_time": 1727079873 + "block_time": 1727089900 } ], "next_cursor": 374, @@ -9489,12 +9548,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qcnandwfdfc68vznl4n9spnrngzl0kxqf4334rj", + "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", "status": "valid", "tag": "64657374726f79", - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "tx_index": 59, - "block_time": 1727080029, + "block_time": 1727090032, "asset_info": { "divisible": true, "asset_longname": null, @@ -9504,9 +9563,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "b2916561d4fef387546a0076b40594e9d96f1edddaa5a7d0d17103e95751d527", + "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", "block_index": 193, - "block_time": 1727080029 + "block_time": 1727090032 } ], "next_cursor": 157, @@ -9531,11 +9590,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "status": "open", - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "tx_index": 57, - "block_time": 1727080022, + "block_time": 1727090024, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9559,9 +9618,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "42351e3bc757477040edac21bac201b72f75c8c5d8c1981c638f0ae9f9e3ca0f", + "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", "block_index": 191, - "block_time": 1727080022 + "block_time": 1727090024 } ], "next_cursor": 502, @@ -9579,20 +9638,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d", + "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", "tx0_index": 49, - "tx1_address": "bcrt1q8k8446msllgas652tcdpjc543kanmd4uhsclss", + "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "tx1_index": 52, - "block_time": 1727079980, + "block_time": 1727090002, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9611,9 +9670,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "61e538596dcab1aaaaec0b8e71cfde284e8d3fea6101a6d6fea3cc04521d0587", + "tx_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", "block_index": 186, - "block_time": 1727079980 + "block_time": 1727090002 } ], "next_cursor": 461, @@ -9626,11 +9685,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d" + "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b" }, - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "block_index": 190, - "block_time": 1727080007 + "block_time": 1727090019 } ], "next_cursor": 476, @@ -9643,11 +9702,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674" + "tx_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628" }, - "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", + "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", "block_index": 185, - "block_time": 1727079976 + "block_time": 1727089998 } ], "next_cursor": null, @@ -9659,13 +9718,13 @@ "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", - "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", + "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", "status": "completed" }, - "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", + "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", "block_index": 185, - "block_time": 1727079976 + "block_time": 1727089998 } ], "next_cursor": 440, @@ -9679,18 +9738,18 @@ "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "order_match_id": "f1a8be6a4b6433a09e717ef4e6a4af7a55fff4336e0044779b114f041c95f27d_21780b5b42392c121c5fd0d69597403cac520f62fd57024f55a434bb64ea2674", - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "status": "valid", - "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", + "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", "tx_index": 51, - "block_time": 1727079976, + "block_time": 1727089998, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "a0d998820328c94cd4b8c8229185687223c34e4a501e503b81823d2b4a682cff", + "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", "block_index": 185, - "block_time": 1727079976 + "block_time": 1727089998 } ], "next_cursor": null, @@ -9703,16 +9762,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "c34882901d998a24fe958ddcfc31a1564d56f3ff4486c62aa3ff90894e77175d", - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "status": "valid", - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "tx_index": 56, - "block_time": 1727080007 + "block_time": 1727090019 }, - "tx_hash": "ae9d65568445d04aa9ac548e94af2e2a26e19ee428f12a8b2ef808883f80ed18", + "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", "block_index": 190, - "block_time": 1727080007 + "block_time": 1727090019 } ], "next_cursor": null, @@ -9725,13 +9784,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "block_time": 1727079898 + "order_hash": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "block_time": 1727089916 }, "tx_hash": null, "block_index": 182, - "block_time": 1727079898 + "block_time": 1727089916 } ], "next_cursor": 446, @@ -9744,14 +9803,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "89cf251653c5a6c3893513b0b10d8a0c08950e223d3616f8a0f529e5d84972f8_3be92236586f3ab6f1f1291bb44f6f1ef553f533ff1af5947a2e76f42d226937", - "tx0_address": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "tx1_address": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", - "block_time": 1727079898 + "order_match_id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "block_time": 1727089916 }, "tx_hash": null, "block_index": 182, - "block_time": 1727079898 + "block_time": 1727089916 } ], "next_cursor": null, @@ -9769,14 +9828,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", - "origin": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "satoshirate": 1, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "status": 0, - "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", "tx_index": 32, - "block_time": 1727079813, + "block_time": 1727089820, "asset_info": { "divisible": true, "asset_longname": null, @@ -9789,9 +9848,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", "block_index": 145, - "block_time": 1727079813 + "block_time": 1727089820 } ], "next_cursor": 254, @@ -9806,9 +9865,9 @@ "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "status": 0, - "tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", + "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", "asset_info": { "divisible": true, "asset_longname": null, @@ -9818,9 +9877,9 @@ }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", "block_index": 146, - "block_time": 1727079818 + "block_time": 1727089824 } ], "next_cursor": 260, @@ -9834,13 +9893,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mkJcSPmH7qxK3hZtjfj2T3TuuHiGZh3VFp", + "destination": "mrr2jyjX3kFi5rrXMeDj3zYkjr6YetBX9M", "dispense_quantity": 10, - "dispenser_tx_hash": "05ddfadbb63a0b9f67dd28890c84f9986c161154ed2a4ac537cef4fc37c990ba", - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", - "tx_hash": "677868f74ae703fe6e541c7a6b9bc66ccbfa9996472a98fa16bbecd9bcc1a9f0", + "dispenser_tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_hash": "682a8a0b6713f471954fb331bfb65eac76796efa2f1bdf8d22e67daedd57150e", "tx_index": 31, - "block_time": 1727079809, + "block_time": 1727089816, "asset_info": { "divisible": true, "asset_longname": null, @@ -9850,9 +9909,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "677868f74ae703fe6e541c7a6b9bc66ccbfa9996472a98fa16bbecd9bcc1a9f0", + "tx_hash": "682a8a0b6713f471954fb331bfb65eac76796efa2f1bdf8d22e67daedd57150e", "block_index": 144, - "block_time": 1727079809 + "block_time": 1727089816 } ], "next_cursor": null, @@ -9867,14 +9926,14 @@ "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qdlq7p8fayk5t0ryngk4lgueukr2csgjqa37hcj", + "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "da9c318eb46ee0e7a0a162fc48dd8c47a45922721e35b38ad0e4f698b103c6c2", - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", - "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", "tx_index": 33, - "block_time": 1727079818, + "block_time": 1727089824, "asset_info": { "divisible": true, "asset_longname": null, @@ -9885,9 +9944,9 @@ "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "740fddf54b1da94cb706622569e45c69d0499398f2b32f0374b8c475f4bc8d31", + "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", "block_index": 146, - "block_time": 1727079818 + "block_time": 1727089824 } ], "next_cursor": 240, @@ -9902,19 +9961,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qdl2mmjpp59grlm7tqslgqkc9637n79ramyd7ge", + "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3", + "tx_hash": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d", "tx_index": 25, "value": 66600.0, - "block_time": 1727079784, + "block_time": 1727089781, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "b09b2ec5170f396a0b6afae622e9506a09157917ab5cbaf83eaeba4cfb6bf3d3", + "tx_hash": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d", "block_index": 138, - "block_time": 1727079784 + "block_time": 1727089781 } ], "next_cursor": 213, @@ -9945,16 +10004,16 @@ "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "start_block": 0, "status": "open", - "tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", + "tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", "tx_index": 22, - "block_time": 1727079772 + "block_time": 1727089768 }, - "tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", + "tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", "block_index": 135, - "block_time": 1727079772 + "block_time": 1727089768 } ], "next_cursor": 161, @@ -9967,11 +10026,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "569b5d76c793d1fbd773e4c21c313d8d9bd4c08354834bd7fff4de4ba36e79c5" + "tx_hash": "bb99ad8dc9e2abcd6ec3a52b9cd21471fcbbf9b4d21c6a72ea69dcec59436f48" }, "tx_hash": null, "block_index": 130, - "block_time": 1727079751 + "block_time": 1727089747 } ], "next_cursor": 110, @@ -9987,24 +10046,24 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "9066bc25a39f102ab08b486c01a7a90f1ff56623620cccddd9bbe06c51e9d95a", + "fairminter_tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", "paid_quantity": 34, - "source": "bcrt1q5dpg324pdjm2n3cxtah7mh0s7905qrkfsj3ku9", + "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", "status": "valid", - "tx_hash": "14b14a8360be741c147b158caf79d5fcf98f9986207c8fe5fe42526940d1ddc1", + "tx_hash": "336b5e03756508a441266e3629a6ea97f2652ea3ccdc9453459d825b38a65a17", "tx_index": 23, - "block_time": 1727079776, + "block_time": 1727089772, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false } }, - "tx_hash": "14b14a8360be741c147b158caf79d5fcf98f9986207c8fe5fe42526940d1ddc1", + "tx_hash": "336b5e03756508a441266e3629a6ea97f2652ea3ccdc9453459d825b38a65a17", "block_index": 136, - "block_time": 1727079776 + "block_time": 1727089772 } ], "next_cursor": 190, @@ -10018,28 +10077,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8:1", + "destination": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "status": "valid", - "tx_hash": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", + "tx_hash": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", "tx_index": 38, - "block_time": 1727079839, + "block_time": 1727089845, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3163d37b53fd688095bc3cd4ae4ae010f748ad56609d4a415cb903800fc678a8", + "tx_hash": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", "block_index": 151, - "block_time": 1727079839 + "block_time": 1727089845 } ], "next_cursor": 291, @@ -10053,28 +10112,28 @@ "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qctrttkxawk6cf33k802ms4ksxl5kllw2ydvvyd", + "destination": "bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "e0fb6c717053ccace6058ea89673a15dff5b190c77211ffd001c4094c8df382a:0", + "source": "9c20a315f9dd83391105db586e409f6b237d721fe234db96ff0cab43fa5174af:0", "status": "valid", - "tx_hash": "989604467561753724a036703d19ac691dfe4a5ced843c42f9d1834068e7158f", + "tx_hash": "a592122f19e7c7afd8e7ca3b3fa6c680c8fe697a5efbe3b3c4f6c2758f87370f", "tx_index": 37, - "block_time": 1727079835, + "block_time": 1727089841, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2tjg5fpqmhd5653eae84p8df5d9l7am6latnms", + "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "989604467561753724a036703d19ac691dfe4a5ced843c42f9d1834068e7158f", + "tx_hash": "a592122f19e7c7afd8e7ca3b3fa6c680c8fe697a5efbe3b3c4f6c2758f87370f", "block_index": 150, - "block_time": 1727079835 + "block_time": 1727089841 } ], "next_cursor": null, @@ -10088,14 +10147,14 @@ "params": { "asset": "XCP", "block_index": 155, - "destination": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6:1", + "destination": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c:1", "msg_index": 1, "quantity": 1500000000, - "source": "7fedffa622e7b12624bb45a7946c3bd3b1fb4ab4f4787e1cc978707b8d22faa9:0", + "source": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7:0", "status": "valid", - "tx_hash": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", + "tx_hash": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", "tx_index": 42, - "block_time": 1727079855, + "block_time": 1727089863, "asset_info": { "divisible": true, "asset_longname": null, @@ -10105,9 +10164,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ab95aef70994011636c4cf5a6b493e62ba85b6ee6dad560073f76370722caec6", + "tx_hash": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", "block_index": 155, - "block_time": 1727079855 + "block_time": 1727089863 } ], "next_cursor": 346, @@ -10122,17 +10181,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qtlpkqnw458wcn6ggjgl0qhncr5azj57dwx79c9", + "source": "bcrt1qwp3vs8yzyz6lc0udjsz37s78rwa908kzgnm7yu", "status": "valid", - "tx_hash": "913a6e309d29d939a9b42c5b239eda58fd12b57ab1aefd856fe908cc2f03c87a", + "tx_hash": "6a8c5d264053a3fe132a67dfd75f6b75be30fbcc6338e9b6df1e8537ac9908e3", "tx_index": 9, - "block_time": 1727079713, + "block_time": 1727089709, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "913a6e309d29d939a9b42c5b239eda58fd12b57ab1aefd856fe908cc2f03c87a", + "tx_hash": "6a8c5d264053a3fe132a67dfd75f6b75be30fbcc6338e9b6df1e8537ac9908e3", "block_index": 121, - "block_time": 1727079713 + "block_time": 1727089709 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index f1eef73f66..38a31ff250 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -78,7 +78,7 @@ def send_transaction( self.wait_for_counterparty_server() if return_only_data: params["return_only_data"] = True - params["fee"] = 10000 # fixed fee + 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}" diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index 9dd2de3ecd..9c5898406a 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -259,10 +259,10 @@ def run_scenarios(serve=False): except KeyboardInterrupt: pass except Exception as e: - # print(regtest_node_thread.node.server_out.getvalue()) + print(regtest_node_thread.node.server_out.getvalue()) raise e finally: - print(regtest_node_thread.node.server_out.getvalue()) + # print(regtest_node_thread.node.server_out.getvalue()) regtest_node_thread.stop() diff --git a/counterparty-core/counterpartycore/test/util_test.py b/counterparty-core/counterpartycore/test/util_test.py index 10fe52763a..5523f5c634 100644 --- a/counterparty-core/counterpartycore/test/util_test.py +++ b/counterparty-core/counterpartycore/test/util_test.py @@ -814,7 +814,8 @@ def exec_tested_method(tx_name, method, tested_method, inputs, server_db): in [ "script", "transaction", - "transaction_helper.serializer", + "transaction_helper.common_serializer", + "transaction_helper.transaction_outputs", "backend", "message_type", "address", diff --git a/release-notes/release-notes-v10.4.1.md b/release-notes/release-notes-v10.4.1.md index 857a8b85ed..823c3d6803 100644 --- a/release-notes/release-notes-v10.4.1.md +++ b/release-notes/release-notes-v10.4.1.md @@ -20,11 +20,12 @@ * Use `trace` instead of `warning` for "Prefetch queue is empty." message * Use debug for expected and handled `yoyo` migration error * Support Python 3.10 and 3.11 only -* Move Compose API to `api/compose.py` module +* Refactoring and cleanup of `transaction.py`. The contents of this file are now distributed between `lib/api/compose.py`, `lib/transaction_helper/transaction_outputs.py`, and `lib/transaction_helper/transaction_inputs.py`. ## API * Add support for `inputs_set` parameter +* Rename `fee` argument to `exact_fee` * Add the following route: - `/v2/transactions//info` (This route works if the tx is in the mempool of the queried node) From 7613a15aaad25b63d12e35cf13531b400658201b Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 23 Sep 2024 11:33:33 +0000 Subject: [PATCH 29/46] update release notes --- release-notes/release-notes-v10.4.1.md | 1 + 1 file changed, 1 insertion(+) diff --git a/release-notes/release-notes-v10.4.1.md b/release-notes/release-notes-v10.4.1.md index 823c3d6803..d608b63acf 100644 --- a/release-notes/release-notes-v10.4.1.md +++ b/release-notes/release-notes-v10.4.1.md @@ -26,6 +26,7 @@ * Add support for `inputs_set` parameter * Rename `fee` argument to `exact_fee` +* The composition API returns, in addition to a `rawtransaction` or a `psbt`, the following fields: `data`, `btc_in`, `btc_out`, `btc_change`, and `btc_fee` * Add the following route: - `/v2/transactions//info` (This route works if the tx is in the mempool of the queried node) From f4897fa567a2ae330e4656bb72d62dfe06711238 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 23 Sep 2024 12:13:56 +0000 Subject: [PATCH 30/46] Accept 'fee' with API v1 --- counterparty-core/counterpartycore/lib/api/api_v1.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/counterparty-core/counterpartycore/lib/api/api_v1.py b/counterparty-core/counterpartycore/lib/api/api_v1.py index 1844ceea6c..6f57f3d206 100644 --- a/counterparty-core/counterpartycore/lib/api/api_v1.py +++ b/counterparty-core/counterpartycore/lib/api/api_v1.py @@ -575,6 +575,8 @@ def create_method(**kwargs): del common_args["old_style_api"] for v2_arg in ["return_only_data", "return_psbt"]: common_args.pop(v2_arg, None) + if "fee" in transaction_args and "exact_fee" not in common_args: + common_args["exact_fee"] = transaction_args.pop("fee") with self.connection_pool.connection() as db: transaction_info = transaction.compose_transaction( db, From 00eb11e9d6c1b7d987cb61591479b6abd2098b49 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 23 Sep 2024 12:14:47 +0000 Subject: [PATCH 31/46] Add sort argument for orders, order_matches and dispensers --- apiary.apib | 3992 +++++++++-------- .../counterpartycore/lib/api/queries.py | 60 +- .../test/fixtures/api_v2_fixtures.json | 56 + .../test/regtest/apidoc/apicache.json | 3616 +++++++-------- release-notes/release-notes-v10.4.1.md | 3 +- 5 files changed, 3930 insertions(+), 3797 deletions(-) diff --git a/apiary.apib b/apiary.apib index 337264bcc6..12d642cb7d 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-09-23 11:14:18.402472. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-09-23 12:11:31.105036. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -179,15 +179,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", "block_index": 193, - "block_time": 1727090032, + "block_time": 1727093475, "difficulty": 545259519, - "previous_block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697" + "previous_block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e" }, "tx_hash": null, "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 } ], "next_cursor": 518, @@ -204,17 +204,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", "block_index": 193, - "block_time": 1727090032, + "block_time": 1727093475, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "tx_index": 59, - "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", + "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -234,9 +234,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 } ], "next_cursor": 519, @@ -255,16 +255,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "destination": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "out_index": 0, - "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", "tx_index": 33, - "block_time": 1727089824, + "block_time": 1727093274, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", "block_index": 146, - "block_time": 1727089824 + "block_time": 1727093274 } ], "next_cursor": 237, @@ -282,15 +282,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", - "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", + "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", + "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", "transaction_count": 1, - "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", - "block_time": 1727090032 + "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", + "block_time": 1727093475 }, "tx_hash": null, "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 } ], "next_cursor": 529, @@ -308,12 +308,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "tx_index": 59 }, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 } ], "next_cursor": 528, @@ -333,15 +333,15 @@ Here is a list of events classified by theme and for each an example response: "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 193, - "event": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "event": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -351,9 +351,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 } ], "next_cursor": 525, @@ -370,16 +370,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -389,9 +389,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 } ], "next_cursor": 524, @@ -410,14 +410,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "memo": null, "quantity": 10000, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "status": "valid", - "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794", + "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0", "tx_index": 53, - "block_time": 1727090007, + "block_time": 1727093439, "asset_info": { "divisible": true, "asset_longname": null, @@ -427,9 +427,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794", + "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0", "block_index": 187, - "block_time": 1727090007 + "block_time": 1727093439 } ], "next_cursor": null, @@ -448,15 +448,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "status": "valid", - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "tx_index": 54, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "divisible": true, "asset_longname": null, @@ -466,9 +466,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "block_time": 1727090011 + "block_time": 1727093444 } ], "next_cursor": 495, @@ -506,20 +506,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "status": "valid", - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, - "block_time": 1727090028, + "block_time": 1727093471, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 } ], "next_cursor": null, @@ -541,15 +541,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": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "status": "valid", - "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", + "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", "tx_index": 40, - "block_time": 1727089854, + "block_time": 1727093314, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -563,9 +563,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": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", + "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", "block_index": 153, - "block_time": 1727089854 + "block_time": 1727093314 } ], "next_cursor": null, @@ -598,11 +598,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": 159, - "block_time": 1727089900 + "block_time": 1727093340 }, - "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", + "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", "block_index": 159, - "block_time": 1727089900 + "block_time": 1727093340 } ], "next_cursor": 367, @@ -630,22 +630,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": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "status": "valid", "transfer": false, - "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", + "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", "tx_index": 46, - "block_time": 1727089900, + "block_time": 1727093340, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", + "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", "block_index": 159, - "block_time": 1727089900 + "block_time": 1727093340 } ], "next_cursor": 374, @@ -665,12 +665,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "status": "valid", "tag": "64657374726f79", - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "tx_index": 59, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -680,9 +680,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 } ], "next_cursor": 157, @@ -714,11 +714,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": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "status": "open", - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "tx_index": 57, - "block_time": 1727090024, + "block_time": 1727093467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -742,9 +742,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": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "block_index": 191, - "block_time": 1727090024 + "block_time": 1727093467 } ], "next_cursor": 502, @@ -767,20 +767,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": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", "tx0_index": 49, - "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", "tx1_index": 52, - "block_time": 1727090002, + "block_time": 1727093435, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -799,9 +799,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": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "tx_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", "block_index": 186, - "block_time": 1727090002 + "block_time": 1727093435 } ], "next_cursor": 461, @@ -819,11 +819,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b" + "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82" }, - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "block_index": 190, - "block_time": 1727090019 + "block_time": 1727093462 } ], "next_cursor": 476, @@ -841,11 +841,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628" + "tx_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047" }, - "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", + "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", "block_index": 185, - "block_time": 1727089998 + "block_time": 1727093431 } ], "next_cursor": null, @@ -862,13 +862,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", - "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "status": "completed" }, - "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", + "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", "block_index": 185, - "block_time": 1727089998 + "block_time": 1727093431 } ], "next_cursor": 440, @@ -887,18 +887,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "status": "valid", - "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", + "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", "tx_index": 51, - "block_time": 1727089998, + "block_time": 1727093431, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", + "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", "block_index": 185, - "block_time": 1727089998 + "block_time": 1727093431 } ], "next_cursor": null, @@ -916,16 +916,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "status": "valid", - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "tx_index": 56, - "block_time": 1727090019 + "block_time": 1727093462 }, - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "block_index": 190, - "block_time": 1727090019 + "block_time": 1727093462 } ], "next_cursor": null, @@ -943,13 +943,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "block_time": 1727089916 + "order_hash": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "block_time": 1727093354 }, "tx_hash": null, "block_index": 182, - "block_time": 1727089916 + "block_time": 1727093354 } ], "next_cursor": 446, @@ -967,14 +967,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "block_time": 1727089916 + "order_match_id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "block_time": 1727093354 }, "tx_hash": null, "block_index": 182, - "block_time": 1727089916 + "block_time": 1727093354 } ], "next_cursor": null, @@ -999,14 +999,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": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", - "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "satoshirate": 1, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "status": 0, - "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", + "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", "tx_index": 32, - "block_time": 1727089820, + "block_time": 1727093270, "asset_info": { "divisible": true, "asset_longname": null, @@ -1019,9 +1019,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": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", + "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", "block_index": 145, - "block_time": 1727089820 + "block_time": 1727093270 } ], "next_cursor": 254, @@ -1041,9 +1041,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "status": 0, - "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", + "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", "asset_info": { "divisible": true, "asset_longname": null, @@ -1053,9 +1053,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", "block_index": 146, - "block_time": 1727089824 + "block_time": 1727093274 } ], "next_cursor": 260, @@ -1074,13 +1074,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mrr2jyjX3kFi5rrXMeDj3zYkjr6YetBX9M", + "destination": "n4jPTsoLW457YTSc3XsQ1Y4gHB8Q4kHjcS", "dispense_quantity": 10, - "dispenser_tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "tx_hash": "682a8a0b6713f471954fb331bfb65eac76796efa2f1bdf8d22e67daedd57150e", + "dispenser_tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx_hash": "69e6e449ccddd30e971cac1a51c578ae45dc8a430d8f8998718f7c09f4cfe895", "tx_index": 31, - "block_time": 1727089816, + "block_time": 1727093265, "asset_info": { "divisible": true, "asset_longname": null, @@ -1090,9 +1090,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "682a8a0b6713f471954fb331bfb65eac76796efa2f1bdf8d22e67daedd57150e", + "tx_hash": "69e6e449ccddd30e971cac1a51c578ae45dc8a430d8f8998718f7c09f4cfe895", "block_index": 144, - "block_time": 1727089816 + "block_time": 1727093265 } ], "next_cursor": null, @@ -1112,14 +1112,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", + "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", - "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", "tx_index": 33, - "block_time": 1727089824, + "block_time": 1727093274, "asset_info": { "divisible": true, "asset_longname": null, @@ -1130,9 +1130,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", "block_index": 146, - "block_time": 1727089824 + "block_time": 1727093274 } ], "next_cursor": 240, @@ -1154,19 +1154,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": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d", + "tx_hash": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572", "tx_index": 25, "value": 66600.0, - "block_time": 1727089781, + "block_time": 1727093231, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d", + "tx_hash": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572", "block_index": 138, - "block_time": 1727089781 + "block_time": 1727093231 } ], "next_cursor": 213, @@ -1204,16 +1204,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "start_block": 0, "status": "open", - "tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", + "tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", "tx_index": 22, - "block_time": 1727089768 + "block_time": 1727093218 }, - "tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", + "tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", "block_index": 135, - "block_time": 1727089768 + "block_time": 1727093218 } ], "next_cursor": 161, @@ -1231,11 +1231,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "bb99ad8dc9e2abcd6ec3a52b9cd21471fcbbf9b4d21c6a72ea69dcec59436f48" + "tx_hash": "7a9102f321f0d0fa53fc2a72888a63e7fb5ade06068f5a3401438b09db2d6ed7" }, "tx_hash": null, "block_index": 130, - "block_time": 1727089747 + "block_time": 1727093197 } ], "next_cursor": 110, @@ -1256,24 +1256,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", + "fairminter_tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", "paid_quantity": 34, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "status": "valid", - "tx_hash": "336b5e03756508a441266e3629a6ea97f2652ea3ccdc9453459d825b38a65a17", + "tx_hash": "5cadef994ef817048b024cb011579c3e4b9baa49462417190150f05a34a9bcf9", "tx_index": 23, - "block_time": 1727089772, + "block_time": 1727093222, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } }, - "tx_hash": "336b5e03756508a441266e3629a6ea97f2652ea3ccdc9453459d825b38a65a17", + "tx_hash": "5cadef994ef817048b024cb011579c3e4b9baa49462417190150f05a34a9bcf9", "block_index": 136, - "block_time": 1727089772 + "block_time": 1727093222 } ], "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": 151, - "destination": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505:1", + "destination": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "status": "valid", - "tx_hash": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", + "tx_hash": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", "tx_index": 38, - "block_time": 1727089845, + "block_time": 1727093305, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", + "tx_hash": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", "block_index": 151, - "block_time": 1727089845 + "block_time": 1727093305 } ], "next_cursor": 291, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq", + "destination": "bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "9c20a315f9dd83391105db586e409f6b237d721fe234db96ff0cab43fa5174af:0", + "source": "144554b15a22c114b9c5521d0d24a3c04f73a8b41253e822cc95199c1d067299:0", "status": "valid", - "tx_hash": "a592122f19e7c7afd8e7ca3b3fa6c680c8fe697a5efbe3b3c4f6c2758f87370f", + "tx_hash": "c3e06075fdd1fb6f1f7cc6564239be9ec52c5dc566d6dd823aa0af0d61f900dd", "tx_index": 37, - "block_time": 1727089841, + "block_time": 1727093301, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "a592122f19e7c7afd8e7ca3b3fa6c680c8fe697a5efbe3b3c4f6c2758f87370f", + "tx_hash": "c3e06075fdd1fb6f1f7cc6564239be9ec52c5dc566d6dd823aa0af0d61f900dd", "block_index": 150, - "block_time": 1727089841 + "block_time": 1727093301 } ], "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": 155, - "destination": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c:1", + "destination": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389:1", "msg_index": 1, "quantity": 1500000000, - "source": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7:0", + "source": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561:0", "status": "valid", - "tx_hash": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", + "tx_hash": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", "tx_index": 42, - "block_time": 1727089863, + "block_time": 1727093323, "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": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", + "tx_hash": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", "block_index": 155, - "block_time": 1727089863 + "block_time": 1727093323 } ], "next_cursor": 346, @@ -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": "bcrt1qwp3vs8yzyz6lc0udjsz37s78rwa908kzgnm7yu", + "source": "bcrt1qswegegswg6qyw5u90tafnw398gzn5a0d5re8u4", "status": "valid", - "tx_hash": "6a8c5d264053a3fe132a67dfd75f6b75be30fbcc6338e9b6df1e8537ac9908e3", + "tx_hash": "d460a52fd5533e197907b84dcdc8e7fc885c9e17ede386f2ecc15af162d7113c", "tx_index": 9, - "block_time": 1727089709, + "block_time": 1727093158, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "6a8c5d264053a3fe132a67dfd75f6b75be30fbcc6338e9b6df1e8537ac9908e3", + "tx_hash": "d460a52fd5533e197907b84dcdc8e7fc885c9e17ede386f2ecc15af162d7113c", "block_index": 121, - "block_time": 1727089709 + "block_time": 1727093158 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 193, - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", - "block_time": 1727090032, - "previous_block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_time": 1727093475, + "previous_block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", "difficulty": 545259519, - "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", - "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", - "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", + "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", + "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", + "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", - "block_time": 1727090028, - "previous_block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", + "block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", + "block_time": 1727093471, + "previous_block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", "difficulty": 545259519, - "ledger_hash": "d46c9a79ea9f28e5a8abedc26ec0f354521174a4b6ebe4c696652f7ba6d3eaf6", - "txlist_hash": "9707feba25739b7012ed85043e312c25f56921b21aa328e4be348e4425527ad8", - "messages_hash": "75b5676163832b1dabee3d864b37620ada5061afe4a69701e9e2cc694b8e9e5f", + "ledger_hash": "5852d56e0a2f012d49e15dcc8092fe5178fb1531a1bd326ac19c2c67e8785953", + "txlist_hash": "5ab6ca165b4d31dbfd0a32b8b80ae8a80544c9d0730426eaf3b993011a35fad0", + "messages_hash": "675b22fd17052c818d934beb63c5cc6f13b9f41f8cb99f671b6a6eba0d108804", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", - "block_time": 1727090024, - "previous_block_hash": "4b99bbc6808e4b765e983849737aafe5ef708306f5c65833991a73d0cce49c33", + "block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", + "block_time": 1727093467, + "previous_block_hash": "1e78891fe58a2e15a13d98d52c73741c700e2b3b647c004bbd6c3630de502d3e", "difficulty": 545259519, - "ledger_hash": "55612d24a38e775d9ae90229d537d96b0165d975b8fbe0ed5bdd85e8dd396c1f", - "txlist_hash": "8a77df6642e1fcfe0beb18b335a1ad317013b9b9a86929d6d436707327271eab", - "messages_hash": "0eeda5ff9e6480091916f110f8d7aeda363c7c9188d40f33b2a33e0e5e5f6846", + "ledger_hash": "6920554b19671fb917b2fa8b7aac09e3b0b9253020884226bf6847f50ea23f85", + "txlist_hash": "c9b0e524fbb98e4c38df0713f6f6665eef5e98cc10dfd1f3065c8418509bc7d4", + "messages_hash": "da9623970c1cfb9ca73b6cfdfa30c4deaaabcf060938e09240e4430281109399", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "4b99bbc6808e4b765e983849737aafe5ef708306f5c65833991a73d0cce49c33", - "block_time": 1727090019, - "previous_block_hash": "2923560e2bcacf6e73d9eff03c6d1595137115cb81061d215b3edaa9ff0e70ca", + "block_hash": "1e78891fe58a2e15a13d98d52c73741c700e2b3b647c004bbd6c3630de502d3e", + "block_time": 1727093462, + "previous_block_hash": "08f347c0a8ec608432ef24c00b1b75e5bab12e9a9bff9232e1cfd94c5bd702fb", "difficulty": 545259519, - "ledger_hash": "a3a3134ddd4dd5c9ecad8e689725219ba0e003405f6f4fa8d227a19f8495d5d0", - "txlist_hash": "40d6882b32b7c28fa05a9fda718c7d60a0dbc9039a8a1b7b19a1713f988e4859", - "messages_hash": "4a5594b373b41e3b2556bb42861d4e775adad70ffdae75e67864cc8797bec351", + "ledger_hash": "2b276e6aec9a88c841ed7c1f6840420fcbfc1a4517346a6175c5e67dfee23821", + "txlist_hash": "0987e29ee5cac999f35d207c44ab61f37af864a55ad58164c9795d93afbf6737", + "messages_hash": "5e068890d3800e7de8433544a4ddf7d068e4b7448fd372ae8ee4c5b4d1d0248f", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "2923560e2bcacf6e73d9eff03c6d1595137115cb81061d215b3edaa9ff0e70ca", - "block_time": 1727090015, - "previous_block_hash": "3fa9c2277a64ed52b884ca2a17da14b49509020652eb361abe768ef64c58a8b1", + "block_hash": "08f347c0a8ec608432ef24c00b1b75e5bab12e9a9bff9232e1cfd94c5bd702fb", + "block_time": 1727093458, + "previous_block_hash": "09999219b91d9f0a2141c7ccbf97cb0bb3518f3b2116061e96668f7d305e7b40", "difficulty": 545259519, - "ledger_hash": "9493cb79f2b216820d42d4c9138cac197dc6cad664473c5fd95156f9ce96127b", - "txlist_hash": "8154a4708a00d17782cfdfe4cbb99ae6b5369bb2abe59c809b471190edc2abe6", - "messages_hash": "17b8c592cef8a595dae2b4c23cf034ec7c522b339169fe4209d65a6f86869d5f", + "ledger_hash": "913fe15c076fcc652b8fc75af7e2246ef769b71e988d6f6440f7484b1a235a0f", + "txlist_hash": "3c0222d5e6f24b1d03ab8469eae9afbf46d70b60d96784d2487414361d94e470", + "messages_hash": "a51af0063d7694114190c734fca50c0bc8405727866e72d762f235b141176142", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 193, - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", - "block_time": 1727090032, - "previous_block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_time": 1727093475, + "previous_block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", "difficulty": 545259519, - "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", - "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", - "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", + "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", + "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", + "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09` (str, required) - The index of the block to return + + block_hash: `6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9` (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": 193, - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", - "block_time": 1727090032, - "previous_block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_time": 1727093475, + "previous_block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", "difficulty": 545259519, - "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", - "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", - "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", + "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", + "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", + "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 59, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", - "block_time": 1727090032, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_time": 1727093475, + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", + "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1706,11 +1706,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "d46c9a79ea9f28e5a8abedc26ec0f354521174a4b6ebe4c696652f7ba6d3eaf6", - "messages_hash": "75b5676163832b1dabee3d864b37620ada5061afe4a69701e9e2cc694b8e9e5f", + "ledger_hash": "5852d56e0a2f012d49e15dcc8092fe5178fb1531a1bd326ac19c2c67e8785953", + "messages_hash": "675b22fd17052c818d934beb63c5cc6f13b9f41f8cb99f671b6a6eba0d108804", "transaction_count": 1, - "txlist_hash": "9707feba25739b7012ed85043e312c25f56921b21aa328e4be348e4425527ad8", - "block_time": 1727090028 + "txlist_hash": "5ab6ca165b4d31dbfd0a32b8b80ae8a80544c9d0730426eaf3b993011a35fad0", + "block_time": 1727093471 }, "tx_hash": null }, @@ -1719,43 +1719,43 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58 }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "status": "valid", - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, - "block_time": 1727090028, + "block_time": 1727093471, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -1765,22 +1765,22 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "XCP", "block_index": 192, - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -1790,7 +1790,7 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" } ], "next_cursor": 524, @@ -1873,16 +1873,16 @@ Returns the events of a block filtered by event "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -1892,57 +1892,57 @@ Returns the events of a block filtered by event }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" } ], "next_cursor": null, @@ -2005,16 +2005,16 @@ Returns the credits of a block "result": [ { "block_index": 192, - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,20 +2026,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2047,20 +2047,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2116,16 +2116,16 @@ Returns the debits of a block "result": [ { "block_index": 193, - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "event": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -2165,24 +2165,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "object_id": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", "block_index": 182, "confirmed": true, - "block_time": 1727089916 + "block_time": 1727093354 }, { "type": "order", - "object_id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", + "object_id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", "block_index": 182, "confirmed": true, - "block_time": 1727089916 + "block_time": 1727093354 }, { "type": "order_match", - "object_id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "object_id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", "block_index": 182, "confirmed": true, - "block_time": 1727089916 + "block_time": 1727093354 } ], "next_cursor": null, @@ -2214,13 +2214,13 @@ Returns the cancels of a block "result": [ { "tx_index": 56, - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "block_index": 190, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "status": "valid", "confirmed": true, - "block_time": 1727090019 + "block_time": 1727093462 } ], "next_cursor": null, @@ -2252,15 +2252,15 @@ Returns the destructions of a block "result": [ { "tx_index": 59, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -2300,14 +2300,14 @@ Returns the issuances of a block "result": [ { "tx_index": 46, - "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", + "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -2322,7 +2322,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089900, + "block_time": 1727093340, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2356,10 +2356,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2367,7 +2367,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "divisible": true, "asset_longname": null, @@ -2380,10 +2380,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2391,11 +2391,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2404,10 +2404,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2415,11 +2415,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2457,27 +2457,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", - "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", + "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "last_status_tx_hash": null, - "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2492,7 +2492,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727089824, + "block_time": 1727093274, "asset_info": { "divisible": true, "asset_longname": null, @@ -2533,16 +2533,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 58, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "fee_paid_normalized": "0.00600000" } ], @@ -2576,17 +2576,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d", + "tx_hash": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572", "block_index": 138, - "block_hash": "0e9ac7f24e41046c5436ccbf3f9dffc040d503d0521df3c966f06d7864d735ec", - "block_time": 1727089781, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "block_hash": "71c121020e5fdfcb2db1fb3adf587388e24b39021132df957d38bb80ffd90794", + "block_time": 1727093231, + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d:1", + "utxos_info": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2611,25 +2611,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 51, - "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", + "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", "block_index": 185, - "block_hash": "2616d6c33121a5276f3fae0f4b3abae36a5e125ba76f11aef7c8404c03cc9576", - "block_time": 1727089998, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "3379d8745eedf0e59561b011b4fa1b60839abae63aa5e6fe901c8fd353255b44", + "block_time": 1727093431, + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "btc_amount": 2000, "fee": 10000, - "data": "0b5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2db7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "data": "0bc5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c11d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "supported": true, - "utxos_info": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de:0", + "utxos_info": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", - "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "status": "valid" } }, @@ -2644,23 +2644,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "block_index": 190, - "block_hash": "4b99bbc6808e4b765e983849737aafe5ef708306f5c65833991a73d0cce49c33", - "block_time": 1727090019, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "1e78891fe58a2e15a13d98d52c73741c700e2b3b647c004bbd6c3630de502d3e", + "block_time": 1727093462, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "data": "46c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "supported": true, - "utxos_info": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7:1", + "utxos_info": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "status": "valid" } }, @@ -2675,17 +2675,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", - "block_time": 1727090032, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_time": 1727093475, + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", + "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2715,17 +2715,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 32, - "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", + "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", "block_index": 145, - "block_hash": "03e461c6ad0cfe961a51c95b835548a90c70a1fd3bdfe06686e389e4266ad40d", - "block_time": 1727089820, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "block_hash": "360186cb45d039b43833b9badc025ae1570b25ddda440dc594daf11dd8cb1b97", + "block_time": 1727093270, + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c000000000000000100000000000000010000000000002710000000000000000100809ee631a2a2bedb89041e0e62cd8ee6280fe11ac7", + "data": "0c000000000000000100000000000000010000000000002710000000000000000100800dfb8c2149f5da6b8e44bec35ce635b285b4e904", "supported": true, - "utxos_info": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da:1", + "utxos_info": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2737,7 +2737,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "status": "valid", "asset_info": { "divisible": true, @@ -2761,17 +2761,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", "block_index": 146, - "block_hash": "235ce840ac465e93541518c2a3ffb1decbd73350483032e5732cab51197f4f23", - "block_time": 1727089824, - "source": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", - "destination": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "block_hash": "3c950b70b188f93aecc6aea2d22fb4be00f926508f97e39a8284fed3d09c77fb", + "block_time": 1727093274, + "source": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", + "destination": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "btc_amount": 10000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a:0", + "utxos_info": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 40, - "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", + "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", "block_index": 153, - "block_hash": "55611241590a0110dc6ebd56714ecbda76a0d395d7b22c795f0922392ee5ba1f", - "block_time": 1727089854, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "7375785dd499954b2dc23b93c783bd57d53de2e740cfb38b03d45f53c28be282", + "block_time": 1727093314, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb:1", + "utxos_info": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2814,7 +2814,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2839,17 +2839,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 46, - "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", + "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", "block_index": 159, - "block_hash": "12ff9ff6c5ebcf325cee3d737fee5333669d4d67f757797cfaf3dc62bc6df185", - "block_time": 1727089900, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "793e729f56618f1b74e9186976c569e0cb191fb84ef61903567ae70720854a80", + "block_time": 1727093340, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa:1", + "utxos_info": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2881,17 +2881,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "block_index": 191, - "block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", - "block_time": 1727090024, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", + "block_time": 1727093467, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d:1", + "utxos_info": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2934,17 +2934,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794", + "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0", "block_index": 187, - "block_hash": "59e1d8651bb1451ffda240866cfe352d6149b8b1c69956f891a20e9569d97007", - "block_time": 1727090007, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "block_hash": "49a4d95750b6f7aab76e58edd8463613b313336afccd5cc93e2682606ba097ea", + "block_time": 1727093439, + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080fa167162004bd108ffc4b1cfaf62ff500d14c741", + "data": "02000000000000000100000000000027108048679a4ad46ccfb39129094fc4ea5ad1385a05f5", "supported": true, - "utxos_info": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794:1", + "utxos_info": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2952,7 +2952,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "memo": null, "asset_info": { "divisible": true, @@ -2975,17 +2975,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "block_hash": "3fa9c2277a64ed52b884ca2a17da14b49509020652eb361abe768ef64c58a8b1", - "block_time": 1727090011, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "09999219b91d9f0a2141c7ccbf97cb0bb3518f3b2116061e96668f7d305e7b40", + "block_time": 1727093444, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c7da25416c8a05ef76411973556de567bdc97a8a80b24ca3b3deb516bc15248b8c9c92dd48a1518ca780fa167162004bd108ffc4b1cfaf62ff500d14c741400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003802ae0ca086d281f046afa5927e69de29e640e6a6280c9435a1d17b078c22ab3b67935f7fbaa28e99e2f8048679a4ad46ccfb39129094fc4ea5ad1385a05f5400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0:0", + "utxos_info": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2993,14 +2993,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -3008,7 +3008,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3034,23 +3034,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", - "block_time": 1727090028, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", + "block_time": 1727093471, + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480fa167162004bd108ffc4b1cfaf62ff500d14c741017377656570206d7920617373657473", + "data": "048048679a4ad46ccfb39129094fc4ea5ad1385a05f5017377656570206d7920617373657473", "supported": true, - "utxos_info": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33:1", + "utxos_info": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "flags": 1, "memo": "sweep my assets" } @@ -3083,17 +3083,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 59, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", - "block_time": 1727090032, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_time": 1727093475, + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", + "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3116,23 +3116,23 @@ Returns the list of the last ten transactions }, { "tx_index": 58, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", - "block_time": 1727090028, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", + "block_time": 1727093471, + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480fa167162004bd108ffc4b1cfaf62ff500d14c741017377656570206d7920617373657473", + "data": "048048679a4ad46ccfb39129094fc4ea5ad1385a05f5017377656570206d7920617373657473", "supported": true, - "utxos_info": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33:1", + "utxos_info": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "flags": 1, "memo": "sweep my assets" } @@ -3150,7 +3150,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000106f6cc2420145554ce6268b5591389e27dacd582e5d2acc52d56a6babbb75a7f280000000000fffffffff3b3de71a0969cedbef3cdc13e40f4889952c8ef98164f69028c4f91bd7278d40000000000ffffffff92726094dbe07463c3eee1d0ba3fb96a69e09dd2133dc3347bca3590dede23020000000000ffffffff87450a5778fe441e8a81b45bc3e443dac9f7d9297a56cc5e1f2f2ff865e34d8e0000000000ffffffff32741d8f4ed0b0204e54c358ce24e1dd92645fb5cdaca06ad3ffbb42da74482d0000000000ffffffff3839cbfe95ecceb744d72220256bb2041440232eb1a1bb1a75c442c8436fa68b0000000000ffffffff04e803000000000000695121026308b4f133d29cc4de5d3fc4fe7e55679fbd6f8a57ea772f0423a9121c0703a62102dcbcf496ec026a717d6a095101dae78e579b6786846d0696bfffc63adee6f7552103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee803000000000000695121026308b4f133d29cc4de56c003cf7620202181e89b7fdd76367770ce3abe615ef82102a6367424a0a1d986c87cb54425516b17e5462f27d5e1a11665e9b758dead261e2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee803000000000000695121025508b4f133d29cc4de5e2bc77eb98f42ded1e58fb89c36367776c4f77bbaca142103a6367424a0a1d9afc87cb54425516b12c5462f27d5e1a11645e9b758dead264b2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653ae387923fc060000001600143e5479d90ea1664716c42ff6cd46077c13ccd4730247304402206294f1344e43d7997fb099b5f01a029f9c07201a66c29a6410490f7a12785a5602203e0b03b36a430d2a07f22e53867be22b5ea53795b72a10b5afc3732a442d40af012103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb416995560247304402203c0f122faaf1356982f235dbbd809f052ff7e93326172525318990ed67efb9ee0220724211dcff055bb28b32eb8ee1af0de42f814dbd79c09eb8ab6b7826e3c6c63c012103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb416995560247304402202d0a04ce6f97f79075361c8bddfca2d78e217837e523f60823a98359f46ed7ba022075be37a754f2831a88fd0869fef3eec33af88ac2b7a11563770ca89748ee9ada012103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556024730440220326d5979c6d939d9e4e3423c2bae9cfe22315e07c459d6ee6fdc5a3e343c9c7b022054f38783ed9c73bc3f0f324e58dc3c0c0d41e00770c31764642e23407b49c242012103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955602473044022042abc0fc58e261b5b80cb320bdca8937e2c45b67df2a2c66e582f4486ea4323802202de9684dbee87a7899139a3a9252d9a08e8520d60b9511f73c1dc242af514cda012103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556024730440220305f882370037565e0e9baf696bf07b6af719769b04b9ae6d6bbf0577dd464d002201d539a438eca3142f899c0797b6ce85b94615146a6d2b8db62241d295f0d4a6a012103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955600000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001069b45e6b5a1c4c809c36d2765debd08b36930e60be858e9f6372a8080e0724c450000000000ffffffffbf4d0c584aeecf193a5b9ba2aed7d76c9139f4816d3f605a0471dcbf5af932f90000000000ffffffffcbcd6b10cefe05ebe1c397fdd16d384eb348204a8b330adb0194a79b6233293b0000000000ffffffff3251ba633fdcfd3f7b2e78ba1975ee862855f6b7609928d0cddb78dbfcf1cb5c0000000000ffffffffed8aa0948f7b1c3bfbf4bb63b59660435dd68655149f32ddb0387dbc360f27850000000000ffffffffc0f68c660bfe27938ca58d8e8a9f7c0b35207049406140faa8c6148217e0679a0000000000ffffffff04e80300000000000069512102aa559bfd9be7b031c2f631c1657ce98314d1787a2f460159ae0e5307a6f8c4822102cb741c6504e51506bd91dac0618348856305296558a2fcee8db544bedf3c0e972102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee80300000000000069512103aa559bfd9be7b031c246a0ebec19cda3466d683f2ed9bb0089eec428fd475e7c2102a1169cac47bf08380de918ead23531b5b4fe834db13cd36ee5d2def40b50c10f2102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee803000000000000695121029c559bfd9be7b031c2f525c2e55609491cbc50652b2cfb0089e8cee5389cca672102a1169cac47bf08110de918ead23531b094fe834db13cd36ec5d2def40b50c1582102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53ae387923fc06000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02473044022028371896db515c37441fbb575a0a15e0fcd0ffecb926a62fa5df412a28996b05022061816598d6c0274acfec2e328537ddda3bfd780089e958b2fe14727628a8664c012102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f02463043021f4196bfc187a01dd17c59cd4d5c394d58814276e9bf02999abbc2d68921deea0220788b51ed37ea5813ae43ec23680d6194a65c2f54173f2713bd37248581bafdef012102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f02473044022069aa3b9d7a5b1fe5a742892d00f858ed621e5deb9afe8e2a6f2587b2966b2c50022003139f22e955b397de240176a2a4b9ffb82ab34924d1a5da67ed4ec8949cbea7012102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f0247304402205c19d27abd5de29b4c40ff39ab29996219b4243930136f9d9093067e9afd600c022044999ed8319ea9dbffdf7caffb934705e9b0ffbd48545f2dd5e8015cc5be9b77012102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f0247304402201a16d16c85613f55999ca43495007ac797d6f4674c41e038984e0dd5b73df505022006aa7c119339424385c394f3001e643089611963d6b99ef501b5ad8897d4494f012102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f0247304402204b35f2e089cb94fdaedff7efc9433fa1961ed0ee8b817cfa21027d1ad7be5a2102201533b20b40e453cbcb93ec79262f8d81d8af12a8e85fc1477a4dfb63e213bb1c012102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f00000000` (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. @@ -3163,53 +3163,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c7da25416c8a05ef76411973556de567bdc97a8a80b24ca3b3deb516bc15248b8c9c92dd48a1518ca780fa167162004bd108ffc4b1cfaf62ff500d14c741400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003802ae0ca086d281f046afa5927e69de29e640e6a6280c9435a1d17b078c22ab3b67935f7fbaa28e99e2f8048679a4ad46ccfb39129094fc4ea5ad1385a05f5400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "f6cc2420145554ce6268b5591389e27dacd582e5d2acc52d56a6babbb75a7f28", + "hash": "9b45e6b5a1c4c809c36d2765debd08b36930e60be858e9f6372a8080e0724c45", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "f3b3de71a0969cedbef3cdc13e40f4889952c8ef98164f69028c4f91bd7278d4", + "hash": "bf4d0c584aeecf193a5b9ba2aed7d76c9139f4816d3f605a0471dcbf5af932f9", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "92726094dbe07463c3eee1d0ba3fb96a69e09dd2133dc3347bca3590dede2302", + "hash": "cbcd6b10cefe05ebe1c397fdd16d384eb348204a8b330adb0194a79b6233293b", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "87450a5778fe441e8a81b45bc3e443dac9f7d9297a56cc5e1f2f2ff865e34d8e", + "hash": "3251ba633fdcfd3f7b2e78ba1975ee862855f6b7609928d0cddb78dbfcf1cb5c", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "32741d8f4ed0b0204e54c358ce24e1dd92645fb5cdaca06ad3ffbb42da74482d", + "hash": "ed8aa0948f7b1c3bfbf4bb63b59660435dd68655149f32ddb0387dbc360f2785", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "3839cbfe95ecceb744d72220256bb2041440232eb1a1bb1a75c442c8436fa68b", + "hash": "c0f68c660bfe27938ca58d8e8a9f7c0b35207049406140faa8c6148217e0679a", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3219,38 +3219,38 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 1000, - "script_pub_key": "5121026308b4f133d29cc4de5d3fc4fe7e55679fbd6f8a57ea772f0423a9121c0703a62102dcbcf496ec026a717d6a095101dae78e579b6786846d0696bfffc63adee6f7552103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653ae" + "script_pub_key": "512102aa559bfd9be7b031c2f631c1657ce98314d1787a2f460159ae0e5307a6f8c4822102cb741c6504e51506bd91dac0618348856305296558a2fcee8db544bedf3c0e972102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53ae" }, { "value": 1000, - "script_pub_key": "5121026308b4f133d29cc4de56c003cf7620202181e89b7fdd76367770ce3abe615ef82102a6367424a0a1d986c87cb54425516b17e5462f27d5e1a11665e9b758dead261e2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653ae" + "script_pub_key": "512103aa559bfd9be7b031c246a0ebec19cda3466d683f2ed9bb0089eec428fd475e7c2102a1169cac47bf08380de918ead23531b5b4fe834db13cd36ee5d2def40b50c10f2102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53ae" }, { "value": 1000, - "script_pub_key": "5121025508b4f133d29cc4de5e2bc77eb98f42ded1e58fb89c36367776c4f77bbaca142103a6367424a0a1d9afc87cb54425516b12c5462f27d5e1a11645e9b758dead264b2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653ae" + "script_pub_key": "5121029c559bfd9be7b031c2f525c2e55609491cbc50652b2cfb0089e8cee5389cca672102a1169cac47bf08110de918ead23531b094fe834db13cd36ec5d2def40b50c1582102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53ae" }, { "value": 29999987000, - "script_pub_key": "00143e5479d90ea1664716c42ff6cd46077c13ccd473" + "script_pub_key": "0014a1d4c53a2839a34cbf7e8ecd9810a21633992fda" } ], "vtxinwit": [ - "304402206294f1344e43d7997fb099b5f01a029f9c07201a66c29a6410490f7a12785a5602203e0b03b36a430d2a07f22e53867be22b5ea53795b72a10b5afc3732a442d40af01", - "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", - "304402203c0f122faaf1356982f235dbbd809f052ff7e93326172525318990ed67efb9ee0220724211dcff055bb28b32eb8ee1af0de42f814dbd79c09eb8ab6b7826e3c6c63c01", - "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", - "304402202d0a04ce6f97f79075361c8bddfca2d78e217837e523f60823a98359f46ed7ba022075be37a754f2831a88fd0869fef3eec33af88ac2b7a11563770ca89748ee9ada01", - "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", - "30440220326d5979c6d939d9e4e3423c2bae9cfe22315e07c459d6ee6fdc5a3e343c9c7b022054f38783ed9c73bc3f0f324e58dc3c0c0d41e00770c31764642e23407b49c24201", - "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", - "3044022042abc0fc58e261b5b80cb320bdca8937e2c45b67df2a2c66e582f4486ea4323802202de9684dbee87a7899139a3a9252d9a08e8520d60b9511f73c1dc242af514cda01", - "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", - "30440220305f882370037565e0e9baf696bf07b6af719769b04b9ae6d6bbf0577dd464d002201d539a438eca3142f899c0797b6ce85b94615146a6d2b8db62241d295f0d4a6a01", - "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556" + "3044022028371896db515c37441fbb575a0a15e0fcd0ffecb926a62fa5df412a28996b05022061816598d6c0274acfec2e328537ddda3bfd780089e958b2fe14727628a8664c01", + "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", + "3043021f4196bfc187a01dd17c59cd4d5c394d58814276e9bf02999abbc2d68921deea0220788b51ed37ea5813ae43ec23680d6194a65c2f54173f2713bd37248581bafdef01", + "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", + "3044022069aa3b9d7a5b1fe5a742892d00f858ed621e5deb9afe8e2a6f2587b2966b2c50022003139f22e955b397de240176a2a4b9ffb82ab34924d1a5da67ed4ec8949cbea701", + "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", + "304402205c19d27abd5de29b4c40ff39ab29996219b4243930136f9d9093067e9afd600c022044999ed8319ea9dbffdf7caffb934705e9b0ffbd48545f2dd5e8015cc5be9b7701", + "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", + "304402201a16d16c85613f55999ca43495007ac797d6f4674c41e038984e0dd5b73df505022006aa7c119339424385c394f3001e643089611963d6b99ef501b5ad8897d4494f01", + "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", + "304402204b35f2e089cb94fdaedff7efc9433fa1961ed0ee8b817cfa21027d1ad7be5a2102201533b20b40e453cbcb93ec79262f8d81d8af12a8e85fc1477a4dfb63e213bb1c01", + "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f" ], "lock_time": 0, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", - "tx_id": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0" + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_id": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4" }, "unpacked_data": { "message_type": "mpma_send", @@ -3258,14 +3258,14 @@ Returns Counterparty information from a raw transaction in hex format. "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -3273,7 +3273,7 @@ Returns Counterparty information from a raw transaction in hex format. }, { "asset": "XCP", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3298,7 +3298,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5` (str, required) - Transaction hash + + tx_hash: `4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e` (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. @@ -3309,18 +3309,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080b24ca3b3deb516bc15248b8c9c92dd48a1518ca7", + "data": "020000000000000001000000000000271080c9435a1d17b078c22ab3b67935f7fbaa28e99e2f", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "90d52d518cfbcdc0871e27e36b9b6fb7fcf65082d910b2a35da606e2321a8153", + "hash": "a1cd07ab813f3082c3e6d4ed351940efb05c24840e52be969992d7213fe3df61", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3330,20 +3330,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2edcbe7f1ee60c29bb3b38aa206872872b7d3e57f6c749e3b111f4c3fdae73f7ed0495c59089cc7c51ed023e418d87" + "script_pub_key": "6a2e6acf57add293d4881371f3c9430472f06964ebac1ab59d31e0a6dbba917ab2a118c0dc3baadbff5b3b888eaa408f" }, { "value": 4999955000, - "script_pub_key": "0014fa167162004bd108ffc4b1cfaf62ff500d14c741" + "script_pub_key": "001448679a4ad46ccfb39129094fc4ea5ad1385a05f5" } ], "vtxinwit": [ - "3044022066eada7777201ae400b9d5680564eac7406e3368e31d7e42e897a335bab70e4d022008d95ed963507d80de84b9dfed13a59f7f0a2ad4817b291caf59c4eb8a7f617001", - "02748e93e3b51c48fcf700c353ec69d192cd4c589703e899b4f8b2983d3a722c4b" + "304402205bce2a20a4f2b0f355d5c1ada689ee23bcedb6f3ef90b2fa53e565b04ced786b022043b0469b6d80599a37f8c77dd8ceadda1a1e103cc8ecc50d94a32d18ac089f3101", + "0232a55257b495344474136eebb3408ad9dcb9e275fbbc0f81f8b2f67c031d0490" ], "lock_time": 0, - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", - "tx_id": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5" + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_id": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3351,7 +3351,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "memo": null, "asset_info": { "divisible": true, @@ -3412,17 +3412,17 @@ Returns a transaction by its index. { "result": { "tx_index": 59, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", - "block_time": 1727090032, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_time": 1727093475, + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", + "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3451,7 +3451,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9` (str, required) - The hash of the transaction + + tx_hash: `6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f` (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. @@ -3463,17 +3463,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 59, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", - "block_time": 1727090032, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_time": 1727093475, + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", + "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3526,47 +3526,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58 }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "status": "valid", - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, - "block_time": 1727090028, + "block_time": 1727093471, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -3576,24 +3576,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "XCP", "block_index": 192, - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -3603,36 +3603,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 } ], "next_cursor": 523, @@ -3645,7 +3645,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33` (str, required) - The hash of the transaction to return + + tx_hash: `fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -3669,47 +3669,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58 }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "status": "valid", - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, - "block_time": 1727090028, + "block_time": 1727093471, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -3719,24 +3719,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "XCP", "block_index": 192, - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -3746,36 +3746,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 } ], "next_cursor": 523, @@ -3788,7 +3788,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0` (str, required) - The hash of the transaction to return + + tx_hash: `65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4` (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 @@ -3807,10 +3807,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -3818,7 +3818,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "divisible": true, "asset_longname": null, @@ -3831,10 +3831,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3842,11 +3842,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -3855,10 +3855,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3866,11 +3866,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -3888,7 +3888,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a` (str, required) - The hash of the transaction to return + + tx_hash: `80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480` (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,27 +3908,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", - "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", + "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "last_status_tx_hash": null, - "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3943,7 +3943,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727089824, + "block_time": 1727093274, "asset_info": { "divisible": true, "asset_longname": null, @@ -3987,16 +3987,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -4006,63 +4006,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 } ], "next_cursor": null, @@ -4075,7 +4075,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33` (str, required) - The hash of the transaction to return + + tx_hash: `fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `535` (str, optional) - The last event index to return + Default: `None` @@ -4097,16 +4097,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -4116,63 +4116,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 } ], "next_cursor": null, @@ -4187,7 +4187,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz,bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y,bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (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 @@ -4211,7 +4211,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4221,7 +4221,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -4232,7 +4232,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4242,7 +4242,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -4253,7 +4253,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4263,7 +4263,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -4274,7 +4274,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4284,7 +4284,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -4295,7 +4295,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4305,7 +4305,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -4322,7 +4322,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz,bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y,bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (str, required) - Comma separated list of addresses to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4341,17 +4341,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 57, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "block_index": 191, - "block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", - "block_time": 1727090024, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", + "block_time": 1727093467, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d:1", + "utxos_info": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4387,23 +4387,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "block_index": 190, - "block_hash": "4b99bbc6808e4b765e983849737aafe5ef708306f5c65833991a73d0cce49c33", - "block_time": 1727090019, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "1e78891fe58a2e15a13d98d52c73741c700e2b3b647c004bbd6c3630de502d3e", + "block_time": 1727093462, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "data": "46c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "supported": true, - "utxos_info": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7:1", + "utxos_info": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "status": "valid" } }, @@ -4411,17 +4411,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 55, - "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "block_index": 189, - "block_hash": "2923560e2bcacf6e73d9eff03c6d1595137115cb81061d215b3edaa9ff0e70ca", - "block_time": 1727090015, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "08f347c0a8ec608432ef24c00b1b75e5bab12e9a9bff9232e1cfd94c5bd702fb", + "block_time": 1727093458, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b:1", + "utxos_info": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4457,17 +4457,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "block_hash": "3fa9c2277a64ed52b884ca2a17da14b49509020652eb361abe768ef64c58a8b1", - "block_time": 1727090011, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "09999219b91d9f0a2141c7ccbf97cb0bb3518f3b2116061e96668f7d305e7b40", + "block_time": 1727093444, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c7da25416c8a05ef76411973556de567bdc97a8a80b24ca3b3deb516bc15248b8c9c92dd48a1518ca780fa167162004bd108ffc4b1cfaf62ff500d14c741400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003802ae0ca086d281f046afa5927e69de29e640e6a6280c9435a1d17b078c22ab3b67935f7fbaa28e99e2f8048679a4ad46ccfb39129094fc4ea5ad1385a05f5400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0:0", + "utxos_info": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4475,14 +4475,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -4490,7 +4490,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4509,25 +4509,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 51, - "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", + "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", "block_index": 185, - "block_hash": "2616d6c33121a5276f3fae0f4b3abae36a5e125ba76f11aef7c8404c03cc9576", - "block_time": 1727089998, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "3379d8745eedf0e59561b011b4fa1b60839abae63aa5e6fe901c8fd353255b44", + "block_time": 1727093431, + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "btc_amount": 2000, "fee": 10000, - "data": "0b5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2db7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "data": "0bc5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c11d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "supported": true, - "utxos_info": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de:0", + "utxos_info": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", - "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "status": "valid" } }, @@ -4544,7 +4544,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz,bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y,bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -4580,11 +4580,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "status": "open", - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "tx_index": 57, - "block_time": 1727090024, + "block_time": 1727093467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4608,24 +4608,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "block_index": 191, - "block_time": 1727090024 + "block_time": 1727093467 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "block_index": 191, - "event": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "event": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727090024, + "block_time": 1727093467, "asset_info": { "divisible": true, "asset_longname": null, @@ -4635,25 +4635,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "block_index": 191, - "block_time": 1727090024 + "block_time": 1727093467 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", + "block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", "block_index": 191, - "block_time": 1727090024, + "block_time": 1727093467, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "tx_index": 57, - "utxos_info": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d:1", + "utxos_info": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4685,40 +4685,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "block_index": 191, - "block_time": 1727090024 + "block_time": 1727093467 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "status": "valid", - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "tx_index": 56, - "block_time": 1727090019 + "block_time": 1727093462 }, - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "block_index": 190, - "block_time": 1727090019 + "block_time": 1727093462 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727090019, + "block_time": 1727093462, "asset_info": { "divisible": true, "asset_longname": null, @@ -4728,9 +4728,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "block_index": 190, - "block_time": 1727090019 + "block_time": 1727093462 } ], "next_cursor": 506, @@ -4743,7 +4743,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g,bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd,bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n` (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 @@ -4759,17 +4759,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "memo": null, "quantity": 10000, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "status": "valid", - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "tx_index": 60, "asset_info": { "divisible": true, @@ -4782,19 +4782,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "CREDIT", "params": { - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -4806,19 +4806,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 193, - "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -4830,27 +4830,27 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727090046.9235783, + "block_time": 1727093479.718657, "btc_amount": 0, - "data": "020000000000000001000000000000271080b24ca3b3deb516bc15248b8c9c92dd48a1518ca7", + "data": "020000000000000001000000000000271080c9435a1d17b078c22ab3b67935f7fbaa28e99e2f", "destination": "", "fee": 10000, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "tx_index": 60, - "utxos_info": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5:1", + "utxos_info": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "memo": null, "asset_info": { "divisible": true, @@ -4876,7 +4876,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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 @@ -4896,7 +4896,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4904,14 +4904,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4919,14 +4919,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4941,7 +4941,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4949,7 +4949,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -4966,7 +4966,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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` @@ -4978,7 +4978,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -5000,7 +5000,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5050,16 +5050,16 @@ Returns the credits of an address "result": [ { "block_index": 190, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090019, + "block_time": 1727093462, "asset_info": { "divisible": true, "asset_longname": null, @@ -5071,16 +5071,16 @@ Returns the credits of an address }, { "block_index": 182, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", + "event": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727089916, + "block_time": 1727093354, "asset_info": { "divisible": true, "asset_longname": null, @@ -5092,20 +5092,20 @@ Returns the credits of an address }, { "block_index": 159, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", + "event": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727089900, + "block_time": 1727093340, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5113,20 +5113,20 @@ Returns the credits of an address }, { "block_index": 156, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "f16fadc9b332b83f0383c930c2392d6d2c06410ff8f5ea2a9fa0b1ee4713590e", + "event": "02e0dc7bbbbc4974003b5a437a68b7e2cbfacb3747f4e8d64d60242fa4478372", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727089867, + "block_time": 1727093327, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5138,16 +5138,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", + "event": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", "tx_index": 38, - "utxo": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505:1", - "utxo_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "utxo": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a:1", + "utxo_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "confirmed": true, - "block_time": 1727089845, + "block_time": 1727093305, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5164,7 +5164,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5203,16 +5203,16 @@ Returns the debits of an address "result": [ { "block_index": 191, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "event": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090024, + "block_time": 1727093467, "asset_info": { "divisible": true, "asset_longname": null, @@ -5224,16 +5224,16 @@ Returns the debits of an address }, { "block_index": 189, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090015, + "block_time": 1727093458, "asset_info": { "divisible": true, "asset_longname": null, @@ -5245,16 +5245,16 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "event": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "divisible": true, "asset_longname": null, @@ -5266,20 +5266,20 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "event": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5287,16 +5287,16 @@ Returns the debits of an address }, { "block_index": 183, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "event": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727089990, + "block_time": 1727093423, "asset_info": { "divisible": true, "asset_longname": null, @@ -5317,7 +5317,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address of the feed + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5352,7 +5352,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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 @@ -5371,9 +5371,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "d8c73b39bec3ca170f5db0ca4cf42abc7535513ef491131f8986f9b249de2aac", + "tx_hash": "000e98b21330a957d503936a5a5b4a4a45befd508a16c30ed1912d21d0020d6f", "block_index": 137, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5381,7 +5381,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727089777, + "block_time": 1727093226, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5395,7 +5395,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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 @@ -5414,14 +5414,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "e16d235b861cfe7c48a74e0bcdf99b3b7ded94cbc658fb3c7bebb6dd49cde216", + "tx_hash": "f67545e10ba5017c416d24a9cf8e3cc34a18035b0d55526a01c26fa48e9d5588", "block_index": 112, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1727089675, + "block_time": 1727093122, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5436,7 +5436,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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 @@ -5455,10 +5455,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5466,7 +5466,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "divisible": true, "asset_longname": null, @@ -5479,10 +5479,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5490,11 +5490,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5503,10 +5503,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5514,11 +5514,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5527,10 +5527,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 38, - "tx_hash": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", + "tx_hash": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", "block_index": 151, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505:1", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5538,11 +5538,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727089845, + "block_time": 1727093305, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5551,10 +5551,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 35, - "tx_hash": "fc6c96d70ca302032501a89ff33d3ca64cfe94e875137ac218eb81744063d6c6", + "tx_hash": "a5103a244743dcbecce27787d68d30f8c54303e944677e41a7c82e166bf295e1", "block_index": 148, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "dc60251c64cde9adfaf7ea84db0bdaf720119f8f0a796de3bd80fd32a8700e75:1", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "1925463e88ee34000a3ea11c42581ce890f717f7eba97775d5f17c143f29364d:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5562,11 +5562,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727089833, + "block_time": 1727093293, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5584,7 +5584,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq` (str, required) - The address to return + + address: `bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x` (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 @@ -5603,10 +5603,10 @@ Returns the receives of an address "result": [ { "tx_index": 37, - "tx_hash": "a592122f19e7c7afd8e7ca3b3fa6c680c8fe697a5efbe3b3c4f6c2758f87370f", + "tx_hash": "c3e06075fdd1fb6f1f7cc6564239be9ec52c5dc566d6dd823aa0af0d61f900dd", "block_index": 150, - "source": "9c20a315f9dd83391105db586e409f6b237d721fe234db96ff0cab43fa5174af:0", - "destination": "bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq", + "source": "144554b15a22c114b9c5521d0d24a3c04f73a8b41253e822cc95199c1d067299:0", + "destination": "bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5614,11 +5614,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727089841, + "block_time": 1727093301, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5636,7 +5636,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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` @@ -5656,10 +5656,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5667,11 +5667,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5680,10 +5680,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5691,11 +5691,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5704,10 +5704,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 38, - "tx_hash": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", + "tx_hash": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", "block_index": 151, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505:1", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5715,11 +5715,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727089845, + "block_time": 1727093305, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5728,10 +5728,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 35, - "tx_hash": "fc6c96d70ca302032501a89ff33d3ca64cfe94e875137ac218eb81744063d6c6", + "tx_hash": "a5103a244743dcbecce27787d68d30f8c54303e944677e41a7c82e166bf295e1", "block_index": 148, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "dc60251c64cde9adfaf7ea84db0bdaf720119f8f0a796de3bd80fd32a8700e75:1", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "1925463e88ee34000a3ea11c42581ce890f717f7eba97775d5f17c143f29364d:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5739,11 +5739,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727089833, + "block_time": 1727093293, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5761,7 +5761,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq` (str, required) - The address to return + + address: `bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x` (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` @@ -5781,10 +5781,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 37, - "tx_hash": "a592122f19e7c7afd8e7ca3b3fa6c680c8fe697a5efbe3b3c4f6c2758f87370f", + "tx_hash": "c3e06075fdd1fb6f1f7cc6564239be9ec52c5dc566d6dd823aa0af0d61f900dd", "block_index": 150, - "source": "9c20a315f9dd83391105db586e409f6b237d721fe234db96ff0cab43fa5174af:0", - "destination": "bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq", + "source": "144554b15a22c114b9c5521d0d24a3c04f73a8b41253e822cc95199c1d067299:0", + "destination": "bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5792,11 +5792,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727089841, + "block_time": 1727093301, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5809,12 +5809,12 @@ Returns the receives of an address and asset } ``` -### Get Dispensers By Address [GET /v2/addresses/{address}/dispensers{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] +### Get Dispensers By Address [GET /v2/addresses/{address}/dispensers{?status}{&cursor}{&limit}{&offset}{&sort}{&verbose}{&show_unconfirmed}] Returns the dispensers of an address + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5829,6 +5829,8 @@ Returns the dispensers of an address + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) + Default: `None` + + sort: `give_quantity:desc` (str, optional) - The sort order of the dispensers to return (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. @@ -5840,20 +5842,20 @@ Returns the dispensers of an address { "result": [ { - "tx_index": 30, - "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", - "block_index": 144, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 26, + "tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "block_index": 141, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "give_quantity": 1, - "escrow_quantity": 10, + "escrow_quantity": 10000, "satoshirate": 1, - "status": 0, - "give_remaining": 20, + "status": 10, + "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "dispense_count": 0, + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, "confirmed": true, @@ -5862,7 +5864,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089816, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -5871,26 +5873,26 @@ Returns the dispensers of an address "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000020", - "escrow_quantity_normalized": "0.00000010", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 26, - "tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", - "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 30, + "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", + "block_index": 144, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "give_quantity": 1, - "escrow_quantity": 10000, + "escrow_quantity": 10, "satoshirate": 1, - "status": 10, - "give_remaining": 0, + "status": 0, + "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "dispense_count": 2, + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, "confirmed": true, @@ -5899,7 +5901,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089793, + "block_time": 1727093265, "asset_info": { "divisible": true, "asset_longname": null, @@ -5908,8 +5910,8 @@ Returns the dispensers of an address "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", + "give_remaining_normalized": "0.00000020", + "escrow_quantity_normalized": "0.00000010", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" } @@ -5924,7 +5926,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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` @@ -5937,9 +5939,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", + "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", "block_index": 144, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5948,7 +5950,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5958,7 +5960,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089816, + "block_time": 1727093265, "asset_info": { "divisible": true, "asset_longname": null, @@ -5980,7 +5982,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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 @@ -6000,19 +6002,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", + "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6020,7 +6022,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6035,7 +6037,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089793, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -6049,19 +6051,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", + "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", "block_index": 140, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6069,7 +6071,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6084,7 +6086,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089788, + "block_time": 1727093239, "asset_info": { "divisible": true, "asset_longname": null, @@ -6106,7 +6108,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (str, required) - The address to return + + address: `bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (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 @@ -6126,19 +6128,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", + "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6146,7 +6148,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6161,7 +6163,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089793, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -6175,19 +6177,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", + "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", "block_index": 140, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6195,7 +6197,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6210,7 +6212,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089788, + "block_time": 1727093239, "asset_info": { "divisible": true, "asset_longname": null, @@ -6232,7 +6234,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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` @@ -6253,19 +6255,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", + "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6273,7 +6275,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6288,7 +6290,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089793, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -6302,19 +6304,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", + "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", "block_index": 140, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6322,7 +6324,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6337,7 +6339,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089788, + "block_time": 1727093239, "asset_info": { "divisible": true, "asset_longname": null, @@ -6359,7 +6361,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (str, required) - The address to return + + address: `bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (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` @@ -6380,19 +6382,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", + "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6400,7 +6402,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6415,7 +6417,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089793, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -6429,19 +6431,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", + "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", "block_index": 140, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6449,7 +6451,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6464,7 +6466,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089788, + "block_time": 1727093239, "asset_info": { "divisible": true, "asset_longname": null, @@ -6486,7 +6488,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g` (str, required) - The address to return + + address: `bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd` (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 @@ -6505,16 +6507,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 58, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "fee_paid_normalized": "0.00600000" } ], @@ -6528,7 +6530,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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 @@ -6547,14 +6549,14 @@ Returns the issuances of an address "result": [ { "tx_index": 46, - "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", + "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -6569,20 +6571,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089900, + "block_time": 1727093340, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "e6abd286bdba5ba6f4e5dbe333fd2ab733fb42428230b79b68741f9678c28897", + "tx_hash": "87c03f2279383a3df0081f24a9f1fa5c0a0871379ef14a982ab69879184b38f7", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -6597,20 +6599,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727089896, + "block_time": 1727093335, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "67c806f2224d86f97c2532de5cd43bca5dff4a3a6951b17b37dafc06cceada13", + "tx_hash": "8545fa4b393d2af3b1304014da38dd6988b8ad70e7eb5942312966346dbf5c1c", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -6625,20 +6627,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089881, + "block_time": 1727093331, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "f16fadc9b332b83f0383c930c2392d6d2c06410ff8f5ea2a9fa0b1ee4713590e", + "tx_hash": "02e0dc7bbbbc4974003b5a437a68b7e2cbfacb3747f4e8d64d60242fa4478372", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -6653,20 +6655,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089867, + "block_time": 1727093327, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "97b732eec3a1d7005106f8ed821ed94d1df26d1c501b8f6011dc5c9226d1343a", + "tx_hash": "a84da37d8e8ad79645d7780708d7b97548eca8abbe86d0adaa93df726eef2c00", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -6681,7 +6683,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089828, + "block_time": 1727093278, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -6696,7 +6698,7 @@ Returns the issuances of an address Returns the valid assets of an issuer + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The issuer to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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 @@ -6719,8 +6721,8 @@ Returns the valid assets of an issuer "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false, "supply": 10000000000, @@ -6728,16 +6730,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727089867, - "last_issuance_block_time": 1727089896, + "first_issuance_block_time": 1727093327, + "last_issuance_block_time": 1727093335, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false, "supply": 100000000000, @@ -6745,16 +6747,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727089828, - "last_issuance_block_time": 1727089828, + "first_issuance_block_time": 1727093278, + "last_issuance_block_time": 1727093278, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false, "supply": 40, @@ -6762,16 +6764,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727089768, - "last_issuance_block_time": 1727089772, + "first_issuance_block_time": 1727093218, + "last_issuance_block_time": 1727093222, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false, "supply": 19, @@ -6779,16 +6781,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727089751, - "last_issuance_block_time": 1727089764, + "first_issuance_block_time": 1727093201, + "last_issuance_block_time": 1727093214, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false, "supply": 0, @@ -6796,8 +6798,8 @@ Returns the valid assets of an issuer "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1727089730, - "last_issuance_block_time": 1727089747, + "first_issuance_block_time": 1727093180, + "last_issuance_block_time": 1727093197, "supply_normalized": "0.00000000" } ], @@ -6811,7 +6813,7 @@ Returns the valid assets of an issuer Returns the transactions of an address + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -6830,17 +6832,17 @@ Returns the transactions of an address "result": [ { "tx_index": 57, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "block_index": 191, - "block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", - "block_time": 1727090024, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", + "block_time": 1727093467, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d:1", + "utxos_info": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6876,23 +6878,23 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "block_index": 190, - "block_hash": "4b99bbc6808e4b765e983849737aafe5ef708306f5c65833991a73d0cce49c33", - "block_time": 1727090019, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "1e78891fe58a2e15a13d98d52c73741c700e2b3b647c004bbd6c3630de502d3e", + "block_time": 1727093462, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "data": "46c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "supported": true, - "utxos_info": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7:1", + "utxos_info": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "status": "valid" } }, @@ -6900,17 +6902,17 @@ Returns the transactions of an address }, { "tx_index": 55, - "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "block_index": 189, - "block_hash": "2923560e2bcacf6e73d9eff03c6d1595137115cb81061d215b3edaa9ff0e70ca", - "block_time": 1727090015, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "08f347c0a8ec608432ef24c00b1b75e5bab12e9a9bff9232e1cfd94c5bd702fb", + "block_time": 1727093458, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b:1", + "utxos_info": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6946,17 +6948,17 @@ Returns the transactions of an address }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "block_hash": "3fa9c2277a64ed52b884ca2a17da14b49509020652eb361abe768ef64c58a8b1", - "block_time": 1727090011, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "09999219b91d9f0a2141c7ccbf97cb0bb3518f3b2116061e96668f7d305e7b40", + "block_time": 1727093444, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c7da25416c8a05ef76411973556de567bdc97a8a80b24ca3b3deb516bc15248b8c9c92dd48a1518ca780fa167162004bd108ffc4b1cfaf62ff500d14c741400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003802ae0ca086d281f046afa5927e69de29e640e6a6280c9435a1d17b078c22ab3b67935f7fbaa28e99e2f8048679a4ad46ccfb39129094fc4ea5ad1385a05f5400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0:0", + "utxos_info": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -6964,14 +6966,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -6979,7 +6981,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -6998,17 +7000,17 @@ Returns the transactions of an address }, { "tx_index": 49, - "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", "block_index": 183, - "block_hash": "4330a150c5e7206108e14d0ffd3cec0c33c681d56b494bffec379232028fa69e", - "block_time": 1727089990, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "1521ba188fec316a932935d167f999621868384b4e6e557b83ea37056300136b", + "block_time": 1727093423, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d:1", + "utxos_info": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7053,7 +7055,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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 @@ -7072,20 +7074,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 40, - "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", + "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", "block_index": 153, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727089854, + "block_time": 1727093314, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -7105,12 +7107,12 @@ Returns the dividends distributed by an address } ``` -### Get Orders By Address [GET /v2/addresses/{address}/orders{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] +### Get Orders By Address [GET /v2/addresses/{address}/orders{?status}{&cursor}{&limit}{&offset}{&sort}{&verbose}{&show_unconfirmed}] Returns the orders of an address + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7125,6 +7127,8 @@ Returns the orders of an address + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) + Default: `None` + + sort: `expiration:desc` (str, optional) - The sort order of the orders to return (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. @@ -7136,10 +7140,10 @@ Returns the orders of an address { "result": [ { - "tx_index": 57, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", - "block_index": 191, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 47, + "tx_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "block_index": 182, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7147,14 +7151,14 @@ Returns the orders of an address "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 212, + "expire_index": 181, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "confirmed": true, - "block_time": 1727090024, + "block_time": 1727093354, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7179,25 +7183,25 @@ Returns the orders of an address "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 55, - "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", - "block_index": 190, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 49, + "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "block_index": 186, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, + "give_quantity": 10000, + "give_remaining": 5000, "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, + "get_quantity": 10000, + "get_remaining": 5000, "expiration": 21, - "expire_index": 210, + "expire_index": 204, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "cancelled", + "status": "open", "confirmed": true, - "block_time": 1727090019, + "block_time": 1727093435, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7212,35 +7216,35 @@ Returns the orders of an address "locked": false, "issuer": null }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", + "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": 49, - "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "block_index": 186, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 55, + "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "block_index": 190, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, + "give_quantity": 1000, + "give_remaining": 1000, "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, + "get_quantity": 1000, + "get_remaining": 1000, "expiration": 21, - "expire_index": 204, + "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "cancelled", "confirmed": true, - "block_time": 1727090002, + "block_time": 1727093462, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7255,20 +7259,20 @@ Returns the orders of an address "locked": false, "issuer": null }, - "give_quantity_normalized": "0.00010000", - "get_quantity_normalized": "0.00010000", - "get_remaining_normalized": "0.00005000", - "give_remaining_normalized": "0.00005000", + "give_quantity_normalized": "0.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": 47, - "tx_hash": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", - "block_index": 182, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 57, + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "block_index": 191, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7276,14 +7280,14 @@ Returns the orders of an address "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 181, + "expire_index": 212, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "expired", + "status": "open", "confirmed": true, - "block_time": 1727089916, + "block_time": 1727093467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7318,7 +7322,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The source of the fairminter to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7336,10 +7340,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", + "tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", "tx_index": 22, "block_index": 135, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7364,13 +7368,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727089768 + "block_time": 1727093218 }, { - "tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", + "tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", "tx_index": 18, "block_index": 131, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7395,13 +7399,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727089751 + "block_time": 1727093201 }, { - "tx_hash": "bb99ad8dc9e2abcd6ec3a52b9cd21471fcbbf9b4d21c6a72ea69dcec59436f48", + "tx_hash": "7a9102f321f0d0fa53fc2a72888a63e7fb5ade06068f5a3401438b09db2d6ed7", "tx_index": 14, "block_index": 130, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7426,13 +7430,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727089747 + "block_time": 1727093197 }, { - "tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "tx_index": 10, "block_index": 125, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7457,7 +7461,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727089726 + "block_time": 1727093176 } ], "next_cursor": null, @@ -7470,7 +7474,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (str, required) - The address of the mints to return + + address: `bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7488,127 +7492,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "336b5e03756508a441266e3629a6ea97f2652ea3ccdc9453459d825b38a65a17", + "tx_hash": "5cadef994ef817048b024cb011579c3e4b9baa49462417190150f05a34a9bcf9", "tx_index": 23, "block_index": 136, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "fairminter_tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "fairminter_tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089772, + "block_time": 1727093222, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } }, { - "tx_hash": "8d49a34c9963f9211b6679edb54d613c8db35c6a98405ba0f25e0ab9c93a7c2b", + "tx_hash": "50b750262a123626672ee6285a36b9d1836a5da7980de9ed42573c516dc0bfba", "tx_index": 21, "block_index": 134, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "fairminter_tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "fairminter_tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089764, + "block_time": 1727093214, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } }, { - "tx_hash": "612d7e8119370fff298f17800d9d75f9a4ac40c829cfc574a0364e688f05f94a", + "tx_hash": "b41d216bd5e86231e03bb51e877b156c421b62f114c085a1eb153435620f9d53", "tx_index": 20, "block_index": 133, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "fairminter_tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "fairminter_tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089760, + "block_time": 1727093209, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } }, { - "tx_hash": "985be77c4294a50484a675bbd3d9da5953dba18532d0518caabe7c127730c884", + "tx_hash": "e205c0212c92af890ba9019c1d3aaf5fd70bf2b246dd36187c9175c8c08ab3fd", "tx_index": 19, "block_index": 132, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "fairminter_tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "fairminter_tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089755, + "block_time": 1727093205, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } }, { - "tx_hash": "5b1ebf326d704e905ec5b9ac0b6fb1898f7fe6e4353ab1f0c6326c3ea3e15bdd", + "tx_hash": "6e4c49dc83facc1956475e1dbf513058755325acbe2974c556d7f09f846f52b4", "tx_index": 15, "block_index": 127, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "fairminter_tx_hash": "bb99ad8dc9e2abcd6ec3a52b9cd21471fcbbf9b4d21c6a72ea69dcec59436f48", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "fairminter_tx_hash": "7a9102f321f0d0fa53fc2a72888a63e7fb5ade06068f5a3401438b09db2d6ed7", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089734, + "block_time": 1727093184, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } }, { - "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", + "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089717, + "block_time": 1727093167, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } @@ -7624,7 +7628,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (str, required) - The address of the mints to return + + address: `bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (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` @@ -7643,22 +7647,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", + "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089717, + "block_time": 1727093167, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } @@ -7697,8 +7701,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: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address that will make the bet - + feed_address: `bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address that will make the bet + + feed_address: `bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (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) @@ -7766,7 +7770,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: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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) @@ -7822,7 +7826,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7834,7 +7838,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "02000000000101b4b598cd41bc31759ebf6bee28904f2aa1175c771be894634d9524762fac1ce8000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0200000000000000002b6a29fe74f7aeed291791d734c55b11dae63870bc7e446476419ffc069c589dde961eb4e1b9563e5da9f70b3bb1052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "020000000001011b513f6fdd1f7df388cb3a662c9bedb782eedb095ea0717969b0849aacf25b0f00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff0200000000000000002b6a296186e4ea78104e3725bdd638b6a278dc81b803953a3f54490b5f7f103cc616c8c15c878889480c4e7a3bb1052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7851,8 +7855,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: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address that will be sending the payment - + order_match_id: `5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8` (str, required) - The ID of the order match to pay for + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address that will be sending the payment + + order_match_id: `c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956` (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) @@ -7904,16 +7908,16 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8" + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956" }, "name": "btcpay", - "data": "434e5452505254590b5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "data": "434e5452505254590bc5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c112946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999975897, "btc_fee": 21103, - "rawtransaction": "020000000001018490d82f5ee2dc69c5f6fd9dba66003d99787608a9ec612280008517efe723cb000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff03b80b0000000000001600143e5479d90ea1664716c42ff6cd46077c13ccd47300000000000000004b6a49cbd9df07d2c0cf1faceab3f0edb6f6419178b8a63a7e1e03b185ff36066d2dd235d3935fdcb6871e51592e162833edfb0957298045a65d09352536edc99b4bee0a17c7decdb6e47b78d993052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "020000000001019f89fd6211d359d6f693f7d7ef3662fe29b15b263c4ae05643dec92cc201d49300000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff03b80b000000000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda00000000000000004b6a49fd74939129837c7351989251869f5391885030a789aec69c3f96482bad7dd2fc7f96b6faf69b54d04401cf6ae44b7e798d52fdcd810dddbfe182e155a7b279db7850fb49f596aebe8ed993052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7930,7 +7934,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: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address with the BTC to burn + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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` @@ -7985,7 +7989,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "quantity": 1000, "overburn": false }, @@ -7995,7 +7999,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999983584, "btc_fee": 15416, - "rawtransaction": "02000000000101f361033ca8ff78cfe2c7ccd8395a2200ac958126a35cf9ae4ac360fee67aff41000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000" + "rawtransaction": "020000000001016f4ab9ebc13fb9781f630b0cd5e2ccd0aefb2224adf72cf64d75e941ee8748aa00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000" } } ``` @@ -8005,8 +8009,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: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043` (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) @@ -8058,16 +8062,16 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "offer_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d" + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "offer_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043" }, "name": "cancel", - "data": "434e54525052545946bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "data": "434e545250525459467961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "0200000000010166ea96e8827d7da9ccc3935789e2f358b0dd57ef70f4df9babce0b3ee3426003000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0200000000000000002b6a29edeb6da89b03d0bac7ce2725a3c19ca4b64dedfda8d0f252d9955856c5d051d9a008834400300837ae3bb1052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "020000000001010ea8b0ffa527d2efd792ef5af53d6740d3bf55df53d42241607204281aa8aa0e00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff0200000000000000002b6a292fc8c1ce801333c0ababbf752eb6c579710b0622f4c027a7a0ba41d379d03471a77e5f1c3b80e5bdc23bb1052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8084,7 +8088,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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 @@ -8139,7 +8143,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8158,7 +8162,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999984036, "btc_fee": 15964, - "rawtransaction": "020000000001018976a99b326a0dc82cf6e0e5fed53708928ca98a81d8f0cfa7b7125a1424561a000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000226a20881c0df8401793cdfcece793396094a09e0915766a089c2d106205a9e68a7efba4b3052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "020000000001010a24bbbb8016c85b33229ee3792609be59352c6eaa21efbbc7896a322a1c37ce00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000226a202b516871e2539518ca5ef8444a9d50936c4acb3716ce16fa69704e657c9948a9a4b3052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8175,7 +8179,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: `bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58` (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) @@ -8236,7 +8240,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", + "source": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8260,7 +8264,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949953351, "btc_fee": 16649, - "rawtransaction": "020000000001012a3cd6a47ff542d48d0438c9c75876eab28b1c2e4563d535f366eb89776eaacc0200000016001401d840dfc6dc260745ae69084785f48258eb45baffffffff0200000000000000002c6a2a8ca5fc6e87e042c2e3aab97566b9033d1baccced54f9b60eafc388ac3b4cd95c62e97630ebccdd5babf0474b0a270100000016001401d840dfc6dc260745ae69084785f48258eb45ba02000000000000", + "rawtransaction": "020000000001018004f2aa7e02c301909cca5e3b8faf7d8d4574233122a61c538904e39d2e238002000000160014068d236984cf5e62eb7f6628e63d0081fa0ed227ffffffff0200000000000000002c6a2ac9c82425abfcc58faac5bb5dc65eac3e618a754de7e312b450901686d49ea7b3b36c819ec2791d75e4eb474b0a2701000000160014068d236984cf5e62eb7f6628e63d0081fa0ed22702000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8277,7 +8281,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: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (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: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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 @@ -8332,14 +8336,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -8358,7 +8362,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "020000000001013c7f0b32e7fb4d3ba8a7b73836b864035340234f09cf4622cdef5734b4dbbe11000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000236a21a95ab6bd82627fe910fc48fa44001f03c85813455ab3eccb65502acea69a8d126c60b3052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "020000000001014dde4c0c84f0a650805533cc702f7e60fb64a2fd5983045ef8f391e63f3ee5e600000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000236a21b3f3a78c45931030d7c10bb4428beada2e067fc45b8b60754cc84bdd7ab1df948b60b3052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8375,10 +8379,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: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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` @@ -8439,10 +8443,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "transfer_destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "lock": false, "reset": false, @@ -8455,7 +8459,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999981092, "btc_fee": 18362, - "rawtransaction": "02000000000101000425aa8500aea9b9d5cb296947b0b6d71f64cf8dd639b63f5a2883de8bad6d000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0322020000000000001600143e5479d90ea1664716c42ff6cd46077c13ccd4730000000000000000236a21cc8ec18aca84767b144ecbac109c4b6812357f9bc58bdcbfa8f667098e2d2853ab24a8052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "02000000000101d0cdc389fd4c7bf47b1c23c05e05f3acd8b650d3fdc550f5c4b4e58660462b3600000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff032202000000000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda0000000000000000236a2109cfd3845a4f4ebea7d37e916683d7b6461abfdda34112aa25cc22bcac9218a95324a8052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8472,9 +8476,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: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz,bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y,bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (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` @@ -8531,16 +8535,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", 1 ], [ "MYASSETA", - "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", 2 ] ], @@ -8548,12 +8552,12 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e545250525459030002803e5479d90ea1664716c42ff6cd46077c13ccd47380c7da25416c8a05ef76411973556de567bdc97a8a8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280a1d4c53a2839a34cbf7e8ecd9810a21633992fda802ae0ca086d281f046afa5927e69de29e640e6a628f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999936609, "btc_fee": 61391, - "rawtransaction": "02000000000104be380ad9f6118df88b30e5ba9df40f45180c2e4578fd44bd16bbe32537dc30c5000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff7070290d1c1af1350dbf89f6d850b13bbf26df47a4a85d899375c522a73a2fad000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0a29fba38b0824e461b534ecc37540382cccfae1ac9451e166b3acf0d4056c11000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffffdb75b1232299c696cc2b5ca1707bedcba354f3412e2128dcf5554ddb766cafe2000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff03e80300000000000069512102eaa8c97299750142bc49ab3dd0b3442290d87e85e1d4b3933c22e3ae2517f42c210302ad2794f10b8d00c7f2173dc385a052af1e6a5a204f1df4b3dfdc796820fb5d2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee80300000000000069512102e5a8c97299750142bc6adc5022e1747a6b56dfe3aad7ec377dcfa5a9590438bc2102d6deef532b2ecc6c4df7f04b829cd307c2fb0fe7e935977b9197b915044fd74e2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653ae61d016a8040000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000002000002000002000000000000", + "rawtransaction": "02000000000104d88254573590eb4337080df10b4f0b4ad803c09b301c1a1faae6ce2943ecd35f00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff75629894e727fe2e729774923a03d6971a8232e2d48baaa5bf1a1449e015514c00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff2d82e749d405fc455cefabcbdf042432516f1e0dc071f6e0cade76f1fa3b5a7f00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff95ef41b04543eb2e3a7228831a3094e0012dabe8a066a8dae923cc53077b0ff700000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff03e8030000000000006951210243f6f7fc25867032afaab047699b42f38677e21c4bddb7dd150b9466ba363fe22102499443450efd3c4bd336ac3d7b848954342c1d4234735cb9b87b2eaee5245f512102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee803000000000000695121024cf6f7fc25867032af89c72a9b56f2179edfdbbf0b7752d86fb384c4ac05a63b2102664e8b6fee373426fb29a05781ddaeb2a9ce81263a193e369a334bc2894b73bb2102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53ae61d016a804000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8570,7 +8574,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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 @@ -8628,7 +8632,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8645,7 +8649,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -8659,7 +8663,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999982734, "btc_fee": 17266, - "rawtransaction": "02000000000101928834522e5fdb45cc387ed9c78a3d7ed808b04988bcb5e354444a3c00305ee7000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000356a33c97bbef8ea2d606a49d860a2b66e866b30ffc12f6625b1b2cb00c5f0270cc1225425393eae0fea5f402c4197742a38e5220d078eae052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "020000000001014aacb3b6ad815a4c50210c455562526822143e09629ab5cfae241abfb1eab7ae00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000356a33d2dbbb794ae4b5d99fb235390b9eb26d1b36baa3a6f44e12910f9ffb6039d025052431a45283f6ab01f5a7158c7df7aac8fc738eae052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8676,8 +8680,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: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (str, required) - The address that will be receiving the asset + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (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 @@ -8737,8 +8741,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8754,12 +8758,12 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880c7da25416c8a05ef76411973556de567bdc97a8a", + "data": "434e54525052545902000000000000000100000000000003e8802ae0ca086d281f046afa5927e69de29e640e6a62", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983077, "btc_fee": 16923, - "rawtransaction": "02000000000101c20d010724af411a2a247fe4dd5848d2b83a47b9fe770cf250ace476a9d4c941000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000306a2ea8baea27a49118c0c972ff0e0197e5821c7ad67e9aa2b4e864831807efeca4c94f8ade8a47195c988596dd65a692e5af052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "02000000000101cdb2043481d9e60271c55a9dffae7e8bcf3f594d494145952d2f09d41021123300000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000306a2e739847d72081f157104b3f0a1992e1777522f8de11bf3171ae56dc10be77a55616893c889e9ffd540fd31eb624dee5af052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8776,8 +8780,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: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address that will be sending - + destination: `bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address that will be sending + + destination: `bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (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 @@ -8831,18 +8835,18 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480c7da25416c8a05ef76411973556de567bdc97a8a07ffff", + "data": "434e54525052545904802ae0ca086d281f046afa5927e69de29e640e6a6207ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "020000000001016e81923da0987e761c47ff80393af0bea0a0b5ef1679b1b76878c68753d01c31000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000236a21e50cc89fd41bab833f848e0b2e4649e3ce7243b5baf441d6c57493d2abfa88d82b60b3052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "02000000000101469740e2c86396825812cc793adc952cb159869fbe68f70ad62ec8f90e3dca8500000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000236a21eb6c0a6f87a70df6580c99f871c80d905cd0c3c3c7ca09b3177df4a32679df84ed60b3052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8859,8 +8863,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: `bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n` (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` @@ -8913,8 +8917,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "quantity": 1000 }, "name": "dispense", @@ -8923,7 +8927,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949850214, "btc_fee": 16786, - "rawtransaction": "02000000000101dea30e8328b8079583b96c3ef77f9b7009ce379259fb87bcd088633f21a61c8302000000160014c7da25416c8a05ef76411973556de567bdc97a8affffffff03e803000000000000160014fa167162004bd108ffc4b1cfaf62ff500d14c74100000000000000000c6a0ac01c12de2331cceff02a66b8082701000000160014c7da25416c8a05ef76411973556de567bdc97a8a02000000000000", + "rawtransaction": "020000000001016bbe33f447b862a08c6c7e6853210f90154fad7add09b03cbcc11e8033767e4a020000001600142ae0ca086d281f046afa5927e69de29e640e6a62ffffffff03e80300000000000016001448679a4ad46ccfb39129094fc4ea5ad1385a05f500000000000000000c6a0a4564db1175b8a24eaf8266b80827010000001600142ae0ca086d281f046afa5927e69de29e640e6a6202000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8940,7 +8944,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address that will be issuing the asset + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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: `` @@ -9025,7 +9029,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9050,7 +9054,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999983008, "btc_fee": 16992, - "rawtransaction": "02000000000101aa7ce43971254a90d4ccc6b79aa2ef799a9a4b00bbedbd1942eae5c1b55a2af2000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000316a2f715c94a7f4fb2b8ff0d449110ddebde8509f5199e9d24d15a03d253a7d71824a88a648920d2907b225109a6f72df18a0af052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "0200000000010188c825db2b13d7c4582dc26cedae5437f4050194ff8a8fef902088045cbb38c200000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000316a2f78a7cb7c7fc1b9f3887131a36926d6ebcef1c20698d24431d8ae0ecd5db486c3046dc7e1a21bddf5b7923ad699db51a0af052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9067,7 +9071,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: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address that will be minting the asset + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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` @@ -9122,13 +9126,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -9140,7 +9144,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999984858, "btc_fee": 15142, - "rawtransaction": "020000000001013d689999212a122c2985028b16378a094bf53062bf1faf12a751052a4bd35754000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000166a14257a90a16c25b2e5f878513a635d0805d4678aeadab6052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "020000000001014e29093d974c2b92f83b61c9bb75a7a28ad5ff2e0b1fa9e185a10aaaa47ad82400000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000166a14833fdd88988e3689c1f82e0b988279be26738447dab6052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9157,10 +9161,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: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address from which the assets are attached + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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: `3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0:3` (str, optional) - The utxo to attach the assets to + + destination: `65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4:3` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9213,8 +9217,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0:3", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4:3", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9227,12 +9231,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171386532386e6b677735396e7977396b79396c6d7636337338307366756534726e756b6b64637a7c333937386436636233666530613664613830356136323037313461643262633330346530383264373331343263643831303732396338356338623462313264303a337c5843507c31303030", + "data": "434e5452505254596462637274317135383276327733673878333565306d37336d78657379397a7a6365656a7437366863707a37797c363563643661383034396632393133396265663364373864343461646236353266306136343837333461616166366431613163613835623963376634353665343a337c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999905256, "btc_fee": 91744, - "rawtransaction": "020000000001062333447ebbea0fd6a2a225010dccc6d3c5477c35a8acef277d20e91565d7c347000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffffc1d16b68605c411e45ad8e0397dac1b581a6df12f2f06fe2af40ff24e952d19e000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffffbf74197d364fdbe426f1daaec1c656e575ed2231d18da43348467151bae2522c000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0b32d484d9546ad3bef76d6dc3906513d3b8a82998967e49c9130849194a8fcb000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473fffffffffabcd8acadac9fb2cacb64d909a9948acdc57c7c19105ae5560d7272811de972000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffffb8523f38389b9e6699298411af04bac6a1cd1713eaf4a97bac2c71bedf70eb4e000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff04e80300000000000069512102be6824c9c2837855acb7c2552a01165fbb89f27130a7ff4a4f8cd8111cc905ac2103efa04bf310d554e2f9edaa566eaeae7459e864db0620471418ac9a1078c967262103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee80300000000000069512102be6824c9c2837855acb193503d454618e78df8796badae0f4a82875c0a945c242102f4fa14ae528657a9f3b9ee032affa86553a53e805571040b13a0ce107ecb66d92103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee80300000000000069512102946824c9c2837855ace29252684f1452dbaf90356ffca80d7ab5b6686bf06e1821029699279e66e36791c1ddd9301bcb9a06379d0fb062433d682b95ad281cff04e62103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee83922fc060000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000002000002000002000002000002000000000000", + "rawtransaction": "0200000000010648c9fd3cb5f428032cc8ed89bf5c3b36fc13547024f4128b2e140f929728e1a000000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffffe1f3f7c7904eabd1536bf76b8b3fa402d7b9202f765226da53d078ddd488af2100000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff94fc5de95229556e4566ff3ae8cd7d383e76a7bd9ae610106978d64c443f505300000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffffa3e388ae2ebee65472cc607151f49002d6de5ff576fe47941ef69f375e974d6d00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff4297fb2e2b6fc7559f3648e0664907f1e4f3377ddb31d134ead6a366a4981ff300000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffffeccbf203673843794be03d22fcf570fe9d8bd202878e1224961f0e80a103d4b900000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff04e80300000000000069512103865345e83ce6f89535b804d9c9b2ba9b32cf453423d6e6725febe65b3b037f7c21021c6fd22f5dc1266af20aac17bcecb6fbee9f08bd3260f40ee5cb87b728c76f1b2102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee80300000000000069512102865345e83ce6f89535ec5283ddf4b2db34ce15277792b1225ff7e15a3f57705121021d698d3108d36967b047fc46b8e7a3aaee935aac7934ec4ae69cddb029c063f32102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee80300000000000069512102ac5345e83ce6f89535e950df8ffcb8965fb4273e2091e5256793d56e5e3312a121022b5cbf5738b25f538870cf72d986c2ccd8f76bcd48578d72d3fee4d31ea6576f2102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee83922fc06000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9249,8 +9253,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: `a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c:1` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to detach the assets to + + utxo: `3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389:1` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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 @@ -9304,8 +9308,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c:1", - "destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389:1", + "destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9318,12 +9322,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964613239393834616131613833316366616539306235336338303930306666396431303865353735613365633736636138646563663666363138653163356130633a317c626372743171386532386e6b677735396e7977396b79396c6d7636337338307366756534726e756b6b64637a7c5843507c31303030", + "data": "434e54525052545964333432393634363138333939316237626663656438623535646464623836663035303466666534393262316237373265323764646532336431643061643338393a317c62637274317135383276327733673878333565306d37336d78657379397a7a6365656a7437366863707a37797c5843507c31303030", "btc_in": 4949874900, "btc_out": 3000, "btc_change": 4949842164, "btc_fee": 29736, - "rawtransaction": "020000000001010c5a1c8e616fcfdea86cc73e5a578e109dff0009c8530be9fa1c831aaa8499a201000000160014e4967dc95a9dc087b320508b527a8ba2f1641404ffffffff04e8030000000000006951210338cb0920482201a454429a0b10c677b9c57a58e648ef9f97e8160f1fa75ac903210251e0e4c133f7e8f49b4a561bec2b72b93b0a59a5e5b0a29f1dfaefdd745c6c4c2102e211c75c1f658711fb2f12f9538ca309f92b3e249f764e2a1bb312f311c8e81453aee8030000000000006951210338cb0920482201a454109d0f18c72abcc72e08b713e69f88ec141852a649c46d210207b1e49f61a0afa7c41d4b5de5786eb560524ea0b3a0ad990dfda2dc254d640f2102e211c75c1f658711fb2f12f9538ca309f92b3e249f764e2a1bb312f311c8e81453aee8030000000000006951210312cb0920482201a4545390524d9c35f1fc5839fb41ec9ec48e776a269738fc5421026283dcf10ac7d892fd73322adc13178c0c3f389680d395a97e9bd7b9113f0ad82102e211c75c1f658711fb2f12f9538ca309f92b3e249f764e2a1bb312f311c8e81453aef498082701000000160014e4967dc95a9dc087b320508b527a8ba2f164140402000000000000", + "rawtransaction": "0200000000010189d30a1d3de2dd272e771b2b49fe4f50f086dbdd558bedfc7b1b998361642934010000001600141ffcb5e94b4bb7721d31470b9127310a921e5f9cffffffff04e80300000000000069512103e4a08582503791c795b346510299e80d744e26bdc7e437c630b0dfc44929d44821038e01933582663073f222ebb5f6c7a41f7acf01246a8d326259d60704bca9f7b721037eea63e0236a331d93b3a01fac2fb0a1770b0580e0e98f89d6262276cca409db53aee80300000000000069512103e4a08582503791c795b247565491ba09231b2db6c7e737d865b1cbd31d3cd9f02102d406d06391313573bc77eee5f69ef54a72835d6571852a2f0d81075cfffaa51e21037eea63e0236a331d93b3a01fac2fb0a1770b0580e0e98f89d6262276cca409db53aee80300000000000069512102cea08582503791c795bf16154a97a7451a3c4ef2cfed369407d2b9a72c4dec722102ec34a651e602524bc444db80c6f3c2791ffb381608bc50556ee462368bcd939421037eea63e0236a331d93b3a01fac2fb0a1770b0580e0e98f89d6262276cca409db53aef4980827010000001600141ffcb5e94b4bb7721d31470b9127310a921e5f9c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9378,8 +9382,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false, "supply": 10000000000, @@ -9387,16 +9391,16 @@ Returns the valid assets "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727089867, - "last_issuance_block_time": 1727089896, + "first_issuance_block_time": 1727093327, + "last_issuance_block_time": 1727093335, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", - "owner": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", + "issuer": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", + "owner": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", "divisible": true, "locked": false, "supply": 100000000000, @@ -9404,16 +9408,16 @@ Returns the valid assets "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1727089863, - "last_issuance_block_time": 1727089863, + "first_issuance_block_time": 1727093323, + "last_issuance_block_time": 1727093323, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false, "supply": 100000000000, @@ -9421,16 +9425,16 @@ Returns the valid assets "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727089828, - "last_issuance_block_time": 1727089828, + "first_issuance_block_time": 1727093278, + "last_issuance_block_time": 1727093278, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false, "supply": 40, @@ -9438,16 +9442,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727089768, - "last_issuance_block_time": 1727089772, + "first_issuance_block_time": 1727093218, + "last_issuance_block_time": 1727093222, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false, "supply": 19, @@ -9455,8 +9459,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727089751, - "last_issuance_block_time": 1727089764, + "first_issuance_block_time": 1727093201, + "last_issuance_block_time": 1727093214, "supply_normalized": "0.00000019" } ], @@ -9484,8 +9488,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false, "supply": 10000000000, @@ -9493,8 +9497,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1727089713, - "last_issuance_block_time": 1727089726, + "first_issuance_block_time": 1727093163, + "last_issuance_block_time": 1727093176, "supply_normalized": "100.00000000" } } @@ -9525,7 +9529,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9533,14 +9537,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9548,7 +9552,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -9565,7 +9569,7 @@ Returns the asset balances Returns the balance of an address and asset + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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` @@ -9577,7 +9581,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -9594,7 +9598,7 @@ Returns the balance of an address and asset } ``` -### Get Orders By Asset [GET /v2/assets/{asset}/orders{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] +### Get Orders By Asset [GET /v2/assets/{asset}/orders{?status}{&cursor}{&limit}{&offset}{&sort}{&verbose}{&show_unconfirmed}] Returns the orders of an asset @@ -9614,6 +9618,8 @@ Returns the orders of an asset + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) + Default: `None` + + sort: `expiration:desc` (str, optional) - The sort order of the orders to return (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. @@ -9625,10 +9631,10 @@ Returns the orders of an asset { "result": [ { - "tx_index": 57, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", - "block_index": 191, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 47, + "tx_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "block_index": 182, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9636,14 +9642,14 @@ Returns the orders of an asset "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 212, + "expire_index": 181, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "confirmed": true, - "block_time": 1727090024, + "block_time": 1727093354, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9667,11 +9673,54 @@ Returns the orders of an asset "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, + { + "tx_index": 49, + "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "block_index": 186, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "give_asset": "XCP", + "give_quantity": 10000, + "give_remaining": 5000, + "get_asset": "BTC", + "get_quantity": 10000, + "get_remaining": 5000, + "expiration": 21, + "expire_index": 204, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1727093435, + "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": 55, - "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "block_index": 190, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9686,7 +9735,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727090019, + "block_time": 1727093462, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9711,43 +9760,43 @@ Returns the orders of an asset "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 52, - "tx_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", - "block_index": 186, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "give_asset": "BTC", - "give_quantity": 3000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 3000, - "get_remaining": 0, + "tx_index": 57, + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "block_index": 191, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, "expiration": 21, - "expire_index": 207, + "expire_index": 212, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727090002, + "block_time": 1727093467, "give_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, + "description": "The Counterparty protocol native currency", + "locked": true, "issuer": null }, "get_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, + "description": "The Bitcoin cryptocurrency", + "locked": false, "issuer": null }, - "give_quantity_normalized": "0.00003000", - "get_quantity_normalized": "0.00003000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", @@ -9755,9 +9804,9 @@ Returns the orders of an asset }, { "tx_index": 50, - "tx_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "tx_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "block_index": 185, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -9772,7 +9821,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727089998, + "block_time": 1727093431, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9795,57 +9844,14 @@ Returns the orders of an asset "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 49, - "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "block_index": 186, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 204, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1727090002, - "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" } ], - "next_cursor": 48, + "next_cursor": 52, "result_count": 7 } ``` -### Get Order Matches By Asset [GET /v2/assets/{asset}/matches{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] +### Get Order Matches By Asset [GET /v2/assets/{asset}/matches{?status}{&cursor}{&limit}{&offset}{&sort}{&verbose}{&show_unconfirmed}] Returns the orders of an asset @@ -9864,6 +9870,8 @@ Returns the orders of an asset + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) + Default: `None` + + sort: `forward_quantity:desc` (str, optional) - The sort order of the order matches to return (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. @@ -9875,13 +9883,13 @@ Returns the orders of an asset { "result": [ { - "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", "tx0_index": 49, - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 52, - "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", - "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -9895,7 +9903,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727090002, + "block_time": 1727093435, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9915,13 +9923,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "tx0_index": 49, - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 50, - "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", - "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -9935,7 +9943,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727089998, + "block_time": 1727093431, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9955,13 +9963,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", "tx0_index": 47, - "tx0_hash": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 48, - "tx1_hash": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", - "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "tx1_hash": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -9975,7 +9983,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727089916, + "block_time": 1727093354, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10055,20 +10063,20 @@ Returns the credits of an asset "result": [ { "block_index": 192, - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -10076,20 +10084,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "acf48dd0934a72afc03c4f60973d9546548128c16f7dd8a2d27d53d9cefd51d2", + "event": "51964afe198dc7b43960247984e8e03be0113effcaa92fef97aa1cbfdb64a6c0", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727089726, + "block_time": 1727093176, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -10097,20 +10105,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075", + "event": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727089722, + "block_time": 1727093171, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -10118,20 +10126,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", + "event": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727089722, + "block_time": 1727093171, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -10143,16 +10151,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075", + "event": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727089722, + "block_time": 1727093171, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -10208,16 +10216,16 @@ Returns the debits of an asset "result": [ { "block_index": 193, - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "event": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -10229,16 +10237,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -10250,16 +10258,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -10271,16 +10279,16 @@ Returns the debits of an asset }, { "block_index": 191, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "event": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090024, + "block_time": 1727093467, "asset_info": { "divisible": true, "asset_longname": null, @@ -10292,16 +10300,16 @@ Returns the debits of an asset }, { "block_index": 189, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090015, + "block_time": 1727093458, "asset_info": { "divisible": true, "asset_longname": null, @@ -10341,20 +10349,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 40, - "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", + "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", "block_index": 153, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727089854, + "block_time": 1727093314, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -10398,14 +10406,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "acf48dd0934a72afc03c4f60973d9546548128c16f7dd8a2d27d53d9cefd51d2", + "tx_hash": "51964afe198dc7b43960247984e8e03be0113effcaa92fef97aa1cbfdb64a6c0", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -10420,20 +10428,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727089726, + "block_time": 1727093176, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075", + "tx_hash": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -10448,20 +10456,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727089722, + "block_time": 1727093171, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", + "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -10476,20 +10484,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727089717, + "block_time": 1727093167, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -10504,7 +10512,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1727089713, + "block_time": 1727093163, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10538,10 +10546,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10549,7 +10557,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "divisible": true, "asset_longname": null, @@ -10562,10 +10570,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 53, - "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794", + "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0", "block_index": 187, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10573,7 +10581,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090007, + "block_time": 1727093439, "asset_info": { "divisible": true, "asset_longname": null, @@ -10586,10 +10594,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 42, - "tx_hash": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", + "tx_hash": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", "block_index": 155, - "source": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7:0", - "destination": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c:1", + "source": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561:0", + "destination": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10597,7 +10605,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727089863, + "block_time": 1727093323, "asset_info": { "divisible": true, "asset_longname": null, @@ -10610,10 +10618,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 41, - "tx_hash": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7", + "tx_hash": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561", "block_index": 154, - "source": "53811a32e206a65da3b210d98250f6fcb76f9b6be3271e87c0cdfb8c512dd590:0", - "destination": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7:0", + "source": "61dfe33f21d7929996be520e84245cb0ef401935edd4e6c382303f81ab07cda1:0", + "destination": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10621,7 +10629,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727089858, + "block_time": 1727093318, "asset_info": { "divisible": true, "asset_longname": null, @@ -10638,7 +10646,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset } ``` -### Get Dispensers By Asset [GET /v2/assets/{asset}/dispensers{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] +### Get Dispensers By Asset [GET /v2/assets/{asset}/dispensers{?status}{&cursor}{&limit}{&offset}{&sort}{&verbose}{&show_unconfirmed}] Returns the dispensers of an asset @@ -10658,6 +10666,8 @@ Returns the dispensers of an asset + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) + Default: `None` + + sort: `give_quantity:desc` (str, optional) - The sort order of the dispensers to return (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. @@ -10669,29 +10679,29 @@ Returns the dispensers of an asset { "result": [ { - "tx_index": 32, - "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", - "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "tx_index": 26, + "tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "block_index": 141, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, - "status": 0, - "give_remaining": 9334, - "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "status": 10, + "give_remaining": 0, + "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", - "dispense_count": 1, + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "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": 1727089824, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -10700,25 +10710,25 @@ Returns the dispensers of an asset "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009334", + "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" + "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 30, - "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", - "block_index": 144, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 29, + "tx_hash": "22d25e58a41019478c7742f0049a02c6e66fda5f38c995a6cdbbbb79d282f4d5", + "block_index": 142, + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "give_quantity": 1, - "escrow_quantity": 10, + "escrow_quantity": 10000, "satoshirate": 1, "status": 0, - "give_remaining": 20, + "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10728,7 +10738,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089816, + "block_time": 1727093257, "asset_info": { "divisible": true, "asset_longname": null, @@ -10737,25 +10747,25 @@ Returns the dispensers of an asset "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000020", - "escrow_quantity_normalized": "0.00000010", + "give_remaining_normalized": "0.00010000", + "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 29, - "tx_hash": "3a6af3e11c6339f8caf016fedef2856a68de90aa0e72317b4ee81e38c80c4fdd", - "block_index": 142, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "tx_index": 30, + "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", + "block_index": 144, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "give_quantity": 1, - "escrow_quantity": 10000, + "escrow_quantity": 10, "satoshirate": 1, "status": 0, - "give_remaining": 10000, + "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10765,7 +10775,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089797, + "block_time": 1727093265, "asset_info": { "divisible": true, "asset_longname": null, @@ -10774,35 +10784,35 @@ Returns the dispensers of an asset "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00010000", - "escrow_quantity_normalized": "0.00010000", + "give_remaining_normalized": "0.00000020", + "escrow_quantity_normalized": "0.00000010", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 26, - "tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", - "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 32, + "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "block_index": 146, + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, + "status": 0, + "give_remaining": 9334, + "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "dispense_count": 2, + "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "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": 1727089793, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "block_time": 1727093274, "asset_info": { "divisible": true, "asset_longname": null, @@ -10811,10 +10821,10 @@ Returns the dispensers of an asset "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", + "give_remaining_normalized": "0.00009334", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000016" } ], "next_cursor": null, @@ -10827,7 +10837,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - The address to return + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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` @@ -10840,9 +10850,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", + "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", "block_index": 144, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10851,7 +10861,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10861,7 +10871,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089816, + "block_time": 1727093265, "asset_info": { "divisible": true, "asset_longname": null, @@ -10911,7 +10921,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -10919,7 +10929,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -10928,7 +10938,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -10936,7 +10946,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -10945,7 +10955,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -10953,7 +10963,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -10962,7 +10972,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -10999,27 +11009,27 @@ Returns the dispenses of an asset { "tx_index": 33, "dispense_index": 0, - "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", - "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", + "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "last_status_tx_hash": null, - "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -11034,7 +11044,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727089824, + "block_time": 1727093274, "asset_info": { "divisible": true, "asset_longname": null, @@ -11048,19 +11058,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", + "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11068,7 +11078,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11083,7 +11093,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089793, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -11097,19 +11107,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", + "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", "block_index": 140, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11117,7 +11127,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11132,7 +11142,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089788, + "block_time": 1727093239, "asset_info": { "divisible": true, "asset_longname": null, @@ -11175,8 +11185,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false, "supply": 0, @@ -11184,8 +11194,8 @@ Returns asset subassets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1727089881, - "last_issuance_block_time": 1727089881, + "first_issuance_block_time": 1727093331, + "last_issuance_block_time": 1727093331, "supply_normalized": "0.00000000" } ], @@ -11217,10 +11227,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "tx_index": 10, "block_index": 125, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11245,7 +11255,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727089726 + "block_time": 1727093176 } ], "next_cursor": null, @@ -11276,64 +11286,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "acf48dd0934a72afc03c4f60973d9546548128c16f7dd8a2d27d53d9cefd51d2", + "tx_hash": "51964afe198dc7b43960247984e8e03be0113effcaa92fef97aa1cbfdb64a6c0", "tx_index": 13, "block_index": 125, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", - "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089726, + "block_time": 1727093176, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } }, { - "tx_hash": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075", + "tx_hash": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7", "tx_index": 12, "block_index": 124, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089722, + "block_time": 1727093171, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } }, { - "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", + "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089717, + "block_time": 1727093167, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } @@ -11349,7 +11359,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x` (str, required) - The address of the mints to return + + address: `bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (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` @@ -11368,22 +11378,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", + "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089717, + "block_time": 1727093167, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } @@ -11396,7 +11406,7 @@ Returns the mints by address and asset ## Group Orders -### Get Orders [GET /v2/orders{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] +### Get Orders [GET /v2/orders{?status}{&cursor}{&limit}{&offset}{&sort}{&verbose}{&show_unconfirmed}] Returns all the orders @@ -11415,6 +11425,8 @@ Returns all the orders + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) + Default: `None` + + sort: `expiration:desc` (str, optional) - The sort order of the orders to return (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. @@ -11426,10 +11438,10 @@ Returns all the orders { "result": [ { - "tx_index": 57, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", - "block_index": 191, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 47, + "tx_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "block_index": 182, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11437,14 +11449,14 @@ Returns all the orders "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 212, + "expire_index": 181, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "confirmed": true, - "block_time": 1727090024, + "block_time": 1727093354, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11469,111 +11481,111 @@ Returns all the orders "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 55, - "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", - "block_index": 190, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, + "tx_index": 50, + "tx_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "block_index": 185, + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "give_asset": "BTC", + "give_quantity": 2000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 2000, + "get_remaining": 0, "expiration": 21, - "expire_index": 210, + "expire_index": 205, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "cancelled", + "status": "filled", "confirmed": true, - "block_time": 1727090019, + "block_time": 1727093431, "give_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, + "description": "The Bitcoin cryptocurrency", + "locked": false, "issuer": null }, "get_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, + "description": "The Counterparty protocol native currency", + "locked": true, "issuer": null }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", + "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": 52, - "tx_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "tx_index": 49, + "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", "block_index": 186, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "give_asset": "BTC", - "give_quantity": 3000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 3000, - "get_remaining": 0, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "give_asset": "XCP", + "give_quantity": 10000, + "give_remaining": 5000, + "get_asset": "BTC", + "get_quantity": 10000, + "get_remaining": 5000, "expiration": 21, - "expire_index": 207, + "expire_index": 204, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727090002, + "block_time": 1727093435, "give_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, + "description": "The Counterparty protocol native currency", + "locked": true, "issuer": null }, "get_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, + "description": "The Bitcoin cryptocurrency", + "locked": false, "issuer": null }, - "give_quantity_normalized": "0.00003000", - "get_quantity_normalized": "0.00003000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", + "give_quantity_normalized": "0.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": 50, - "tx_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", - "block_index": 185, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "tx_index": 52, + "tx_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "block_index": 186, + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "give_asset": "BTC", - "give_quantity": 2000, + "give_quantity": 3000, "give_remaining": 0, "get_asset": "XCP", - "get_quantity": 2000, + "get_quantity": 3000, "get_remaining": 0, "expiration": 21, - "expire_index": 205, + "expire_index": 207, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "filled", + "status": "open", "confirmed": true, - "block_time": 1727089998, + "block_time": 1727093435, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11588,8 +11600,8 @@ Returns all the orders "locked": true, "issuer": null }, - "give_quantity_normalized": "0.00002000", - "get_quantity_normalized": "0.00002000", + "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", @@ -11598,25 +11610,25 @@ Returns all the orders "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 49, - "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "block_index": 186, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 55, + "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "block_index": 190, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, + "give_quantity": 1000, + "give_remaining": 1000, "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, + "get_quantity": 1000, + "get_remaining": 1000, "expiration": 21, - "expire_index": 204, + "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "cancelled", "confirmed": true, - "block_time": 1727090002, + "block_time": 1727093462, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11631,17 +11643,17 @@ Returns all the orders "locked": false, "issuer": null }, - "give_quantity_normalized": "0.00010000", - "get_quantity_normalized": "0.00010000", - "get_remaining_normalized": "0.00005000", - "give_remaining_normalized": "0.00005000", + "give_quantity_normalized": "0.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": 48, + "next_cursor": 57, "result_count": 7 } ``` @@ -11651,7 +11663,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d` (str, required) - The hash of the transaction that created the order + + order_hash: `7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043` (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. @@ -11663,9 +11675,9 @@ Returns the information of an order { "result": { "tx_index": 57, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "block_index": 191, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11680,7 +11692,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727090024, + "block_time": 1727093467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11707,12 +11719,12 @@ Returns the information of an order } ``` -### Get Order Matches By Order [GET /v2/orders/{order_hash}/matches{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] +### Get Order Matches By Order [GET /v2/orders/{order_hash}/matches{?status}{&cursor}{&limit}{&offset}{&sort}{&verbose}{&show_unconfirmed}] Returns the order matches of an order + Parameters - + order_hash: `5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d` (str, required) - The hash of the transaction that created the order + + order_hash: `c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1` (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 @@ -11726,6 +11738,8 @@ Returns the order matches of an order + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) + Default: `None` + + sort: `forward_quantity:desc` (str, optional) - The sort order of the order matches to return (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. @@ -11737,13 +11751,13 @@ Returns the order matches of an order { "result": [ { - "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", "tx0_index": 49, - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 52, - "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", - "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11757,7 +11771,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727090002, + "block_time": 1727093435, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11777,13 +11791,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "tx0_index": 49, - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 50, - "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", - "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11797,7 +11811,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727089998, + "block_time": 1727093431, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11827,7 +11841,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d` (str, required) - The hash of the transaction that created the order + + order_hash: `c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1` (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 @@ -11846,15 +11860,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 51, - "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", + "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", "block_index": 185, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "btc_amount": 2000, - "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "status": "valid", "confirmed": true, - "block_time": 1727089998, + "block_time": 1727093431, "btc_amount_normalized": "0.00002000" } ], @@ -11863,7 +11877,7 @@ Returns the BTC pays of an order } ``` -### Get Orders By Two Assets [GET /v2/orders/{asset1}/{asset2}{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] +### Get Orders By Two Assets [GET /v2/orders/{asset1}/{asset2}{?status}{&cursor}{&limit}{&offset}{&sort}{&verbose}{&show_unconfirmed}] Returns the orders to exchange two assets @@ -11884,6 +11898,8 @@ Returns the orders to exchange two assets + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) + Default: `None` + + sort: `expiration:desc` (str, optional) - The sort order of the orders to return (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. @@ -11895,92 +11911,46 @@ Returns the orders to exchange two assets { "result": [ { - "tx_index": 57, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", - "block_index": 191, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, + "tx_index": 50, + "tx_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "block_index": 185, + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "give_asset": "BTC", + "give_quantity": 2000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 2000, + "get_remaining": 0, "expiration": 21, - "expire_index": 212, + "expire_index": 205, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "filled", "confirmed": true, "market_pair": "BTC/XCP", - "market_dir": "BUY", + "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727090024, + "block_time": 1727093431, "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": 55, - "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", - "block_index": 190, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 210, - "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": 1727090019, - "give_asset_info": { + "get_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", + "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", @@ -11988,9 +11958,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "tx_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", "block_index": 186, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12008,7 +11978,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727090002, + "block_time": 1727093435, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12033,46 +12003,46 @@ Returns the orders to exchange two assets "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 50, - "tx_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", - "block_index": 185, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "give_asset": "BTC", - "give_quantity": 2000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 2000, - "get_remaining": 0, + "tx_index": 47, + "tx_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "block_index": 182, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, "expiration": 21, - "expire_index": 205, + "expire_index": 181, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "filled", + "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", - "market_dir": "SELL", + "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727089998, + "block_time": 1727093354, "give_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, + "description": "The Counterparty protocol native currency", + "locked": true, "issuer": null }, "get_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, + "description": "The Bitcoin cryptocurrency", + "locked": false, "issuer": null }, - "give_quantity_normalized": "0.00002000", - "get_quantity_normalized": "0.00002000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", @@ -12080,9 +12050,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", "block_index": 186, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12100,7 +12070,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727090002, + "block_time": 1727093435, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12123,14 +12093,60 @@ Returns the orders to exchange two assets "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 55, + "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "block_index": 190, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 210, + "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": 1727093462, + "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": 48, + "next_cursor": 57, "result_count": 7 } ``` -### Get Order Matches By Two Assets [GET /v2/orders/{asset1}/{asset2}/matches{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] +### Get Order Matches By Two Assets [GET /v2/orders/{asset1}/{asset2}/matches{?status}{&cursor}{&limit}{&offset}{&sort}{&verbose}{&show_unconfirmed}] Returns the orders to exchange two assets @@ -12150,6 +12166,8 @@ Returns the orders to exchange two assets + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) + Default: `None` + + sort: `forward_quantity:desc` (str, optional) - The sort order of the order matches to return (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. @@ -12161,13 +12179,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", "tx0_index": 49, - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 52, - "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", - "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12184,7 +12202,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727090002, + "block_time": 1727093435, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12204,13 +12222,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "tx0_index": 49, - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 50, - "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", - "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12227,7 +12245,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727089998, + "block_time": 1727093431, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12247,13 +12265,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", "tx0_index": 47, - "tx0_hash": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 48, - "tx1_hash": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", - "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "tx1_hash": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12270,7 +12288,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727089916, + "block_time": 1727093354, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12297,7 +12315,7 @@ Returns the orders to exchange two assets ## Group Order_matches -### Get All Order Matches [GET /v2/order_matches{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] +### Get All Order Matches [GET /v2/order_matches{?status}{&cursor}{&limit}{&offset}{&sort}{&verbose}{&show_unconfirmed}] Returns all the order matches @@ -12315,6 +12333,8 @@ Returns all the order matches + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) + Default: `None` + + sort: `forward_quantity:desc` (str, optional) - The sort order of the order matches to return (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. @@ -12326,13 +12346,13 @@ Returns all the order matches { "result": [ { - "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", "tx0_index": 49, - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 52, - "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", - "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12346,7 +12366,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727090002, + "block_time": 1727093435, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12366,13 +12386,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "tx0_index": 49, - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 50, - "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", - "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12386,7 +12406,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727089998, + "block_time": 1727093431, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12406,13 +12426,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", "tx0_index": 47, - "tx0_hash": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 48, - "tx1_hash": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", - "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "tx1_hash": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12426,7 +12446,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727089916, + "block_time": 1727093354, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12594,66 +12614,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "6a8c5d264053a3fe132a67dfd75f6b75be30fbcc6338e9b6df1e8537ac9908e3", + "tx_hash": "d460a52fd5533e197907b84dcdc8e7fc885c9e17ede386f2ecc15af162d7113c", "block_index": 121, - "source": "bcrt1qwp3vs8yzyz6lc0udjsz37s78rwa908kzgnm7yu", + "source": "bcrt1qswegegswg6qyw5u90tafnw398gzn5a0d5re8u4", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1727089709, + "block_time": 1727093158, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "063848e75c5fff12624ce719a4a817957db286aff18fe03a6c95a277a5da8258", + "tx_hash": "c9daab89307e84bcc14f96bd8fc527be86b26696b8f2d095cec58e769818aab3", "block_index": 120, - "source": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", + "source": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1727089705, + "block_time": 1727093154, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "5e3d5bfcd850b9bb5fe0330972c9c0c3006ca502cbe308c24c89e02a84b2444a", + "tx_hash": "b249762795207fb5f190c065f1828cd125d79735399db8e49f372255863f630c", "block_index": 119, - "source": "bcrt1qr6g583q4apu77vem308rd09m65hmh5j5gly0mm", + "source": "bcrt1qqhp6nrswkpq6js9wqn9rf56zzrer5a3myr0pc3", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1727089701, + "block_time": 1727093150, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "165a6c8507e1a26b393699c7b5f1edbe9fd62bbe8ff4047eea004a8469262dfe", + "tx_hash": "fcc7f7764c0d2d26074b73dda895c366d443e986398c86125a5ab881d010ed88", "block_index": 118, - "source": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", + "source": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1727089697, + "block_time": 1727093146, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "591582bf8f85502b086d90fc4edd97cf117c8f8fdd92f958b40d006818dd9219", + "tx_hash": "0d976e3a765844dc3bc60fe2f329fe2d1d7e194761b3cb3c78eef3448bbb92dd", "block_index": 117, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1727089693, + "block_time": 1727093142, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12665,7 +12685,7 @@ Returns the burns ## Group Dispensers -### Get Dispensers [GET /v2/dispensers{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] +### Get Dispensers [GET /v2/dispensers{?status}{&cursor}{&limit}{&offset}{&sort}{&verbose}{&show_unconfirmed}] Returns all dispensers @@ -12684,6 +12704,8 @@ Returns all dispensers + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) + Default: `None` + + sort: `give_quantity:desc` (str, optional) - The sort order of the dispensers to return (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. @@ -12696,18 +12718,18 @@ Returns all dispensers "result": [ { "tx_index": 32, - "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", + "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "last_status_tx_hash": null, - "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -12717,7 +12739,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727089824, + "block_time": 1727093274, "asset_info": { "divisible": true, "asset_longname": null, @@ -12733,9 +12755,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", + "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", "block_index": 144, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -12744,7 +12766,7 @@ Returns all dispensers "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12754,7 +12776,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089816, + "block_time": 1727093265, "asset_info": { "divisible": true, "asset_longname": null, @@ -12770,9 +12792,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "3a6af3e11c6339f8caf016fedef2856a68de90aa0e72317b4ee81e38c80c4fdd", + "tx_hash": "22d25e58a41019478c7742f0049a02c6e66fda5f38c995a6cdbbbb79d282f4d5", "block_index": 142, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12781,7 +12803,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "origin": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12791,7 +12813,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089797, + "block_time": 1727093257, "asset_info": { "divisible": true, "asset_longname": null, @@ -12807,9 +12829,9 @@ Returns all dispensers }, { "tx_index": 26, - "tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12818,7 +12840,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12828,7 +12850,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089793, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -12853,7 +12875,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24` (str, required) - The hash of the dispenser to return + + dispenser_hash: `446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b` (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. @@ -12865,9 +12887,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12876,7 +12898,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12886,7 +12908,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089793, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -12908,7 +12930,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24` (str, required) - The hash of the dispenser to return + + dispenser_hash: `446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b` (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 @@ -12928,19 +12950,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", + "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12948,7 +12970,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12963,7 +12985,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089793, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -12977,19 +12999,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", + "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", "block_index": 140, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12997,7 +13019,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13012,7 +13034,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089788, + "block_time": 1727093239, "asset_info": { "divisible": true, "asset_longname": null, @@ -13054,20 +13076,20 @@ Returns all the dividends "result": [ { "tx_index": 40, - "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", + "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", "block_index": 153, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727089854, + "block_time": 1727093314, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -13092,7 +13114,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb` (str, required) - The hash of the dividend to return + + dividend_hash: `1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e` (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. @@ -13104,20 +13126,20 @@ Returns a dividend by its hash { "result": { "tx_index": 40, - "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", + "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", "block_index": 153, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727089854, + "block_time": 1727093314, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -13139,7 +13161,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e` (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 @@ -13162,12 +13184,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", + "event": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", "tx_index": 40, - "utxo": "53811a32e206a65da3b210d98250f6fcb76f9b6be3271e87c0cdfb8c512dd590:0", - "utxo_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "utxo": "61dfe33f21d7929996be520e84245cb0ef401935edd4e6c382303f81ab07cda1:0", + "utxo_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "confirmed": true, - "block_time": 1727089854, + "block_time": 1727093314, "asset_info": { "divisible": true, "asset_longname": null, @@ -13179,16 +13201,16 @@ Returns a dividend distribution by its hash }, { "block_index": 153, - "address": "bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq", + "address": "bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", + "event": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727089854, + "block_time": 1727093314, "asset_info": { "divisible": true, "asset_longname": null, @@ -13234,27 +13256,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", - "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", + "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", + "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", "transaction_count": 1, - "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", - "block_time": 1727090032 + "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", + "block_time": 1727093475 }, "tx_hash": null, "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "tx_index": 59 }, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 }, { "event_index": 533, @@ -13263,12 +13285,12 @@ Returns all events "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "status": "valid", "tag": "64657374726f79", - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "tx_index": 59, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -13278,24 +13300,24 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 193, - "event": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "event": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -13305,25 +13327,25 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", "block_index": 193, - "block_time": 1727090032, + "block_time": 1727093475, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "tx_index": 59, - "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", + "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -13343,9 +13365,9 @@ Returns all events }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 } ], "next_cursor": 530, @@ -13373,15 +13395,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", - "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", + "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", + "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", "transaction_count": 1, - "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", - "block_time": 1727090032 + "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", + "block_time": 1727093475 }, "tx_hash": null, "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 } } ``` @@ -13459,16 +13481,16 @@ Returns the events filtered by event name "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -13478,78 +13500,78 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727090019, + "block_time": 1727093462, "asset_info": { "divisible": true, "asset_longname": null, @@ -13559,24 +13581,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "block_index": 190, - "block_time": 1727090019 + "block_time": 1727093462 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "event": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "divisible": true, "asset_longname": null, @@ -13586,9 +13608,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "block_time": 1727090011 + "block_time": 1727093444 } ], "next_cursor": 490, @@ -13644,27 +13666,27 @@ Returns all the dispenses { "tx_index": 33, "dispense_index": 0, - "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", - "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", + "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "last_status_tx_hash": null, - "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13679,7 +13701,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727089824, + "block_time": 1727093274, "asset_info": { "divisible": true, "asset_longname": null, @@ -13693,19 +13715,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", + "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13713,7 +13735,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13728,7 +13750,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089793, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -13742,19 +13764,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", + "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", "block_index": 140, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13762,7 +13784,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13777,7 +13799,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089788, + "block_time": 1727093239, "asset_info": { "divisible": true, "asset_longname": null, @@ -13819,10 +13841,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -13830,7 +13852,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "divisible": true, "asset_longname": null, @@ -13843,10 +13865,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13854,11 +13876,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -13867,10 +13889,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13878,11 +13900,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -13891,10 +13913,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 53, - "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794", + "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0", "block_index": 187, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -13902,7 +13924,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090007, + "block_time": 1727093439, "asset_info": { "divisible": true, "asset_longname": null, @@ -13915,10 +13937,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 42, - "tx_hash": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", + "tx_hash": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", "block_index": 155, - "source": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7:0", - "destination": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c:1", + "source": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561:0", + "destination": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -13926,7 +13948,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727089863, + "block_time": 1727093323, "asset_info": { "divisible": true, "asset_longname": null, @@ -13968,14 +13990,14 @@ Returns all the issuances "result": [ { "tx_index": 46, - "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", + "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -13990,20 +14012,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089900, + "block_time": 1727093340, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "e6abd286bdba5ba6f4e5dbe333fd2ab733fb42428230b79b68741f9678c28897", + "tx_hash": "87c03f2279383a3df0081f24a9f1fa5c0a0871379ef14a982ab69879184b38f7", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -14018,20 +14040,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727089896, + "block_time": 1727093335, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "67c806f2224d86f97c2532de5cd43bca5dff4a3a6951b17b37dafc06cceada13", + "tx_hash": "8545fa4b393d2af3b1304014da38dd6988b8ad70e7eb5942312966346dbf5c1c", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -14046,20 +14068,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089881, + "block_time": 1727093331, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "f16fadc9b332b83f0383c930c2392d6d2c06410ff8f5ea2a9fa0b1ee4713590e", + "tx_hash": "02e0dc7bbbbc4974003b5a437a68b7e2cbfacb3747f4e8d64d60242fa4478372", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -14074,20 +14096,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089867, + "block_time": 1727093327, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", + "tx_hash": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", - "issuer": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", + "source": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", + "issuer": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", "transfer": false, "callable": false, "call_date": 0, @@ -14102,7 +14124,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089863, + "block_time": 1727093323, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -14117,7 +14139,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa` (str, required) - The hash of the transaction to return + + tx_hash: `dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745` (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. @@ -14129,14 +14151,14 @@ Returns the issuances of a block { "result": { "tx_index": 46, - "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", + "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -14151,7 +14173,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089900, + "block_time": 1727093340, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14183,16 +14205,16 @@ Returns all sweeps "result": [ { "tx_index": 58, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "fee_paid_normalized": "0.00600000" } ], @@ -14206,7 +14228,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33` (str, required) - The hash of the transaction to return + + tx_hash: `fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3` (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. @@ -14219,16 +14241,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 58, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "fee_paid_normalized": "0.00600000" } ], @@ -14262,9 +14284,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d", + "tx_hash": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572", "block_index": 138, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14272,14 +14294,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727089781, + "block_time": 1727093231, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "d8c73b39bec3ca170f5db0ca4cf42abc7535513ef491131f8986f9b249de2aac", + "tx_hash": "000e98b21330a957d503936a5a5b4a4a45befd508a16c30ed1912d21d0020d6f", "block_index": 137, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14287,7 +14309,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727089777, + "block_time": 1727093226, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14301,7 +14323,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d` (str, required) - The hash of the transaction to return + + tx_hash: `6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572` (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. @@ -14313,9 +14335,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d", + "tx_hash": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572", "block_index": 138, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14323,7 +14345,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727089781, + "block_time": 1727093231, "fee_fraction_int_normalized": "0.00000000" } } @@ -14353,10 +14375,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", + "tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", "tx_index": 22, "block_index": 135, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14381,13 +14403,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727089768 + "block_time": 1727093218 }, { - "tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", + "tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", "tx_index": 18, "block_index": 131, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14412,13 +14434,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727089751 + "block_time": 1727093201 }, { - "tx_hash": "bb99ad8dc9e2abcd6ec3a52b9cd21471fcbbf9b4d21c6a72ea69dcec59436f48", + "tx_hash": "7a9102f321f0d0fa53fc2a72888a63e7fb5ade06068f5a3401438b09db2d6ed7", "tx_index": 14, "block_index": 130, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14443,13 +14465,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727089747 + "block_time": 1727093197 }, { - "tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "tx_index": 10, "block_index": 125, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14474,7 +14496,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727089726 + "block_time": 1727093176 } ], "next_cursor": null, @@ -14517,7 +14539,7 @@ Returns the mints by fairminter Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3,bcrt1qr6g583q4apu77vem308rd09m65hmh5j5gly0mm` (str, required) - The addresses to search for + + addresses: `bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58,bcrt1qqhp6nrswkpq6js9wqn9rf56zzrer5a3myr0pc3` (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. @@ -14536,8 +14558,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", - "address": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3" + "txid": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "address": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58" }, { "vout": 2, @@ -14545,8 +14567,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", - "address": "bcrt1qr6g583q4apu77vem308rd09m65hmh5j5gly0mm" + "txid": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", + "address": "bcrt1qqhp6nrswkpq6js9wqn9rf56zzrer5a3myr0pc3" } ], "next_cursor": null, @@ -14559,7 +14581,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g` (str, required) - The address to search for + + address: `bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd` (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 @@ -14575,28 +14597,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "20fa426beb275ab9aa19563cd3634c5e94a8a7b4fe7a8c4457baf6e2104f3028" + "tx_hash": "89a09ac9d6239ab036e8e05a10e7e1bd980f1a8ba1843d56755c2c16187d6a14" }, { - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" + "tx_hash": "1925463e88ee34000a3ea11c42581ce890f717f7eba97775d5f17c143f29364d" }, { - "tx_hash": "cf60fbda90f616c1b78c427d1f5e43c972f4b2ce47c44d24b87fd88f9f25fb68" + "tx_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956" }, { - "tx_hash": "dc60251c64cde9adfaf7ea84db0bdaf720119f8f0a796de3bd80fd32a8700e75" + "tx_hash": "144554b15a22c114b9c5521d0d24a3c04f73a8b41253e822cc95199c1d067299" }, { - "tx_hash": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075" + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" }, { - "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794" + "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0" }, { - "tx_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8" + "tx_hash": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7" }, { - "tx_hash": "9c20a315f9dd83391105db586e409f6b237d721fe234db96ff0cab43fa5174af" + "tx_hash": "3c4051bdedfa9154c9b7f71c4870b9f4267c24ca98d4eb9e00285d6704da9bf0" } ], "next_cursor": null, @@ -14609,7 +14631,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy` (str, required) - The address to search for. + + address: `bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn` (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. @@ -14622,8 +14644,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 9, - "tx_hash": "19d7ad6a7debbabdf862640263659bfeb1a9916a4d80ae8d3146789b1cb56978" + "block_index": 3, + "tx_hash": "ff537bf687431f1b8eacb1508399c66f2ddcd9ebdfad42882925e2c43833e443" } } ``` @@ -14633,7 +14655,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3` (str, required) - The address to search for + + address: `bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58` (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 @@ -14654,7 +14676,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a" + "txid": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480" } ], "next_cursor": null, @@ -14667,7 +14689,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz` (str, required) - Address to get pubkey for. + + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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. @@ -14679,7 +14701,7 @@ Get pubkey for an address. ``` { - "result": "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556" + "result": "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f" } ``` @@ -14688,7 +14710,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9` (str, required) - The transaction hash + + tx_hash: `6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f` (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. @@ -14700,7 +14722,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001010f37878f75c2f6c4b3e3fb5e7a69fec880c6a63f3bcae7d8afc7e7192f1292a50300000000ffffffff020000000000000000226a2060a32da42184ccea8214f59b284252342f58d0932c6adabcca89abc1cc505b65680b0a2701000000160014fa167162004bd108ffc4b1cfaf62ff500d14c7410247304402202ad0965c2307e9c401ff2e7cc89aa61b2f20800b61acc22d72f28514b754e0ac0220678c882ba6f89156de8da5eb81bc54c44c4a95e7a7ae537b7271e1aaac13eafd012102748e93e3b51c48fcf700c353ec69d192cd4c589703e899b4f8b2983d3a722c4b00000000" + "result": "02000000000101dd00f9610dafa03a82ddd666c55d2cc59ebe394256c67c1f6ffbd1fd7560e0c30300000000ffffffff020000000000000000226a203bd937e5a00203cd95ff353270c398e18162febbdbae967d477619ebf1816b3c680b0a270100000016001448679a4ad46ccfb39129094fc4ea5ad1385a05f50247304402205376f592e41d9e273f9b5e7ad1a7fa190a240501b08a29e0d55f8648126aa91002206027d94d88df37a14de6e98f6391c5d647df41369deddd886861fb1125bfd2d801210232a55257b495344474136eebb3408ad9dcb9e275fbbc0f81f8b2f67c031d049000000000" } ``` @@ -14793,26 +14815,26 @@ Returns all mempool events { "result": [ { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "tx_index": 60 } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "memo": null, "quantity": 10000, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "status": "valid", - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "tx_index": 60, "asset_info": { "divisible": true, @@ -14825,19 +14847,19 @@ Returns all mempool events } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "CREDIT", "params": { - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -14849,19 +14871,19 @@ Returns all mempool events } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 193, - "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -14873,27 +14895,27 @@ Returns all mempool events } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727090046.9235783, + "block_time": 1727093479.718657, "btc_amount": 0, - "data": "020000000000000001000000000000271080b24ca3b3deb516bc15248b8c9c92dd48a1518ca7", + "data": "020000000000000001000000000000271080c9435a1d17b078c22ab3b67935f7fbaa28e99e2f", "destination": "", "fee": 10000, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "tx_index": 60, - "utxos_info": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5:1", + "utxos_info": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "memo": null, "asset_info": { "divisible": true, @@ -14937,19 +14959,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "CREDIT", "params": { - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -14971,7 +14993,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5` (str, required) - The hash of the transaction to return + + tx_hash: `4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e` (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 @@ -14991,26 +15013,26 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "tx_index": 60 } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "memo": null, "quantity": 10000, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "status": "valid", - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "tx_index": 60, "asset_info": { "divisible": true, @@ -15023,19 +15045,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "CREDIT", "params": { - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -15047,19 +15069,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 193, - "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -15071,27 +15093,27 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727090046.9235783, + "block_time": 1727093479.718657, "btc_amount": 0, - "data": "020000000000000001000000000000271080b24ca3b3deb516bc15248b8c9c92dd48a1518ca7", + "data": "020000000000000001000000000000271080c9435a1d17b078c22ab3b67935f7fbaa28e99e2f", "destination": "", "fee": 10000, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "tx_index": 60, - "utxos_info": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5:1", + "utxos_info": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "memo": null, "asset_info": { "divisible": true, diff --git a/counterparty-core/counterpartycore/lib/api/queries.py b/counterparty-core/counterpartycore/lib/api/queries.py index 7bbd7506c8..7e99814fb6 100644 --- a/counterparty-core/counterpartycore/lib/api/queries.py +++ b/counterparty-core/counterpartycore/lib/api/queries.py @@ -73,6 +73,15 @@ SUPPORTED_SORT_FIELDS = { "balances": ["address", "asset", "quantity"], + "order_matches": [ + "forward_asset", + "forward_quantity", + "backward_asset", + "backward_quantity", + "match_expire_index", + ], + "orders": ["give_asset", "give_quantity", "get_asset", "get_quantity", "expiration"], + "dispensers": ["asset", "give_quantity", "give_remaining", "dispense_count", "satoshirate"], } ADDRESS_FIELDS = ["source", "address", "issuer", "destination"] @@ -1742,7 +1751,12 @@ def prepare_dispenser_where(status, other_conditions=None): def get_dispensers( - db, status: DispenserStatus = "all", cursor: str = None, limit: int = 100, offset: int = None + db, + status: DispenserStatus = "all", + cursor: str = None, + limit: int = 100, + offset: int = None, + sort: str = None, ): """ Returns all dispensers @@ -1750,6 +1764,7 @@ def get_dispensers( :param str cursor: The last index of the dispensers to return :param int limit: The maximum number of dispensers 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 dispensers to return (overrides the `cursor` parameter) (e.g. give_quantity:desc) """ return select_rows( @@ -1759,6 +1774,7 @@ def get_dispensers( last_cursor=cursor, limit=limit, offset=offset, + sort=sort, ) @@ -1769,6 +1785,7 @@ def get_dispensers_by_address( cursor: str = None, limit: int = 100, offset: int = None, + sort: str = None, ): """ Returns the dispensers of an address @@ -1777,6 +1794,7 @@ def get_dispensers_by_address( :param str cursor: The last index of the dispensers to return :param int limit: The maximum number of dispensers 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 dispensers to return (overrides the `cursor` parameter) (e.g. give_quantity:desc) """ return select_rows( db, @@ -1785,6 +1803,7 @@ def get_dispensers_by_address( last_cursor=cursor, limit=limit, offset=offset, + sort=sort, ) @@ -1795,6 +1814,7 @@ def get_dispensers_by_asset( cursor: str = None, limit: int = 100, offset: int = None, + sort: str = None, ): """ Returns the dispensers of an asset @@ -1803,6 +1823,7 @@ def get_dispensers_by_asset( :param str cursor: The last index of the dispensers to return :param int limit: The maximum number of dispensers 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 dispensers to return (overrides the `cursor` parameter) (e.g. give_quantity:desc) """ return select_rows( db, @@ -1811,6 +1832,7 @@ def get_dispensers_by_asset( last_cursor=cursor, limit=limit, offset=offset, + sort=sort, ) @@ -2058,7 +2080,12 @@ def prepare_order_matches_where(status, other_conditions=None): def get_orders( - db, status: OrderStatus = "all", cursor: str = None, limit: int = 100, offset: int = None + db, + status: OrderStatus = "all", + cursor: str = None, + limit: int = 100, + offset: int = None, + sort: str = None, ): """ Returns all the orders @@ -2066,6 +2093,7 @@ def get_orders( :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) """ return select_rows( db, @@ -2075,6 +2103,7 @@ def get_orders( last_cursor=cursor, limit=limit, offset=offset, + sort=sort, ) @@ -2085,6 +2114,7 @@ def get_orders_by_asset( cursor: str = None, limit: int = 100, offset: int = None, + sort: str = None, ): """ Returns the orders of an asset @@ -2093,6 +2123,7 @@ def get_orders_by_asset( :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 = prepare_order_where(status, {"give_asset": asset.upper()}) + prepare_order_where( status, {"get_asset": asset.upper()} @@ -2106,6 +2137,7 @@ def get_orders_by_asset( last_cursor=cursor, limit=limit, offset=offset, + sort=sort, ) @@ -2116,6 +2148,7 @@ def get_orders_by_address( cursor: str = None, limit: int = 100, offset: int = None, + sort: str = None, ): """ Returns the orders of an address @@ -2124,6 +2157,7 @@ def get_orders_by_address( :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) """ return select_rows( db, @@ -2133,6 +2167,7 @@ def get_orders_by_address( last_cursor=cursor, limit=limit, offset=offset, + sort=sort, ) @@ -2144,6 +2179,7 @@ def get_orders_by_two_assets( cursor: str = None, limit: int = 100, offset: int = None, + sort: str = None, ): """ Returns the orders to exchange two assets @@ -2153,6 +2189,7 @@ def get_orders_by_two_assets( :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 = prepare_order_where( status, {"give_asset": asset1.upper(), "get_asset": asset2.upper()} @@ -2165,6 +2202,7 @@ def get_orders_by_two_assets( last_cursor=cursor, limit=limit, offset=offset, + sort=sort, ) for order in query_result.result: order["market_pair"] = f"{asset1}/{asset2}" @@ -2211,7 +2249,12 @@ def get_order(db, order_hash: str): def get_all_order_matches( - db, status: OrderMatchesStatus = "all", cursor: str = None, limit: int = 100, offset: int = None + db, + status: OrderMatchesStatus = "all", + cursor: str = None, + limit: int = 100, + offset: int = None, + sort: str = None, ): """ Returns all the order matches @@ -2219,6 +2262,7 @@ def get_all_order_matches( :param str cursor: The last index of the order matches to return :param int limit: The maximum number of order matches 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 order matches to return (overrides the `cursor` parameter) (e.g. forward_quantity:desc) """ return select_rows( db, @@ -2227,6 +2271,7 @@ def get_all_order_matches( last_cursor=cursor, limit=limit, offset=offset, + sort=sort, ) @@ -2237,6 +2282,7 @@ def get_order_matches_by_order( cursor: str = None, limit: int = 100, offset: int = None, + sort: str = None, ): """ Returns the order matches of an order @@ -2245,6 +2291,7 @@ def get_order_matches_by_order( :param str cursor: The last index of the order matches to return :param int limit: The maximum number of order matches 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 order matches to return (overrides the `cursor` parameter) (e.g. forward_quantity:desc) """ where = prepare_order_matches_where( status, {"tx0_hash": order_hash} @@ -2256,6 +2303,7 @@ def get_order_matches_by_order( last_cursor=cursor, limit=limit, offset=offset, + sort=sort, ) @@ -2266,6 +2314,7 @@ def get_order_matches_by_asset( cursor: str = None, limit: int = 100, offset: int = None, + sort: str = None, ): """ Returns the orders of an asset @@ -2274,6 +2323,7 @@ def get_order_matches_by_asset( :param str cursor: The last index of the order matches to return :param int limit: The maximum number of order matches 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 order matches to return (overrides the `cursor` parameter) (e.g. forward_quantity:desc) """ where = prepare_order_matches_where( status, {"forward_asset": asset.upper()} @@ -2286,6 +2336,7 @@ def get_order_matches_by_asset( last_cursor=cursor, limit=limit, offset=offset, + sort=sort, ) @@ -2297,6 +2348,7 @@ def get_order_matches_by_two_assets( cursor: str = None, limit: int = 100, offset: int = None, + sort: str = None, ): """ Returns the orders to exchange two assets @@ -2306,6 +2358,7 @@ def get_order_matches_by_two_assets( :param str cursor: The last index of the order matches to return :param int limit: The maximum number of order matches 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 order matches to return (overrides the `cursor` parameter) (e.g. forward_quantity:desc) """ where = prepare_order_matches_where( status, {"forward_asset": asset1.upper(), "backward_asset": asset2.upper()} @@ -2319,6 +2372,7 @@ def get_order_matches_by_two_assets( last_cursor=cursor, limit=limit, offset=offset, + sort=sort, ) for order in query_result.result: order["market_pair"] = f"{asset1}/{asset2}" diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index ebd652d75d..cb9306b704 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -9740,6 +9740,13 @@ "type": "int", "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)" }, + { + "name": "sort", + "default": null, + "required": false, + "type": "str", + "description": "The sort order of the orders to return (overrides the `cursor` parameter) (e.g. expiration:desc)" + }, { "name": "verbose", "type": "bool", @@ -13657,6 +13664,13 @@ "type": "int", "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)" }, + { + "name": "sort", + "default": null, + "required": false, + "type": "str", + "description": "The sort order of the orders to return (overrides the `cursor` parameter) (e.g. expiration:desc)" + }, { "name": "verbose", "type": "bool", @@ -13717,6 +13731,13 @@ "type": "int", "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)" }, + { + "name": "sort", + "default": null, + "required": false, + "type": "str", + "description": "The sort order of the order matches to return (overrides the `cursor` parameter) (e.g. forward_quantity:desc)" + }, { "name": "verbose", "type": "bool", @@ -14442,6 +14463,13 @@ "type": "int", "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)" }, + { + "name": "sort", + "default": null, + "required": false, + "type": "str", + "description": "The sort order of the orders to return (overrides the `cursor` parameter) (e.g. expiration:desc)" + }, { "name": "verbose", "type": "bool", @@ -14528,6 +14556,13 @@ "type": "int", "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)" }, + { + "name": "sort", + "default": null, + "required": false, + "type": "str", + "description": "The sort order of the order matches to return (overrides the `cursor` parameter) (e.g. forward_quantity:desc)" + }, { "name": "verbose", "type": "bool", @@ -14642,6 +14677,13 @@ "type": "int", "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)" }, + { + "name": "sort", + "default": null, + "required": false, + "type": "str", + "description": "The sort order of the orders to return (overrides the `cursor` parameter) (e.g. expiration:desc)" + }, { "name": "verbose", "type": "bool", @@ -14708,6 +14750,13 @@ "type": "int", "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)" }, + { + "name": "sort", + "default": null, + "required": false, + "type": "str", + "description": "The sort order of the order matches to return (overrides the `cursor` parameter) (e.g. forward_quantity:desc)" + }, { "name": "verbose", "type": "bool", @@ -14762,6 +14811,13 @@ "type": "int", "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)" }, + { + "name": "sort", + "default": null, + "required": false, + "type": "str", + "description": "The sort order of the order matches to return (overrides the `cursor` parameter) (e.g. forward_quantity:desc)" + }, { "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 2294eeae74..34f4267131 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": 193, - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", - "block_time": 1727090032, - "previous_block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_time": 1727093475, + "previous_block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", "difficulty": 545259519, - "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", - "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", - "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", + "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", + "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", + "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", - "block_time": 1727090028, - "previous_block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", + "block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", + "block_time": 1727093471, + "previous_block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", "difficulty": 545259519, - "ledger_hash": "d46c9a79ea9f28e5a8abedc26ec0f354521174a4b6ebe4c696652f7ba6d3eaf6", - "txlist_hash": "9707feba25739b7012ed85043e312c25f56921b21aa328e4be348e4425527ad8", - "messages_hash": "75b5676163832b1dabee3d864b37620ada5061afe4a69701e9e2cc694b8e9e5f", + "ledger_hash": "5852d56e0a2f012d49e15dcc8092fe5178fb1531a1bd326ac19c2c67e8785953", + "txlist_hash": "5ab6ca165b4d31dbfd0a32b8b80ae8a80544c9d0730426eaf3b993011a35fad0", + "messages_hash": "675b22fd17052c818d934beb63c5cc6f13b9f41f8cb99f671b6a6eba0d108804", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", - "block_time": 1727090024, - "previous_block_hash": "4b99bbc6808e4b765e983849737aafe5ef708306f5c65833991a73d0cce49c33", + "block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", + "block_time": 1727093467, + "previous_block_hash": "1e78891fe58a2e15a13d98d52c73741c700e2b3b647c004bbd6c3630de502d3e", "difficulty": 545259519, - "ledger_hash": "55612d24a38e775d9ae90229d537d96b0165d975b8fbe0ed5bdd85e8dd396c1f", - "txlist_hash": "8a77df6642e1fcfe0beb18b335a1ad317013b9b9a86929d6d436707327271eab", - "messages_hash": "0eeda5ff9e6480091916f110f8d7aeda363c7c9188d40f33b2a33e0e5e5f6846", + "ledger_hash": "6920554b19671fb917b2fa8b7aac09e3b0b9253020884226bf6847f50ea23f85", + "txlist_hash": "c9b0e524fbb98e4c38df0713f6f6665eef5e98cc10dfd1f3065c8418509bc7d4", + "messages_hash": "da9623970c1cfb9ca73b6cfdfa30c4deaaabcf060938e09240e4430281109399", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "4b99bbc6808e4b765e983849737aafe5ef708306f5c65833991a73d0cce49c33", - "block_time": 1727090019, - "previous_block_hash": "2923560e2bcacf6e73d9eff03c6d1595137115cb81061d215b3edaa9ff0e70ca", + "block_hash": "1e78891fe58a2e15a13d98d52c73741c700e2b3b647c004bbd6c3630de502d3e", + "block_time": 1727093462, + "previous_block_hash": "08f347c0a8ec608432ef24c00b1b75e5bab12e9a9bff9232e1cfd94c5bd702fb", "difficulty": 545259519, - "ledger_hash": "a3a3134ddd4dd5c9ecad8e689725219ba0e003405f6f4fa8d227a19f8495d5d0", - "txlist_hash": "40d6882b32b7c28fa05a9fda718c7d60a0dbc9039a8a1b7b19a1713f988e4859", - "messages_hash": "4a5594b373b41e3b2556bb42861d4e775adad70ffdae75e67864cc8797bec351", + "ledger_hash": "2b276e6aec9a88c841ed7c1f6840420fcbfc1a4517346a6175c5e67dfee23821", + "txlist_hash": "0987e29ee5cac999f35d207c44ab61f37af864a55ad58164c9795d93afbf6737", + "messages_hash": "5e068890d3800e7de8433544a4ddf7d068e4b7448fd372ae8ee4c5b4d1d0248f", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "2923560e2bcacf6e73d9eff03c6d1595137115cb81061d215b3edaa9ff0e70ca", - "block_time": 1727090015, - "previous_block_hash": "3fa9c2277a64ed52b884ca2a17da14b49509020652eb361abe768ef64c58a8b1", + "block_hash": "08f347c0a8ec608432ef24c00b1b75e5bab12e9a9bff9232e1cfd94c5bd702fb", + "block_time": 1727093458, + "previous_block_hash": "09999219b91d9f0a2141c7ccbf97cb0bb3518f3b2116061e96668f7d305e7b40", "difficulty": 545259519, - "ledger_hash": "9493cb79f2b216820d42d4c9138cac197dc6cad664473c5fd95156f9ce96127b", - "txlist_hash": "8154a4708a00d17782cfdfe4cbb99ae6b5369bb2abe59c809b471190edc2abe6", - "messages_hash": "17b8c592cef8a595dae2b4c23cf034ec7c522b339169fe4209d65a6f86869d5f", + "ledger_hash": "913fe15c076fcc652b8fc75af7e2246ef769b71e988d6f6440f7484b1a235a0f", + "txlist_hash": "3c0222d5e6f24b1d03ab8469eae9afbf46d70b60d96784d2487414361d94e470", + "messages_hash": "a51af0063d7694114190c734fca50c0bc8405727866e72d762f235b141176142", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", - "block_time": 1727090032, - "previous_block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_time": 1727093475, + "previous_block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", "difficulty": 545259519, - "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", - "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", - "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", + "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", + "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", + "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", - "block_time": 1727090032, - "previous_block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_time": 1727093475, + "previous_block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", "difficulty": 545259519, - "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", - "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", - "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", + "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", + "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", + "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", - "block_time": 1727090032, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_time": 1727093475, + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", + "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -139,11 +139,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "d46c9a79ea9f28e5a8abedc26ec0f354521174a4b6ebe4c696652f7ba6d3eaf6", - "messages_hash": "75b5676163832b1dabee3d864b37620ada5061afe4a69701e9e2cc694b8e9e5f", + "ledger_hash": "5852d56e0a2f012d49e15dcc8092fe5178fb1531a1bd326ac19c2c67e8785953", + "messages_hash": "675b22fd17052c818d934beb63c5cc6f13b9f41f8cb99f671b6a6eba0d108804", "transaction_count": 1, - "txlist_hash": "9707feba25739b7012ed85043e312c25f56921b21aa328e4be348e4425527ad8", - "block_time": 1727090028 + "txlist_hash": "5ab6ca165b4d31dbfd0a32b8b80ae8a80544c9d0730426eaf3b993011a35fad0", + "block_time": 1727093471 }, "tx_hash": null }, @@ -152,43 +152,43 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58 }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "status": "valid", - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, - "block_time": 1727090028, + "block_time": 1727093471, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -198,22 +198,22 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "XCP", "block_index": 192, - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -223,7 +223,7 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" } ], "next_cursor": 524, @@ -261,16 +261,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -280,57 +280,57 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" } ], "next_cursor": null, @@ -340,16 +340,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -361,20 +361,20 @@ }, { "block_index": 192, - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -382,20 +382,20 @@ }, { "block_index": 192, - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -409,16 +409,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "event": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -436,24 +436,24 @@ "result": [ { "type": "order", - "object_id": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "object_id": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", "block_index": 182, "confirmed": true, - "block_time": 1727089916 + "block_time": 1727093354 }, { "type": "order", - "object_id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", + "object_id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", "block_index": 182, "confirmed": true, - "block_time": 1727089916 + "block_time": 1727093354 }, { "type": "order_match", - "object_id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "object_id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", "block_index": 182, "confirmed": true, - "block_time": 1727089916 + "block_time": 1727093354 } ], "next_cursor": null, @@ -463,13 +463,13 @@ "result": [ { "tx_index": 56, - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "block_index": 190, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "status": "valid", "confirmed": true, - "block_time": 1727090019 + "block_time": 1727093462 } ], "next_cursor": null, @@ -479,15 +479,15 @@ "result": [ { "tx_index": 59, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -505,14 +505,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", + "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -527,7 +527,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089900, + "block_time": 1727093340, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -539,10 +539,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -550,7 +550,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "divisible": true, "asset_longname": null, @@ -563,10 +563,10 @@ }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -574,11 +574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -587,10 +587,10 @@ }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -598,11 +598,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -618,27 +618,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", - "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", + "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "last_status_tx_hash": null, - "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -653,7 +653,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727089824, + "block_time": 1727093274, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,16 +672,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "fee_paid_normalized": "0.00600000" } ], @@ -692,17 +692,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", - "block_time": 1727090032, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_time": 1727093475, + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", + "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -725,23 +725,23 @@ }, { "tx_index": 58, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697", - "block_time": 1727090028, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", + "block_time": 1727093471, + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480fa167162004bd108ffc4b1cfaf62ff500d14c741017377656570206d7920617373657473", + "data": "048048679a4ad46ccfb39129094fc4ea5ad1385a05f5017377656570206d7920617373657473", "supported": true, - "utxos_info": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33:1", + "utxos_info": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "flags": 1, "memo": "sweep my assets" } @@ -754,53 +754,53 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c7da25416c8a05ef76411973556de567bdc97a8a80b24ca3b3deb516bc15248b8c9c92dd48a1518ca780fa167162004bd108ffc4b1cfaf62ff500d14c741400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003802ae0ca086d281f046afa5927e69de29e640e6a6280c9435a1d17b078c22ab3b67935f7fbaa28e99e2f8048679a4ad46ccfb39129094fc4ea5ad1385a05f5400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "f6cc2420145554ce6268b5591389e27dacd582e5d2acc52d56a6babbb75a7f28", + "hash": "9b45e6b5a1c4c809c36d2765debd08b36930e60be858e9f6372a8080e0724c45", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "f3b3de71a0969cedbef3cdc13e40f4889952c8ef98164f69028c4f91bd7278d4", + "hash": "bf4d0c584aeecf193a5b9ba2aed7d76c9139f4816d3f605a0471dcbf5af932f9", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "92726094dbe07463c3eee1d0ba3fb96a69e09dd2133dc3347bca3590dede2302", + "hash": "cbcd6b10cefe05ebe1c397fdd16d384eb348204a8b330adb0194a79b6233293b", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "87450a5778fe441e8a81b45bc3e443dac9f7d9297a56cc5e1f2f2ff865e34d8e", + "hash": "3251ba633fdcfd3f7b2e78ba1975ee862855f6b7609928d0cddb78dbfcf1cb5c", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "32741d8f4ed0b0204e54c358ce24e1dd92645fb5cdaca06ad3ffbb42da74482d", + "hash": "ed8aa0948f7b1c3bfbf4bb63b59660435dd68655149f32ddb0387dbc360f2785", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "3839cbfe95ecceb744d72220256bb2041440232eb1a1bb1a75c442c8436fa68b", + "hash": "c0f68c660bfe27938ca58d8e8a9f7c0b35207049406140faa8c6148217e0679a", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -810,38 +810,38 @@ "vout": [ { "value": 1000, - "script_pub_key": "5121026308b4f133d29cc4de5d3fc4fe7e55679fbd6f8a57ea772f0423a9121c0703a62102dcbcf496ec026a717d6a095101dae78e579b6786846d0696bfffc63adee6f7552103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653ae" + "script_pub_key": "512102aa559bfd9be7b031c2f631c1657ce98314d1787a2f460159ae0e5307a6f8c4822102cb741c6504e51506bd91dac0618348856305296558a2fcee8db544bedf3c0e972102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53ae" }, { "value": 1000, - "script_pub_key": "5121026308b4f133d29cc4de56c003cf7620202181e89b7fdd76367770ce3abe615ef82102a6367424a0a1d986c87cb54425516b17e5462f27d5e1a11665e9b758dead261e2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653ae" + "script_pub_key": "512103aa559bfd9be7b031c246a0ebec19cda3466d683f2ed9bb0089eec428fd475e7c2102a1169cac47bf08380de918ead23531b5b4fe834db13cd36ee5d2def40b50c10f2102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53ae" }, { "value": 1000, - "script_pub_key": "5121025508b4f133d29cc4de5e2bc77eb98f42ded1e58fb89c36367776c4f77bbaca142103a6367424a0a1d9afc87cb54425516b12c5462f27d5e1a11645e9b758dead264b2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653ae" + "script_pub_key": "5121029c559bfd9be7b031c2f525c2e55609491cbc50652b2cfb0089e8cee5389cca672102a1169cac47bf08110de918ead23531b094fe834db13cd36ec5d2def40b50c1582102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53ae" }, { "value": 29999987000, - "script_pub_key": "00143e5479d90ea1664716c42ff6cd46077c13ccd473" + "script_pub_key": "0014a1d4c53a2839a34cbf7e8ecd9810a21633992fda" } ], "vtxinwit": [ - "304402206294f1344e43d7997fb099b5f01a029f9c07201a66c29a6410490f7a12785a5602203e0b03b36a430d2a07f22e53867be22b5ea53795b72a10b5afc3732a442d40af01", - "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", - "304402203c0f122faaf1356982f235dbbd809f052ff7e93326172525318990ed67efb9ee0220724211dcff055bb28b32eb8ee1af0de42f814dbd79c09eb8ab6b7826e3c6c63c01", - "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", - "304402202d0a04ce6f97f79075361c8bddfca2d78e217837e523f60823a98359f46ed7ba022075be37a754f2831a88fd0869fef3eec33af88ac2b7a11563770ca89748ee9ada01", - "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", - "30440220326d5979c6d939d9e4e3423c2bae9cfe22315e07c459d6ee6fdc5a3e343c9c7b022054f38783ed9c73bc3f0f324e58dc3c0c0d41e00770c31764642e23407b49c24201", - "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", - "3044022042abc0fc58e261b5b80cb320bdca8937e2c45b67df2a2c66e582f4486ea4323802202de9684dbee87a7899139a3a9252d9a08e8520d60b9511f73c1dc242af514cda01", - "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556", - "30440220305f882370037565e0e9baf696bf07b6af719769b04b9ae6d6bbf0577dd464d002201d539a438eca3142f899c0797b6ce85b94615146a6d2b8db62241d295f0d4a6a01", - "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556" + "3044022028371896db515c37441fbb575a0a15e0fcd0ffecb926a62fa5df412a28996b05022061816598d6c0274acfec2e328537ddda3bfd780089e958b2fe14727628a8664c01", + "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", + "3043021f4196bfc187a01dd17c59cd4d5c394d58814276e9bf02999abbc2d68921deea0220788b51ed37ea5813ae43ec23680d6194a65c2f54173f2713bd37248581bafdef01", + "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", + "3044022069aa3b9d7a5b1fe5a742892d00f858ed621e5deb9afe8e2a6f2587b2966b2c50022003139f22e955b397de240176a2a4b9ffb82ab34924d1a5da67ed4ec8949cbea701", + "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", + "304402205c19d27abd5de29b4c40ff39ab29996219b4243930136f9d9093067e9afd600c022044999ed8319ea9dbffdf7caffb934705e9b0ffbd48545f2dd5e8015cc5be9b7701", + "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", + "304402201a16d16c85613f55999ca43495007ac797d6f4674c41e038984e0dd5b73df505022006aa7c119339424385c394f3001e643089611963d6b99ef501b5ad8897d4494f01", + "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", + "304402204b35f2e089cb94fdaedff7efc9433fa1961ed0ee8b817cfa21027d1ad7be5a2102201533b20b40e453cbcb93ec79262f8d81d8af12a8e85fc1477a4dfb63e213bb1c01", + "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f" ], "lock_time": 0, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", - "tx_id": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0" + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_id": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4" }, "unpacked_data": { "message_type": "mpma_send", @@ -849,14 +849,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -864,7 +864,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -884,18 +884,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080b24ca3b3deb516bc15248b8c9c92dd48a1518ca7", + "data": "020000000000000001000000000000271080c9435a1d17b078c22ab3b67935f7fbaa28e99e2f", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "90d52d518cfbcdc0871e27e36b9b6fb7fcf65082d910b2a35da606e2321a8153", + "hash": "a1cd07ab813f3082c3e6d4ed351940efb05c24840e52be969992d7213fe3df61", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -905,20 +905,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2edcbe7f1ee60c29bb3b38aa206872872b7d3e57f6c749e3b111f4c3fdae73f7ed0495c59089cc7c51ed023e418d87" + "script_pub_key": "6a2e6acf57add293d4881371f3c9430472f06964ebac1ab59d31e0a6dbba917ab2a118c0dc3baadbff5b3b888eaa408f" }, { "value": 4999955000, - "script_pub_key": "0014fa167162004bd108ffc4b1cfaf62ff500d14c741" + "script_pub_key": "001448679a4ad46ccfb39129094fc4ea5ad1385a05f5" } ], "vtxinwit": [ - "3044022066eada7777201ae400b9d5680564eac7406e3368e31d7e42e897a335bab70e4d022008d95ed963507d80de84b9dfed13a59f7f0a2ad4817b291caf59c4eb8a7f617001", - "02748e93e3b51c48fcf700c353ec69d192cd4c589703e899b4f8b2983d3a722c4b" + "304402205bce2a20a4f2b0f355d5c1ada689ee23bcedb6f3ef90b2fa53e565b04ced786b022043b0469b6d80599a37f8c77dd8ceadda1a1e103cc8ecc50d94a32d18ac089f3101", + "0232a55257b495344474136eebb3408ad9dcb9e275fbbc0f81f8b2f67c031d0490" ], "lock_time": 0, - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", - "tx_id": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5" + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_id": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e" }, "unpacked_data": { "message_type": "enhanced_send", @@ -926,7 +926,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "memo": null, "asset_info": { "divisible": true, @@ -953,17 +953,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", - "block_time": 1727090032, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_time": 1727093475, + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", + "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -988,17 +988,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", - "block_time": 1727090032, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_time": 1727093475, + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", + "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1027,47 +1027,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58 }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "status": "valid", - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, - "block_time": 1727090028, + "block_time": 1727093471, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -1077,24 +1077,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "XCP", "block_index": 192, - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -1104,36 +1104,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 } ], "next_cursor": 523, @@ -1146,47 +1146,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58 }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "status": "valid", - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, - "block_time": 1727090028, + "block_time": 1727093471, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -1196,24 +1196,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "XCP", "block_index": 192, - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -1223,36 +1223,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 } ], "next_cursor": 523, @@ -1262,10 +1262,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -1273,7 +1273,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "divisible": true, "asset_longname": null, @@ -1286,10 +1286,10 @@ }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1297,11 +1297,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -1310,10 +1310,10 @@ }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1321,11 +1321,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -1341,27 +1341,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", - "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", + "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "last_status_tx_hash": null, - "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -1376,7 +1376,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727089824, + "block_time": 1727093274, "asset_info": { "divisible": true, "asset_longname": null, @@ -1397,16 +1397,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -1416,63 +1416,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 } ], "next_cursor": null, @@ -1484,16 +1484,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -1503,63 +1503,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 } ], "next_cursor": null, @@ -1572,7 +1572,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1582,7 +1582,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -1593,7 +1593,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1603,7 +1603,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -1614,7 +1614,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1624,7 +1624,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -1635,7 +1635,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1645,7 +1645,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -1656,7 +1656,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1666,7 +1666,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -1680,17 +1680,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "block_index": 191, - "block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", - "block_time": 1727090024, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", + "block_time": 1727093467, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d:1", + "utxos_info": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1726,23 +1726,23 @@ }, { "tx_index": 56, - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "block_index": 190, - "block_hash": "4b99bbc6808e4b765e983849737aafe5ef708306f5c65833991a73d0cce49c33", - "block_time": 1727090019, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "1e78891fe58a2e15a13d98d52c73741c700e2b3b647c004bbd6c3630de502d3e", + "block_time": 1727093462, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "data": "46c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "supported": true, - "utxos_info": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7:1", + "utxos_info": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "status": "valid" } }, @@ -1750,17 +1750,17 @@ }, { "tx_index": 55, - "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "block_index": 189, - "block_hash": "2923560e2bcacf6e73d9eff03c6d1595137115cb81061d215b3edaa9ff0e70ca", - "block_time": 1727090015, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "08f347c0a8ec608432ef24c00b1b75e5bab12e9a9bff9232e1cfd94c5bd702fb", + "block_time": 1727093458, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b:1", + "utxos_info": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1796,17 +1796,17 @@ }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "block_hash": "3fa9c2277a64ed52b884ca2a17da14b49509020652eb361abe768ef64c58a8b1", - "block_time": 1727090011, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "09999219b91d9f0a2141c7ccbf97cb0bb3518f3b2116061e96668f7d305e7b40", + "block_time": 1727093444, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c7da25416c8a05ef76411973556de567bdc97a8a80b24ca3b3deb516bc15248b8c9c92dd48a1518ca780fa167162004bd108ffc4b1cfaf62ff500d14c741400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003802ae0ca086d281f046afa5927e69de29e640e6a6280c9435a1d17b078c22ab3b67935f7fbaa28e99e2f8048679a4ad46ccfb39129094fc4ea5ad1385a05f5400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0:0", + "utxos_info": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1814,14 +1814,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -1829,7 +1829,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1848,25 +1848,25 @@ }, { "tx_index": 51, - "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", + "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", "block_index": 185, - "block_hash": "2616d6c33121a5276f3fae0f4b3abae36a5e125ba76f11aef7c8404c03cc9576", - "block_time": 1727089998, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "3379d8745eedf0e59561b011b4fa1b60839abae63aa5e6fe901c8fd353255b44", + "block_time": 1727093431, + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "btc_amount": 2000, "fee": 10000, - "data": "0b5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2db7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "data": "0bc5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c11d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "supported": true, - "utxos_info": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de:0", + "utxos_info": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", - "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "status": "valid" } }, @@ -1895,11 +1895,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "status": "open", - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "tx_index": 57, - "block_time": 1727090024, + "block_time": 1727093467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1923,24 +1923,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "block_index": 191, - "block_time": 1727090024 + "block_time": 1727093467 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "block_index": 191, - "event": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "event": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727090024, + "block_time": 1727093467, "asset_info": { "divisible": true, "asset_longname": null, @@ -1950,25 +1950,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "block_index": 191, - "block_time": 1727090024 + "block_time": 1727093467 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", + "block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", "block_index": 191, - "block_time": 1727090024, + "block_time": 1727093467, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "tx_index": 57, - "utxos_info": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d:1", + "utxos_info": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -2000,40 +2000,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "block_index": 191, - "block_time": 1727090024 + "block_time": 1727093467 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "status": "valid", - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "tx_index": 56, - "block_time": 1727090019 + "block_time": 1727093462 }, - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "block_index": 190, - "block_time": 1727090019 + "block_time": 1727093462 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727090019, + "block_time": 1727093462, "asset_info": { "divisible": true, "asset_longname": null, @@ -2043,9 +2043,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "block_index": 190, - "block_time": 1727090019 + "block_time": 1727093462 } ], "next_cursor": 506, @@ -2054,17 +2054,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "memo": null, "quantity": 10000, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "status": "valid", - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "tx_index": 60, "asset_info": { "divisible": true, @@ -2077,19 +2077,19 @@ } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "CREDIT", "params": { - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -2101,19 +2101,19 @@ } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 193, - "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -2125,27 +2125,27 @@ } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727090046.9235783, + "block_time": 1727093479.718657, "btc_amount": 0, - "data": "020000000000000001000000000000271080b24ca3b3deb516bc15248b8c9c92dd48a1518ca7", + "data": "020000000000000001000000000000271080c9435a1d17b078c22ab3b67935f7fbaa28e99e2f", "destination": "", "fee": 10000, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "tx_index": 60, - "utxos_info": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5:1", + "utxos_info": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "memo": null, "asset_info": { "divisible": true, @@ -2167,7 +2167,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2175,14 +2175,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2190,14 +2190,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2212,7 +2212,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2220,7 +2220,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2232,7 +2232,7 @@ }, "/v2/addresses/
/balances/": { "result": { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2251,16 +2251,16 @@ "result": [ { "block_index": 190, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090019, + "block_time": 1727093462, "asset_info": { "divisible": true, "asset_longname": null, @@ -2272,16 +2272,16 @@ }, { "block_index": 182, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", + "event": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727089916, + "block_time": 1727093354, "asset_info": { "divisible": true, "asset_longname": null, @@ -2293,20 +2293,20 @@ }, { "block_index": 159, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", + "event": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727089900, + "block_time": 1727093340, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2314,20 +2314,20 @@ }, { "block_index": 156, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "f16fadc9b332b83f0383c930c2392d6d2c06410ff8f5ea2a9fa0b1ee4713590e", + "event": "02e0dc7bbbbc4974003b5a437a68b7e2cbfacb3747f4e8d64d60242fa4478372", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727089867, + "block_time": 1727093327, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2339,16 +2339,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", + "event": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", "tx_index": 38, - "utxo": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505:1", - "utxo_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "utxo": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a:1", + "utxo_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "confirmed": true, - "block_time": 1727089845, + "block_time": 1727093305, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2362,16 +2362,16 @@ "result": [ { "block_index": 191, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "event": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090024, + "block_time": 1727093467, "asset_info": { "divisible": true, "asset_longname": null, @@ -2383,16 +2383,16 @@ }, { "block_index": 189, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090015, + "block_time": 1727093458, "asset_info": { "divisible": true, "asset_longname": null, @@ -2404,16 +2404,16 @@ }, { "block_index": 188, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "event": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "divisible": true, "asset_longname": null, @@ -2425,20 +2425,20 @@ }, { "block_index": 188, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "event": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2446,16 +2446,16 @@ }, { "block_index": 183, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "event": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727089990, + "block_time": 1727093423, "asset_info": { "divisible": true, "asset_longname": null, @@ -2478,9 +2478,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "d8c73b39bec3ca170f5db0ca4cf42abc7535513ef491131f8986f9b249de2aac", + "tx_hash": "000e98b21330a957d503936a5a5b4a4a45befd508a16c30ed1912d21d0020d6f", "block_index": 137, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2488,7 +2488,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727089777, + "block_time": 1727093226, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2499,14 +2499,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "e16d235b861cfe7c48a74e0bcdf99b3b7ded94cbc658fb3c7bebb6dd49cde216", + "tx_hash": "f67545e10ba5017c416d24a9cf8e3cc34a18035b0d55526a01c26fa48e9d5588", "block_index": 112, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1727089675, + "block_time": 1727093122, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2518,10 +2518,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2529,7 +2529,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "divisible": true, "asset_longname": null, @@ -2542,10 +2542,10 @@ }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2553,11 +2553,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2566,10 +2566,10 @@ }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2577,11 +2577,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2590,10 +2590,10 @@ }, { "tx_index": 38, - "tx_hash": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", + "tx_hash": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", "block_index": 151, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505:1", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2601,11 +2601,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727089845, + "block_time": 1727093305, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2614,10 +2614,10 @@ }, { "tx_index": 35, - "tx_hash": "fc6c96d70ca302032501a89ff33d3ca64cfe94e875137ac218eb81744063d6c6", + "tx_hash": "a5103a244743dcbecce27787d68d30f8c54303e944677e41a7c82e166bf295e1", "block_index": 148, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "dc60251c64cde9adfaf7ea84db0bdaf720119f8f0a796de3bd80fd32a8700e75:1", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "1925463e88ee34000a3ea11c42581ce890f717f7eba97775d5f17c143f29364d:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2625,11 +2625,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727089833, + "block_time": 1727093293, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2644,10 +2644,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "a592122f19e7c7afd8e7ca3b3fa6c680c8fe697a5efbe3b3c4f6c2758f87370f", + "tx_hash": "c3e06075fdd1fb6f1f7cc6564239be9ec52c5dc566d6dd823aa0af0d61f900dd", "block_index": 150, - "source": "9c20a315f9dd83391105db586e409f6b237d721fe234db96ff0cab43fa5174af:0", - "destination": "bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq", + "source": "144554b15a22c114b9c5521d0d24a3c04f73a8b41253e822cc95199c1d067299:0", + "destination": "bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2655,11 +2655,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727089841, + "block_time": 1727093301, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2674,10 +2674,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2685,11 +2685,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2698,10 +2698,10 @@ }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2709,11 +2709,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2722,10 +2722,10 @@ }, { "tx_index": 38, - "tx_hash": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", + "tx_hash": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", "block_index": 151, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505:1", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2733,11 +2733,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727089845, + "block_time": 1727093305, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2746,10 +2746,10 @@ }, { "tx_index": 35, - "tx_hash": "fc6c96d70ca302032501a89ff33d3ca64cfe94e875137ac218eb81744063d6c6", + "tx_hash": "a5103a244743dcbecce27787d68d30f8c54303e944677e41a7c82e166bf295e1", "block_index": 148, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "dc60251c64cde9adfaf7ea84db0bdaf720119f8f0a796de3bd80fd32a8700e75:1", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "1925463e88ee34000a3ea11c42581ce890f717f7eba97775d5f17c143f29364d:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2757,11 +2757,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727089833, + "block_time": 1727093293, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2776,10 +2776,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "a592122f19e7c7afd8e7ca3b3fa6c680c8fe697a5efbe3b3c4f6c2758f87370f", + "tx_hash": "c3e06075fdd1fb6f1f7cc6564239be9ec52c5dc566d6dd823aa0af0d61f900dd", "block_index": 150, - "source": "9c20a315f9dd83391105db586e409f6b237d721fe234db96ff0cab43fa5174af:0", - "destination": "bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq", + "source": "144554b15a22c114b9c5521d0d24a3c04f73a8b41253e822cc95199c1d067299:0", + "destination": "bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2787,11 +2787,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727089841, + "block_time": 1727093301, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -2805,20 +2805,20 @@ "/v2/addresses/
/dispensers": { "result": [ { - "tx_index": 30, - "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", - "block_index": 144, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 26, + "tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "block_index": 141, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "give_quantity": 1, - "escrow_quantity": 10, + "escrow_quantity": 10000, "satoshirate": 1, - "status": 0, - "give_remaining": 20, + "status": 10, + "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "dispense_count": 0, + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, "confirmed": true, @@ -2827,7 +2827,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089816, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -2836,26 +2836,26 @@ "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000020", - "escrow_quantity_normalized": "0.00000010", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 26, - "tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", - "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 30, + "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", + "block_index": 144, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "give_quantity": 1, - "escrow_quantity": 10000, + "escrow_quantity": 10, "satoshirate": 1, - "status": 10, - "give_remaining": 0, + "status": 0, + "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "dispense_count": 2, + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, "confirmed": true, @@ -2864,7 +2864,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089793, + "block_time": 1727093265, "asset_info": { "divisible": true, "asset_longname": null, @@ -2873,8 +2873,8 @@ "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", + "give_remaining_normalized": "0.00000020", + "escrow_quantity_normalized": "0.00000010", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" } @@ -2885,9 +2885,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 30, - "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", + "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", "block_index": 144, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2896,7 +2896,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2906,7 +2906,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089816, + "block_time": 1727093265, "asset_info": { "divisible": true, "asset_longname": null, @@ -2926,19 +2926,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", + "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2946,7 +2946,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2961,7 +2961,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089793, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -2975,19 +2975,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", + "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", "block_index": 140, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2995,7 +2995,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3010,7 +3010,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089788, + "block_time": 1727093239, "asset_info": { "divisible": true, "asset_longname": null, @@ -3030,19 +3030,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", + "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3050,7 +3050,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3065,7 +3065,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089793, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -3079,19 +3079,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", + "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", "block_index": 140, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3099,7 +3099,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3114,7 +3114,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089788, + "block_time": 1727093239, "asset_info": { "divisible": true, "asset_longname": null, @@ -3134,19 +3134,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", + "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3154,7 +3154,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3169,7 +3169,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089793, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -3183,19 +3183,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", + "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", "block_index": 140, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3203,7 +3203,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3218,7 +3218,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089788, + "block_time": 1727093239, "asset_info": { "divisible": true, "asset_longname": null, @@ -3238,19 +3238,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", + "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3258,7 +3258,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3273,7 +3273,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089793, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -3287,19 +3287,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", + "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", "block_index": 140, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3307,7 +3307,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3322,7 +3322,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089788, + "block_time": 1727093239, "asset_info": { "divisible": true, "asset_longname": null, @@ -3341,16 +3341,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "fee_paid_normalized": "0.00600000" } ], @@ -3361,14 +3361,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", + "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -3383,20 +3383,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089900, + "block_time": 1727093340, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "e6abd286bdba5ba6f4e5dbe333fd2ab733fb42428230b79b68741f9678c28897", + "tx_hash": "87c03f2279383a3df0081f24a9f1fa5c0a0871379ef14a982ab69879184b38f7", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -3411,20 +3411,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727089896, + "block_time": 1727093335, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "67c806f2224d86f97c2532de5cd43bca5dff4a3a6951b17b37dafc06cceada13", + "tx_hash": "8545fa4b393d2af3b1304014da38dd6988b8ad70e7eb5942312966346dbf5c1c", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -3439,20 +3439,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089881, + "block_time": 1727093331, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "f16fadc9b332b83f0383c930c2392d6d2c06410ff8f5ea2a9fa0b1ee4713590e", + "tx_hash": "02e0dc7bbbbc4974003b5a437a68b7e2cbfacb3747f4e8d64d60242fa4478372", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -3467,20 +3467,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089867, + "block_time": 1727093327, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "97b732eec3a1d7005106f8ed821ed94d1df26d1c501b8f6011dc5c9226d1343a", + "tx_hash": "a84da37d8e8ad79645d7780708d7b97548eca8abbe86d0adaa93df726eef2c00", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -3495,7 +3495,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089828, + "block_time": 1727093278, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -3509,8 +3509,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false, "supply": 10000000000, @@ -3518,16 +3518,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727089867, - "last_issuance_block_time": 1727089896, + "first_issuance_block_time": 1727093327, + "last_issuance_block_time": 1727093335, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false, "supply": 100000000000, @@ -3535,16 +3535,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727089828, - "last_issuance_block_time": 1727089828, + "first_issuance_block_time": 1727093278, + "last_issuance_block_time": 1727093278, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "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": 1727089768, - "last_issuance_block_time": 1727089772, + "first_issuance_block_time": 1727093218, + "last_issuance_block_time": 1727093222, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "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": 1727089751, - "last_issuance_block_time": 1727089764, + "first_issuance_block_time": 1727093201, + "last_issuance_block_time": 1727093214, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "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": 1727089730, - "last_issuance_block_time": 1727089747, + "first_issuance_block_time": 1727093180, + "last_issuance_block_time": 1727093197, "supply_normalized": "0.00000000" } ], @@ -3598,17 +3598,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "block_index": 191, - "block_hash": "325587a0452f26b481b849e3bf6df47c61b1ae1f305eae901f241ce30d29888b", - "block_time": 1727090024, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", + "block_time": 1727093467, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d:1", + "utxos_info": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3644,23 +3644,23 @@ }, { "tx_index": 56, - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "block_index": 190, - "block_hash": "4b99bbc6808e4b765e983849737aafe5ef708306f5c65833991a73d0cce49c33", - "block_time": 1727090019, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "1e78891fe58a2e15a13d98d52c73741c700e2b3b647c004bbd6c3630de502d3e", + "block_time": 1727093462, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "data": "46c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "supported": true, - "utxos_info": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7:1", + "utxos_info": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "status": "valid" } }, @@ -3668,17 +3668,17 @@ }, { "tx_index": 55, - "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "block_index": 189, - "block_hash": "2923560e2bcacf6e73d9eff03c6d1595137115cb81061d215b3edaa9ff0e70ca", - "block_time": 1727090015, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "08f347c0a8ec608432ef24c00b1b75e5bab12e9a9bff9232e1cfd94c5bd702fb", + "block_time": 1727093458, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b:1", + "utxos_info": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3714,17 +3714,17 @@ }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "block_hash": "3fa9c2277a64ed52b884ca2a17da14b49509020652eb361abe768ef64c58a8b1", - "block_time": 1727090011, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "09999219b91d9f0a2141c7ccbf97cb0bb3518f3b2116061e96668f7d305e7b40", + "block_time": 1727093444, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c7da25416c8a05ef76411973556de567bdc97a8a80b24ca3b3deb516bc15248b8c9c92dd48a1518ca780fa167162004bd108ffc4b1cfaf62ff500d14c741400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003802ae0ca086d281f046afa5927e69de29e640e6a6280c9435a1d17b078c22ab3b67935f7fbaa28e99e2f8048679a4ad46ccfb39129094fc4ea5ad1385a05f5400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0:0", + "utxos_info": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3732,14 +3732,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -3747,7 +3747,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3766,17 +3766,17 @@ }, { "tx_index": 49, - "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", "block_index": 183, - "block_hash": "4330a150c5e7206108e14d0ffd3cec0c33c681d56b494bffec379232028fa69e", - "block_time": 1727089990, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "block_hash": "1521ba188fec316a932935d167f999621868384b4e6e557b83ea37056300136b", + "block_time": 1727093423, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d:1", + "utxos_info": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3818,20 +3818,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", + "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", "block_index": 153, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727089854, + "block_time": 1727093314, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -3852,10 +3852,10 @@ "/v2/addresses/
/orders": { "result": [ { - "tx_index": 57, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", - "block_index": 191, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 47, + "tx_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "block_index": 182, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3863,14 +3863,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 212, + "expire_index": 181, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "confirmed": true, - "block_time": 1727090024, + "block_time": 1727093354, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3895,25 +3895,25 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 55, - "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", - "block_index": 190, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 49, + "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "block_index": 186, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, + "give_quantity": 10000, + "give_remaining": 5000, "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, + "get_quantity": 10000, + "get_remaining": 5000, "expiration": 21, - "expire_index": 210, + "expire_index": 204, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "cancelled", + "status": "open", "confirmed": true, - "block_time": 1727090019, + "block_time": 1727093435, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3928,35 +3928,35 @@ "locked": false, "issuer": null }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", + "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": 49, - "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "block_index": 186, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 55, + "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "block_index": 190, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, + "give_quantity": 1000, + "give_remaining": 1000, "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, + "get_quantity": 1000, + "get_remaining": 1000, "expiration": 21, - "expire_index": 204, + "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "cancelled", "confirmed": true, - "block_time": 1727090002, + "block_time": 1727093462, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3971,20 +3971,20 @@ "locked": false, "issuer": null }, - "give_quantity_normalized": "0.00010000", - "get_quantity_normalized": "0.00010000", - "get_remaining_normalized": "0.00005000", - "give_remaining_normalized": "0.00005000", + "give_quantity_normalized": "0.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": 47, - "tx_hash": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", - "block_index": 182, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 57, + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "block_index": 191, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3992,14 +3992,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 181, + "expire_index": 212, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "expired", + "status": "open", "confirmed": true, - "block_time": 1727089916, + "block_time": 1727093467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4030,10 +4030,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", + "tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", "tx_index": 22, "block_index": 135, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4058,13 +4058,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727089768 + "block_time": 1727093218 }, { - "tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", + "tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", "tx_index": 18, "block_index": 131, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4089,13 +4089,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727089751 + "block_time": 1727093201 }, { - "tx_hash": "bb99ad8dc9e2abcd6ec3a52b9cd21471fcbbf9b4d21c6a72ea69dcec59436f48", + "tx_hash": "7a9102f321f0d0fa53fc2a72888a63e7fb5ade06068f5a3401438b09db2d6ed7", "tx_index": 14, "block_index": 130, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4120,13 +4120,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727089747 + "block_time": 1727093197 }, { - "tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "tx_index": 10, "block_index": 125, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4151,7 +4151,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727089726 + "block_time": 1727093176 } ], "next_cursor": null, @@ -4160,127 +4160,127 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "336b5e03756508a441266e3629a6ea97f2652ea3ccdc9453459d825b38a65a17", + "tx_hash": "5cadef994ef817048b024cb011579c3e4b9baa49462417190150f05a34a9bcf9", "tx_index": 23, "block_index": 136, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "fairminter_tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "fairminter_tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089772, + "block_time": 1727093222, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } }, { - "tx_hash": "8d49a34c9963f9211b6679edb54d613c8db35c6a98405ba0f25e0ab9c93a7c2b", + "tx_hash": "50b750262a123626672ee6285a36b9d1836a5da7980de9ed42573c516dc0bfba", "tx_index": 21, "block_index": 134, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "fairminter_tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "fairminter_tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089764, + "block_time": 1727093214, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } }, { - "tx_hash": "612d7e8119370fff298f17800d9d75f9a4ac40c829cfc574a0364e688f05f94a", + "tx_hash": "b41d216bd5e86231e03bb51e877b156c421b62f114c085a1eb153435620f9d53", "tx_index": 20, "block_index": 133, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "fairminter_tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "fairminter_tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089760, + "block_time": 1727093209, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } }, { - "tx_hash": "985be77c4294a50484a675bbd3d9da5953dba18532d0518caabe7c127730c884", + "tx_hash": "e205c0212c92af890ba9019c1d3aaf5fd70bf2b246dd36187c9175c8c08ab3fd", "tx_index": 19, "block_index": 132, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "fairminter_tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "fairminter_tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089755, + "block_time": 1727093205, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } }, { - "tx_hash": "5b1ebf326d704e905ec5b9ac0b6fb1898f7fe6e4353ab1f0c6326c3ea3e15bdd", + "tx_hash": "6e4c49dc83facc1956475e1dbf513058755325acbe2974c556d7f09f846f52b4", "tx_index": 15, "block_index": 127, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "fairminter_tx_hash": "bb99ad8dc9e2abcd6ec3a52b9cd21471fcbbf9b4d21c6a72ea69dcec59436f48", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "fairminter_tx_hash": "7a9102f321f0d0fa53fc2a72888a63e7fb5ade06068f5a3401438b09db2d6ed7", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089734, + "block_time": 1727093184, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } }, { - "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", + "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089717, + "block_time": 1727093167, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } @@ -4292,22 +4292,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", + "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089717, + "block_time": 1727093167, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } @@ -4322,7 +4322,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4334,7 +4334,7 @@ "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "02000000000101b4b598cd41bc31759ebf6bee28904f2aa1175c771be894634d9524762fac1ce8000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0200000000000000002b6a29fe74f7aeed291791d734c55b11dae63870bc7e446476419ffc069c589dde961eb4e1b9563e5da9f70b3bb1052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "020000000001011b513f6fdd1f7df388cb3a662c9bedb782eedb095ea0717969b0849aacf25b0f00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff0200000000000000002b6a296186e4ea78104e3725bdd638b6a278dc81b803953a3f54490b5f7f103cc616c8c15c878889480c4e7a3bb1052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4347,16 +4347,16 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8" + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956" }, "name": "btcpay", - "data": "434e5452505254590b5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "data": "434e5452505254590bc5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c112946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999975897, "btc_fee": 21103, - "rawtransaction": "020000000001018490d82f5ee2dc69c5f6fd9dba66003d99787608a9ec612280008517efe723cb000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff03b80b0000000000001600143e5479d90ea1664716c42ff6cd46077c13ccd47300000000000000004b6a49cbd9df07d2c0cf1faceab3f0edb6f6419178b8a63a7e1e03b185ff36066d2dd235d3935fdcb6871e51592e162833edfb0957298045a65d09352536edc99b4bee0a17c7decdb6e47b78d993052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "020000000001019f89fd6211d359d6f693f7d7ef3662fe29b15b263c4ae05643dec92cc201d49300000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff03b80b000000000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda00000000000000004b6a49fd74939129837c7351989251869f5391885030a789aec69c3f96482bad7dd2fc7f96b6faf69b54d04401cf6ae44b7e798d52fdcd810dddbfe182e155a7b279db7850fb49f596aebe8ed993052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4369,7 +4369,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "quantity": 1000, "overburn": false }, @@ -4379,22 +4379,22 @@ "btc_out": 1000, "btc_change": 4999983584, "btc_fee": 15416, - "rawtransaction": "02000000000101f361033ca8ff78cfe2c7ccd8395a2200ac958126a35cf9ae4ac360fee67aff41000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000" + "rawtransaction": "020000000001016f4ab9ebc13fb9781f630b0cd5e2ccd0aefb2224adf72cf64d75e941ee8748aa00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "offer_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d" + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "offer_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043" }, "name": "cancel", - "data": "434e54525052545946bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "data": "434e545250525459467961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "0200000000010166ea96e8827d7da9ccc3935789e2f358b0dd57ef70f4df9babce0b3ee3426003000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0200000000000000002b6a29edeb6da89b03d0bac7ce2725a3c19ca4b64dedfda8d0f252d9955856c5d051d9a008834400300837ae3bb1052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "020000000001010ea8b0ffa527d2efd792ef5af53d6740d3bf55df53d42241607204281aa8aa0e00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff0200000000000000002b6a292fc8c1ce801333c0ababbf752eb6c579710b0622f4c027a7a0ba41d379d03471a77e5f1c3b80e5bdc23bb1052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4407,7 +4407,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4426,7 +4426,7 @@ "btc_out": 0, "btc_change": 4999984036, "btc_fee": 15964, - "rawtransaction": "020000000001018976a99b326a0dc82cf6e0e5fed53708928ca98a81d8f0cfa7b7125a1424561a000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000226a20881c0df8401793cdfcece793396094a09e0915766a089c2d106205a9e68a7efba4b3052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "020000000001010a24bbbb8016c85b33229ee3792609be59352c6eaa21efbbc7896a322a1c37ce00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000226a202b516871e2539518ca5ef8444a9d50936c4acb3716ce16fa69704e657c9948a9a4b3052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4439,7 +4439,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", + "source": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4463,7 +4463,7 @@ "btc_out": 0, "btc_change": 4949953351, "btc_fee": 16649, - "rawtransaction": "020000000001012a3cd6a47ff542d48d0438c9c75876eab28b1c2e4563d535f366eb89776eaacc0200000016001401d840dfc6dc260745ae69084785f48258eb45baffffffff0200000000000000002c6a2a8ca5fc6e87e042c2e3aab97566b9033d1baccced54f9b60eafc388ac3b4cd95c62e97630ebccdd5babf0474b0a270100000016001401d840dfc6dc260745ae69084785f48258eb45ba02000000000000", + "rawtransaction": "020000000001018004f2aa7e02c301909cca5e3b8faf7d8d4574233122a61c538904e39d2e238002000000160014068d236984cf5e62eb7f6628e63d0081fa0ed227ffffffff0200000000000000002c6a2ac9c82425abfcc58faac5bb5dc65eac3e618a754de7e312b450901686d49ea7b3b36c819ec2791d75e4eb474b0a2701000000160014068d236984cf5e62eb7f6628e63d0081fa0ed22702000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4476,14 +4476,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -4502,7 +4502,7 @@ "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "020000000001013c7f0b32e7fb4d3ba8a7b73836b864035340234f09cf4622cdef5734b4dbbe11000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000236a21a95ab6bd82627fe910fc48fa44001f03c85813455ab3eccb65502acea69a8d126c60b3052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "020000000001014dde4c0c84f0a650805533cc702f7e60fb64a2fd5983045ef8f391e63f3ee5e600000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000236a21b3f3a78c45931030d7c10bb4428beada2e067fc45b8b60754cc84bdd7ab1df948b60b3052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4515,10 +4515,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "transfer_destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "lock": false, "reset": false, @@ -4531,7 +4531,7 @@ "btc_out": 546, "btc_change": 4999981092, "btc_fee": 18362, - "rawtransaction": "02000000000101000425aa8500aea9b9d5cb296947b0b6d71f64cf8dd639b63f5a2883de8bad6d000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0322020000000000001600143e5479d90ea1664716c42ff6cd46077c13ccd4730000000000000000236a21cc8ec18aca84767b144ecbac109c4b6812357f9bc58bdcbfa8f667098e2d2853ab24a8052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "02000000000101d0cdc389fd4c7bf47b1c23c05e05f3acd8b650d3fdc550f5c4b4e58660462b3600000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff032202000000000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda0000000000000000236a2109cfd3845a4f4ebea7d37e916683d7b6461abfdda34112aa25cc22bcac9218a95324a8052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4544,16 +4544,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", 1 ], [ "MYASSETA", - "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", 2 ] ], @@ -4561,12 +4561,12 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e545250525459030002803e5479d90ea1664716c42ff6cd46077c13ccd47380c7da25416c8a05ef76411973556de567bdc97a8a8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280a1d4c53a2839a34cbf7e8ecd9810a21633992fda802ae0ca086d281f046afa5927e69de29e640e6a628f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999936609, "btc_fee": 61391, - "rawtransaction": "02000000000104be380ad9f6118df88b30e5ba9df40f45180c2e4578fd44bd16bbe32537dc30c5000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff7070290d1c1af1350dbf89f6d850b13bbf26df47a4a85d899375c522a73a2fad000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0a29fba38b0824e461b534ecc37540382cccfae1ac9451e166b3acf0d4056c11000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffffdb75b1232299c696cc2b5ca1707bedcba354f3412e2128dcf5554ddb766cafe2000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff03e80300000000000069512102eaa8c97299750142bc49ab3dd0b3442290d87e85e1d4b3933c22e3ae2517f42c210302ad2794f10b8d00c7f2173dc385a052af1e6a5a204f1df4b3dfdc796820fb5d2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee80300000000000069512102e5a8c97299750142bc6adc5022e1747a6b56dfe3aad7ec377dcfa5a9590438bc2102d6deef532b2ecc6c4df7f04b829cd307c2fb0fe7e935977b9197b915044fd74e2103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653ae61d016a8040000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000002000002000002000000000000", + "rawtransaction": "02000000000104d88254573590eb4337080df10b4f0b4ad803c09b301c1a1faae6ce2943ecd35f00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff75629894e727fe2e729774923a03d6971a8232e2d48baaa5bf1a1449e015514c00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff2d82e749d405fc455cefabcbdf042432516f1e0dc071f6e0cade76f1fa3b5a7f00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff95ef41b04543eb2e3a7228831a3094e0012dabe8a066a8dae923cc53077b0ff700000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff03e8030000000000006951210243f6f7fc25867032afaab047699b42f38677e21c4bddb7dd150b9466ba363fe22102499443450efd3c4bd336ac3d7b848954342c1d4234735cb9b87b2eaee5245f512102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee803000000000000695121024cf6f7fc25867032af89c72a9b56f2179edfdbbf0b7752d86fb384c4ac05a63b2102664e8b6fee373426fb29a05781ddaeb2a9ce81263a193e369a334bc2894b73bb2102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53ae61d016a804000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4579,7 +4579,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4596,7 +4596,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -4610,7 +4610,7 @@ "btc_out": 0, "btc_change": 4999982734, "btc_fee": 17266, - "rawtransaction": "02000000000101928834522e5fdb45cc387ed9c78a3d7ed808b04988bcb5e354444a3c00305ee7000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000356a33c97bbef8ea2d606a49d860a2b66e866b30ffc12f6625b1b2cb00c5f0270cc1225425393eae0fea5f402c4197742a38e5220d078eae052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "020000000001014aacb3b6ad815a4c50210c455562526822143e09629ab5cfae241abfb1eab7ae00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000356a33d2dbbb794ae4b5d99fb235390b9eb26d1b36baa3a6f44e12910f9ffb6039d025052431a45283f6ab01f5a7158c7df7aac8fc738eae052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4623,8 +4623,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4640,12 +4640,12 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880c7da25416c8a05ef76411973556de567bdc97a8a", + "data": "434e54525052545902000000000000000100000000000003e8802ae0ca086d281f046afa5927e69de29e640e6a62", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983077, "btc_fee": 16923, - "rawtransaction": "02000000000101c20d010724af411a2a247fe4dd5848d2b83a47b9fe770cf250ace476a9d4c941000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000306a2ea8baea27a49118c0c972ff0e0197e5821c7ad67e9aa2b4e864831807efeca4c94f8ade8a47195c988596dd65a692e5af052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "02000000000101cdb2043481d9e60271c55a9dffae7e8bcf3f594d494145952d2f09d41021123300000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000306a2e739847d72081f157104b3f0a1992e1777522f8de11bf3171ae56dc10be77a55616893c889e9ffd540fd31eb624dee5af052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4658,18 +4658,18 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480c7da25416c8a05ef76411973556de567bdc97a8a07ffff", + "data": "434e54525052545904802ae0ca086d281f046afa5927e69de29e640e6a6207ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "020000000001016e81923da0987e761c47ff80393af0bea0a0b5ef1679b1b76878c68753d01c31000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000236a21e50cc89fd41bab833f848e0b2e4649e3ce7243b5baf441d6c57493d2abfa88d82b60b3052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "02000000000101469740e2c86396825812cc793adc952cb159869fbe68f70ad62ec8f90e3dca8500000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000236a21eb6c0a6f87a70df6580c99f871c80d905cd0c3c3c7ca09b3177df4a32679df84ed60b3052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4682,8 +4682,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "quantity": 1000 }, "name": "dispense", @@ -4692,7 +4692,7 @@ "btc_out": 1000, "btc_change": 4949850214, "btc_fee": 16786, - "rawtransaction": "02000000000101dea30e8328b8079583b96c3ef77f9b7009ce379259fb87bcd088633f21a61c8302000000160014c7da25416c8a05ef76411973556de567bdc97a8affffffff03e803000000000000160014fa167162004bd108ffc4b1cfaf62ff500d14c74100000000000000000c6a0ac01c12de2331cceff02a66b8082701000000160014c7da25416c8a05ef76411973556de567bdc97a8a02000000000000", + "rawtransaction": "020000000001016bbe33f447b862a08c6c7e6853210f90154fad7add09b03cbcc11e8033767e4a020000001600142ae0ca086d281f046afa5927e69de29e640e6a62ffffffff03e80300000000000016001448679a4ad46ccfb39129094fc4ea5ad1385a05f500000000000000000c6a0a4564db1175b8a24eaf8266b80827010000001600142ae0ca086d281f046afa5927e69de29e640e6a6202000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4705,7 +4705,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4730,7 +4730,7 @@ "btc_out": 0, "btc_change": 4999983008, "btc_fee": 16992, - "rawtransaction": "02000000000101aa7ce43971254a90d4ccc6b79aa2ef799a9a4b00bbedbd1942eae5c1b55a2af2000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000316a2f715c94a7f4fb2b8ff0d449110ddebde8509f5199e9d24d15a03d253a7d71824a88a648920d2907b225109a6f72df18a0af052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "0200000000010188c825db2b13d7c4582dc26cedae5437f4050194ff8a8fef902088045cbb38c200000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000316a2f78a7cb7c7fc1b9f3887131a36926d6ebcef1c20698d24431d8ae0ecd5db486c3046dc7e1a21bddf5b7923ad699db51a0af052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4743,13 +4743,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -4761,7 +4761,7 @@ "btc_out": 0, "btc_change": 4999984858, "btc_fee": 15142, - "rawtransaction": "020000000001013d689999212a122c2985028b16378a094bf53062bf1faf12a751052a4bd35754000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff020000000000000000166a14257a90a16c25b2e5f878513a635d0805d4678aeadab6052a010000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000000000000", + "rawtransaction": "020000000001014e29093d974c2b92f83b61c9bb75a7a28ad5ff2e0b1fa9e185a10aaaa47ad82400000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000166a14833fdd88988e3689c1f82e0b988279be26738447dab6052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4774,8 +4774,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0:3", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4:3", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4788,12 +4788,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171386532386e6b677735396e7977396b79396c6d7636337338307366756534726e756b6b64637a7c333937386436636233666530613664613830356136323037313461643262633330346530383264373331343263643831303732396338356338623462313264303a337c5843507c31303030", + "data": "434e5452505254596462637274317135383276327733673878333565306d37336d78657379397a7a6365656a7437366863707a37797c363563643661383034396632393133396265663364373864343461646236353266306136343837333461616166366431613163613835623963376634353665343a337c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999905256, "btc_fee": 91744, - "rawtransaction": "020000000001062333447ebbea0fd6a2a225010dccc6d3c5477c35a8acef277d20e91565d7c347000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffffc1d16b68605c411e45ad8e0397dac1b581a6df12f2f06fe2af40ff24e952d19e000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffffbf74197d364fdbe426f1daaec1c656e575ed2231d18da43348467151bae2522c000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff0b32d484d9546ad3bef76d6dc3906513d3b8a82998967e49c9130849194a8fcb000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473fffffffffabcd8acadac9fb2cacb64d909a9948acdc57c7c19105ae5560d7272811de972000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffffb8523f38389b9e6699298411af04bac6a1cd1713eaf4a97bac2c71bedf70eb4e000000001600143e5479d90ea1664716c42ff6cd46077c13ccd473ffffffff04e80300000000000069512102be6824c9c2837855acb7c2552a01165fbb89f27130a7ff4a4f8cd8111cc905ac2103efa04bf310d554e2f9edaa566eaeae7459e864db0620471418ac9a1078c967262103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee80300000000000069512102be6824c9c2837855acb193503d454618e78df8796badae0f4a82875c0a945c242102f4fa14ae528657a9f3b9ee032affa86553a53e805571040b13a0ce107ecb66d92103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee80300000000000069512102946824c9c2837855ace29252684f1452dbaf90356ffca80d7ab5b6686bf06e1821029699279e66e36791c1ddd9301bcb9a06379d0fb062433d682b95ad281cff04e62103440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb4169955653aee83922fc060000001600143e5479d90ea1664716c42ff6cd46077c13ccd47302000002000002000002000002000002000000000000", + "rawtransaction": "0200000000010648c9fd3cb5f428032cc8ed89bf5c3b36fc13547024f4128b2e140f929728e1a000000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffffe1f3f7c7904eabd1536bf76b8b3fa402d7b9202f765226da53d078ddd488af2100000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff94fc5de95229556e4566ff3ae8cd7d383e76a7bd9ae610106978d64c443f505300000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffffa3e388ae2ebee65472cc607151f49002d6de5ff576fe47941ef69f375e974d6d00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff4297fb2e2b6fc7559f3648e0664907f1e4f3377ddb31d134ead6a366a4981ff300000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffffeccbf203673843794be03d22fcf570fe9d8bd202878e1224961f0e80a103d4b900000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff04e80300000000000069512103865345e83ce6f89535b804d9c9b2ba9b32cf453423d6e6725febe65b3b037f7c21021c6fd22f5dc1266af20aac17bcecb6fbee9f08bd3260f40ee5cb87b728c76f1b2102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee80300000000000069512102865345e83ce6f89535ec5283ddf4b2db34ce15277792b1225ff7e15a3f57705121021d698d3108d36967b047fc46b8e7a3aaee935aac7934ec4ae69cddb029c063f32102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee80300000000000069512102ac5345e83ce6f89535e950df8ffcb8965fb4273e2091e5256793d56e5e3312a121022b5cbf5738b25f538870cf72d986c2ccd8f76bcd48578d72d3fee4d31ea6576f2102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee83922fc06000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4806,8 +4806,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c:1", - "destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389:1", + "destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4820,12 +4820,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964613239393834616131613833316366616539306235336338303930306666396431303865353735613365633736636138646563663666363138653163356130633a317c626372743171386532386e6b677735396e7977396b79396c6d7636337338307366756534726e756b6b64637a7c5843507c31303030", + "data": "434e54525052545964333432393634363138333939316237626663656438623535646464623836663035303466666534393262316237373265323764646532336431643061643338393a317c62637274317135383276327733673878333565306d37336d78657379397a7a6365656a7437366863707a37797c5843507c31303030", "btc_in": 4949874900, "btc_out": 3000, "btc_change": 4949842164, "btc_fee": 29736, - "rawtransaction": "020000000001010c5a1c8e616fcfdea86cc73e5a578e109dff0009c8530be9fa1c831aaa8499a201000000160014e4967dc95a9dc087b320508b527a8ba2f1641404ffffffff04e8030000000000006951210338cb0920482201a454429a0b10c677b9c57a58e648ef9f97e8160f1fa75ac903210251e0e4c133f7e8f49b4a561bec2b72b93b0a59a5e5b0a29f1dfaefdd745c6c4c2102e211c75c1f658711fb2f12f9538ca309f92b3e249f764e2a1bb312f311c8e81453aee8030000000000006951210338cb0920482201a454109d0f18c72abcc72e08b713e69f88ec141852a649c46d210207b1e49f61a0afa7c41d4b5de5786eb560524ea0b3a0ad990dfda2dc254d640f2102e211c75c1f658711fb2f12f9538ca309f92b3e249f764e2a1bb312f311c8e81453aee8030000000000006951210312cb0920482201a4545390524d9c35f1fc5839fb41ec9ec48e776a269738fc5421026283dcf10ac7d892fd73322adc13178c0c3f389680d395a97e9bd7b9113f0ad82102e211c75c1f658711fb2f12f9538ca309f92b3e249f764e2a1bb312f311c8e81453aef498082701000000160014e4967dc95a9dc087b320508b527a8ba2f164140402000000000000", + "rawtransaction": "0200000000010189d30a1d3de2dd272e771b2b49fe4f50f086dbdd558bedfc7b1b998361642934010000001600141ffcb5e94b4bb7721d31470b9127310a921e5f9cffffffff04e80300000000000069512103e4a08582503791c795b346510299e80d744e26bdc7e437c630b0dfc44929d44821038e01933582663073f222ebb5f6c7a41f7acf01246a8d326259d60704bca9f7b721037eea63e0236a331d93b3a01fac2fb0a1770b0580e0e98f89d6262276cca409db53aee80300000000000069512103e4a08582503791c795b247565491ba09231b2db6c7e737d865b1cbd31d3cd9f02102d406d06391313573bc77eee5f69ef54a72835d6571852a2f0d81075cfffaa51e21037eea63e0236a331d93b3a01fac2fb0a1770b0580e0e98f89d6262276cca409db53aee80300000000000069512102cea08582503791c795bf16154a97a7451a3c4ef2cfed369407d2b9a72c4dec722102ec34a651e602524bc444db80c6f3c2791ffb381608bc50556ee462368bcd939421037eea63e0236a331d93b3a01fac2fb0a1770b0580e0e98f89d6262276cca409db53aef4980827010000001600141ffcb5e94b4bb7721d31470b9127310a921e5f9c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4841,8 +4841,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false, "supply": 10000000000, @@ -4850,16 +4850,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727089867, - "last_issuance_block_time": 1727089896, + "first_issuance_block_time": 1727093327, + "last_issuance_block_time": 1727093335, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", - "owner": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", + "issuer": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", + "owner": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", "divisible": true, "locked": false, "supply": 100000000000, @@ -4867,16 +4867,16 @@ "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1727089863, - "last_issuance_block_time": 1727089863, + "first_issuance_block_time": 1727093323, + "last_issuance_block_time": 1727093323, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false, "supply": 100000000000, @@ -4884,16 +4884,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727089828, - "last_issuance_block_time": 1727089828, + "first_issuance_block_time": 1727093278, + "last_issuance_block_time": 1727093278, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false, "supply": 40, @@ -4901,16 +4901,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727089768, - "last_issuance_block_time": 1727089772, + "first_issuance_block_time": 1727093218, + "last_issuance_block_time": 1727093222, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false, "supply": 19, @@ -4918,8 +4918,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727089751, - "last_issuance_block_time": 1727089764, + "first_issuance_block_time": 1727093201, + "last_issuance_block_time": 1727093214, "supply_normalized": "0.00000019" } ], @@ -4931,8 +4931,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false, "supply": 10000000000, @@ -4940,15 +4940,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1727089713, - "last_issuance_block_time": 1727089726, + "first_issuance_block_time": 1727093163, + "last_issuance_block_time": 1727093176, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4956,14 +4956,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4971,7 +4971,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -4983,7 +4983,7 @@ }, "/v2/assets//balances/
": { "result": { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -5001,10 +5001,10 @@ "/v2/assets//orders": { "result": [ { - "tx_index": 57, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", - "block_index": 191, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 47, + "tx_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "block_index": 182, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5012,14 +5012,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 212, + "expire_index": 181, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "confirmed": true, - "block_time": 1727090024, + "block_time": 1727093354, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5043,11 +5043,54 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, + { + "tx_index": 49, + "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "block_index": 186, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "give_asset": "XCP", + "give_quantity": 10000, + "give_remaining": 5000, + "get_asset": "BTC", + "get_quantity": 10000, + "get_remaining": 5000, + "expiration": 21, + "expire_index": 204, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1727093435, + "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": 55, - "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "block_index": 190, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5062,7 +5105,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727090019, + "block_time": 1727093462, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5087,43 +5130,43 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 52, - "tx_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", - "block_index": 186, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "give_asset": "BTC", - "give_quantity": 3000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 3000, - "get_remaining": 0, + "tx_index": 57, + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "block_index": 191, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, "expiration": 21, - "expire_index": 207, + "expire_index": 212, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727090002, + "block_time": 1727093467, "give_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, + "description": "The Counterparty protocol native currency", + "locked": true, "issuer": null }, "get_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, + "description": "The Bitcoin cryptocurrency", + "locked": false, "issuer": null }, - "give_quantity_normalized": "0.00003000", - "get_quantity_normalized": "0.00003000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", @@ -5131,9 +5174,9 @@ }, { "tx_index": 50, - "tx_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "tx_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "block_index": 185, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5148,7 +5191,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727089998, + "block_time": 1727093431, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5171,64 +5214,21 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 49, - "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "block_index": 186, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 204, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1727090002, - "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" } ], - "next_cursor": 48, + "next_cursor": 52, "result_count": 7 }, "/v2/assets//matches": { "result": [ { - "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", "tx0_index": 49, - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 52, - "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", - "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5242,7 +5242,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727090002, + "block_time": 1727093435, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5262,13 +5262,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "tx0_index": 49, - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 50, - "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", - "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5282,7 +5282,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727089998, + "block_time": 1727093431, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5302,13 +5302,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", "tx0_index": 47, - "tx0_hash": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 48, - "tx1_hash": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", - "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "tx1_hash": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5322,7 +5322,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727089916, + "block_time": 1727093354, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5349,20 +5349,20 @@ "result": [ { "block_index": 192, - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5370,20 +5370,20 @@ }, { "block_index": 125, - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "acf48dd0934a72afc03c4f60973d9546548128c16f7dd8a2d27d53d9cefd51d2", + "event": "51964afe198dc7b43960247984e8e03be0113effcaa92fef97aa1cbfdb64a6c0", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727089726, + "block_time": 1727093176, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5391,20 +5391,20 @@ }, { "block_index": 124, - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075", + "event": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727089722, + "block_time": 1727093171, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5412,20 +5412,20 @@ }, { "block_index": 124, - "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", + "event": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727089722, + "block_time": 1727093171, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5437,16 +5437,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075", + "event": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727089722, + "block_time": 1727093171, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5460,16 +5460,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "event": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -5481,16 +5481,16 @@ }, { "block_index": 192, - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -5502,16 +5502,16 @@ }, { "block_index": 192, - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -5523,16 +5523,16 @@ }, { "block_index": 191, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "event": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090024, + "block_time": 1727093467, "asset_info": { "divisible": true, "asset_longname": null, @@ -5544,16 +5544,16 @@ }, { "block_index": 189, - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727090015, + "block_time": 1727093458, "asset_info": { "divisible": true, "asset_longname": null, @@ -5571,20 +5571,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", + "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", "block_index": 153, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727089854, + "block_time": 1727093314, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -5606,14 +5606,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "acf48dd0934a72afc03c4f60973d9546548128c16f7dd8a2d27d53d9cefd51d2", + "tx_hash": "51964afe198dc7b43960247984e8e03be0113effcaa92fef97aa1cbfdb64a6c0", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -5628,20 +5628,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727089726, + "block_time": 1727093176, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075", + "tx_hash": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -5656,20 +5656,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727089722, + "block_time": 1727093171, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", + "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -5684,20 +5684,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727089717, + "block_time": 1727093167, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -5712,7 +5712,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1727089713, + "block_time": 1727093163, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5724,10 +5724,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5735,7 +5735,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "divisible": true, "asset_longname": null, @@ -5748,10 +5748,10 @@ }, { "tx_index": 53, - "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794", + "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0", "block_index": 187, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5759,7 +5759,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090007, + "block_time": 1727093439, "asset_info": { "divisible": true, "asset_longname": null, @@ -5772,10 +5772,10 @@ }, { "tx_index": 42, - "tx_hash": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", + "tx_hash": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", "block_index": 155, - "source": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7:0", - "destination": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c:1", + "source": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561:0", + "destination": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5783,7 +5783,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727089863, + "block_time": 1727093323, "asset_info": { "divisible": true, "asset_longname": null, @@ -5796,10 +5796,10 @@ }, { "tx_index": 41, - "tx_hash": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7", + "tx_hash": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561", "block_index": 154, - "source": "53811a32e206a65da3b210d98250f6fcb76f9b6be3271e87c0cdfb8c512dd590:0", - "destination": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7:0", + "source": "61dfe33f21d7929996be520e84245cb0ef401935edd4e6c382303f81ab07cda1:0", + "destination": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5807,7 +5807,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727089858, + "block_time": 1727093318, "asset_info": { "divisible": true, "asset_longname": null, @@ -5825,29 +5825,29 @@ "/v2/assets//dispensers": { "result": [ { - "tx_index": 32, - "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", - "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "tx_index": 26, + "tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "block_index": 141, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, - "status": 0, - "give_remaining": 9334, - "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "status": 10, + "give_remaining": 0, + "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", - "dispense_count": 1, + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "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": 1727089824, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -5856,25 +5856,25 @@ "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009334", + "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" + "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 30, - "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", - "block_index": 144, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 29, + "tx_hash": "22d25e58a41019478c7742f0049a02c6e66fda5f38c995a6cdbbbb79d282f4d5", + "block_index": 142, + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "give_quantity": 1, - "escrow_quantity": 10, + "escrow_quantity": 10000, "satoshirate": 1, "status": 0, - "give_remaining": 20, + "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5884,7 +5884,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089816, + "block_time": 1727093257, "asset_info": { "divisible": true, "asset_longname": null, @@ -5893,25 +5893,25 @@ "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000020", - "escrow_quantity_normalized": "0.00000010", + "give_remaining_normalized": "0.00010000", + "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 29, - "tx_hash": "3a6af3e11c6339f8caf016fedef2856a68de90aa0e72317b4ee81e38c80c4fdd", - "block_index": 142, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "tx_index": 30, + "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", + "block_index": 144, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "give_quantity": 1, - "escrow_quantity": 10000, + "escrow_quantity": 10, "satoshirate": 1, "status": 0, - "give_remaining": 10000, + "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5921,7 +5921,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089797, + "block_time": 1727093265, "asset_info": { "divisible": true, "asset_longname": null, @@ -5930,35 +5930,35 @@ "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00010000", - "escrow_quantity_normalized": "0.00010000", + "give_remaining_normalized": "0.00000020", + "escrow_quantity_normalized": "0.00000010", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 26, - "tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", - "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 32, + "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "block_index": 146, + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, + "status": 0, + "give_remaining": 9334, + "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "dispense_count": 2, + "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "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": 1727089793, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "block_time": 1727093274, "asset_info": { "divisible": true, "asset_longname": null, @@ -5967,10 +5967,10 @@ "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", + "give_remaining_normalized": "0.00009334", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000016" } ], "next_cursor": null, @@ -5979,9 +5979,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 30, - "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", + "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", "block_index": 144, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5990,7 +5990,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6000,7 +6000,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089816, + "block_time": 1727093265, "asset_info": { "divisible": true, "asset_longname": null, @@ -6028,7 +6028,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -6036,7 +6036,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6045,7 +6045,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -6053,7 +6053,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6062,7 +6062,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -6070,7 +6070,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6079,7 +6079,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -6094,27 +6094,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", - "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", + "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "last_status_tx_hash": null, - "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6129,7 +6129,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727089824, + "block_time": 1727093274, "asset_info": { "divisible": true, "asset_longname": null, @@ -6143,19 +6143,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", + "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6163,7 +6163,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6178,7 +6178,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089793, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -6192,19 +6192,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", + "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", "block_index": 140, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6212,7 +6212,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6227,7 +6227,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089788, + "block_time": 1727093239, "asset_info": { "divisible": true, "asset_longname": null, @@ -6248,8 +6248,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "owner": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false, "supply": 0, @@ -6257,8 +6257,8 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1727089881, - "last_issuance_block_time": 1727089881, + "first_issuance_block_time": 1727093331, + "last_issuance_block_time": 1727093331, "supply_normalized": "0.00000000" } ], @@ -6268,10 +6268,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "tx_index": 10, "block_index": 125, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6296,7 +6296,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727089726 + "block_time": 1727093176 } ], "next_cursor": null, @@ -6305,64 +6305,64 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "acf48dd0934a72afc03c4f60973d9546548128c16f7dd8a2d27d53d9cefd51d2", + "tx_hash": "51964afe198dc7b43960247984e8e03be0113effcaa92fef97aa1cbfdb64a6c0", "tx_index": 13, "block_index": 125, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", - "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089726, + "block_time": 1727093176, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } }, { - "tx_hash": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075", + "tx_hash": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7", "tx_index": 12, "block_index": 124, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089722, + "block_time": 1727093171, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } }, { - "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", + "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089717, + "block_time": 1727093167, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } @@ -6374,22 +6374,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "45e99f5995d4431e8919f960ad1c0594fd103d132b0cb772114ae59ac5a1cf3c", + "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "fairminter_tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727089717, + "block_time": 1727093167, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } @@ -6401,10 +6401,10 @@ "/v2/orders": { "result": [ { - "tx_index": 57, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", - "block_index": 191, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 47, + "tx_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "block_index": 182, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6412,14 +6412,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 212, + "expire_index": 181, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "confirmed": true, - "block_time": 1727090024, + "block_time": 1727093354, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6444,111 +6444,111 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 55, - "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", - "block_index": 190, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, + "tx_index": 50, + "tx_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "block_index": 185, + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "give_asset": "BTC", + "give_quantity": 2000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 2000, + "get_remaining": 0, "expiration": 21, - "expire_index": 210, + "expire_index": 205, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "cancelled", + "status": "filled", "confirmed": true, - "block_time": 1727090019, + "block_time": 1727093431, "give_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, + "description": "The Bitcoin cryptocurrency", + "locked": false, "issuer": null }, "get_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, + "description": "The Counterparty protocol native currency", + "locked": true, "issuer": null }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", + "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": 52, - "tx_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "tx_index": 49, + "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", "block_index": 186, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "give_asset": "BTC", - "give_quantity": 3000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 3000, - "get_remaining": 0, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "give_asset": "XCP", + "give_quantity": 10000, + "give_remaining": 5000, + "get_asset": "BTC", + "get_quantity": 10000, + "get_remaining": 5000, "expiration": 21, - "expire_index": 207, + "expire_index": 204, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727090002, + "block_time": 1727093435, "give_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, + "description": "The Counterparty protocol native currency", + "locked": true, "issuer": null }, "get_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, + "description": "The Bitcoin cryptocurrency", + "locked": false, "issuer": null }, - "give_quantity_normalized": "0.00003000", - "get_quantity_normalized": "0.00003000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", + "give_quantity_normalized": "0.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": 50, - "tx_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", - "block_index": 185, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "tx_index": 52, + "tx_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "block_index": 186, + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "give_asset": "BTC", - "give_quantity": 2000, + "give_quantity": 3000, "give_remaining": 0, "get_asset": "XCP", - "get_quantity": 2000, + "get_quantity": 3000, "get_remaining": 0, "expiration": 21, - "expire_index": 205, + "expire_index": 207, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "filled", + "status": "open", "confirmed": true, - "block_time": 1727089998, + "block_time": 1727093435, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6563,8 +6563,8 @@ "locked": true, "issuer": null }, - "give_quantity_normalized": "0.00002000", - "get_quantity_normalized": "0.00002000", + "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", @@ -6573,25 +6573,25 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 49, - "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "block_index": 186, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx_index": 55, + "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "block_index": 190, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, + "give_quantity": 1000, + "give_remaining": 1000, "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, + "get_quantity": 1000, + "get_remaining": 1000, "expiration": 21, - "expire_index": 204, + "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "cancelled", "confirmed": true, - "block_time": 1727090002, + "block_time": 1727093462, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6606,25 +6606,25 @@ "locked": false, "issuer": null }, - "give_quantity_normalized": "0.00010000", - "get_quantity_normalized": "0.00010000", - "get_remaining_normalized": "0.00005000", - "give_remaining_normalized": "0.00005000", + "give_quantity_normalized": "0.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": 48, + "next_cursor": 57, "result_count": 7 }, "/v2/orders/": { "result": { "tx_index": 57, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "block_index": 191, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6639,7 +6639,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727090024, + "block_time": 1727093467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6667,13 +6667,13 @@ "/v2/orders//matches": { "result": [ { - "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", "tx0_index": 49, - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 52, - "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", - "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6687,7 +6687,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727090002, + "block_time": 1727093435, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6707,13 +6707,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "tx0_index": 49, - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 50, - "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", - "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6727,7 +6727,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727089998, + "block_time": 1727093431, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6754,15 +6754,15 @@ "result": [ { "tx_index": 51, - "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", + "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", "block_index": 185, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "btc_amount": 2000, - "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "status": "valid", "confirmed": true, - "block_time": 1727089998, + "block_time": 1727093431, "btc_amount_normalized": "0.00002000" } ], @@ -6772,92 +6772,46 @@ "/v2/orders//": { "result": [ { - "tx_index": 57, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", - "block_index": 191, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, + "tx_index": 50, + "tx_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "block_index": 185, + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "give_asset": "BTC", + "give_quantity": 2000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 2000, + "get_remaining": 0, "expiration": 21, - "expire_index": 212, + "expire_index": 205, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "filled", "confirmed": true, "market_pair": "BTC/XCP", - "market_dir": "BUY", + "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727090024, + "block_time": 1727093431, "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": 55, - "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", - "block_index": 190, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 210, - "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": 1727090019, - "give_asset_info": { + "get_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", + "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", @@ -6865,9 +6819,9 @@ }, { "tx_index": 52, - "tx_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "tx_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", "block_index": 186, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6885,7 +6839,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727090002, + "block_time": 1727093435, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6910,46 +6864,46 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 50, - "tx_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", - "block_index": 185, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "give_asset": "BTC", - "give_quantity": 2000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 2000, - "get_remaining": 0, + "tx_index": 47, + "tx_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "block_index": 182, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, "expiration": 21, - "expire_index": 205, + "expire_index": 181, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "filled", + "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", - "market_dir": "SELL", + "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727089998, + "block_time": 1727093354, "give_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, + "description": "The Counterparty protocol native currency", + "locked": true, "issuer": null }, "get_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, + "description": "The Bitcoin cryptocurrency", + "locked": false, "issuer": null }, - "give_quantity_normalized": "0.00002000", - "get_quantity_normalized": "0.00002000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", @@ -6957,9 +6911,9 @@ }, { "tx_index": 49, - "tx_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", "block_index": 186, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6977,7 +6931,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727090002, + "block_time": 1727093435, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7000,21 +6954,67 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 55, + "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "block_index": 190, + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 210, + "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": 1727093462, + "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": 48, + "next_cursor": 57, "result_count": 7 }, "/v2/orders///matches": { "result": [ { - "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", "tx0_index": 49, - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 52, - "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", - "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7031,7 +7031,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727090002, + "block_time": 1727093435, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7051,13 +7051,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "tx0_index": 49, - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 50, - "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", - "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7074,7 +7074,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727089998, + "block_time": 1727093431, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7094,13 +7094,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", "tx0_index": 47, - "tx0_hash": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 48, - "tx1_hash": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", - "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "tx1_hash": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7117,7 +7117,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727089916, + "block_time": 1727093354, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7143,13 +7143,13 @@ "/v2/order_matches": { "result": [ { - "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", "tx0_index": 49, - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 52, - "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", - "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7163,7 +7163,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727090002, + "block_time": 1727093435, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7183,13 +7183,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "tx0_index": 49, - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 50, - "tx1_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", - "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7203,7 +7203,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727089998, + "block_time": 1727093431, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7223,13 +7223,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", + "id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", "tx0_index": 47, - "tx0_hash": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx1_index": 48, - "tx1_hash": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", - "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "tx1_hash": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7243,7 +7243,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727089916, + "block_time": 1727093354, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7288,66 +7288,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "6a8c5d264053a3fe132a67dfd75f6b75be30fbcc6338e9b6df1e8537ac9908e3", + "tx_hash": "d460a52fd5533e197907b84dcdc8e7fc885c9e17ede386f2ecc15af162d7113c", "block_index": 121, - "source": "bcrt1qwp3vs8yzyz6lc0udjsz37s78rwa908kzgnm7yu", + "source": "bcrt1qswegegswg6qyw5u90tafnw398gzn5a0d5re8u4", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1727089709, + "block_time": 1727093158, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "063848e75c5fff12624ce719a4a817957db286aff18fe03a6c95a277a5da8258", + "tx_hash": "c9daab89307e84bcc14f96bd8fc527be86b26696b8f2d095cec58e769818aab3", "block_index": 120, - "source": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", + "source": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1727089705, + "block_time": 1727093154, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "5e3d5bfcd850b9bb5fe0330972c9c0c3006ca502cbe308c24c89e02a84b2444a", + "tx_hash": "b249762795207fb5f190c065f1828cd125d79735399db8e49f372255863f630c", "block_index": 119, - "source": "bcrt1qr6g583q4apu77vem308rd09m65hmh5j5gly0mm", + "source": "bcrt1qqhp6nrswkpq6js9wqn9rf56zzrer5a3myr0pc3", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1727089701, + "block_time": 1727093150, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "165a6c8507e1a26b393699c7b5f1edbe9fd62bbe8ff4047eea004a8469262dfe", + "tx_hash": "fcc7f7764c0d2d26074b73dda895c366d443e986398c86125a5ab881d010ed88", "block_index": 118, - "source": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", + "source": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1727089697, + "block_time": 1727093146, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "591582bf8f85502b086d90fc4edd97cf117c8f8fdd92f958b40d006818dd9219", + "tx_hash": "0d976e3a765844dc3bc60fe2f329fe2d1d7e194761b3cb3c78eef3448bbb92dd", "block_index": 117, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1727089693, + "block_time": 1727093142, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7359,18 +7359,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", + "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "last_status_tx_hash": null, - "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7380,7 +7380,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727089824, + "block_time": 1727093274, "asset_info": { "divisible": true, "asset_longname": null, @@ -7396,9 +7396,9 @@ }, { "tx_index": 30, - "tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", + "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", "block_index": 144, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7407,7 +7407,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7417,7 +7417,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089816, + "block_time": 1727093265, "asset_info": { "divisible": true, "asset_longname": null, @@ -7433,9 +7433,9 @@ }, { "tx_index": 29, - "tx_hash": "3a6af3e11c6339f8caf016fedef2856a68de90aa0e72317b4ee81e38c80c4fdd", + "tx_hash": "22d25e58a41019478c7742f0049a02c6e66fda5f38c995a6cdbbbb79d282f4d5", "block_index": 142, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7444,7 +7444,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "origin": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7454,7 +7454,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089797, + "block_time": 1727093257, "asset_info": { "divisible": true, "asset_longname": null, @@ -7470,9 +7470,9 @@ }, { "tx_index": 26, - "tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7481,7 +7481,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7491,7 +7491,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089793, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -7512,9 +7512,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7523,7 +7523,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7533,7 +7533,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727089793, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -7553,19 +7553,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", + "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7573,7 +7573,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7588,7 +7588,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089793, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -7602,19 +7602,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", + "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", "block_index": 140, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7622,7 +7622,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7637,7 +7637,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089788, + "block_time": 1727093239, "asset_info": { "divisible": true, "asset_longname": null, @@ -7656,20 +7656,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", + "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", "block_index": 153, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727089854, + "block_time": 1727093314, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -7690,20 +7690,20 @@ "/v2/dividends/": { "result": { "tx_index": 40, - "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", + "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", "block_index": 153, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727089854, + "block_time": 1727093314, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -7726,12 +7726,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", + "event": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", "tx_index": 40, - "utxo": "53811a32e206a65da3b210d98250f6fcb76f9b6be3271e87c0cdfb8c512dd590:0", - "utxo_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "utxo": "61dfe33f21d7929996be520e84245cb0ef401935edd4e6c382303f81ab07cda1:0", + "utxo_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "confirmed": true, - "block_time": 1727089854, + "block_time": 1727093314, "asset_info": { "divisible": true, "asset_longname": null, @@ -7743,16 +7743,16 @@ }, { "block_index": 153, - "address": "bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq", + "address": "bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", + "event": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727089854, + "block_time": 1727093314, "asset_info": { "divisible": true, "asset_longname": null, @@ -7773,27 +7773,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", - "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", + "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", + "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", "transaction_count": 1, - "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", - "block_time": 1727090032 + "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", + "block_time": 1727093475 }, "tx_hash": null, "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "tx_index": 59 }, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 }, { "event_index": 533, @@ -7802,12 +7802,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "status": "valid", "tag": "64657374726f79", - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "tx_index": 59, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -7817,24 +7817,24 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 193, - "event": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "event": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -7844,25 +7844,25 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", "block_index": 193, - "block_time": 1727090032, + "block_time": 1727093475, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "tx_index": 59, - "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", + "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -7882,9 +7882,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 } ], "next_cursor": 530, @@ -7896,15 +7896,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", - "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", + "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", + "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", "transaction_count": 1, - "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", - "block_time": 1727090032 + "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", + "block_time": 1727093475 }, "tx_hash": null, "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 } }, "/v2/events/counts": { @@ -7939,16 +7939,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -7958,78 +7958,78 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", + "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727090019, + "block_time": 1727093462, "asset_info": { "divisible": true, "asset_longname": null, @@ -8039,24 +8039,24 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "block_index": 190, - "block_time": 1727090019 + "block_time": 1727093462 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "event": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "divisible": true, "asset_longname": null, @@ -8066,9 +8066,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "block_time": 1727090011 + "block_time": 1727093444 } ], "next_cursor": 490, @@ -8085,27 +8085,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", - "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", + "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "last_status_tx_hash": null, - "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8120,7 +8120,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727089824, + "block_time": 1727093274, "asset_info": { "divisible": true, "asset_longname": null, @@ -8134,19 +8134,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8709304e940934c56fbadde77ad2db3acb2506960a74614878a4a572cc677e3e", + "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8154,7 +8154,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8169,7 +8169,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089793, + "block_time": 1727093252, "asset_info": { "divisible": true, "asset_longname": null, @@ -8183,19 +8183,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "68bce8cb55aa0df1be2dd942f6a81eec225ea077af056dde7f18d9b91cd150c2", + "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", "block_index": 140, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c8f846fc59b6b32c9b662c1ef24f87c819f12eabd276f2e5c08f526fb3221b24", + "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8203,7 +8203,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8218,7 +8218,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727089788, + "block_time": 1727093239, "asset_info": { "divisible": true, "asset_longname": null, @@ -8237,10 +8237,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8248,7 +8248,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "divisible": true, "asset_longname": null, @@ -8261,10 +8261,10 @@ }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8272,11 +8272,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -8285,10 +8285,10 @@ }, { "tx_index": 54, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8296,11 +8296,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -8309,10 +8309,10 @@ }, { "tx_index": 53, - "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794", + "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0", "block_index": 187, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -8320,7 +8320,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727090007, + "block_time": 1727093439, "asset_info": { "divisible": true, "asset_longname": null, @@ -8333,10 +8333,10 @@ }, { "tx_index": 42, - "tx_hash": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", + "tx_hash": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", "block_index": 155, - "source": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7:0", - "destination": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c:1", + "source": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561:0", + "destination": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8344,7 +8344,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727089863, + "block_time": 1727093323, "asset_info": { "divisible": true, "asset_longname": null, @@ -8363,14 +8363,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", + "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -8385,20 +8385,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089900, + "block_time": 1727093340, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "e6abd286bdba5ba6f4e5dbe333fd2ab733fb42428230b79b68741f9678c28897", + "tx_hash": "87c03f2279383a3df0081f24a9f1fa5c0a0871379ef14a982ab69879184b38f7", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -8413,20 +8413,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727089896, + "block_time": 1727093335, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "67c806f2224d86f97c2532de5cd43bca5dff4a3a6951b17b37dafc06cceada13", + "tx_hash": "8545fa4b393d2af3b1304014da38dd6988b8ad70e7eb5942312966346dbf5c1c", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -8441,20 +8441,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089881, + "block_time": 1727093331, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "f16fadc9b332b83f0383c930c2392d6d2c06410ff8f5ea2a9fa0b1ee4713590e", + "tx_hash": "02e0dc7bbbbc4974003b5a437a68b7e2cbfacb3747f4e8d64d60242fa4478372", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -8469,20 +8469,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089867, + "block_time": 1727093327, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", + "tx_hash": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", - "issuer": "bcrt1qujt8mj26nhqg0veq2z94y75t5tckg9qyqfyszy", + "source": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", + "issuer": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", "transfer": false, "callable": false, "call_date": 0, @@ -8497,7 +8497,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089863, + "block_time": 1727093323, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8508,14 +8508,14 @@ "/v2/issuances/": { "result": { "tx_index": 46, - "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", + "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "transfer": false, "callable": false, "call_date": 0, @@ -8530,7 +8530,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727089900, + "block_time": 1727093340, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8539,16 +8539,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "fee_paid_normalized": "0.00600000" } ], @@ -8559,16 +8559,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727090028, + "block_time": 1727093471, "fee_paid_normalized": "0.00600000" } ], @@ -8579,9 +8579,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d", + "tx_hash": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572", "block_index": 138, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8589,14 +8589,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727089781, + "block_time": 1727093231, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "d8c73b39bec3ca170f5db0ca4cf42abc7535513ef491131f8986f9b249de2aac", + "tx_hash": "000e98b21330a957d503936a5a5b4a4a45befd508a16c30ed1912d21d0020d6f", "block_index": 137, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8604,7 +8604,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727089777, + "block_time": 1727093226, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8614,9 +8614,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d", + "tx_hash": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572", "block_index": 138, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8624,17 +8624,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727089781, + "block_time": 1727093231, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", + "tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", "tx_index": 22, "block_index": 135, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8659,13 +8659,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727089768 + "block_time": 1727093218 }, { - "tx_hash": "de904975d6faa72439c92c15fd1c7452c078fe6af6e684297dbcf7e038db28d0", + "tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", "tx_index": 18, "block_index": 131, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8690,13 +8690,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727089751 + "block_time": 1727093201 }, { - "tx_hash": "bb99ad8dc9e2abcd6ec3a52b9cd21471fcbbf9b4d21c6a72ea69dcec59436f48", + "tx_hash": "7a9102f321f0d0fa53fc2a72888a63e7fb5ade06068f5a3401438b09db2d6ed7", "tx_index": 14, "block_index": 130, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8721,13 +8721,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727089747 + "block_time": 1727093197 }, { - "tx_hash": "e38f62acf2053fbc4052cb19aca3faeb4e50d62de2ba5545020876014d484ed2", + "tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", "tx_index": 10, "block_index": 125, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8752,7 +8752,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727089726 + "block_time": 1727093176 } ], "next_cursor": null, @@ -8766,8 +8766,8 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", - "address": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3" + "txid": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "address": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58" }, { "vout": 2, @@ -8775,8 +8775,8 @@ "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", - "address": "bcrt1qr6g583q4apu77vem308rd09m65hmh5j5gly0mm" + "txid": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", + "address": "bcrt1qqhp6nrswkpq6js9wqn9rf56zzrer5a3myr0pc3" } ], "next_cursor": null, @@ -8785,28 +8785,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "20fa426beb275ab9aa19563cd3634c5e94a8a7b4fe7a8c4457baf6e2104f3028" + "tx_hash": "89a09ac9d6239ab036e8e05a10e7e1bd980f1a8ba1843d56755c2c16187d6a14" }, { - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33" + "tx_hash": "1925463e88ee34000a3ea11c42581ce890f717f7eba97775d5f17c143f29364d" }, { - "tx_hash": "cf60fbda90f616c1b78c427d1f5e43c972f4b2ce47c44d24b87fd88f9f25fb68" + "tx_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956" }, { - "tx_hash": "dc60251c64cde9adfaf7ea84db0bdaf720119f8f0a796de3bd80fd32a8700e75" + "tx_hash": "144554b15a22c114b9c5521d0d24a3c04f73a8b41253e822cc95199c1d067299" }, { - "tx_hash": "b0a4d2e997e49b3e099907b983c3c96413513ce46f50cf3ae3e6bce69611a075" + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" }, { - "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794" + "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0" }, { - "tx_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8" + "tx_hash": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7" }, { - "tx_hash": "9c20a315f9dd83391105db586e409f6b237d721fe234db96ff0cab43fa5174af" + "tx_hash": "3c4051bdedfa9154c9b7f71c4870b9f4267c24ca98d4eb9e00285d6704da9bf0" } ], "next_cursor": null, @@ -8814,8 +8814,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 9, - "tx_hash": "19d7ad6a7debbabdf862640263659bfeb1a9916a4d80ae8d3146789b1cb56978" + "block_index": 3, + "tx_hash": "ff537bf687431f1b8eacb1508399c66f2ddcd9ebdfad42882925e2c43833e443" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -8826,17 +8826,17 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a" + "txid": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "03440474f3effacb0ef2756155a725fc8b6d3d62494349a52ebcc92aeb41699556" + "result": "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f" }, "/v2/bitcoin/transactions/": { - "result": "020000000001010f37878f75c2f6c4b3e3fb5e7a69fec880c6a63f3bcae7d8afc7e7192f1292a50300000000ffffffff020000000000000000226a2060a32da42184ccea8214f59b284252342f58d0932c6adabcca89abc1cc505b65680b0a2701000000160014fa167162004bd108ffc4b1cfaf62ff500d14c7410247304402202ad0965c2307e9c401ff2e7cc89aa61b2f20800b61acc22d72f28514b754e0ac0220678c882ba6f89156de8da5eb81bc54c44c4a95e7a7ae537b7271e1aaac13eafd012102748e93e3b51c48fcf700c353ec69d192cd4c589703e899b4f8b2983d3a722c4b00000000" + "result": "02000000000101dd00f9610dafa03a82ddd666c55d2cc59ebe394256c67c1f6ffbd1fd7560e0c30300000000ffffffff020000000000000000226a203bd937e5a00203cd95ff353270c398e18162febbdbae967d477619ebf1816b3c680b0a270100000016001448679a4ad46ccfb39129094fc4ea5ad1385a05f50247304402205376f592e41d9e273f9b5e7ad1a7fa190a240501b08a29e0d55f8648126aa91002206027d94d88df37a14de6e98f6391c5d647df41369deddd886861fb1125bfd2d801210232a55257b495344474136eebb3408ad9dcb9e275fbbc0f81f8b2f67c031d049000000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 68517 @@ -8859,26 +8859,26 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "tx_index": 60 } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "memo": null, "quantity": 10000, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "status": "valid", - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "tx_index": 60, "asset_info": { "divisible": true, @@ -8891,19 +8891,19 @@ } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "CREDIT", "params": { - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -8915,19 +8915,19 @@ } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 193, - "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -8939,27 +8939,27 @@ } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727090046.9235783, + "block_time": 1727093479.718657, "btc_amount": 0, - "data": "020000000000000001000000000000271080b24ca3b3deb516bc15248b8c9c92dd48a1518ca7", + "data": "020000000000000001000000000000271080c9435a1d17b078c22ab3b67935f7fbaa28e99e2f", "destination": "", "fee": 10000, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "tx_index": 60, - "utxos_info": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5:1", + "utxos_info": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "memo": null, "asset_info": { "divisible": true, @@ -8981,19 +8981,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "CREDIT", "params": { - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -9011,26 +9011,26 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "tx_index": 60 } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "memo": null, "quantity": 10000, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "status": "valid", - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "tx_index": 60, "asset_info": { "divisible": true, @@ -9043,19 +9043,19 @@ } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "CREDIT", "params": { - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -9067,19 +9067,19 @@ } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 193, - "event": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -9091,27 +9091,27 @@ } }, { - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727090046.9235783, + "block_time": 1727093479.718657, "btc_amount": 0, - "data": "020000000000000001000000000000271080b24ca3b3deb516bc15248b8c9c92dd48a1518ca7", + "data": "020000000000000001000000000000271080c9435a1d17b078c22ab3b67935f7fbaa28e99e2f", "destination": "", "fee": 10000, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", - "tx_hash": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", "tx_index": 60, - "utxos_info": "9e44e892abdf808f72021eb18c2509458c1bee4219d0166cd35b14f3e0feb2c5:1", + "utxos_info": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "memo": null, "asset_info": { "divisible": true, @@ -9146,15 +9146,15 @@ "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", "block_index": 193, - "block_time": 1727090032, + "block_time": 1727093475, "difficulty": 545259519, - "previous_block_hash": "32d89dc243e691569c449bf27f50ef9460d303ae5d1698855a38a6c1b673e697" + "previous_block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e" }, "tx_hash": null, "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 } ], "next_cursor": 518, @@ -9166,17 +9166,17 @@ "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "45722ae861d4d22340578d5c62782c0dc4349d5cd0b691e3e938e4923f501a09", + "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", "block_index": 193, - "block_time": 1727090032, + "block_time": 1727093475, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "tx_index": 59, - "utxos_info": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9:1", + "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -9196,9 +9196,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 } ], "next_cursor": 519, @@ -9212,16 +9212,16 @@ "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "destination": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "out_index": 0, - "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", "tx_index": 33, - "block_time": 1727089824, + "block_time": 1727093274, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", "block_index": 146, - "block_time": 1727089824 + "block_time": 1727093274 } ], "next_cursor": 237, @@ -9234,15 +9234,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "8a3412535084564e0b57a4012db0715c02175004c31a81128c7d3be67a98efed", - "messages_hash": "8014042aba57243999b64a0089375b6d43deccd408e8d362383f5d5b93469cff", + "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", + "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", "transaction_count": 1, - "txlist_hash": "a812ae61afaa504e2235928d4221a5843f7a45ac35620d7acf0a3e0b7356458a", - "block_time": 1727090032 + "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", + "block_time": 1727093475 }, "tx_hash": null, "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 } ], "next_cursor": 529, @@ -9255,12 +9255,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "tx_index": 59 }, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 } ], "next_cursor": 528, @@ -9273,15 +9273,15 @@ "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 193, - "event": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "event": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -9291,9 +9291,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 } ], "next_cursor": 525, @@ -9305,16 +9305,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727090028, + "block_time": 1727093471, "asset_info": { "divisible": true, "asset_longname": null, @@ -9324,9 +9324,9 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 } ], "next_cursor": 524, @@ -9340,14 +9340,14 @@ "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "memo": null, "quantity": 10000, - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "status": "valid", - "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794", + "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0", "tx_index": 53, - "block_time": 1727090007, + "block_time": 1727093439, "asset_info": { "divisible": true, "asset_longname": null, @@ -9357,9 +9357,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "69e5e07725f8be27863111c0edc80a2bdd0a9eb32435a8f96a3d4331b4b8f794", + "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0", "block_index": 187, - "block_time": 1727090007 + "block_time": 1727093439 } ], "next_cursor": null, @@ -9373,15 +9373,15 @@ "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "status": "valid", - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "tx_index": 54, - "block_time": 1727090011, + "block_time": 1727093444, "asset_info": { "divisible": true, "asset_longname": null, @@ -9391,9 +9391,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "3978d6cb3fe0a6da805a620714ad2bc304e082d73142cd810729c85c8b4b12d0", + "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", "block_index": 188, - "block_time": 1727090011 + "block_time": 1727093444 } ], "next_cursor": 495, @@ -9416,20 +9416,20 @@ "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "status": "valid", - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "tx_index": 58, - "block_time": 1727090028, + "block_time": 1727093471, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "53712a005661b7bc4eca4fc002f2398bdb3be32e20d9c7758be05a4dfdbc5e33", + "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", "block_index": 192, - "block_time": 1727090028 + "block_time": 1727093471 } ], "next_cursor": null, @@ -9446,15 +9446,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "status": "valid", - "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", + "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", "tx_index": 40, - "block_time": 1727089854, + "block_time": 1727093314, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, @@ -9468,9 +9468,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "b261322b74b14cadd7866ed5e9d426394f6a6fdc4a7231f47f94447a7bfb46bb", + "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", "block_index": 153, - "block_time": 1727089854 + "block_time": 1727093314 } ], "next_cursor": null, @@ -9491,11 +9491,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 159, - "block_time": 1727089900 + "block_time": 1727093340 }, - "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", + "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", "block_index": 159, - "block_time": 1727089900 + "block_time": 1727093340 } ], "next_cursor": 367, @@ -9518,22 +9518,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "status": "valid", "transfer": false, - "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", + "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", "tx_index": 46, - "block_time": 1727089900, + "block_time": 1727093340, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1338cc0f667b864f9cb57cfa4144116e1cc5ddf10179d2bff37b65880621e1fa", + "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", "block_index": 159, - "block_time": 1727089900 + "block_time": 1727093340 } ], "next_cursor": 374, @@ -9548,12 +9548,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qlgt8zcsqf0gs3l7yk8867chl2qx3f36pwkq8nt", + "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", "status": "valid", "tag": "64657374726f79", - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "tx_index": 59, - "block_time": 1727090032, + "block_time": 1727093475, "asset_info": { "divisible": true, "asset_longname": null, @@ -9563,9 +9563,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "7eeb1d330f3dfb26eb77c7e8e3f37ab786190b699f2354ab5af4718ae700adb9", + "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", "block_index": 193, - "block_time": 1727090032 + "block_time": 1727093475 } ], "next_cursor": 157, @@ -9590,11 +9590,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "status": "open", - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "tx_index": 57, - "block_time": 1727090024, + "block_time": 1727093467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9618,9 +9618,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "bf33ab9592332113cb53c30911c920f3e7c61831e64a636b29a3ba43b856302d", + "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", "block_index": 191, - "block_time": 1727090024 + "block_time": 1727093467 } ], "next_cursor": 502, @@ -9638,20 +9638,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d", + "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", "tx0_index": 49, - "tx1_address": "bcrt1qkfx28v77k5ttc9fy3wxfeykafzs4rr98f6ux0g", + "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", "tx1_index": 52, - "block_time": 1727090002, + "block_time": 1727093435, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9670,9 +9670,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "51c6f04927f39a6bbc355c41d88be918fcf4a7ce658f7947a4f86412dea366a8", + "tx_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", "block_index": 186, - "block_time": 1727090002 + "block_time": 1727093435 } ], "next_cursor": 461, @@ -9685,11 +9685,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b" + "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82" }, - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "block_index": 190, - "block_time": 1727090019 + "block_time": 1727093462 } ], "next_cursor": 476, @@ -9702,11 +9702,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628" + "tx_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047" }, - "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", + "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", "block_index": 185, - "block_time": 1727089998 + "block_time": 1727093431 } ], "next_cursor": null, @@ -9718,13 +9718,13 @@ "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", - "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", + "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", "status": "completed" }, - "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", + "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", "block_index": 185, - "block_time": 1727089998 + "block_time": 1727093431 } ], "next_cursor": 440, @@ -9738,18 +9738,18 @@ "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "order_match_id": "5daf91d174131872b2488269668a56d261ce9612fd0bba81b7454dd9ab7fcd2d_b7bf2203b6c8367af7b1cd38bb7e0265ce25c7c4ed1f9b146640b5dbd0487628", - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "status": "valid", - "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", + "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", "tx_index": 51, - "block_time": 1727089998, + "block_time": 1727093431, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "831ca6213f6388d0bc87fb599237ce09709b7ff73e6cb9839507b828830ea3de", + "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", "block_index": 185, - "block_time": 1727089998 + "block_time": 1727093431 } ], "next_cursor": null, @@ -9762,16 +9762,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "0233885103de2e5ea786acba8985ef3da30eec6968d64dc4b43492355385717b", - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "status": "valid", - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "tx_index": 56, - "block_time": 1727090019 + "block_time": 1727093462 }, - "tx_hash": "5c0b6f3f1ecf82c4de85319265a49f14f77a9da1a8ae44d5c87d4edd1406eff7", + "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", "block_index": 190, - "block_time": 1727090019 + "block_time": 1727093462 } ], "next_cursor": null, @@ -9784,13 +9784,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "block_time": 1727089916 + "order_hash": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "block_time": 1727093354 }, "tx_hash": null, "block_index": 182, - "block_time": 1727089916 + "block_time": 1727093354 } ], "next_cursor": 446, @@ -9803,14 +9803,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "01f5953c1c74522df0564fe2d2cbef7a593559c31d7664c59997b1db179cf878_6a4327905f756b3754ee69650c0020031b8afb7ef187f5751c3679a6facb0f4c", - "tx0_address": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "tx1_address": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", - "block_time": 1727089916 + "order_match_id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "block_time": 1727093354 }, "tx_hash": null, "block_index": 182, - "block_time": 1727089916 + "block_time": 1727093354 } ], "next_cursor": null, @@ -9828,14 +9828,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", - "origin": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "satoshirate": 1, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "status": 0, - "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", + "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", "tx_index": 32, - "block_time": 1727089820, + "block_time": 1727093270, "asset_info": { "divisible": true, "asset_longname": null, @@ -9848,9 +9848,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", + "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", "block_index": 145, - "block_time": 1727089820 + "block_time": 1727093270 } ], "next_cursor": 254, @@ -9865,9 +9865,9 @@ "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "status": 0, - "tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", + "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", "asset_info": { "divisible": true, "asset_longname": null, @@ -9877,9 +9877,9 @@ }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", "block_index": 146, - "block_time": 1727089824 + "block_time": 1727093274 } ], "next_cursor": 260, @@ -9893,13 +9893,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mrr2jyjX3kFi5rrXMeDj3zYkjr6YetBX9M", + "destination": "n4jPTsoLW457YTSc3XsQ1Y4gHB8Q4kHjcS", "dispense_quantity": 10, - "dispenser_tx_hash": "5f760b8a72e9a4dad9037ead775c9719c476fa7731458bf0a8aab3747d44127b", - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", - "tx_hash": "682a8a0b6713f471954fb331bfb65eac76796efa2f1bdf8d22e67daedd57150e", + "dispenser_tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx_hash": "69e6e449ccddd30e971cac1a51c578ae45dc8a430d8f8998718f7c09f4cfe895", "tx_index": 31, - "block_time": 1727089816, + "block_time": 1727093265, "asset_info": { "divisible": true, "asset_longname": null, @@ -9909,9 +9909,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "682a8a0b6713f471954fb331bfb65eac76796efa2f1bdf8d22e67daedd57150e", + "tx_hash": "69e6e449ccddd30e971cac1a51c578ae45dc8a430d8f8998718f7c09f4cfe895", "block_index": 144, - "block_time": 1727089816 + "block_time": 1727093265 } ], "next_cursor": null, @@ -9926,14 +9926,14 @@ "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qq8vyph7xmsnqw3dwdyyy0p05sfvwk3d6kfryn3", + "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "3bfd2edf795ba3614dff75ab3e91f67a55b94e7943986cde39b8bee5f84660da", - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", - "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", "tx_index": 33, - "block_time": 1727089824, + "block_time": 1727093274, "asset_info": { "divisible": true, "asset_longname": null, @@ -9944,9 +9944,9 @@ "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "ccaa6e7789eb66f335d563452e1c8bb2ea7658c7c938048dd442f57fa4d63c2a", + "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", "block_index": 146, - "block_time": 1727089824 + "block_time": 1727093274 } ], "next_cursor": 240, @@ -9961,19 +9961,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qnmnrrg4zhmdcjpq7pe3vmrhx9q87zxk8t80du3", + "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d", + "tx_hash": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572", "tx_index": 25, "value": 66600.0, - "block_time": 1727089781, + "block_time": 1727093231, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "6704a0a97145ed7be3f3040aea3132fc4f676188a52048eacca5c553df18535d", + "tx_hash": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572", "block_index": 138, - "block_time": 1727089781 + "block_time": 1727093231 } ], "next_cursor": 213, @@ -10004,16 +10004,16 @@ "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "start_block": 0, "status": "open", - "tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", + "tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", "tx_index": 22, - "block_time": 1727089768 + "block_time": 1727093218 }, - "tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", + "tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", "block_index": 135, - "block_time": 1727089768 + "block_time": 1727093218 } ], "next_cursor": 161, @@ -10026,11 +10026,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "bb99ad8dc9e2abcd6ec3a52b9cd21471fcbbf9b4d21c6a72ea69dcec59436f48" + "tx_hash": "7a9102f321f0d0fa53fc2a72888a63e7fb5ade06068f5a3401438b09db2d6ed7" }, "tx_hash": null, "block_index": 130, - "block_time": 1727089747 + "block_time": 1727093197 } ], "next_cursor": 110, @@ -10046,24 +10046,24 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "933badd29424969531e91f94519b0991d8e860e33a9533d6c7c384576c8d0f7c", + "fairminter_tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", "paid_quantity": 34, - "source": "bcrt1qcldz2stv3gz77ajpr9e42m09v77uj752xp0z7x", + "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", "status": "valid", - "tx_hash": "336b5e03756508a441266e3629a6ea97f2652ea3ccdc9453459d825b38a65a17", + "tx_hash": "5cadef994ef817048b024cb011579c3e4b9baa49462417190150f05a34a9bcf9", "tx_index": 23, - "block_time": 1727089772, + "block_time": 1727093222, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false } }, - "tx_hash": "336b5e03756508a441266e3629a6ea97f2652ea3ccdc9453459d825b38a65a17", + "tx_hash": "5cadef994ef817048b024cb011579c3e4b9baa49462417190150f05a34a9bcf9", "block_index": 136, - "block_time": 1727089772 + "block_time": 1727093222 } ], "next_cursor": 190, @@ -10077,28 +10077,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505:1", + "destination": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "status": "valid", - "tx_hash": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", + "tx_hash": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", "tx_index": 38, - "block_time": 1727089845, + "block_time": 1727093305, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "feaea73ea2c65b0660667a69f5506ce29bdd49b3960c8c65321988c506631505", + "tx_hash": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", "block_index": 151, - "block_time": 1727089845 + "block_time": 1727093305 } ], "next_cursor": 291, @@ -10112,28 +10112,28 @@ "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qmhp4v06gcql2plkje86svfgz8hgg3n8weh0nmq", + "destination": "bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "9c20a315f9dd83391105db586e409f6b237d721fe234db96ff0cab43fa5174af:0", + "source": "144554b15a22c114b9c5521d0d24a3c04f73a8b41253e822cc95199c1d067299:0", "status": "valid", - "tx_hash": "a592122f19e7c7afd8e7ca3b3fa6c680c8fe697a5efbe3b3c4f6c2758f87370f", + "tx_hash": "c3e06075fdd1fb6f1f7cc6564239be9ec52c5dc566d6dd823aa0af0d61f900dd", "tx_index": 37, - "block_time": 1727089841, + "block_time": 1727093301, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q8e28nkgw59nyw9ky9lmv63s80sfue4rnukkdcz", + "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "a592122f19e7c7afd8e7ca3b3fa6c680c8fe697a5efbe3b3c4f6c2758f87370f", + "tx_hash": "c3e06075fdd1fb6f1f7cc6564239be9ec52c5dc566d6dd823aa0af0d61f900dd", "block_index": 150, - "block_time": 1727089841 + "block_time": 1727093301 } ], "next_cursor": null, @@ -10147,14 +10147,14 @@ "params": { "asset": "XCP", "block_index": 155, - "destination": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c:1", + "destination": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389:1", "msg_index": 1, "quantity": 1500000000, - "source": "1375c72c804bcbe95d9b50c3f390dbdfd9909c999e1837ffb69e29e41dfb67c7:0", + "source": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561:0", "status": "valid", - "tx_hash": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", + "tx_hash": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", "tx_index": 42, - "block_time": 1727089863, + "block_time": 1727093323, "asset_info": { "divisible": true, "asset_longname": null, @@ -10164,9 +10164,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a29984aa1a831cfae90b53c80900ff9d108e575a3ec76ca8decf6f618e1c5a0c", + "tx_hash": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", "block_index": 155, - "block_time": 1727089863 + "block_time": 1727093323 } ], "next_cursor": 346, @@ -10181,17 +10181,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qwp3vs8yzyz6lc0udjsz37s78rwa908kzgnm7yu", + "source": "bcrt1qswegegswg6qyw5u90tafnw398gzn5a0d5re8u4", "status": "valid", - "tx_hash": "6a8c5d264053a3fe132a67dfd75f6b75be30fbcc6338e9b6df1e8537ac9908e3", + "tx_hash": "d460a52fd5533e197907b84dcdc8e7fc885c9e17ede386f2ecc15af162d7113c", "tx_index": 9, - "block_time": 1727089709, + "block_time": 1727093158, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "6a8c5d264053a3fe132a67dfd75f6b75be30fbcc6338e9b6df1e8537ac9908e3", + "tx_hash": "d460a52fd5533e197907b84dcdc8e7fc885c9e17ede386f2ecc15af162d7113c", "block_index": 121, - "block_time": 1727089709 + "block_time": 1727093158 } ], "next_cursor": 65, diff --git a/release-notes/release-notes-v10.4.1.md b/release-notes/release-notes-v10.4.1.md index d608b63acf..3ea2077a06 100644 --- a/release-notes/release-notes-v10.4.1.md +++ b/release-notes/release-notes-v10.4.1.md @@ -25,8 +25,9 @@ ## API * Add support for `inputs_set` parameter -* Rename `fee` argument to `exact_fee` +* Rename the `fee` argument to `exact_fee` (the `fee` argument is still available in API v1) * The composition API returns, in addition to a `rawtransaction` or a `psbt`, the following fields: `data`, `btc_in`, `btc_out`, `btc_change`, and `btc_fee` +* Add `sort` argument for `orders`, `order_matches` and `dispenser` * Add the following route: - `/v2/transactions//info` (This route works if the tx is in the mempool of the queried node) From 493fdd98f92c0100b1079d5924d96caeace486f8 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 23 Sep 2024 12:42:18 +0000 Subject: [PATCH 32/46] Fix duplicate command in 'xcpcli.py' --- apiary.apib | 3380 ++++++++--------- .../counterpartycore/lib/api/queries.py | 9 + .../counterpartycore/lib/api/routes.py | 2 +- .../test/regtest/apidoc/apicache.json | 3046 +++++++-------- dredd.yml | 2 +- release-notes/release-notes-v10.4.1.md | 1 + 6 files changed, 3225 insertions(+), 3215 deletions(-) diff --git a/apiary.apib b/apiary.apib index 12d642cb7d..ab72a37d0f 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-09-23 12:11:31.105036. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-09-23 12:37:37.956634. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -179,15 +179,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", "block_index": 193, - "block_time": 1727093475, + "block_time": 1727095038, "difficulty": 545259519, - "previous_block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e" + "previous_block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f" }, "tx_hash": null, "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 } ], "next_cursor": 518, @@ -204,17 +204,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", "block_index": 193, - "block_time": 1727093475, + "block_time": 1727095038, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "tx_index": 59, - "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", + "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -234,9 +234,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 } ], "next_cursor": 519, @@ -255,16 +255,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "destination": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "out_index": 0, - "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", "tx_index": 33, - "block_time": 1727093274, + "block_time": 1727094846, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", "block_index": 146, - "block_time": 1727093274 + "block_time": 1727094846 } ], "next_cursor": 237, @@ -282,15 +282,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", - "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", + "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", + "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", "transaction_count": 1, - "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", - "block_time": 1727093475 + "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", + "block_time": 1727095038 }, "tx_hash": null, "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 } ], "next_cursor": 529, @@ -308,12 +308,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "tx_index": 59 }, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 } ], "next_cursor": 528, @@ -333,15 +333,15 @@ Here is a list of events classified by theme and for each an example response: "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 193, - "event": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "event": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -351,9 +351,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 } ], "next_cursor": 525, @@ -370,16 +370,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -389,9 +389,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 } ], "next_cursor": 524, @@ -410,14 +410,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "memo": null, "quantity": 10000, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "status": "valid", - "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0", + "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039", "tx_index": 53, - "block_time": 1727093439, + "block_time": 1727095012, "asset_info": { "divisible": true, "asset_longname": null, @@ -427,9 +427,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0", + "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039", "block_index": 187, - "block_time": 1727093439 + "block_time": 1727095012 } ], "next_cursor": null, @@ -448,15 +448,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "status": "valid", - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "tx_index": 54, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "divisible": true, "asset_longname": null, @@ -466,9 +466,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "block_time": 1727093444 + "block_time": 1727095016 } ], "next_cursor": 495, @@ -506,20 +506,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "status": "valid", - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, - "block_time": 1727093471, + "block_time": 1727095033, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 } ], "next_cursor": null, @@ -541,15 +541,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": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "status": "valid", - "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", + "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", "tx_index": 40, - "block_time": 1727093314, + "block_time": 1727094875, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -563,9 +563,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": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", + "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", "block_index": 153, - "block_time": 1727093314 + "block_time": 1727094875 } ], "next_cursor": null, @@ -598,11 +598,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": 159, - "block_time": 1727093340 + "block_time": 1727094911 }, - "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", + "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", "block_index": 159, - "block_time": 1727093340 + "block_time": 1727094911 } ], "next_cursor": 367, @@ -630,22 +630,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": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "status": "valid", "transfer": false, - "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", + "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", "tx_index": 46, - "block_time": 1727093340, + "block_time": 1727094911, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", + "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", "block_index": 159, - "block_time": 1727093340 + "block_time": 1727094911 } ], "next_cursor": 374, @@ -665,12 +665,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "status": "valid", "tag": "64657374726f79", - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "tx_index": 59, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -680,9 +680,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 } ], "next_cursor": 157, @@ -714,11 +714,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": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "status": "open", - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "tx_index": 57, - "block_time": 1727093467, + "block_time": 1727095029, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -742,9 +742,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": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "block_index": 191, - "block_time": 1727093467 + "block_time": 1727095029 } ], "next_cursor": 502, @@ -767,20 +767,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": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", "tx0_index": 49, - "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "tx1_index": 52, - "block_time": 1727093435, + "block_time": 1727095009, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -799,9 +799,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": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "tx_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "block_index": 186, - "block_time": 1727093435 + "block_time": 1727095009 } ], "next_cursor": 461, @@ -819,11 +819,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82" + "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e" }, - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "block_index": 190, - "block_time": 1727093462 + "block_time": 1727095025 } ], "next_cursor": 476, @@ -841,11 +841,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047" + "tx_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811" }, - "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", + "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", "block_index": 185, - "block_time": 1727093431 + "block_time": 1727095004 } ], "next_cursor": null, @@ -862,13 +862,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", - "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "status": "completed" }, - "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", + "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", "block_index": 185, - "block_time": 1727093431 + "block_time": 1727095004 } ], "next_cursor": 440, @@ -887,18 +887,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "status": "valid", - "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", + "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", "tx_index": 51, - "block_time": 1727093431, + "block_time": 1727095004, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", + "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", "block_index": 185, - "block_time": 1727093431 + "block_time": 1727095004 } ], "next_cursor": null, @@ -916,16 +916,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "status": "valid", - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "tx_index": 56, - "block_time": 1727093462 + "block_time": 1727095025 }, - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "block_index": 190, - "block_time": 1727093462 + "block_time": 1727095025 } ], "next_cursor": null, @@ -943,13 +943,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "block_time": 1727093354 + "order_hash": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "block_time": 1727094927 }, "tx_hash": null, "block_index": 182, - "block_time": 1727093354 + "block_time": 1727094927 } ], "next_cursor": 446, @@ -967,14 +967,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "block_time": 1727093354 + "order_match_id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "block_time": 1727094927 }, "tx_hash": null, "block_index": 182, - "block_time": 1727093354 + "block_time": 1727094927 } ], "next_cursor": null, @@ -999,14 +999,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": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", - "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "satoshirate": 1, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "status": 0, - "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", "tx_index": 32, - "block_time": 1727093270, + "block_time": 1727094842, "asset_info": { "divisible": true, "asset_longname": null, @@ -1019,9 +1019,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": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", "block_index": 145, - "block_time": 1727093270 + "block_time": 1727094842 } ], "next_cursor": 254, @@ -1041,9 +1041,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "status": 0, - "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", "asset_info": { "divisible": true, "asset_longname": null, @@ -1053,9 +1053,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", "block_index": 146, - "block_time": 1727093274 + "block_time": 1727094846 } ], "next_cursor": 260, @@ -1074,13 +1074,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "n4jPTsoLW457YTSc3XsQ1Y4gHB8Q4kHjcS", + "destination": "mswKMJEVhPVAQYJDEPVBvaADKf2fmZC6hN", "dispense_quantity": 10, - "dispenser_tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "tx_hash": "69e6e449ccddd30e971cac1a51c578ae45dc8a430d8f8998718f7c09f4cfe895", + "dispenser_tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx_hash": "cc547f0e1d0b1b9e9bedbdb98174f8bb688efdaabade4e76ce52efe2f4cda71b", "tx_index": 31, - "block_time": 1727093265, + "block_time": 1727094839, "asset_info": { "divisible": true, "asset_longname": null, @@ -1090,9 +1090,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "69e6e449ccddd30e971cac1a51c578ae45dc8a430d8f8998718f7c09f4cfe895", + "tx_hash": "cc547f0e1d0b1b9e9bedbdb98174f8bb688efdaabade4e76ce52efe2f4cda71b", "block_index": 144, - "block_time": 1727093265 + "block_time": 1727094839 } ], "next_cursor": null, @@ -1112,14 +1112,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", + "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", - "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", "tx_index": 33, - "block_time": 1727093274, + "block_time": 1727094846, "asset_info": { "divisible": true, "asset_longname": null, @@ -1130,9 +1130,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", "block_index": 146, - "block_time": 1727093274 + "block_time": 1727094846 } ], "next_cursor": 240, @@ -1154,19 +1154,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": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572", + "tx_hash": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a", "tx_index": 25, "value": 66600.0, - "block_time": 1727093231, + "block_time": 1727094803, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572", + "tx_hash": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a", "block_index": 138, - "block_time": 1727093231 + "block_time": 1727094803 } ], "next_cursor": 213, @@ -1204,16 +1204,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "start_block": 0, "status": "open", - "tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", + "tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", "tx_index": 22, - "block_time": 1727093218 + "block_time": 1727094790 }, - "tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", + "tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", "block_index": 135, - "block_time": 1727093218 + "block_time": 1727094790 } ], "next_cursor": 161, @@ -1231,11 +1231,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "7a9102f321f0d0fa53fc2a72888a63e7fb5ade06068f5a3401438b09db2d6ed7" + "tx_hash": "801ce5c24ea2170c2937ab2d624deefa78877919ee48f5b5d5134b4b1c1d545e" }, "tx_hash": null, "block_index": 130, - "block_time": 1727093197 + "block_time": 1727094760 } ], "next_cursor": 110, @@ -1256,24 +1256,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", + "fairminter_tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", "paid_quantity": 34, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "status": "valid", - "tx_hash": "5cadef994ef817048b024cb011579c3e4b9baa49462417190150f05a34a9bcf9", + "tx_hash": "cfa6d447a379922dd0da484f07f975e5f68176b84d2aee0d31fa0acec398bb72", "tx_index": 23, - "block_time": 1727093222, + "block_time": 1727094794, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } }, - "tx_hash": "5cadef994ef817048b024cb011579c3e4b9baa49462417190150f05a34a9bcf9", + "tx_hash": "cfa6d447a379922dd0da484f07f975e5f68176b84d2aee0d31fa0acec398bb72", "block_index": 136, - "block_time": 1727093222 + "block_time": 1727094794 } ], "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": 151, - "destination": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a:1", + "destination": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "status": "valid", - "tx_hash": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", + "tx_hash": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", "tx_index": 38, - "block_time": 1727093305, + "block_time": 1727094866, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", + "tx_hash": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", "block_index": 151, - "block_time": 1727093305 + "block_time": 1727094866 } ], "next_cursor": 291, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x", + "destination": "bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "144554b15a22c114b9c5521d0d24a3c04f73a8b41253e822cc95199c1d067299:0", + "source": "28492d2ebdcfa146b86f026a77270b902bd2a4ee130b1cb59bd4b51a8eabf1d4:0", "status": "valid", - "tx_hash": "c3e06075fdd1fb6f1f7cc6564239be9ec52c5dc566d6dd823aa0af0d61f900dd", + "tx_hash": "2ab44625e41aa03c78b532beacdd49dde9f69aa713170235cd829fdf3bde631a", "tx_index": 37, - "block_time": 1727093301, + "block_time": 1727094862, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c3e06075fdd1fb6f1f7cc6564239be9ec52c5dc566d6dd823aa0af0d61f900dd", + "tx_hash": "2ab44625e41aa03c78b532beacdd49dde9f69aa713170235cd829fdf3bde631a", "block_index": 150, - "block_time": 1727093301 + "block_time": 1727094862 } ], "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": 155, - "destination": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389:1", + "destination": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940:1", "msg_index": 1, "quantity": 1500000000, - "source": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561:0", + "source": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea:0", "status": "valid", - "tx_hash": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", + "tx_hash": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", "tx_index": 42, - "block_time": 1727093323, + "block_time": 1727094884, "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": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", + "tx_hash": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", "block_index": 155, - "block_time": 1727093323 + "block_time": 1727094884 } ], "next_cursor": 346, @@ -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": "bcrt1qswegegswg6qyw5u90tafnw398gzn5a0d5re8u4", + "source": "bcrt1qzlgv5ud7ygwd6qudn3fpnh7a97lhyu2yp4uggk", "status": "valid", - "tx_hash": "d460a52fd5533e197907b84dcdc8e7fc885c9e17ede386f2ecc15af162d7113c", + "tx_hash": "43093d52e847e4f5f87c441d762c47e61b2b30dd12418bb88f8a1ec5686fb269", "tx_index": 9, - "block_time": 1727093158, + "block_time": 1727094721, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "d460a52fd5533e197907b84dcdc8e7fc885c9e17ede386f2ecc15af162d7113c", + "tx_hash": "43093d52e847e4f5f87c441d762c47e61b2b30dd12418bb88f8a1ec5686fb269", "block_index": 121, - "block_time": 1727093158 + "block_time": 1727094721 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 193, - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", - "block_time": 1727093475, - "previous_block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_time": 1727095038, + "previous_block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", "difficulty": 545259519, - "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", - "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", - "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", + "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", + "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", + "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", - "block_time": 1727093471, - "previous_block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", + "block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", + "block_time": 1727095033, + "previous_block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", "difficulty": 545259519, - "ledger_hash": "5852d56e0a2f012d49e15dcc8092fe5178fb1531a1bd326ac19c2c67e8785953", - "txlist_hash": "5ab6ca165b4d31dbfd0a32b8b80ae8a80544c9d0730426eaf3b993011a35fad0", - "messages_hash": "675b22fd17052c818d934beb63c5cc6f13b9f41f8cb99f671b6a6eba0d108804", + "ledger_hash": "f4b76f07514166cfabd35b7a2da674150970518d1c613f55e96eddbd99affaf0", + "txlist_hash": "d6781ffd27f34f36d002569e3fb9f70d46aec42a19059e55ac6a3e950c33e0c9", + "messages_hash": "82aa539e8b22a466290d78e0276fa997beab8c70a841cd1f1c5941772500745c", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", - "block_time": 1727093467, - "previous_block_hash": "1e78891fe58a2e15a13d98d52c73741c700e2b3b647c004bbd6c3630de502d3e", + "block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", + "block_time": 1727095029, + "previous_block_hash": "15b333419e3b9742692eeb0e5dcbbc123b0bc51e93ef5afa59e3467566caf68d", "difficulty": 545259519, - "ledger_hash": "6920554b19671fb917b2fa8b7aac09e3b0b9253020884226bf6847f50ea23f85", - "txlist_hash": "c9b0e524fbb98e4c38df0713f6f6665eef5e98cc10dfd1f3065c8418509bc7d4", - "messages_hash": "da9623970c1cfb9ca73b6cfdfa30c4deaaabcf060938e09240e4430281109399", + "ledger_hash": "1806c223db9e0630602852badf94b7487b3c6315bce8f305c31354cd74e960ed", + "txlist_hash": "1a83d74b83b692b715dea5270ac39c6824aa58e9f5a474f018f9daaff4fd3211", + "messages_hash": "07f3dd746c35a1a10b151ff73117c7aa3a1530bd686c33e2753e4211f8b434a8", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "1e78891fe58a2e15a13d98d52c73741c700e2b3b647c004bbd6c3630de502d3e", - "block_time": 1727093462, - "previous_block_hash": "08f347c0a8ec608432ef24c00b1b75e5bab12e9a9bff9232e1cfd94c5bd702fb", + "block_hash": "15b333419e3b9742692eeb0e5dcbbc123b0bc51e93ef5afa59e3467566caf68d", + "block_time": 1727095025, + "previous_block_hash": "131c3eb09ef4a1fb5a9b6b20241ec06f87662e2b8ef1a964e039a96020523d95", "difficulty": 545259519, - "ledger_hash": "2b276e6aec9a88c841ed7c1f6840420fcbfc1a4517346a6175c5e67dfee23821", - "txlist_hash": "0987e29ee5cac999f35d207c44ab61f37af864a55ad58164c9795d93afbf6737", - "messages_hash": "5e068890d3800e7de8433544a4ddf7d068e4b7448fd372ae8ee4c5b4d1d0248f", + "ledger_hash": "7fae07ae63846d69d3335162f6207534a432c0cccf4a99433d8e6a76522affb7", + "txlist_hash": "3be2ee8d28f225529efdf0dc294e36cbd4fbe28b12585d248f6bc7aeb50ca123", + "messages_hash": "548e424c951f748549371636b9496042d366811563c345d7e46e804ec5d24ecf", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "08f347c0a8ec608432ef24c00b1b75e5bab12e9a9bff9232e1cfd94c5bd702fb", - "block_time": 1727093458, - "previous_block_hash": "09999219b91d9f0a2141c7ccbf97cb0bb3518f3b2116061e96668f7d305e7b40", + "block_hash": "131c3eb09ef4a1fb5a9b6b20241ec06f87662e2b8ef1a964e039a96020523d95", + "block_time": 1727095020, + "previous_block_hash": "0e7d90a67c58b55067a8a1fedf031c4d5fe6e616c5739c5832c179189357078a", "difficulty": 545259519, - "ledger_hash": "913fe15c076fcc652b8fc75af7e2246ef769b71e988d6f6440f7484b1a235a0f", - "txlist_hash": "3c0222d5e6f24b1d03ab8469eae9afbf46d70b60d96784d2487414361d94e470", - "messages_hash": "a51af0063d7694114190c734fca50c0bc8405727866e72d762f235b141176142", + "ledger_hash": "18965373ea5ad513653401944234b465dcbf5681e0e083b48847e8a9db288909", + "txlist_hash": "5213ad907f4dae2e1e4de6f216c9bdeb0ea1895c63b69ac233b71b47a4027475", + "messages_hash": "482e0ad064e0485873002d4a555c8e59c1abcbdf6f8dff3a329d8762d9e8ec20", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 193, - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", - "block_time": 1727093475, - "previous_block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_time": 1727095038, + "previous_block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", "difficulty": 545259519, - "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", - "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", - "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", + "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", + "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", + "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9` (str, required) - The index of the block to return + + block_hash: `348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52` (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": 193, - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", - "block_time": 1727093475, - "previous_block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_time": 1727095038, + "previous_block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", "difficulty": 545259519, - "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", - "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", - "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", + "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", + "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", + "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 59, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", - "block_time": 1727093475, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_time": 1727095038, + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", + "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1706,11 +1706,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "5852d56e0a2f012d49e15dcc8092fe5178fb1531a1bd326ac19c2c67e8785953", - "messages_hash": "675b22fd17052c818d934beb63c5cc6f13b9f41f8cb99f671b6a6eba0d108804", + "ledger_hash": "f4b76f07514166cfabd35b7a2da674150970518d1c613f55e96eddbd99affaf0", + "messages_hash": "82aa539e8b22a466290d78e0276fa997beab8c70a841cd1f1c5941772500745c", "transaction_count": 1, - "txlist_hash": "5ab6ca165b4d31dbfd0a32b8b80ae8a80544c9d0730426eaf3b993011a35fad0", - "block_time": 1727093471 + "txlist_hash": "d6781ffd27f34f36d002569e3fb9f70d46aec42a19059e55ac6a3e950c33e0c9", + "block_time": 1727095033 }, "tx_hash": null }, @@ -1719,43 +1719,43 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58 }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "status": "valid", - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, - "block_time": 1727093471, + "block_time": 1727095033, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -1765,22 +1765,22 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "XCP", "block_index": 192, - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -1790,7 +1790,7 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" } ], "next_cursor": 524, @@ -1873,16 +1873,16 @@ Returns the events of a block filtered by event "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -1892,57 +1892,57 @@ Returns the events of a block filtered by event }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" } ], "next_cursor": null, @@ -2005,16 +2005,16 @@ Returns the credits of a block "result": [ { "block_index": 192, - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,20 +2026,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2047,20 +2047,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2116,16 +2116,16 @@ Returns the debits of a block "result": [ { "block_index": 193, - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "event": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -2165,24 +2165,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "object_id": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", "block_index": 182, "confirmed": true, - "block_time": 1727093354 + "block_time": 1727094927 }, { "type": "order", - "object_id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "object_id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", "block_index": 182, "confirmed": true, - "block_time": 1727093354 + "block_time": 1727094927 }, { "type": "order_match", - "object_id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "object_id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", "block_index": 182, "confirmed": true, - "block_time": 1727093354 + "block_time": 1727094927 } ], "next_cursor": null, @@ -2214,13 +2214,13 @@ Returns the cancels of a block "result": [ { "tx_index": 56, - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "block_index": 190, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "status": "valid", "confirmed": true, - "block_time": 1727093462 + "block_time": 1727095025 } ], "next_cursor": null, @@ -2252,15 +2252,15 @@ Returns the destructions of a block "result": [ { "tx_index": 59, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -2300,14 +2300,14 @@ Returns the issuances of a block "result": [ { "tx_index": 46, - "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", + "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -2322,7 +2322,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093340, + "block_time": 1727094911, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2356,10 +2356,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2367,7 +2367,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "divisible": true, "asset_longname": null, @@ -2380,10 +2380,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2391,11 +2391,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2404,10 +2404,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2415,11 +2415,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2457,27 +2457,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", - "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "last_status_tx_hash": null, - "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2492,7 +2492,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727093274, + "block_time": 1727094846, "asset_info": { "divisible": true, "asset_longname": null, @@ -2533,16 +2533,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 58, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "fee_paid_normalized": "0.00600000" } ], @@ -2576,17 +2576,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572", + "tx_hash": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a", "block_index": 138, - "block_hash": "71c121020e5fdfcb2db1fb3adf587388e24b39021132df957d38bb80ffd90794", - "block_time": 1727093231, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "block_hash": "715c39366978061f27066029ccbcfc33dd26d440388e9696977ea887b0335190", + "block_time": 1727094803, + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572:1", + "utxos_info": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2611,25 +2611,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 51, - "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", + "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", "block_index": 185, - "block_hash": "3379d8745eedf0e59561b011b4fa1b60839abae63aa5e6fe901c8fd353255b44", - "block_time": 1727093431, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "4a9667cee3f15e9c8483631f9b833f99a1c792e7a9edb176af5ef5397aaff5a6", + "block_time": 1727095004, + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "btc_amount": 2000, "fee": 10000, - "data": "0bc5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c11d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "data": "0b0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "supported": true, - "utxos_info": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b:0", + "utxos_info": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", - "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", - "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "status": "valid" } }, @@ -2644,23 +2644,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "block_index": 190, - "block_hash": "1e78891fe58a2e15a13d98d52c73741c700e2b3b647c004bbd6c3630de502d3e", - "block_time": 1727093462, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "15b333419e3b9742692eeb0e5dcbbc123b0bc51e93ef5afa59e3467566caf68d", + "block_time": 1727095025, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "data": "465cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "supported": true, - "utxos_info": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf:1", + "utxos_info": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "status": "valid" } }, @@ -2675,17 +2675,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", - "block_time": 1727093475, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_time": 1727095038, + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", + "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2715,17 +2715,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 32, - "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", "block_index": 145, - "block_hash": "360186cb45d039b43833b9badc025ae1570b25ddda440dc594daf11dd8cb1b97", - "block_time": 1727093270, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "block_hash": "204201de2525d52f3b6bb40197a9bfeef65554dfeeb7705ffdc2ed23194386e2", + "block_time": 1727094842, + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c000000000000000100000000000000010000000000002710000000000000000100800dfb8c2149f5da6b8e44bec35ce635b285b4e904", + "data": "0c000000000000000100000000000000010000000000002710000000000000000100805f3661ede0bb8faf3dacaca835a6cac6e8c9c0f1", "supported": true, - "utxos_info": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898:1", + "utxos_info": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2737,7 +2737,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "status": "valid", "asset_info": { "divisible": true, @@ -2761,17 +2761,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", "block_index": 146, - "block_hash": "3c950b70b188f93aecc6aea2d22fb4be00f926508f97e39a8284fed3d09c77fb", - "block_time": 1727093274, - "source": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", - "destination": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "block_hash": "6b8becbdf9342a2a85170e63ff82820e772f5a0777a1f2b2b70d8a5468aa9a7c", + "block_time": 1727094846, + "source": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", + "destination": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "btc_amount": 10000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480:0", + "utxos_info": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 40, - "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", + "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", "block_index": 153, - "block_hash": "7375785dd499954b2dc23b93c783bd57d53de2e740cfb38b03d45f53c28be282", - "block_time": 1727093314, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "14f622ac71894170ac2f4827468e63aeeda4db73b0ee356968aa8006ea7dfb6d", + "block_time": 1727094875, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e:1", + "utxos_info": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2814,7 +2814,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2839,17 +2839,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 46, - "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", + "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", "block_index": 159, - "block_hash": "793e729f56618f1b74e9186976c569e0cb191fb84ef61903567ae70720854a80", - "block_time": 1727093340, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "11b02f8a8158ebe302bbb5ba0625dc6cf7dab81cbef9b8465d8390ed513510e8", + "block_time": 1727094911, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745:1", + "utxos_info": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2881,17 +2881,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "block_index": 191, - "block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", - "block_time": 1727093467, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", + "block_time": 1727095029, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043:1", + "utxos_info": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2934,17 +2934,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0", + "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039", "block_index": 187, - "block_hash": "49a4d95750b6f7aab76e58edd8463613b313336afccd5cc93e2682606ba097ea", - "block_time": 1727093439, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "block_hash": "47e79d3137e4c7fe6d7de5cf5185eb40bea9c8842fac6dc9b2f0bb29b4a3504e", + "block_time": 1727095012, + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000000000000100000000000027108048679a4ad46ccfb39129094fc4ea5ad1385a05f5", + "data": "020000000000000001000000000000271080b16240e182fcfb3d1437b108a600036c78a7f8a2", "supported": true, - "utxos_info": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0:1", + "utxos_info": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2952,7 +2952,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "memo": null, "asset_info": { "divisible": true, @@ -2975,17 +2975,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "block_hash": "09999219b91d9f0a2141c7ccbf97cb0bb3518f3b2116061e96668f7d305e7b40", - "block_time": 1727093444, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "0e7d90a67c58b55067a8a1fedf031c4d5fe6e616c5739c5832c179189357078a", + "block_time": 1727095016, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802ae0ca086d281f046afa5927e69de29e640e6a6280c9435a1d17b078c22ab3b67935f7fbaa28e99e2f8048679a4ad46ccfb39129094fc4ea5ad1385a05f5400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380cd4cce463e7e46e89ecf1c25aa143c8a724f591a804efd3277d785851bf1bfb18ef3ebd9ea8732f76580b16240e182fcfb3d1437b108a600036c78a7f8a2400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4:0", + "utxos_info": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2993,14 +2993,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -3008,7 +3008,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3034,23 +3034,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", - "block_time": 1727093471, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", + "block_time": 1727095033, + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "048048679a4ad46ccfb39129094fc4ea5ad1385a05f5017377656570206d7920617373657473", + "data": "0480b16240e182fcfb3d1437b108a600036c78a7f8a2017377656570206d7920617373657473", "supported": true, - "utxos_info": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3:1", + "utxos_info": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "flags": 1, "memo": "sweep my assets" } @@ -3083,17 +3083,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 59, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", - "block_time": 1727093475, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_time": 1727095038, + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", + "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3116,23 +3116,23 @@ Returns the list of the last ten transactions }, { "tx_index": 58, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", - "block_time": 1727093471, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", + "block_time": 1727095033, + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "048048679a4ad46ccfb39129094fc4ea5ad1385a05f5017377656570206d7920617373657473", + "data": "0480b16240e182fcfb3d1437b108a600036c78a7f8a2017377656570206d7920617373657473", "supported": true, - "utxos_info": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3:1", + "utxos_info": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "flags": 1, "memo": "sweep my assets" } @@ -3150,7 +3150,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001069b45e6b5a1c4c809c36d2765debd08b36930e60be858e9f6372a8080e0724c450000000000ffffffffbf4d0c584aeecf193a5b9ba2aed7d76c9139f4816d3f605a0471dcbf5af932f90000000000ffffffffcbcd6b10cefe05ebe1c397fdd16d384eb348204a8b330adb0194a79b6233293b0000000000ffffffff3251ba633fdcfd3f7b2e78ba1975ee862855f6b7609928d0cddb78dbfcf1cb5c0000000000ffffffffed8aa0948f7b1c3bfbf4bb63b59660435dd68655149f32ddb0387dbc360f27850000000000ffffffffc0f68c660bfe27938ca58d8e8a9f7c0b35207049406140faa8c6148217e0679a0000000000ffffffff04e80300000000000069512102aa559bfd9be7b031c2f631c1657ce98314d1787a2f460159ae0e5307a6f8c4822102cb741c6504e51506bd91dac0618348856305296558a2fcee8db544bedf3c0e972102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee80300000000000069512103aa559bfd9be7b031c246a0ebec19cda3466d683f2ed9bb0089eec428fd475e7c2102a1169cac47bf08380de918ead23531b5b4fe834db13cd36ee5d2def40b50c10f2102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee803000000000000695121029c559bfd9be7b031c2f525c2e55609491cbc50652b2cfb0089e8cee5389cca672102a1169cac47bf08110de918ead23531b094fe834db13cd36ec5d2def40b50c1582102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53ae387923fc06000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02473044022028371896db515c37441fbb575a0a15e0fcd0ffecb926a62fa5df412a28996b05022061816598d6c0274acfec2e328537ddda3bfd780089e958b2fe14727628a8664c012102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f02463043021f4196bfc187a01dd17c59cd4d5c394d58814276e9bf02999abbc2d68921deea0220788b51ed37ea5813ae43ec23680d6194a65c2f54173f2713bd37248581bafdef012102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f02473044022069aa3b9d7a5b1fe5a742892d00f858ed621e5deb9afe8e2a6f2587b2966b2c50022003139f22e955b397de240176a2a4b9ffb82ab34924d1a5da67ed4ec8949cbea7012102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f0247304402205c19d27abd5de29b4c40ff39ab29996219b4243930136f9d9093067e9afd600c022044999ed8319ea9dbffdf7caffb934705e9b0ffbd48545f2dd5e8015cc5be9b77012102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f0247304402201a16d16c85613f55999ca43495007ac797d6f4674c41e038984e0dd5b73df505022006aa7c119339424385c394f3001e643089611963d6b99ef501b5ad8897d4494f012102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f0247304402204b35f2e089cb94fdaedff7efc9433fa1961ed0ee8b817cfa21027d1ad7be5a2102201533b20b40e453cbcb93ec79262f8d81d8af12a8e85fc1477a4dfb63e213bb1c012102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f00000000` (str, required) - Raw transaction in hex format + + rawtransaction: `0200000000010661b89d289ff7cbdd8b237e577bab96e2520a059f2770a216d078c1268219b1480000000000ffffffff4bcc88c6869c2c03133df22767e60404baeee3f5138edeebb29dabd3a798fdce0000000000ffffffff2782f40f10afefdc143f14d357cfe34f944494aa373833b9832289ba2143f8f80000000000ffffffff5aa5f588de814d302d41d9f100b7b3a542e1ec2050ecb18b2fc60ed9374dd7e20000000000ffffffffa2e429abf0729e4b98b996a0f43844e6b542e00084adc2ecb36dfe6e9340793b0000000000ffffffff75086d0ba9bc241f39567d71adaed566064def254fc38b7a103fdb3bdd3949470000000000ffffffff04e8030000000000006951210394992133fa4f244f3fa68c4e576be848acfb88d51ff9533c00b4f5359bba4e5e2102d1259a6447c1b3481545c888843b4977bf8551a62b304b47bb60f551654996ab2102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee8030000000000006951210294992133fa4f244f3f98987a66ae0286e9a98e340fc5dc202518ebc4d413953d2103883f1a2abaf3c4b690c0d3793b8ac781745cbb2119c72ec72a02b5b0e7b56d6a2102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee80300000000000069512103a2992133fa4f244f3fa5984dd7a6a486eac5f693f7679c20251ee10911c801c22103883f1a2abaf3c49f90c0d3793b8ac784545cbb2119c72ec70a02b5b0e7b56db82102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853ae387923fc06000000160014e829a0216c4a51744db91c43f5bb56f5f150753c024730440220123c8737294552558203cac285693f15a108d3966e66c75a6617d1f2d56c476402204150203a1a74e8ec140894ef2572bebeee6aa8bbdb14f21a58a69ad077b1ea45012102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0802473044022062494e5172ff51aed3620115b80977d636ceda870a1b9a8025dfa760f411d3b102201d180e5181694e7ab7b23cdcad25e4948327307445562a4bf825aaebd5f6393f012102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b080247304402203db0029f1092b6d9d5a0fd36008b58a3043ba4c3443e4bf3bb766bbfa402aec902201763bdc7755cebedcdd4a88735d86b57aa7679fa52b527d7d4d231f6c24e52d2012102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0802473044022033a7f73562ffc5320e3efc0e2f5dc31764ff8fb17bfbb1c71b05ca474d552554022037f9509621d4371aad20f09681dbac89f7066806b53f778fe07f9a9dd80aca9b012102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b080247304402207a6523b190d5b118122e7aedbe74c681320dc810b2bb09bf53f7343690e813be02201af2265792a6ac960e9a644f75fee65a2126bc6732168759f1cc50201e04dc3f012102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0802473044022074bd570d18e84ca337e54a3322b7b804f038a0f70704e794962ee9a23779787502205ca00f90f23fc252c9efdbd6915fbfaf478618f697e1420162f9acc4d5ee244b012102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0800000000` (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. @@ -3163,53 +3163,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802ae0ca086d281f046afa5927e69de29e640e6a6280c9435a1d17b078c22ab3b67935f7fbaa28e99e2f8048679a4ad46ccfb39129094fc4ea5ad1385a05f5400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380cd4cce463e7e46e89ecf1c25aa143c8a724f591a804efd3277d785851bf1bfb18ef3ebd9ea8732f76580b16240e182fcfb3d1437b108a600036c78a7f8a2400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "9b45e6b5a1c4c809c36d2765debd08b36930e60be858e9f6372a8080e0724c45", + "hash": "61b89d289ff7cbdd8b237e577bab96e2520a059f2770a216d078c1268219b148", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "bf4d0c584aeecf193a5b9ba2aed7d76c9139f4816d3f605a0471dcbf5af932f9", + "hash": "4bcc88c6869c2c03133df22767e60404baeee3f5138edeebb29dabd3a798fdce", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "cbcd6b10cefe05ebe1c397fdd16d384eb348204a8b330adb0194a79b6233293b", + "hash": "2782f40f10afefdc143f14d357cfe34f944494aa373833b9832289ba2143f8f8", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "3251ba633fdcfd3f7b2e78ba1975ee862855f6b7609928d0cddb78dbfcf1cb5c", + "hash": "5aa5f588de814d302d41d9f100b7b3a542e1ec2050ecb18b2fc60ed9374dd7e2", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "ed8aa0948f7b1c3bfbf4bb63b59660435dd68655149f32ddb0387dbc360f2785", + "hash": "a2e429abf0729e4b98b996a0f43844e6b542e00084adc2ecb36dfe6e9340793b", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "c0f68c660bfe27938ca58d8e8a9f7c0b35207049406140faa8c6148217e0679a", + "hash": "75086d0ba9bc241f39567d71adaed566064def254fc38b7a103fdb3bdd394947", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3219,38 +3219,38 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 1000, - "script_pub_key": "512102aa559bfd9be7b031c2f631c1657ce98314d1787a2f460159ae0e5307a6f8c4822102cb741c6504e51506bd91dac0618348856305296558a2fcee8db544bedf3c0e972102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53ae" + "script_pub_key": "51210394992133fa4f244f3fa68c4e576be848acfb88d51ff9533c00b4f5359bba4e5e2102d1259a6447c1b3481545c888843b4977bf8551a62b304b47bb60f551654996ab2102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853ae" }, { "value": 1000, - "script_pub_key": "512103aa559bfd9be7b031c246a0ebec19cda3466d683f2ed9bb0089eec428fd475e7c2102a1169cac47bf08380de918ead23531b5b4fe834db13cd36ee5d2def40b50c10f2102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53ae" + "script_pub_key": "51210294992133fa4f244f3f98987a66ae0286e9a98e340fc5dc202518ebc4d413953d2103883f1a2abaf3c4b690c0d3793b8ac781745cbb2119c72ec72a02b5b0e7b56d6a2102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853ae" }, { "value": 1000, - "script_pub_key": "5121029c559bfd9be7b031c2f525c2e55609491cbc50652b2cfb0089e8cee5389cca672102a1169cac47bf08110de918ead23531b094fe834db13cd36ec5d2def40b50c1582102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53ae" + "script_pub_key": "512103a2992133fa4f244f3fa5984dd7a6a486eac5f693f7679c20251ee10911c801c22103883f1a2abaf3c49f90c0d3793b8ac784545cbb2119c72ec70a02b5b0e7b56db82102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853ae" }, { "value": 29999987000, - "script_pub_key": "0014a1d4c53a2839a34cbf7e8ecd9810a21633992fda" + "script_pub_key": "0014e829a0216c4a51744db91c43f5bb56f5f150753c" } ], "vtxinwit": [ - "3044022028371896db515c37441fbb575a0a15e0fcd0ffecb926a62fa5df412a28996b05022061816598d6c0274acfec2e328537ddda3bfd780089e958b2fe14727628a8664c01", - "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", - "3043021f4196bfc187a01dd17c59cd4d5c394d58814276e9bf02999abbc2d68921deea0220788b51ed37ea5813ae43ec23680d6194a65c2f54173f2713bd37248581bafdef01", - "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", - "3044022069aa3b9d7a5b1fe5a742892d00f858ed621e5deb9afe8e2a6f2587b2966b2c50022003139f22e955b397de240176a2a4b9ffb82ab34924d1a5da67ed4ec8949cbea701", - "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", - "304402205c19d27abd5de29b4c40ff39ab29996219b4243930136f9d9093067e9afd600c022044999ed8319ea9dbffdf7caffb934705e9b0ffbd48545f2dd5e8015cc5be9b7701", - "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", - "304402201a16d16c85613f55999ca43495007ac797d6f4674c41e038984e0dd5b73df505022006aa7c119339424385c394f3001e643089611963d6b99ef501b5ad8897d4494f01", - "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", - "304402204b35f2e089cb94fdaedff7efc9433fa1961ed0ee8b817cfa21027d1ad7be5a2102201533b20b40e453cbcb93ec79262f8d81d8af12a8e85fc1477a4dfb63e213bb1c01", - "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f" + "30440220123c8737294552558203cac285693f15a108d3966e66c75a6617d1f2d56c476402204150203a1a74e8ec140894ef2572bebeee6aa8bbdb14f21a58a69ad077b1ea4501", + "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", + "3044022062494e5172ff51aed3620115b80977d636ceda870a1b9a8025dfa760f411d3b102201d180e5181694e7ab7b23cdcad25e4948327307445562a4bf825aaebd5f6393f01", + "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", + "304402203db0029f1092b6d9d5a0fd36008b58a3043ba4c3443e4bf3bb766bbfa402aec902201763bdc7755cebedcdd4a88735d86b57aa7679fa52b527d7d4d231f6c24e52d201", + "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", + "3044022033a7f73562ffc5320e3efc0e2f5dc31764ff8fb17bfbb1c71b05ca474d552554022037f9509621d4371aad20f09681dbac89f7066806b53f778fe07f9a9dd80aca9b01", + "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", + "304402207a6523b190d5b118122e7aedbe74c681320dc810b2bb09bf53f7343690e813be02201af2265792a6ac960e9a644f75fee65a2126bc6732168759f1cc50201e04dc3f01", + "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", + "3044022074bd570d18e84ca337e54a3322b7b804f038a0f70704e794962ee9a23779787502205ca00f90f23fc252c9efdbd6915fbfaf478618f697e1420162f9acc4d5ee244b01", + "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08" ], "lock_time": 0, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", - "tx_id": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4" + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_id": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d" }, "unpacked_data": { "message_type": "mpma_send", @@ -3258,14 +3258,14 @@ Returns Counterparty information from a raw transaction in hex format. "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -3273,7 +3273,7 @@ Returns Counterparty information from a raw transaction in hex format. }, { "asset": "XCP", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3298,7 +3298,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e` (str, required) - Transaction hash + + tx_hash: `fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f` (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. @@ -3309,18 +3309,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080c9435a1d17b078c22ab3b67935f7fbaa28e99e2f", + "data": "0200000000000000010000000000002710804efd3277d785851bf1bfb18ef3ebd9ea8732f765", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "a1cd07ab813f3082c3e6d4ed351940efb05c24840e52be969992d7213fe3df61", + "hash": "b6d40817627c585579c9c43ddb072e77f99d3626deca5b52451fd86ab5938203", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3330,20 +3330,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e6acf57add293d4881371f3c9430472f06964ebac1ab59d31e0a6dbba917ab2a118c0dc3baadbff5b3b888eaa408f" + "script_pub_key": "6a2ed944a4bcea26c59d5b101769dda1f522bf6af06606e2baf7ba99e033685f103913435e82889644e3602d799e48ad" }, { "value": 4999955000, - "script_pub_key": "001448679a4ad46ccfb39129094fc4ea5ad1385a05f5" + "script_pub_key": "0014b16240e182fcfb3d1437b108a600036c78a7f8a2" } ], "vtxinwit": [ - "304402205bce2a20a4f2b0f355d5c1ada689ee23bcedb6f3ef90b2fa53e565b04ced786b022043b0469b6d80599a37f8c77dd8ceadda1a1e103cc8ecc50d94a32d18ac089f3101", - "0232a55257b495344474136eebb3408ad9dcb9e275fbbc0f81f8b2f67c031d0490" + "30440220500964d371a2df466c8cb65ee0a04c9016aec3791c5fcb51b4b692e3e39ff7c50220202faa7a62a2d622bfba780b2f6be3f0a225d13e26ce4f8da5b3cecc617c5cd201", + "0268539bd755f8fa4f5aa15f95da1dcbbbd86d28c794673d670f60fb3e1040bbd1" ], "lock_time": 0, - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", - "tx_id": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e" + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_id": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3351,7 +3351,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "memo": null, "asset_info": { "divisible": true, @@ -3412,17 +3412,17 @@ Returns a transaction by its index. { "result": { "tx_index": 59, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", - "block_time": 1727093475, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_time": 1727095038, + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", + "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3451,7 +3451,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f` (str, required) - The hash of the transaction + + tx_hash: `baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d` (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. @@ -3463,17 +3463,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 59, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", - "block_time": 1727093475, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_time": 1727095038, + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", + "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3526,47 +3526,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58 }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "status": "valid", - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, - "block_time": 1727093471, + "block_time": 1727095033, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -3576,24 +3576,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "XCP", "block_index": 192, - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -3603,36 +3603,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 } ], "next_cursor": 523, @@ -3645,7 +3645,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3` (str, required) - The hash of the transaction to return + + tx_hash: `b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -3669,47 +3669,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58 }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "status": "valid", - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, - "block_time": 1727093471, + "block_time": 1727095033, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -3719,24 +3719,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "XCP", "block_index": 192, - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -3746,36 +3746,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 } ], "next_cursor": 523, @@ -3788,7 +3788,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4` (str, required) - The hash of the transaction to return + + tx_hash: `561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d` (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 @@ -3807,10 +3807,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -3818,7 +3818,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "divisible": true, "asset_longname": null, @@ -3831,10 +3831,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3842,11 +3842,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -3855,10 +3855,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3866,11 +3866,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -3888,7 +3888,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480` (str, required) - The hash of the transaction to return + + tx_hash: `8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9` (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,27 +3908,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", - "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "last_status_tx_hash": null, - "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3943,7 +3943,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727093274, + "block_time": 1727094846, "asset_info": { "divisible": true, "asset_longname": null, @@ -3987,16 +3987,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -4006,63 +4006,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 } ], "next_cursor": null, @@ -4075,7 +4075,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3` (str, required) - The hash of the transaction to return + + tx_hash: `b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `535` (str, optional) - The last event index to return + Default: `None` @@ -4097,16 +4097,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -4116,63 +4116,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 } ], "next_cursor": null, @@ -4187,7 +4187,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y,bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (str, required) - Comma separated list of addresses + + addresses: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku,bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (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 @@ -4211,7 +4211,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4221,7 +4221,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -4232,7 +4232,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4242,7 +4242,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -4253,7 +4253,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4263,7 +4263,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -4274,7 +4274,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4284,7 +4284,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -4295,7 +4295,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4305,7 +4305,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -4322,7 +4322,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y,bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku,bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (str, required) - Comma separated list of addresses to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4341,17 +4341,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 57, - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "block_index": 191, - "block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", - "block_time": 1727093467, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", + "block_time": 1727095029, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043:1", + "utxos_info": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4387,23 +4387,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "block_index": 190, - "block_hash": "1e78891fe58a2e15a13d98d52c73741c700e2b3b647c004bbd6c3630de502d3e", - "block_time": 1727093462, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "15b333419e3b9742692eeb0e5dcbbc123b0bc51e93ef5afa59e3467566caf68d", + "block_time": 1727095025, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "data": "465cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "supported": true, - "utxos_info": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf:1", + "utxos_info": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "status": "valid" } }, @@ -4411,17 +4411,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 55, - "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "block_index": 189, - "block_hash": "08f347c0a8ec608432ef24c00b1b75e5bab12e9a9bff9232e1cfd94c5bd702fb", - "block_time": 1727093458, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "131c3eb09ef4a1fb5a9b6b20241ec06f87662e2b8ef1a964e039a96020523d95", + "block_time": 1727095020, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82:1", + "utxos_info": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4457,17 +4457,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "block_hash": "09999219b91d9f0a2141c7ccbf97cb0bb3518f3b2116061e96668f7d305e7b40", - "block_time": 1727093444, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "0e7d90a67c58b55067a8a1fedf031c4d5fe6e616c5739c5832c179189357078a", + "block_time": 1727095016, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802ae0ca086d281f046afa5927e69de29e640e6a6280c9435a1d17b078c22ab3b67935f7fbaa28e99e2f8048679a4ad46ccfb39129094fc4ea5ad1385a05f5400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380cd4cce463e7e46e89ecf1c25aa143c8a724f591a804efd3277d785851bf1bfb18ef3ebd9ea8732f76580b16240e182fcfb3d1437b108a600036c78a7f8a2400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4:0", + "utxos_info": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4475,14 +4475,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -4490,7 +4490,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4509,25 +4509,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 51, - "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", + "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", "block_index": 185, - "block_hash": "3379d8745eedf0e59561b011b4fa1b60839abae63aa5e6fe901c8fd353255b44", - "block_time": 1727093431, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "4a9667cee3f15e9c8483631f9b833f99a1c792e7a9edb176af5ef5397aaff5a6", + "block_time": 1727095004, + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "btc_amount": 2000, "fee": 10000, - "data": "0bc5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c11d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "data": "0b0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "supported": true, - "utxos_info": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b:0", + "utxos_info": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", - "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", - "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "status": "valid" } }, @@ -4544,7 +4544,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y,bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku,bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -4580,11 +4580,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "status": "open", - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "tx_index": 57, - "block_time": 1727093467, + "block_time": 1727095029, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4608,24 +4608,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "block_index": 191, - "block_time": 1727093467 + "block_time": 1727095029 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "block_index": 191, - "event": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "event": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727093467, + "block_time": 1727095029, "asset_info": { "divisible": true, "asset_longname": null, @@ -4635,25 +4635,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "block_index": 191, - "block_time": 1727093467 + "block_time": 1727095029 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", + "block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", "block_index": 191, - "block_time": 1727093467, + "block_time": 1727095029, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "tx_index": 57, - "utxos_info": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043:1", + "utxos_info": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4685,40 +4685,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "block_index": 191, - "block_time": 1727093467 + "block_time": 1727095029 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "status": "valid", - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "tx_index": 56, - "block_time": 1727093462 + "block_time": 1727095025 }, - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "block_index": 190, - "block_time": 1727093462 + "block_time": 1727095025 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727093462, + "block_time": 1727095025, "asset_info": { "divisible": true, "asset_longname": null, @@ -4728,9 +4728,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "block_index": 190, - "block_time": 1727093462 + "block_time": 1727095025 } ], "next_cursor": 506, @@ -4743,7 +4743,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd,bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7,bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu` (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 @@ -4759,17 +4759,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "memo": null, "quantity": 10000, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "status": "valid", - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "tx_index": 60, "asset_info": { "divisible": true, @@ -4782,19 +4782,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "CREDIT", "params": { - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -4806,19 +4806,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 193, - "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -4830,27 +4830,27 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727093479.718657, + "block_time": 1727095042.4665813, "btc_amount": 0, - "data": "020000000000000001000000000000271080c9435a1d17b078c22ab3b67935f7fbaa28e99e2f", + "data": "0200000000000000010000000000002710804efd3277d785851bf1bfb18ef3ebd9ea8732f765", "destination": "", "fee": 10000, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "tx_index": 60, - "utxos_info": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e:1", + "utxos_info": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "memo": null, "asset_info": { "divisible": true, @@ -4876,7 +4876,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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 @@ -4896,7 +4896,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4904,14 +4904,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4919,14 +4919,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4941,7 +4941,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4949,7 +4949,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -4966,7 +4966,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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` @@ -4978,7 +4978,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -5000,7 +5000,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5050,16 +5050,16 @@ Returns the credits of an address "result": [ { "block_index": 190, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093462, + "block_time": 1727095025, "asset_info": { "divisible": true, "asset_longname": null, @@ -5071,16 +5071,16 @@ Returns the credits of an address }, { "block_index": 182, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "event": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093354, + "block_time": 1727094927, "asset_info": { "divisible": true, "asset_longname": null, @@ -5092,20 +5092,20 @@ Returns the credits of an address }, { "block_index": 159, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", + "event": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093340, + "block_time": 1727094911, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5113,20 +5113,20 @@ Returns the credits of an address }, { "block_index": 156, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "02e0dc7bbbbc4974003b5a437a68b7e2cbfacb3747f4e8d64d60242fa4478372", + "event": "0a6900f413f8095625003b8d59bebdc8af81dc18dbf66310ff9229b879d53d0a", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093327, + "block_time": 1727094888, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5138,16 +5138,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", + "event": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", "tx_index": 38, - "utxo": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a:1", - "utxo_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "utxo": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa:1", + "utxo_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "confirmed": true, - "block_time": 1727093305, + "block_time": 1727094866, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5164,7 +5164,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5203,16 +5203,16 @@ Returns the debits of an address "result": [ { "block_index": 191, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "event": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093467, + "block_time": 1727095029, "asset_info": { "divisible": true, "asset_longname": null, @@ -5224,16 +5224,16 @@ Returns the debits of an address }, { "block_index": 189, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093458, + "block_time": 1727095020, "asset_info": { "divisible": true, "asset_longname": null, @@ -5245,16 +5245,16 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "event": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "divisible": true, "asset_longname": null, @@ -5266,20 +5266,20 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "event": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5287,16 +5287,16 @@ Returns the debits of an address }, { "block_index": 183, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "event": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093423, + "block_time": 1727094996, "asset_info": { "divisible": true, "asset_longname": null, @@ -5317,7 +5317,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address of the feed + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5352,7 +5352,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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 @@ -5371,9 +5371,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "000e98b21330a957d503936a5a5b4a4a45befd508a16c30ed1912d21d0020d6f", + "tx_hash": "30e595f74d9b77faf4d326988b5fa49da4919c874be0dbbaf37a0f5efc4a6769", "block_index": 137, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5381,7 +5381,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727093226, + "block_time": 1727094799, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5395,7 +5395,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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 @@ -5414,14 +5414,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "f67545e10ba5017c416d24a9cf8e3cc34a18035b0d55526a01c26fa48e9d5588", + "tx_hash": "ecafab150e29b2f11e67fa108a503e3a577e8e583993702da34fe10940501e86", "block_index": 112, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1727093122, + "block_time": 1727094685, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5436,7 +5436,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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 @@ -5455,10 +5455,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5466,7 +5466,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "divisible": true, "asset_longname": null, @@ -5479,10 +5479,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5490,11 +5490,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5503,10 +5503,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5514,11 +5514,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5527,10 +5527,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 38, - "tx_hash": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", + "tx_hash": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", "block_index": 151, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a:1", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5538,11 +5538,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093305, + "block_time": 1727094866, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5551,10 +5551,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 35, - "tx_hash": "a5103a244743dcbecce27787d68d30f8c54303e944677e41a7c82e166bf295e1", + "tx_hash": "b7a064b83eeb86730a5ea9846eb110e4603a852e6aed9ff90a9f42243482b416", "block_index": 148, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "1925463e88ee34000a3ea11c42581ce890f717f7eba97775d5f17c143f29364d:1", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "0c869ae1b35c7a20c2384369babb94e31d003833139318542392ce07c372f378:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5562,11 +5562,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093293, + "block_time": 1727094855, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5584,7 +5584,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x` (str, required) - The address to return + + address: `bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu` (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 @@ -5603,10 +5603,10 @@ Returns the receives of an address "result": [ { "tx_index": 37, - "tx_hash": "c3e06075fdd1fb6f1f7cc6564239be9ec52c5dc566d6dd823aa0af0d61f900dd", + "tx_hash": "2ab44625e41aa03c78b532beacdd49dde9f69aa713170235cd829fdf3bde631a", "block_index": 150, - "source": "144554b15a22c114b9c5521d0d24a3c04f73a8b41253e822cc95199c1d067299:0", - "destination": "bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x", + "source": "28492d2ebdcfa146b86f026a77270b902bd2a4ee130b1cb59bd4b51a8eabf1d4:0", + "destination": "bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5614,11 +5614,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093301, + "block_time": 1727094862, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5636,7 +5636,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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` @@ -5656,10 +5656,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5667,11 +5667,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5680,10 +5680,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5691,11 +5691,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5704,10 +5704,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 38, - "tx_hash": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", + "tx_hash": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", "block_index": 151, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a:1", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5715,11 +5715,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093305, + "block_time": 1727094866, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5728,10 +5728,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 35, - "tx_hash": "a5103a244743dcbecce27787d68d30f8c54303e944677e41a7c82e166bf295e1", + "tx_hash": "b7a064b83eeb86730a5ea9846eb110e4603a852e6aed9ff90a9f42243482b416", "block_index": 148, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "1925463e88ee34000a3ea11c42581ce890f717f7eba97775d5f17c143f29364d:1", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "0c869ae1b35c7a20c2384369babb94e31d003833139318542392ce07c372f378:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5739,11 +5739,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093293, + "block_time": 1727094855, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5761,7 +5761,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x` (str, required) - The address to return + + address: `bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu` (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` @@ -5781,10 +5781,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 37, - "tx_hash": "c3e06075fdd1fb6f1f7cc6564239be9ec52c5dc566d6dd823aa0af0d61f900dd", + "tx_hash": "2ab44625e41aa03c78b532beacdd49dde9f69aa713170235cd829fdf3bde631a", "block_index": 150, - "source": "144554b15a22c114b9c5521d0d24a3c04f73a8b41253e822cc95199c1d067299:0", - "destination": "bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x", + "source": "28492d2ebdcfa146b86f026a77270b902bd2a4ee130b1cb59bd4b51a8eabf1d4:0", + "destination": "bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5792,11 +5792,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093301, + "block_time": 1727094862, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5814,7 +5814,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5843,9 +5843,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5854,7 +5854,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5864,7 +5864,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -5880,9 +5880,9 @@ Returns the dispensers of an address }, { "tx_index": 30, - "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", + "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", "block_index": 144, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5891,7 +5891,7 @@ Returns the dispensers of an address "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5901,7 +5901,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093265, + "block_time": 1727094839, "asset_info": { "divisible": true, "asset_longname": null, @@ -5926,7 +5926,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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` @@ -5939,9 +5939,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", + "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", "block_index": 144, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5950,7 +5950,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5960,7 +5960,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093265, + "block_time": 1727094839, "asset_info": { "divisible": true, "asset_longname": null, @@ -5982,7 +5982,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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 @@ -6002,19 +6002,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", + "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6022,7 +6022,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6037,7 +6037,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -6051,19 +6051,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", + "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", "block_index": 140, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6071,7 +6071,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6086,7 +6086,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093239, + "block_time": 1727094812, "asset_info": { "divisible": true, "asset_longname": null, @@ -6108,7 +6108,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (str, required) - The address to return + + address: `bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (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 @@ -6128,19 +6128,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", + "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6148,7 +6148,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6163,7 +6163,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -6177,19 +6177,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", + "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", "block_index": 140, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6197,7 +6197,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6212,7 +6212,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093239, + "block_time": 1727094812, "asset_info": { "divisible": true, "asset_longname": null, @@ -6234,7 +6234,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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` @@ -6255,19 +6255,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", + "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6275,7 +6275,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6290,7 +6290,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -6304,19 +6304,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", + "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", "block_index": 140, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6324,7 +6324,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6339,7 +6339,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093239, + "block_time": 1727094812, "asset_info": { "divisible": true, "asset_longname": null, @@ -6361,7 +6361,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (str, required) - The address to return + + address: `bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (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` @@ -6382,19 +6382,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", + "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6402,7 +6402,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6417,7 +6417,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -6431,19 +6431,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", + "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", "block_index": 140, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6451,7 +6451,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6466,7 +6466,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093239, + "block_time": 1727094812, "asset_info": { "divisible": true, "asset_longname": null, @@ -6488,7 +6488,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd` (str, required) - The address to return + + address: `bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7` (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 @@ -6507,16 +6507,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 58, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "fee_paid_normalized": "0.00600000" } ], @@ -6530,7 +6530,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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 @@ -6549,14 +6549,14 @@ Returns the issuances of an address "result": [ { "tx_index": 46, - "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", + "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -6571,20 +6571,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093340, + "block_time": 1727094911, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "87c03f2279383a3df0081f24a9f1fa5c0a0871379ef14a982ab69879184b38f7", + "tx_hash": "766ce7ba7a212e1b43cbe3df259ab0cd0bf5579c5cf1c4c27ceb05911f1f7109", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -6599,20 +6599,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727093335, + "block_time": 1727094897, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "8545fa4b393d2af3b1304014da38dd6988b8ad70e7eb5942312966346dbf5c1c", + "tx_hash": "4c63b42edf0cfbe37a429815c6724cfea57503fe580f8d9022c3a2bc16e8db38", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -6627,20 +6627,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093331, + "block_time": 1727094893, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "02e0dc7bbbbc4974003b5a437a68b7e2cbfacb3747f4e8d64d60242fa4478372", + "tx_hash": "0a6900f413f8095625003b8d59bebdc8af81dc18dbf66310ff9229b879d53d0a", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -6655,20 +6655,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093327, + "block_time": 1727094888, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "a84da37d8e8ad79645d7780708d7b97548eca8abbe86d0adaa93df726eef2c00", + "tx_hash": "81aca02b207fc43014326338aa1faa03766d072cb1f86dc4db356fad27fff5fc", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -6683,7 +6683,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093278, + "block_time": 1727094850, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -6698,7 +6698,7 @@ Returns the issuances of an address Returns the valid assets of an issuer + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The issuer to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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 @@ -6721,8 +6721,8 @@ Returns the valid assets of an issuer "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false, "supply": 10000000000, @@ -6730,16 +6730,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727093327, - "last_issuance_block_time": 1727093335, + "first_issuance_block_time": 1727094888, + "last_issuance_block_time": 1727094897, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false, "supply": 100000000000, @@ -6747,16 +6747,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727093278, - "last_issuance_block_time": 1727093278, + "first_issuance_block_time": 1727094850, + "last_issuance_block_time": 1727094850, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false, "supply": 40, @@ -6764,16 +6764,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727093218, - "last_issuance_block_time": 1727093222, + "first_issuance_block_time": 1727094790, + "last_issuance_block_time": 1727094794, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false, "supply": 19, @@ -6781,16 +6781,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727093201, - "last_issuance_block_time": 1727093214, + "first_issuance_block_time": 1727094764, + "last_issuance_block_time": 1727094786, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false, "supply": 0, @@ -6798,8 +6798,8 @@ Returns the valid assets of an issuer "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1727093180, - "last_issuance_block_time": 1727093197, + "first_issuance_block_time": 1727094743, + "last_issuance_block_time": 1727094760, "supply_normalized": "0.00000000" } ], @@ -6813,7 +6813,7 @@ Returns the valid assets of an issuer Returns the transactions of an address + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -6832,17 +6832,17 @@ Returns the transactions of an address "result": [ { "tx_index": 57, - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "block_index": 191, - "block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", - "block_time": 1727093467, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", + "block_time": 1727095029, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043:1", + "utxos_info": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6878,23 +6878,23 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "block_index": 190, - "block_hash": "1e78891fe58a2e15a13d98d52c73741c700e2b3b647c004bbd6c3630de502d3e", - "block_time": 1727093462, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "15b333419e3b9742692eeb0e5dcbbc123b0bc51e93ef5afa59e3467566caf68d", + "block_time": 1727095025, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "data": "465cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "supported": true, - "utxos_info": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf:1", + "utxos_info": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "status": "valid" } }, @@ -6902,17 +6902,17 @@ Returns the transactions of an address }, { "tx_index": 55, - "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "block_index": 189, - "block_hash": "08f347c0a8ec608432ef24c00b1b75e5bab12e9a9bff9232e1cfd94c5bd702fb", - "block_time": 1727093458, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "131c3eb09ef4a1fb5a9b6b20241ec06f87662e2b8ef1a964e039a96020523d95", + "block_time": 1727095020, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82:1", + "utxos_info": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6948,17 +6948,17 @@ Returns the transactions of an address }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "block_hash": "09999219b91d9f0a2141c7ccbf97cb0bb3518f3b2116061e96668f7d305e7b40", - "block_time": 1727093444, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "0e7d90a67c58b55067a8a1fedf031c4d5fe6e616c5739c5832c179189357078a", + "block_time": 1727095016, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802ae0ca086d281f046afa5927e69de29e640e6a6280c9435a1d17b078c22ab3b67935f7fbaa28e99e2f8048679a4ad46ccfb39129094fc4ea5ad1385a05f5400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380cd4cce463e7e46e89ecf1c25aa143c8a724f591a804efd3277d785851bf1bfb18ef3ebd9ea8732f76580b16240e182fcfb3d1437b108a600036c78a7f8a2400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4:0", + "utxos_info": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -6966,14 +6966,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -6981,7 +6981,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -7000,17 +7000,17 @@ Returns the transactions of an address }, { "tx_index": 49, - "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", "block_index": 183, - "block_hash": "1521ba188fec316a932935d167f999621868384b4e6e557b83ea37056300136b", - "block_time": 1727093423, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "4a143f2552233e509a13de0b3000486448be60508bcff70deab46b4f502d58a9", + "block_time": 1727094996, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1:1", + "utxos_info": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7055,7 +7055,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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 @@ -7074,20 +7074,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 40, - "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", + "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", "block_index": 153, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727093314, + "block_time": 1727094875, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -7112,7 +7112,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7141,9 +7141,9 @@ Returns the orders of an address "result": [ { "tx_index": 47, - "tx_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "tx_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", "block_index": 182, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7158,7 +7158,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727093354, + "block_time": 1727094927, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7184,9 +7184,9 @@ Returns the orders of an address }, { "tx_index": 49, - "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", "block_index": 186, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7201,7 +7201,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727093435, + "block_time": 1727095009, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7227,9 +7227,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "block_index": 190, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7244,7 +7244,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727093462, + "block_time": 1727095025, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7270,9 +7270,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "block_index": 191, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7287,7 +7287,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727093467, + "block_time": 1727095029, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7322,7 +7322,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The source of the fairminter to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7340,10 +7340,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", + "tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", "tx_index": 22, "block_index": 135, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7368,13 +7368,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727093218 + "block_time": 1727094790 }, { - "tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", + "tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", "tx_index": 18, "block_index": 131, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7399,13 +7399,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727093201 + "block_time": 1727094764 }, { - "tx_hash": "7a9102f321f0d0fa53fc2a72888a63e7fb5ade06068f5a3401438b09db2d6ed7", + "tx_hash": "801ce5c24ea2170c2937ab2d624deefa78877919ee48f5b5d5134b4b1c1d545e", "tx_index": 14, "block_index": 130, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7430,13 +7430,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727093197 + "block_time": 1727094760 }, { - "tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "tx_index": 10, "block_index": 125, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7461,7 +7461,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727093176 + "block_time": 1727094739 } ], "next_cursor": null, @@ -7474,7 +7474,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (str, required) - The address of the mints to return + + address: `bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7492,127 +7492,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "5cadef994ef817048b024cb011579c3e4b9baa49462417190150f05a34a9bcf9", + "tx_hash": "cfa6d447a379922dd0da484f07f975e5f68176b84d2aee0d31fa0acec398bb72", "tx_index": 23, "block_index": 136, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "fairminter_tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "fairminter_tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093222, + "block_time": 1727094794, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } }, { - "tx_hash": "50b750262a123626672ee6285a36b9d1836a5da7980de9ed42573c516dc0bfba", + "tx_hash": "8d1c0def2f1a5e730424a9ba152df29d054307de1e3349b107a4d38bbcda226b", "tx_index": 21, "block_index": 134, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "fairminter_tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "fairminter_tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093214, + "block_time": 1727094786, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } }, { - "tx_hash": "b41d216bd5e86231e03bb51e877b156c421b62f114c085a1eb153435620f9d53", + "tx_hash": "992ed3ec1967242742fe7ddde03a6e116c2b4bc20a039f3753bc954c69bac92c", "tx_index": 20, "block_index": 133, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "fairminter_tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "fairminter_tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093209, + "block_time": 1727094772, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } }, { - "tx_hash": "e205c0212c92af890ba9019c1d3aaf5fd70bf2b246dd36187c9175c8c08ab3fd", + "tx_hash": "47c564253e148783c32ae4ae2224e3656a91ade6afa6a567038bd10355f3ba0b", "tx_index": 19, "block_index": 132, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "fairminter_tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "fairminter_tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093205, + "block_time": 1727094767, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } }, { - "tx_hash": "6e4c49dc83facc1956475e1dbf513058755325acbe2974c556d7f09f846f52b4", + "tx_hash": "b665264a50495d9162549493a10fd88af7eae43d85bfb5fd1422bb2494564799", "tx_index": 15, "block_index": 127, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "fairminter_tx_hash": "7a9102f321f0d0fa53fc2a72888a63e7fb5ade06068f5a3401438b09db2d6ed7", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "fairminter_tx_hash": "801ce5c24ea2170c2937ab2d624deefa78877919ee48f5b5d5134b4b1c1d545e", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093184, + "block_time": 1727094747, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } }, { - "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", + "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093167, + "block_time": 1727094730, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } @@ -7628,7 +7628,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (str, required) - The address of the mints to return + + address: `bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (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` @@ -7647,22 +7647,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", + "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093167, + "block_time": 1727094730, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } @@ -7701,8 +7701,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: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address that will make the bet - + feed_address: `bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address that will make the bet + + feed_address: `bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (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) @@ -7770,7 +7770,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: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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) @@ -7826,7 +7826,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7838,7 +7838,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "020000000001011b513f6fdd1f7df388cb3a662c9bedb782eedb095ea0717969b0849aacf25b0f00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff0200000000000000002b6a296186e4ea78104e3725bdd638b6a278dc81b803953a3f54490b5f7f103cc616c8c15c878889480c4e7a3bb1052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "020000000001012753781abf3ef2fce372e23bccc466fa67e142098a3631c85e550e2d463af6b400000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff0200000000000000002b6a295c95cb43452450545471a142695239a49e999afcd68e45ef43302f0a84d7929eb69ccc07e2eedc7d873bb1052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7855,8 +7855,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: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address that will be sending the payment - + order_match_id: `c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956` (str, required) - The ID of the order match to pay for + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address that will be sending the payment + + order_match_id: `0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2` (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) @@ -7908,16 +7908,16 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956" + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2" }, "name": "btcpay", - "data": "434e5452505254590bc5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c112946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "data": "434e5452505254590b0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e761268029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999975897, "btc_fee": 21103, - "rawtransaction": "020000000001019f89fd6211d359d6f693f7d7ef3662fe29b15b263c4ae05643dec92cc201d49300000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff03b80b000000000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda00000000000000004b6a49fd74939129837c7351989251869f5391885030a789aec69c3f96482bad7dd2fc7f96b6faf69b54d04401cf6ae44b7e798d52fdcd810dddbfe182e155a7b279db7850fb49f596aebe8ed993052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "020000000001013707d42a6b3e09f63cab8dbcecd052e284d9b3f7d327785934ad1f6e903b2a7e00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff03b80b000000000000160014e829a0216c4a51744db91c43f5bb56f5f150753c00000000000000004b6a491b04cb4beea64c20d9040b3269732068e1dcacb0bb0b9a234093062e5fec48637b40ad0c4003a2c9ed173e13ca3decc91a01e5f36f215591467470ebb8430f9a981b32fb0c5b905959d993052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7934,7 +7934,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: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address with the BTC to burn + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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` @@ -7989,7 +7989,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "quantity": 1000, "overburn": false }, @@ -7999,7 +7999,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999983584, "btc_fee": 15416, - "rawtransaction": "020000000001016f4ab9ebc13fb9781f630b0cd5e2ccd0aefb2224adf72cf64d75e941ee8748aa00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000" + "rawtransaction": "02000000000101935395f62de465450f628d51b71eb929561cabadff4d44bc9648b01a4737810600000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000" } } ``` @@ -8009,8 +8009,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: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d` (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) @@ -8062,16 +8062,16 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "offer_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043" + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "offer_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d" }, "name": "cancel", - "data": "434e545250525459467961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "data": "434e545250525459460d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "020000000001010ea8b0ffa527d2efd792ef5af53d6740d3bf55df53d42241607204281aa8aa0e00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff0200000000000000002b6a292fc8c1ce801333c0ababbf752eb6c579710b0622f4c027a7a0ba41d379d03471a77e5f1c3b80e5bdc23bb1052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "020000000001011ba4bc1fe795234b95f9f58de52278906d7a3114f88f52713f801f1522de429100000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff0200000000000000002b6a29007801a76b6587fc2ba7aa3ae94f5b957d1940c47504a0b60ac23ec1cf99a8587cee37c1669b2472253bb1052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8088,7 +8088,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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 @@ -8143,7 +8143,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8162,7 +8162,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999984036, "btc_fee": 15964, - "rawtransaction": "020000000001010a24bbbb8016c85b33229ee3792609be59352c6eaa21efbbc7896a322a1c37ce00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000226a202b516871e2539518ca5ef8444a9d50936c4acb3716ce16fa69704e657c9948a9a4b3052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "020000000001014a8583cd5197ec1748bc59ca810479021ff53c793b359686426cb25dfb1aeab700000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000226a207da825ccda30cbec0f9cdcf4ae73541389f0c719d881442587a86269e4c2faeba4b3052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8179,7 +8179,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: `bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj` (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) @@ -8240,7 +8240,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", + "source": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8264,7 +8264,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949953351, "btc_fee": 16649, - "rawtransaction": "020000000001018004f2aa7e02c301909cca5e3b8faf7d8d4574233122a61c538904e39d2e238002000000160014068d236984cf5e62eb7f6628e63d0081fa0ed227ffffffff0200000000000000002c6a2ac9c82425abfcc58faac5bb5dc65eac3e618a754de7e312b450901686d49ea7b3b36c819ec2791d75e4eb474b0a2701000000160014068d236984cf5e62eb7f6628e63d0081fa0ed22702000000000000", + "rawtransaction": "02000000000101e94a3e476d38d0ee40ef150171d3aac1078b23fccc16429d6f881d8eea88bd8b0200000016001464aa4081fb72662d398468df64ae2c8247e1ad0fffffffff0200000000000000002c6a2a46a59187955d441c02c9f0f35b589fb10bad5dfaa9e474f70e73df105466b802c1bf429ea33f3dc5933c474b0a270100000016001464aa4081fb72662d398468df64ae2c8247e1ad0f02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8281,7 +8281,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: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (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: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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 @@ -8336,14 +8336,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -8362,7 +8362,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "020000000001014dde4c0c84f0a650805533cc702f7e60fb64a2fd5983045ef8f391e63f3ee5e600000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000236a21b3f3a78c45931030d7c10bb4428beada2e067fc45b8b60754cc84bdd7ab1df948b60b3052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "02000000000101a1cf27caadcf7aa0806331f4e40a13f4c1249ff13acfc7dc7e9df8c919c9ad6900000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000236a213075cb95a5d9480d7739d48194a183a760add3617bab58601cea029b41aec39e2160b3052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8379,10 +8379,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: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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` @@ -8443,10 +8443,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "transfer_destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "lock": false, "reset": false, @@ -8459,7 +8459,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999981092, "btc_fee": 18362, - "rawtransaction": "02000000000101d0cdc389fd4c7bf47b1c23c05e05f3acd8b650d3fdc550f5c4b4e58660462b3600000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff032202000000000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda0000000000000000236a2109cfd3845a4f4ebea7d37e916683d7b6461abfdda34112aa25cc22bcac9218a95324a8052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "020000000001018bd1824abe126426ead3d07b8c342bc52c6697187d076b78d437f9a35bdad4ba00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff032202000000000000160014e829a0216c4a51744db91c43f5bb56f5f150753c0000000000000000236a219833bffc8f4e7366fc332fd7906d1423a5d4fb7c644f0e882ff5eb724ee78897f824a8052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8476,9 +8476,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: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y,bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku,bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (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` @@ -8535,16 +8535,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", 1 ], [ "MYASSETA", - "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", 2 ] ], @@ -8552,12 +8552,12 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280a1d4c53a2839a34cbf7e8ecd9810a21633992fda802ae0ca086d281f046afa5927e69de29e640e6a628f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280e829a0216c4a51744db91c43f5bb56f5f150753c80cd4cce463e7e46e89ecf1c25aa143c8a724f591a8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999936609, "btc_fee": 61391, - "rawtransaction": "02000000000104d88254573590eb4337080df10b4f0b4ad803c09b301c1a1faae6ce2943ecd35f00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff75629894e727fe2e729774923a03d6971a8232e2d48baaa5bf1a1449e015514c00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff2d82e749d405fc455cefabcbdf042432516f1e0dc071f6e0cade76f1fa3b5a7f00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff95ef41b04543eb2e3a7228831a3094e0012dabe8a066a8dae923cc53077b0ff700000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff03e8030000000000006951210243f6f7fc25867032afaab047699b42f38677e21c4bddb7dd150b9466ba363fe22102499443450efd3c4bd336ac3d7b848954342c1d4234735cb9b87b2eaee5245f512102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee803000000000000695121024cf6f7fc25867032af89c72a9b56f2179edfdbbf0b7752d86fb384c4ac05a63b2102664e8b6fee373426fb29a05781ddaeb2a9ce81263a193e369a334bc2894b73bb2102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53ae61d016a804000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000002000002000002000000000000", + "rawtransaction": "0200000000010492a4ba9f83395c0bd2dd5c4c4946dd217a59ea1322d4f33e95da29341448a5df00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cfffffffffbb4ab5c80076e926c51b45a0090f8d197e9d95333d56a35bff6da15b37a046d00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff0e5181d60a798bbbe3521d346d6d2dc7001512f92d28a84289eb81503184ba3b00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff4d0da1973cebb7d58592999392de91d1a64ea5b0f90befcadde427361a741f7700000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff03e80300000000000069512103cbac3b0c06292afed4455a36526e7e216c0c370466b084ef020854b9a48719152102517fdbb6532ebbab0ac304e4a55cdad26d587d75d9fcf81fff460e3120c87c452102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee80300000000000069512103c4ac3b0c06292afed4662d5ba0ea33a06fe07d551ee8a678f6ddefef517649cd21032443137b1fe0fd957485e47a6a40ff787964f50796a5e290dd0e6b5d4ca7508c2102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853ae61d016a804000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8574,7 +8574,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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 @@ -8632,7 +8632,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8649,7 +8649,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -8663,7 +8663,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999982734, "btc_fee": 17266, - "rawtransaction": "020000000001014aacb3b6ad815a4c50210c455562526822143e09629ab5cfae241abfb1eab7ae00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000356a33d2dbbb794ae4b5d99fb235390b9eb26d1b36baa3a6f44e12910f9ffb6039d025052431a45283f6ab01f5a7158c7df7aac8fc738eae052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "02000000000101c6fb84cd2ceb0b3b84413102e3df25028728c0fca08191a6cbd2e583802b69ee00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000356a336c63fd97b8f90741212d5dc3b7580c471eb70992eaf022ab254274bd3bd75da0ad4f024c62f602de374d22defec956daa7fee58eae052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8680,8 +8680,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: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (str, required) - The address that will be receiving the asset + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (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 @@ -8741,8 +8741,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8758,12 +8758,12 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8802ae0ca086d281f046afa5927e69de29e640e6a62", + "data": "434e54525052545902000000000000000100000000000003e880cd4cce463e7e46e89ecf1c25aa143c8a724f591a", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983077, "btc_fee": 16923, - "rawtransaction": "02000000000101cdb2043481d9e60271c55a9dffae7e8bcf3f594d494145952d2f09d41021123300000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000306a2e739847d72081f157104b3f0a1992e1777522f8de11bf3171ae56dc10be77a55616893c889e9ffd540fd31eb624dee5af052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "02000000000101ecc8cc77ffad54b83edb1d30f97d30702f2677496bbc297ae7c19cb5b61c240400000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000306a2ed369c03500434c51d445cb62a9fc01b33ce7cc0bbf4770f0d8ed5010b9b1c657f48b4e775fb1bd34edbc045614b8e5af052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8780,8 +8780,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: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address that will be sending - + destination: `bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address that will be sending + + destination: `bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (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 @@ -8835,18 +8835,18 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904802ae0ca086d281f046afa5927e69de29e640e6a6207ffff", + "data": "434e5452505254590480cd4cce463e7e46e89ecf1c25aa143c8a724f591a07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "02000000000101469740e2c86396825812cc793adc952cb159869fbe68f70ad62ec8f90e3dca8500000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000236a21eb6c0a6f87a70df6580c99f871c80d905cd0c3c3c7ca09b3177df4a32679df84ed60b3052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "0200000000010170675a3d293ca41b0bedee451e3924ba2f5a9fa61db622d14f4348e3e5ab200a00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000236a218f510ab8c951833a2b75bb4e9766d2dec649a393271b2abf3ed870b11a3a572b4960b3052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8863,8 +8863,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: `bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu` (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` @@ -8917,8 +8917,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "quantity": 1000 }, "name": "dispense", @@ -8927,7 +8927,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949850214, "btc_fee": 16786, - "rawtransaction": "020000000001016bbe33f447b862a08c6c7e6853210f90154fad7add09b03cbcc11e8033767e4a020000001600142ae0ca086d281f046afa5927e69de29e640e6a62ffffffff03e80300000000000016001448679a4ad46ccfb39129094fc4ea5ad1385a05f500000000000000000c6a0a4564db1175b8a24eaf8266b80827010000001600142ae0ca086d281f046afa5927e69de29e640e6a6202000000000000", + "rawtransaction": "02000000000101cf2df0607c3a61517992fb3d0656cb1a7df1406f6cdbd4662604730e3004c94002000000160014cd4cce463e7e46e89ecf1c25aa143c8a724f591affffffff03e803000000000000160014b16240e182fcfb3d1437b108a600036c78a7f8a200000000000000000c6a0a97dddfa8bf5d09d8cce566b8082701000000160014cd4cce463e7e46e89ecf1c25aa143c8a724f591a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8944,7 +8944,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address that will be issuing the asset + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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: `` @@ -9029,7 +9029,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9054,7 +9054,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999983008, "btc_fee": 16992, - "rawtransaction": "0200000000010188c825db2b13d7c4582dc26cedae5437f4050194ff8a8fef902088045cbb38c200000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000316a2f78a7cb7c7fc1b9f3887131a36926d6ebcef1c20698d24431d8ae0ecd5db486c3046dc7e1a21bddf5b7923ad699db51a0af052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "02000000000101b3a8ea6e4f8eb45913e609652e259af9c6e6eca8c561996218d2ebea0997dd1900000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000316a2fd9ab2df527d279c6d4c2e0bc2b050c3bef1b34b372ba02ea4f711fd12fe10d7e8ae76b0586f1330d77f146e8f87116a0af052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9071,7 +9071,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: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address that will be minting the asset + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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` @@ -9126,13 +9126,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -9144,7 +9144,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999984858, "btc_fee": 15142, - "rawtransaction": "020000000001014e29093d974c2b92f83b61c9bb75a7a28ad5ff2e0b1fa9e185a10aaaa47ad82400000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000166a14833fdd88988e3689c1f82e0b988279be26738447dab6052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "02000000000101421347058c622d1d61385a7f92c7cb77b8703bdadf6d9b2b6f3efdee64c440b300000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000166a146d69de097e977560a3ae751a6dee79266c4b203bdab6052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9161,10 +9161,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: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address from which the assets are attached + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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: `65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4:3` (str, optional) - The utxo to attach the assets to + + destination: `561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d:3` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9217,8 +9217,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4:3", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d:3", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9231,12 +9231,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317135383276327733673878333565306d37336d78657379397a7a6365656a7437366863707a37797c363563643661383034396632393133396265663364373864343461646236353266306136343837333461616166366431613163613835623963376634353665343a337c5843507c31303030", + "data": "434e54525052545964626372743171617135367167747666666768676e64657233706c7477366b37686334716166753535666b6b757c353631616262333238383864636464366436643730633564333838656533393966653362353164313062623330373330636239396535333133386639373133643a337c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999905256, "btc_fee": 91744, - "rawtransaction": "0200000000010648c9fd3cb5f428032cc8ed89bf5c3b36fc13547024f4128b2e140f929728e1a000000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffffe1f3f7c7904eabd1536bf76b8b3fa402d7b9202f765226da53d078ddd488af2100000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff94fc5de95229556e4566ff3ae8cd7d383e76a7bd9ae610106978d64c443f505300000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffffa3e388ae2ebee65472cc607151f49002d6de5ff576fe47941ef69f375e974d6d00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff4297fb2e2b6fc7559f3648e0664907f1e4f3377ddb31d134ead6a366a4981ff300000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffffeccbf203673843794be03d22fcf570fe9d8bd202878e1224961f0e80a103d4b900000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff04e80300000000000069512103865345e83ce6f89535b804d9c9b2ba9b32cf453423d6e6725febe65b3b037f7c21021c6fd22f5dc1266af20aac17bcecb6fbee9f08bd3260f40ee5cb87b728c76f1b2102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee80300000000000069512102865345e83ce6f89535ec5283ddf4b2db34ce15277792b1225ff7e15a3f57705121021d698d3108d36967b047fc46b8e7a3aaee935aac7934ec4ae69cddb029c063f32102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee80300000000000069512102ac5345e83ce6f89535e950df8ffcb8965fb4273e2091e5256793d56e5e3312a121022b5cbf5738b25f538870cf72d986c2ccd8f76bcd48578d72d3fee4d31ea6576f2102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee83922fc06000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106b627e317f10b77b7e289a77baf87646e05e1a63b36b17596a99f2e60e299a20500000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffffb4ca6249f8ef72cfb804afcc7698fad762b72331f548e24197f2341b7909505e00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff5765180b7ea5e05af9eb195c81a6255235ada15eb8d1e8b7b750b25fd133342600000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff707710929e481d91f9c3f608c3cefd0d8f608abd29d7b13c6af0bca108d1e22e00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff02f5fd3e8a84f2ebb61c7b4877f81724a13027db3f8cbf542ddf90a28b9d29b500000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff02626c456777e623c5f61924c131e89ee9312e6125adafc1c1c8cf5dd5660f2700000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff04e803000000000000695121033cffa7619ed50f4bde596392e3b7f4a95f6ab29b250e1a6ef2ae7d84954d2e2b2102f27d87cca6f41879e6f5b99a74fefc8013b8a66a847ebf28e49a64fbbba4e5d82102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee803000000000000695121033cffa7619ed50f4bde0f39c9a9a7a6bc5a2de39b305e5e7ba1ac29d4ca462ff82102a4368ddaafb30d7abca6e0c922edaed651bea36f8d2cf331e49f64a9e1a0ef902102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee8030000000000006951210216ffa7619ed50f4bde0a30c2f5f9f6a46658d7d165595e2894c81aecf2234a432103970fb4bcca806f4f8dc2d1f9408f9de6668d930cef15ca54d1ac559ad9c6d6e12102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee83922fc06000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9253,8 +9253,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: `3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389:1` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to detach the assets to + + utxo: `543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940:1` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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 @@ -9308,8 +9308,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389:1", - "destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940:1", + "destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9322,12 +9322,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964333432393634363138333939316237626663656438623535646464623836663035303466666534393262316237373265323764646532336431643061643338393a317c62637274317135383276327733673878333565306d37336d78657379397a7a6365656a7437366863707a37797c5843507c31303030", + "data": "434e54525052545964353433383537383130643432653335393766306463336135383234313033343464633261626366336464343131643631373138393661653365623563373934303a317c626372743171617135367167747666666768676e64657233706c7477366b37686334716166753535666b6b757c5843507c31303030", "btc_in": 4949874900, "btc_out": 3000, "btc_change": 4949842164, "btc_fee": 29736, - "rawtransaction": "0200000000010189d30a1d3de2dd272e771b2b49fe4f50f086dbdd558bedfc7b1b998361642934010000001600141ffcb5e94b4bb7721d31470b9127310a921e5f9cffffffff04e80300000000000069512103e4a08582503791c795b346510299e80d744e26bdc7e437c630b0dfc44929d44821038e01933582663073f222ebb5f6c7a41f7acf01246a8d326259d60704bca9f7b721037eea63e0236a331d93b3a01fac2fb0a1770b0580e0e98f89d6262276cca409db53aee80300000000000069512103e4a08582503791c795b247565491ba09231b2db6c7e737d865b1cbd31d3cd9f02102d406d06391313573bc77eee5f69ef54a72835d6571852a2f0d81075cfffaa51e21037eea63e0236a331d93b3a01fac2fb0a1770b0580e0e98f89d6262276cca409db53aee80300000000000069512102cea08582503791c795bf16154a97a7451a3c4ef2cfed369407d2b9a72c4dec722102ec34a651e602524bc444db80c6f3c2791ffb381608bc50556ee462368bcd939421037eea63e0236a331d93b3a01fac2fb0a1770b0580e0e98f89d6262276cca409db53aef4980827010000001600141ffcb5e94b4bb7721d31470b9127310a921e5f9c02000000000000", + "rawtransaction": "0200000000010140795cebe36a8971611d41ddf3bc2adc44034182a5c30d7f59e3420d815738540100000016001437e73d81e066d65b5208cfbf973f0a0436365e8bffffffff04e803000000000000695121021cd41ad1151db6fd319756e0ba7e1b19371e7a907c192ca23f6ff3b4ca1c03a32102681750f1cfec13382f07e31b4ea9359e27b077250deefcf6c8e366b1ceeefbe12102e2f9408019cc58d6becf6805fead856caeadf7edf56b2ca3a17d96cabb078aeb53aee803000000000000695121031cd41ad1151db6fd31c502b1ba234c1b6c1873c0781178ed6835b6a6cb09018c21032a4353b89aac546e7a54bf1843ff318e77a628351eeca6f0c4b663f79eb0b7c92102e2f9408019cc58d6becf6805fead856caeadf7edf56b2ca3a17d96cabb078aeb53aee8030000000000006951210236d41ad1151db6fd31c656b2e22d5b52576c1a88791b79a10a56c4d2fa78605021025b7665c9fdd822081c33d77f2d9b54fc44d6444169dacdc7acd55786ffd6c2592102e2f9408019cc58d6becf6805fead856caeadf7edf56b2ca3a17d96cabb078aeb53aef49808270100000016001437e73d81e066d65b5208cfbf973f0a0436365e8b02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9382,8 +9382,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false, "supply": 10000000000, @@ -9391,16 +9391,16 @@ Returns the valid assets "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727093327, - "last_issuance_block_time": 1727093335, + "first_issuance_block_time": 1727094888, + "last_issuance_block_time": 1727094897, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", - "owner": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", + "issuer": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", + "owner": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", "divisible": true, "locked": false, "supply": 100000000000, @@ -9408,16 +9408,16 @@ Returns the valid assets "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1727093323, - "last_issuance_block_time": 1727093323, + "first_issuance_block_time": 1727094884, + "last_issuance_block_time": 1727094884, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false, "supply": 100000000000, @@ -9425,16 +9425,16 @@ Returns the valid assets "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727093278, - "last_issuance_block_time": 1727093278, + "first_issuance_block_time": 1727094850, + "last_issuance_block_time": 1727094850, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false, "supply": 40, @@ -9442,16 +9442,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727093218, - "last_issuance_block_time": 1727093222, + "first_issuance_block_time": 1727094790, + "last_issuance_block_time": 1727094794, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false, "supply": 19, @@ -9459,8 +9459,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727093201, - "last_issuance_block_time": 1727093214, + "first_issuance_block_time": 1727094764, + "last_issuance_block_time": 1727094786, "supply_normalized": "0.00000019" } ], @@ -9488,8 +9488,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false, "supply": 10000000000, @@ -9497,8 +9497,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1727093163, - "last_issuance_block_time": 1727093176, + "first_issuance_block_time": 1727094726, + "last_issuance_block_time": 1727094739, "supply_normalized": "100.00000000" } } @@ -9529,7 +9529,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9537,14 +9537,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9552,7 +9552,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -9564,13 +9564,13 @@ Returns the asset balances } ``` -### Get Balance By Address And Asset [GET /v2/assets/{asset}/balances/{address}{?verbose}{&show_unconfirmed}] +### Get Balance By Asset And Address [GET /v2/assets/{asset}/balances/{address}{?verbose}{&show_unconfirmed}] Returns the balance of an address and asset + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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. @@ -9581,7 +9581,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -9632,9 +9632,9 @@ Returns the orders of an asset "result": [ { "tx_index": 47, - "tx_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "tx_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", "block_index": 182, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9649,7 +9649,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727093354, + "block_time": 1727094927, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9675,9 +9675,9 @@ Returns the orders of an asset }, { "tx_index": 49, - "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", "block_index": 186, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9692,7 +9692,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727093435, + "block_time": 1727095009, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9718,9 +9718,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "block_index": 190, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9735,7 +9735,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727093462, + "block_time": 1727095025, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9761,9 +9761,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "block_index": 191, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9778,7 +9778,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727093467, + "block_time": 1727095029, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9804,9 +9804,9 @@ Returns the orders of an asset }, { "tx_index": 50, - "tx_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "tx_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "block_index": 185, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -9821,7 +9821,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727093431, + "block_time": 1727095004, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9883,13 +9883,13 @@ Returns the orders of an asset { "result": [ { - "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "tx0_index": 49, - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 52, - "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", - "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -9903,7 +9903,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727093435, + "block_time": 1727095009, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9923,13 +9923,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "tx0_index": 49, - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 50, - "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", - "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -9943,7 +9943,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727093431, + "block_time": 1727095004, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9963,13 +9963,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", "tx0_index": 47, - "tx0_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 48, - "tx1_hash": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", - "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "tx1_hash": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -9983,7 +9983,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727093354, + "block_time": 1727094927, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10063,20 +10063,20 @@ Returns the credits of an asset "result": [ { "block_index": 192, - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -10084,20 +10084,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "51964afe198dc7b43960247984e8e03be0113effcaa92fef97aa1cbfdb64a6c0", + "event": "6d46c4d6f2bfa733cabf35461464be1de853bd359fce0e0b56d3281408e3083e", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093176, + "block_time": 1727094739, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -10105,20 +10105,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7", + "event": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093171, + "block_time": 1727094734, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -10126,20 +10126,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", + "event": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093171, + "block_time": 1727094734, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -10151,16 +10151,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7", + "event": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093171, + "block_time": 1727094734, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -10216,16 +10216,16 @@ Returns the debits of an asset "result": [ { "block_index": 193, - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "event": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -10237,16 +10237,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -10258,16 +10258,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -10279,16 +10279,16 @@ Returns the debits of an asset }, { "block_index": 191, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "event": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093467, + "block_time": 1727095029, "asset_info": { "divisible": true, "asset_longname": null, @@ -10300,16 +10300,16 @@ Returns the debits of an asset }, { "block_index": 189, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093458, + "block_time": 1727095020, "asset_info": { "divisible": true, "asset_longname": null, @@ -10349,20 +10349,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 40, - "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", + "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", "block_index": 153, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727093314, + "block_time": 1727094875, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -10406,14 +10406,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "51964afe198dc7b43960247984e8e03be0113effcaa92fef97aa1cbfdb64a6c0", + "tx_hash": "6d46c4d6f2bfa733cabf35461464be1de853bd359fce0e0b56d3281408e3083e", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -10428,20 +10428,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727093176, + "block_time": 1727094739, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7", + "tx_hash": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -10456,20 +10456,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727093171, + "block_time": 1727094734, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", + "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -10484,20 +10484,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727093167, + "block_time": 1727094730, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -10512,7 +10512,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1727093163, + "block_time": 1727094726, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10546,10 +10546,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10557,7 +10557,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "divisible": true, "asset_longname": null, @@ -10570,10 +10570,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 53, - "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0", + "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039", "block_index": 187, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10581,7 +10581,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093439, + "block_time": 1727095012, "asset_info": { "divisible": true, "asset_longname": null, @@ -10594,10 +10594,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 42, - "tx_hash": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", + "tx_hash": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", "block_index": 155, - "source": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561:0", - "destination": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389:1", + "source": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea:0", + "destination": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10605,7 +10605,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093323, + "block_time": 1727094884, "asset_info": { "divisible": true, "asset_longname": null, @@ -10618,10 +10618,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 41, - "tx_hash": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561", + "tx_hash": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea", "block_index": 154, - "source": "61dfe33f21d7929996be520e84245cb0ef401935edd4e6c382303f81ab07cda1:0", - "destination": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561:0", + "source": "038293b56ad81f45525bcade26369df9772e07db3dc4c97955587c621708d4b6:0", + "destination": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10629,7 +10629,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093318, + "block_time": 1727094880, "asset_info": { "divisible": true, "asset_longname": null, @@ -10680,9 +10680,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10691,7 +10691,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10701,7 +10701,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -10717,9 +10717,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "22d25e58a41019478c7742f0049a02c6e66fda5f38c995a6cdbbbb79d282f4d5", + "tx_hash": "d15aff344f340fa392282b0db80499fcf0785fcc1406f0d8d7508eddaac1757e", "block_index": 142, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10728,7 +10728,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "origin": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10738,7 +10738,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093257, + "block_time": 1727094830, "asset_info": { "divisible": true, "asset_longname": null, @@ -10754,9 +10754,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", + "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", "block_index": 144, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10765,7 +10765,7 @@ Returns the dispensers of an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10775,7 +10775,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093265, + "block_time": 1727094839, "asset_info": { "divisible": true, "asset_longname": null, @@ -10791,18 +10791,18 @@ Returns the dispensers of an asset }, { "tx_index": 32, - "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "last_status_tx_hash": null, - "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10812,7 +10812,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727093274, + "block_time": 1727094846, "asset_info": { "divisible": true, "asset_longname": null, @@ -10837,7 +10837,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - The address to return + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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` @@ -10850,9 +10850,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", + "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", "block_index": 144, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10861,7 +10861,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10871,7 +10871,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093265, + "block_time": 1727094839, "asset_info": { "divisible": true, "asset_longname": null, @@ -10921,7 +10921,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -10929,7 +10929,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -10938,7 +10938,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -10946,7 +10946,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -10955,7 +10955,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -10963,7 +10963,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -10972,7 +10972,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -11009,27 +11009,27 @@ Returns the dispenses of an asset { "tx_index": 33, "dispense_index": 0, - "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", - "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "last_status_tx_hash": null, - "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -11044,7 +11044,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727093274, + "block_time": 1727094846, "asset_info": { "divisible": true, "asset_longname": null, @@ -11058,19 +11058,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", + "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11078,7 +11078,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11093,7 +11093,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -11107,19 +11107,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", + "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", "block_index": 140, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11127,7 +11127,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11142,7 +11142,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093239, + "block_time": 1727094812, "asset_info": { "divisible": true, "asset_longname": null, @@ -11185,8 +11185,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false, "supply": 0, @@ -11194,8 +11194,8 @@ Returns asset subassets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1727093331, - "last_issuance_block_time": 1727093331, + "first_issuance_block_time": 1727094893, + "last_issuance_block_time": 1727094893, "supply_normalized": "0.00000000" } ], @@ -11227,10 +11227,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "tx_index": 10, "block_index": 125, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11255,7 +11255,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727093176 + "block_time": 1727094739 } ], "next_cursor": null, @@ -11286,64 +11286,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "51964afe198dc7b43960247984e8e03be0113effcaa92fef97aa1cbfdb64a6c0", + "tx_hash": "6d46c4d6f2bfa733cabf35461464be1de853bd359fce0e0b56d3281408e3083e", "tx_index": 13, "block_index": 125, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", - "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093176, + "block_time": 1727094739, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } }, { - "tx_hash": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7", + "tx_hash": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e", "tx_index": 12, "block_index": 124, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", - "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093171, + "block_time": 1727094734, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } }, { - "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", + "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093167, + "block_time": 1727094730, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } @@ -11359,7 +11359,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx` (str, required) - The address of the mints to return + + address: `bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (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` @@ -11378,22 +11378,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", + "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093167, + "block_time": 1727094730, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } @@ -11439,9 +11439,9 @@ Returns all the orders "result": [ { "tx_index": 47, - "tx_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "tx_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", "block_index": 182, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11456,7 +11456,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727093354, + "block_time": 1727094927, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11482,9 +11482,9 @@ Returns all the orders }, { "tx_index": 50, - "tx_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "tx_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "block_index": 185, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11499,7 +11499,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727093431, + "block_time": 1727095004, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11525,9 +11525,9 @@ Returns all the orders }, { "tx_index": 49, - "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", "block_index": 186, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11542,7 +11542,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727093435, + "block_time": 1727095009, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11568,9 +11568,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "tx_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "block_index": 186, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11585,7 +11585,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727093435, + "block_time": 1727095009, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11611,9 +11611,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "block_index": 190, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11628,7 +11628,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727093462, + "block_time": 1727095025, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11663,7 +11663,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043` (str, required) - The hash of the transaction that created the order + + order_hash: `0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d` (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. @@ -11675,9 +11675,9 @@ Returns the information of an order { "result": { "tx_index": 57, - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "block_index": 191, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11692,7 +11692,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727093467, + "block_time": 1727095029, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11724,7 +11724,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1` (str, required) - The hash of the transaction that created the order + + order_hash: `0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126` (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 @@ -11751,13 +11751,13 @@ Returns the order matches of an order { "result": [ { - "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "tx0_index": 49, - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 52, - "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", - "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11771,7 +11771,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727093435, + "block_time": 1727095009, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11791,13 +11791,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "tx0_index": 49, - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 50, - "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", - "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11811,7 +11811,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727093431, + "block_time": 1727095004, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11841,7 +11841,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1` (str, required) - The hash of the transaction that created the order + + order_hash: `0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126` (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 @@ -11860,15 +11860,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 51, - "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", + "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", "block_index": 185, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "btc_amount": 2000, - "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "status": "valid", "confirmed": true, - "block_time": 1727093431, + "block_time": 1727095004, "btc_amount_normalized": "0.00002000" } ], @@ -11912,9 +11912,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 50, - "tx_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "tx_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "block_index": 185, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11932,7 +11932,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727093431, + "block_time": 1727095004, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11958,9 +11958,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "tx_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "block_index": 186, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11978,7 +11978,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727093435, + "block_time": 1727095009, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12004,9 +12004,9 @@ Returns the orders to exchange two assets }, { "tx_index": 47, - "tx_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "tx_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", "block_index": 182, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12024,7 +12024,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727093354, + "block_time": 1727094927, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12050,9 +12050,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", "block_index": 186, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12070,7 +12070,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727093435, + "block_time": 1727095009, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12096,9 +12096,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "block_index": 190, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12116,7 +12116,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727093462, + "block_time": 1727095025, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12179,13 +12179,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "tx0_index": 49, - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 52, - "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", - "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12202,7 +12202,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727093435, + "block_time": 1727095009, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12222,13 +12222,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "tx0_index": 49, - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 50, - "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", - "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12245,7 +12245,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727093431, + "block_time": 1727095004, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12265,13 +12265,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", "tx0_index": 47, - "tx0_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 48, - "tx1_hash": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", - "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "tx1_hash": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12288,7 +12288,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727093354, + "block_time": 1727094927, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12346,13 +12346,13 @@ Returns all the order matches { "result": [ { - "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "tx0_index": 49, - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 52, - "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", - "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12366,7 +12366,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727093435, + "block_time": 1727095009, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12386,13 +12386,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "tx0_index": 49, - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 50, - "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", - "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12406,7 +12406,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727093431, + "block_time": 1727095004, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12426,13 +12426,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", "tx0_index": 47, - "tx0_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 48, - "tx1_hash": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", - "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "tx1_hash": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12446,7 +12446,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727093354, + "block_time": 1727094927, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12614,66 +12614,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "d460a52fd5533e197907b84dcdc8e7fc885c9e17ede386f2ecc15af162d7113c", + "tx_hash": "43093d52e847e4f5f87c441d762c47e61b2b30dd12418bb88f8a1ec5686fb269", "block_index": 121, - "source": "bcrt1qswegegswg6qyw5u90tafnw398gzn5a0d5re8u4", + "source": "bcrt1qzlgv5ud7ygwd6qudn3fpnh7a97lhyu2yp4uggk", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1727093158, + "block_time": 1727094721, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "c9daab89307e84bcc14f96bd8fc527be86b26696b8f2d095cec58e769818aab3", + "tx_hash": "73cee698f7e849caad6658e0350b1338d076a8ffda592a3386f4b9b0608cbba8", "block_index": 120, - "source": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", + "source": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1727093154, + "block_time": 1727094717, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "b249762795207fb5f190c065f1828cd125d79735399db8e49f372255863f630c", + "tx_hash": "dc2edb8719cae9a3345615cdc3a977be3cf2a2662e3910891dd5d3681bfff876", "block_index": 119, - "source": "bcrt1qqhp6nrswkpq6js9wqn9rf56zzrer5a3myr0pc3", + "source": "bcrt1qxdxmwlv97cc9s7jk5hs3z6cqdu7tasktae5eag", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1727093150, + "block_time": 1727094713, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "fcc7f7764c0d2d26074b73dda895c366d443e986398c86125a5ab881d010ed88", + "tx_hash": "14b38ae9c3846aae4acfb3f79364bbd2b0bc8739cd453c2f8d8ebccc68b78328", "block_index": 118, - "source": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", + "source": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1727093146, + "block_time": 1727094709, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "0d976e3a765844dc3bc60fe2f329fe2d1d7e194761b3cb3c78eef3448bbb92dd", + "tx_hash": "a1a48939003f5d217f71ffde747f89bca6cda99cf75029249dff0e2d435d114a", "block_index": 117, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1727093142, + "block_time": 1727094706, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12718,18 +12718,18 @@ Returns all dispensers "result": [ { "tx_index": 32, - "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "last_status_tx_hash": null, - "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -12739,7 +12739,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727093274, + "block_time": 1727094846, "asset_info": { "divisible": true, "asset_longname": null, @@ -12755,9 +12755,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", + "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", "block_index": 144, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -12766,7 +12766,7 @@ Returns all dispensers "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12776,7 +12776,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093265, + "block_time": 1727094839, "asset_info": { "divisible": true, "asset_longname": null, @@ -12792,9 +12792,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "22d25e58a41019478c7742f0049a02c6e66fda5f38c995a6cdbbbb79d282f4d5", + "tx_hash": "d15aff344f340fa392282b0db80499fcf0785fcc1406f0d8d7508eddaac1757e", "block_index": 142, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12803,7 +12803,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "origin": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12813,7 +12813,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093257, + "block_time": 1727094830, "asset_info": { "divisible": true, "asset_longname": null, @@ -12829,9 +12829,9 @@ Returns all dispensers }, { "tx_index": 26, - "tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12840,7 +12840,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12850,7 +12850,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -12875,7 +12875,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b` (str, required) - The hash of the dispenser to return + + dispenser_hash: `009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb` (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. @@ -12887,9 +12887,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12898,7 +12898,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12908,7 +12908,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -12930,7 +12930,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b` (str, required) - The hash of the dispenser to return + + dispenser_hash: `009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb` (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 @@ -12950,19 +12950,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", + "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12970,7 +12970,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12985,7 +12985,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -12999,19 +12999,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", + "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", "block_index": 140, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13019,7 +13019,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13034,7 +13034,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093239, + "block_time": 1727094812, "asset_info": { "divisible": true, "asset_longname": null, @@ -13076,20 +13076,20 @@ Returns all the dividends "result": [ { "tx_index": 40, - "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", + "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", "block_index": 153, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727093314, + "block_time": 1727094875, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -13114,7 +13114,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e` (str, required) - The hash of the dividend to return + + dividend_hash: `2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c` (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. @@ -13126,20 +13126,20 @@ Returns a dividend by its hash { "result": { "tx_index": 40, - "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", + "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", "block_index": 153, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727093314, + "block_time": 1727094875, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -13161,7 +13161,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c` (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 @@ -13184,12 +13184,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", + "event": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", "tx_index": 40, - "utxo": "61dfe33f21d7929996be520e84245cb0ef401935edd4e6c382303f81ab07cda1:0", - "utxo_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "utxo": "038293b56ad81f45525bcade26369df9772e07db3dc4c97955587c621708d4b6:0", + "utxo_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "confirmed": true, - "block_time": 1727093314, + "block_time": 1727094875, "asset_info": { "divisible": true, "asset_longname": null, @@ -13201,16 +13201,16 @@ Returns a dividend distribution by its hash }, { "block_index": 153, - "address": "bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x", + "address": "bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", + "event": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093314, + "block_time": 1727094875, "asset_info": { "divisible": true, "asset_longname": null, @@ -13256,27 +13256,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", - "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", + "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", + "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", "transaction_count": 1, - "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", - "block_time": 1727093475 + "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", + "block_time": 1727095038 }, "tx_hash": null, "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "tx_index": 59 }, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 }, { "event_index": 533, @@ -13285,12 +13285,12 @@ Returns all events "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "status": "valid", "tag": "64657374726f79", - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "tx_index": 59, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -13300,24 +13300,24 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 193, - "event": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "event": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -13327,25 +13327,25 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", "block_index": 193, - "block_time": 1727093475, + "block_time": 1727095038, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "tx_index": 59, - "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", + "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -13365,9 +13365,9 @@ Returns all events }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 } ], "next_cursor": 530, @@ -13395,15 +13395,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", - "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", + "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", + "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", "transaction_count": 1, - "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", - "block_time": 1727093475 + "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", + "block_time": 1727095038 }, "tx_hash": null, "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 } } ``` @@ -13481,16 +13481,16 @@ Returns the events filtered by event name "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -13500,78 +13500,78 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727093462, + "block_time": 1727095025, "asset_info": { "divisible": true, "asset_longname": null, @@ -13581,24 +13581,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "block_index": 190, - "block_time": 1727093462 + "block_time": 1727095025 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "event": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "divisible": true, "asset_longname": null, @@ -13608,9 +13608,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "block_time": 1727093444 + "block_time": 1727095016 } ], "next_cursor": 490, @@ -13666,27 +13666,27 @@ Returns all the dispenses { "tx_index": 33, "dispense_index": 0, - "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", - "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "last_status_tx_hash": null, - "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13701,7 +13701,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727093274, + "block_time": 1727094846, "asset_info": { "divisible": true, "asset_longname": null, @@ -13715,19 +13715,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", + "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13735,7 +13735,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13750,7 +13750,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -13764,19 +13764,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", + "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", "block_index": 140, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13784,7 +13784,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13799,7 +13799,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093239, + "block_time": 1727094812, "asset_info": { "divisible": true, "asset_longname": null, @@ -13841,10 +13841,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -13852,7 +13852,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "divisible": true, "asset_longname": null, @@ -13865,10 +13865,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13876,11 +13876,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -13889,10 +13889,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13900,11 +13900,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -13913,10 +13913,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 53, - "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0", + "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039", "block_index": 187, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -13924,7 +13924,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093439, + "block_time": 1727095012, "asset_info": { "divisible": true, "asset_longname": null, @@ -13937,10 +13937,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 42, - "tx_hash": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", + "tx_hash": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", "block_index": 155, - "source": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561:0", - "destination": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389:1", + "source": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea:0", + "destination": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -13948,7 +13948,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093323, + "block_time": 1727094884, "asset_info": { "divisible": true, "asset_longname": null, @@ -13990,14 +13990,14 @@ Returns all the issuances "result": [ { "tx_index": 46, - "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", + "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -14012,20 +14012,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093340, + "block_time": 1727094911, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "87c03f2279383a3df0081f24a9f1fa5c0a0871379ef14a982ab69879184b38f7", + "tx_hash": "766ce7ba7a212e1b43cbe3df259ab0cd0bf5579c5cf1c4c27ceb05911f1f7109", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -14040,20 +14040,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727093335, + "block_time": 1727094897, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "8545fa4b393d2af3b1304014da38dd6988b8ad70e7eb5942312966346dbf5c1c", + "tx_hash": "4c63b42edf0cfbe37a429815c6724cfea57503fe580f8d9022c3a2bc16e8db38", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -14068,20 +14068,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093331, + "block_time": 1727094893, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "02e0dc7bbbbc4974003b5a437a68b7e2cbfacb3747f4e8d64d60242fa4478372", + "tx_hash": "0a6900f413f8095625003b8d59bebdc8af81dc18dbf66310ff9229b879d53d0a", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -14096,20 +14096,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093327, + "block_time": 1727094888, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", + "tx_hash": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", - "issuer": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", + "source": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", + "issuer": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", "transfer": false, "callable": false, "call_date": 0, @@ -14124,7 +14124,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093323, + "block_time": 1727094884, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -14139,7 +14139,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745` (str, required) - The hash of the transaction to return + + tx_hash: `c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18` (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. @@ -14151,14 +14151,14 @@ Returns the issuances of a block { "result": { "tx_index": 46, - "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", + "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -14173,7 +14173,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093340, + "block_time": 1727094911, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14205,16 +14205,16 @@ Returns all sweeps "result": [ { "tx_index": 58, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "fee_paid_normalized": "0.00600000" } ], @@ -14228,7 +14228,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3` (str, required) - The hash of the transaction to return + + tx_hash: `b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc` (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. @@ -14241,16 +14241,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 58, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "fee_paid_normalized": "0.00600000" } ], @@ -14284,9 +14284,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572", + "tx_hash": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a", "block_index": 138, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14294,14 +14294,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727093231, + "block_time": 1727094803, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "000e98b21330a957d503936a5a5b4a4a45befd508a16c30ed1912d21d0020d6f", + "tx_hash": "30e595f74d9b77faf4d326988b5fa49da4919c874be0dbbaf37a0f5efc4a6769", "block_index": 137, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14309,7 +14309,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727093226, + "block_time": 1727094799, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14323,7 +14323,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572` (str, required) - The hash of the transaction to return + + tx_hash: `b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a` (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. @@ -14335,9 +14335,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572", + "tx_hash": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a", "block_index": 138, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14345,7 +14345,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727093231, + "block_time": 1727094803, "fee_fraction_int_normalized": "0.00000000" } } @@ -14375,10 +14375,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", + "tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", "tx_index": 22, "block_index": 135, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14403,13 +14403,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727093218 + "block_time": 1727094790 }, { - "tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", + "tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", "tx_index": 18, "block_index": 131, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14434,13 +14434,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727093201 + "block_time": 1727094764 }, { - "tx_hash": "7a9102f321f0d0fa53fc2a72888a63e7fb5ade06068f5a3401438b09db2d6ed7", + "tx_hash": "801ce5c24ea2170c2937ab2d624deefa78877919ee48f5b5d5134b4b1c1d545e", "tx_index": 14, "block_index": 130, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14465,13 +14465,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727093197 + "block_time": 1727094760 }, { - "tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "tx_index": 10, "block_index": 125, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14496,7 +14496,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727093176 + "block_time": 1727094739 } ], "next_cursor": null, @@ -14539,7 +14539,7 @@ Returns the mints by fairminter Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58,bcrt1qqhp6nrswkpq6js9wqn9rf56zzrer5a3myr0pc3` (str, required) - The addresses to search for + + addresses: `bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj,bcrt1qxdxmwlv97cc9s7jk5hs3z6cqdu7tasktae5eag` (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. @@ -14558,8 +14558,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", - "address": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58" + "txid": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "address": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj" }, { "vout": 2, @@ -14567,8 +14567,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", - "address": "bcrt1qqhp6nrswkpq6js9wqn9rf56zzrer5a3myr0pc3" + "txid": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", + "address": "bcrt1qxdxmwlv97cc9s7jk5hs3z6cqdu7tasktae5eag" } ], "next_cursor": null, @@ -14581,7 +14581,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd` (str, required) - The address to search for + + address: `bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7` (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 @@ -14597,28 +14597,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "89a09ac9d6239ab036e8e05a10e7e1bd980f1a8ba1843d56755c2c16187d6a14" + "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039" }, { - "tx_hash": "1925463e88ee34000a3ea11c42581ce890f717f7eba97775d5f17c143f29364d" + "tx_hash": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e" }, { - "tx_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956" + "tx_hash": "a08984ad55f4e1a2ed5a1f25a107dc4d298156d23fac72bd19d9a33948aa9962" }, { - "tx_hash": "144554b15a22c114b9c5521d0d24a3c04f73a8b41253e822cc95199c1d067299" + "tx_hash": "0c869ae1b35c7a20c2384369babb94e31d003833139318542392ce07c372f378" }, { - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" + "tx_hash": "b2ac9ee9375c7dc1103dcf5356e6e38dedaf5fcd3e1b113959df1ff0c6c4faba" }, { - "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0" + "tx_hash": "28492d2ebdcfa146b86f026a77270b902bd2a4ee130b1cb59bd4b51a8eabf1d4" }, { - "tx_hash": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7" + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" }, { - "tx_hash": "3c4051bdedfa9154c9b7f71c4870b9f4267c24ca98d4eb9e00285d6704da9bf0" + "tx_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2" } ], "next_cursor": null, @@ -14631,7 +14631,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn` (str, required) - The address to search for. + + address: `bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p` (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. @@ -14644,8 +14644,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 3, - "tx_hash": "ff537bf687431f1b8eacb1508399c66f2ddcd9ebdfad42882925e2c43833e443" + "block_index": 9, + "tx_hash": "bb46b82006453c3fbf60dcd71ccac08673e11507d02e502f6fcdc3d04972d343" } } ``` @@ -14655,7 +14655,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58` (str, required) - The address to search for + + address: `bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj` (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 @@ -14676,7 +14676,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480" + "txid": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9" } ], "next_cursor": null, @@ -14689,7 +14689,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y` (str, required) - Address to get pubkey for. + + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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. @@ -14701,7 +14701,7 @@ Get pubkey for an address. ``` { - "result": "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f" + "result": "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08" } ``` @@ -14710,7 +14710,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f` (str, required) - The transaction hash + + tx_hash: `baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d` (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. @@ -14722,7 +14722,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101dd00f9610dafa03a82ddd666c55d2cc59ebe394256c67c1f6ffbd1fd7560e0c30300000000ffffffff020000000000000000226a203bd937e5a00203cd95ff353270c398e18162febbdbae967d477619ebf1816b3c680b0a270100000016001448679a4ad46ccfb39129094fc4ea5ad1385a05f50247304402205376f592e41d9e273f9b5e7ad1a7fa190a240501b08a29e0d55f8648126aa91002206027d94d88df37a14de6e98f6391c5d647df41369deddd886861fb1125bfd2d801210232a55257b495344474136eebb3408ad9dcb9e275fbbc0f81f8b2f67c031d049000000000" + "result": "020000000001011a63de3bdf9f82cd35021713a79af6e9dd49ddacbe32b5783ca01ae42546b42a0300000000ffffffff020000000000000000226a2021344a64b6120942909bf09e6397fd6cad305e4e73bca1dec78b18aedf4edbb9680b0a2701000000160014b16240e182fcfb3d1437b108a600036c78a7f8a202473044022074d2b3de539cbacb3d364cc992ee27c026a13ed1a8442e45ae2f7fcc4e7e02b30220649e9d695f1f028945cb10308c822475cb7b2c9df47370d143c14c5cc8567bcc01210268539bd755f8fa4f5aa15f95da1dcbbbd86d28c794673d670f60fb3e1040bbd100000000" } ``` @@ -14815,26 +14815,26 @@ Returns all mempool events { "result": [ { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "tx_index": 60 } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "memo": null, "quantity": 10000, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "status": "valid", - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "tx_index": 60, "asset_info": { "divisible": true, @@ -14847,19 +14847,19 @@ Returns all mempool events } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "CREDIT", "params": { - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -14871,19 +14871,19 @@ Returns all mempool events } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 193, - "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -14895,27 +14895,27 @@ Returns all mempool events } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727093479.718657, + "block_time": 1727095042.4665813, "btc_amount": 0, - "data": "020000000000000001000000000000271080c9435a1d17b078c22ab3b67935f7fbaa28e99e2f", + "data": "0200000000000000010000000000002710804efd3277d785851bf1bfb18ef3ebd9ea8732f765", "destination": "", "fee": 10000, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "tx_index": 60, - "utxos_info": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e:1", + "utxos_info": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "memo": null, "asset_info": { "divisible": true, @@ -14959,19 +14959,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "CREDIT", "params": { - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -14993,7 +14993,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e` (str, required) - The hash of the transaction to return + + tx_hash: `fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f` (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 @@ -15013,26 +15013,26 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "tx_index": 60 } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "memo": null, "quantity": 10000, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "status": "valid", - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "tx_index": 60, "asset_info": { "divisible": true, @@ -15045,19 +15045,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "CREDIT", "params": { - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -15069,19 +15069,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 193, - "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -15093,27 +15093,27 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727093479.718657, + "block_time": 1727095042.4665813, "btc_amount": 0, - "data": "020000000000000001000000000000271080c9435a1d17b078c22ab3b67935f7fbaa28e99e2f", + "data": "0200000000000000010000000000002710804efd3277d785851bf1bfb18ef3ebd9ea8732f765", "destination": "", "fee": 10000, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "tx_index": 60, - "utxos_info": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e:1", + "utxos_info": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "memo": null, "asset_info": { "divisible": true, diff --git a/counterparty-core/counterpartycore/lib/api/queries.py b/counterparty-core/counterpartycore/lib/api/queries.py index 7e99814fb6..c0afce9793 100644 --- a/counterparty-core/counterpartycore/lib/api/queries.py +++ b/counterparty-core/counterpartycore/lib/api/queries.py @@ -1536,6 +1536,15 @@ def get_balance_by_address_and_asset(db, address: str, asset: str): ) +def get_balance_by_asset_and_address(db, asset: str, address: str): + """ + Returns the balance 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) + + def get_bets( db, status: BetStatus = "open", cursor: str = None, limit: int = 100, offset: int = None ): diff --git a/counterparty-core/counterpartycore/lib/api/routes.py b/counterparty-core/counterpartycore/lib/api/routes.py index fc227c83c9..bdf0172943 100644 --- a/counterparty-core/counterpartycore/lib/api/routes.py +++ b/counterparty-core/counterpartycore/lib/api/routes.py @@ -96,7 +96,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_address_and_asset, + "/v2/assets//balances/
": queries.get_balance_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 34f4267131..833618ad76 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": 193, - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", - "block_time": 1727093475, - "previous_block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_time": 1727095038, + "previous_block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", "difficulty": 545259519, - "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", - "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", - "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", + "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", + "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", + "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", - "block_time": 1727093471, - "previous_block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", + "block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", + "block_time": 1727095033, + "previous_block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", "difficulty": 545259519, - "ledger_hash": "5852d56e0a2f012d49e15dcc8092fe5178fb1531a1bd326ac19c2c67e8785953", - "txlist_hash": "5ab6ca165b4d31dbfd0a32b8b80ae8a80544c9d0730426eaf3b993011a35fad0", - "messages_hash": "675b22fd17052c818d934beb63c5cc6f13b9f41f8cb99f671b6a6eba0d108804", + "ledger_hash": "f4b76f07514166cfabd35b7a2da674150970518d1c613f55e96eddbd99affaf0", + "txlist_hash": "d6781ffd27f34f36d002569e3fb9f70d46aec42a19059e55ac6a3e950c33e0c9", + "messages_hash": "82aa539e8b22a466290d78e0276fa997beab8c70a841cd1f1c5941772500745c", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", - "block_time": 1727093467, - "previous_block_hash": "1e78891fe58a2e15a13d98d52c73741c700e2b3b647c004bbd6c3630de502d3e", + "block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", + "block_time": 1727095029, + "previous_block_hash": "15b333419e3b9742692eeb0e5dcbbc123b0bc51e93ef5afa59e3467566caf68d", "difficulty": 545259519, - "ledger_hash": "6920554b19671fb917b2fa8b7aac09e3b0b9253020884226bf6847f50ea23f85", - "txlist_hash": "c9b0e524fbb98e4c38df0713f6f6665eef5e98cc10dfd1f3065c8418509bc7d4", - "messages_hash": "da9623970c1cfb9ca73b6cfdfa30c4deaaabcf060938e09240e4430281109399", + "ledger_hash": "1806c223db9e0630602852badf94b7487b3c6315bce8f305c31354cd74e960ed", + "txlist_hash": "1a83d74b83b692b715dea5270ac39c6824aa58e9f5a474f018f9daaff4fd3211", + "messages_hash": "07f3dd746c35a1a10b151ff73117c7aa3a1530bd686c33e2753e4211f8b434a8", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "1e78891fe58a2e15a13d98d52c73741c700e2b3b647c004bbd6c3630de502d3e", - "block_time": 1727093462, - "previous_block_hash": "08f347c0a8ec608432ef24c00b1b75e5bab12e9a9bff9232e1cfd94c5bd702fb", + "block_hash": "15b333419e3b9742692eeb0e5dcbbc123b0bc51e93ef5afa59e3467566caf68d", + "block_time": 1727095025, + "previous_block_hash": "131c3eb09ef4a1fb5a9b6b20241ec06f87662e2b8ef1a964e039a96020523d95", "difficulty": 545259519, - "ledger_hash": "2b276e6aec9a88c841ed7c1f6840420fcbfc1a4517346a6175c5e67dfee23821", - "txlist_hash": "0987e29ee5cac999f35d207c44ab61f37af864a55ad58164c9795d93afbf6737", - "messages_hash": "5e068890d3800e7de8433544a4ddf7d068e4b7448fd372ae8ee4c5b4d1d0248f", + "ledger_hash": "7fae07ae63846d69d3335162f6207534a432c0cccf4a99433d8e6a76522affb7", + "txlist_hash": "3be2ee8d28f225529efdf0dc294e36cbd4fbe28b12585d248f6bc7aeb50ca123", + "messages_hash": "548e424c951f748549371636b9496042d366811563c345d7e46e804ec5d24ecf", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "08f347c0a8ec608432ef24c00b1b75e5bab12e9a9bff9232e1cfd94c5bd702fb", - "block_time": 1727093458, - "previous_block_hash": "09999219b91d9f0a2141c7ccbf97cb0bb3518f3b2116061e96668f7d305e7b40", + "block_hash": "131c3eb09ef4a1fb5a9b6b20241ec06f87662e2b8ef1a964e039a96020523d95", + "block_time": 1727095020, + "previous_block_hash": "0e7d90a67c58b55067a8a1fedf031c4d5fe6e616c5739c5832c179189357078a", "difficulty": 545259519, - "ledger_hash": "913fe15c076fcc652b8fc75af7e2246ef769b71e988d6f6440f7484b1a235a0f", - "txlist_hash": "3c0222d5e6f24b1d03ab8469eae9afbf46d70b60d96784d2487414361d94e470", - "messages_hash": "a51af0063d7694114190c734fca50c0bc8405727866e72d762f235b141176142", + "ledger_hash": "18965373ea5ad513653401944234b465dcbf5681e0e083b48847e8a9db288909", + "txlist_hash": "5213ad907f4dae2e1e4de6f216c9bdeb0ea1895c63b69ac233b71b47a4027475", + "messages_hash": "482e0ad064e0485873002d4a555c8e59c1abcbdf6f8dff3a329d8762d9e8ec20", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", - "block_time": 1727093475, - "previous_block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_time": 1727095038, + "previous_block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", "difficulty": 545259519, - "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", - "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", - "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", + "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", + "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", + "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", - "block_time": 1727093475, - "previous_block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_time": 1727095038, + "previous_block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", "difficulty": 545259519, - "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", - "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", - "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", + "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", + "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", + "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", - "block_time": 1727093475, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_time": 1727095038, + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", + "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -139,11 +139,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "5852d56e0a2f012d49e15dcc8092fe5178fb1531a1bd326ac19c2c67e8785953", - "messages_hash": "675b22fd17052c818d934beb63c5cc6f13b9f41f8cb99f671b6a6eba0d108804", + "ledger_hash": "f4b76f07514166cfabd35b7a2da674150970518d1c613f55e96eddbd99affaf0", + "messages_hash": "82aa539e8b22a466290d78e0276fa997beab8c70a841cd1f1c5941772500745c", "transaction_count": 1, - "txlist_hash": "5ab6ca165b4d31dbfd0a32b8b80ae8a80544c9d0730426eaf3b993011a35fad0", - "block_time": 1727093471 + "txlist_hash": "d6781ffd27f34f36d002569e3fb9f70d46aec42a19059e55ac6a3e950c33e0c9", + "block_time": 1727095033 }, "tx_hash": null }, @@ -152,43 +152,43 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58 }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "status": "valid", - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, - "block_time": 1727093471, + "block_time": 1727095033, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -198,22 +198,22 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "XCP", "block_index": 192, - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -223,7 +223,7 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" } ], "next_cursor": 524, @@ -261,16 +261,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -280,57 +280,57 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" } ], "next_cursor": null, @@ -340,16 +340,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -361,20 +361,20 @@ }, { "block_index": 192, - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -382,20 +382,20 @@ }, { "block_index": 192, - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -409,16 +409,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "event": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -436,24 +436,24 @@ "result": [ { "type": "order", - "object_id": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "object_id": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", "block_index": 182, "confirmed": true, - "block_time": 1727093354 + "block_time": 1727094927 }, { "type": "order", - "object_id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "object_id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", "block_index": 182, "confirmed": true, - "block_time": 1727093354 + "block_time": 1727094927 }, { "type": "order_match", - "object_id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "object_id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", "block_index": 182, "confirmed": true, - "block_time": 1727093354 + "block_time": 1727094927 } ], "next_cursor": null, @@ -463,13 +463,13 @@ "result": [ { "tx_index": 56, - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "block_index": 190, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "status": "valid", "confirmed": true, - "block_time": 1727093462 + "block_time": 1727095025 } ], "next_cursor": null, @@ -479,15 +479,15 @@ "result": [ { "tx_index": 59, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -505,14 +505,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", + "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -527,7 +527,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093340, + "block_time": 1727094911, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -539,10 +539,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -550,7 +550,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "divisible": true, "asset_longname": null, @@ -563,10 +563,10 @@ }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -574,11 +574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -587,10 +587,10 @@ }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -598,11 +598,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -618,27 +618,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", - "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "last_status_tx_hash": null, - "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -653,7 +653,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727093274, + "block_time": 1727094846, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,16 +672,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "fee_paid_normalized": "0.00600000" } ], @@ -692,17 +692,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", - "block_time": 1727093475, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_time": 1727095038, + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", + "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -725,23 +725,23 @@ }, { "tx_index": 58, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e", - "block_time": 1727093471, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", + "block_time": 1727095033, + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "048048679a4ad46ccfb39129094fc4ea5ad1385a05f5017377656570206d7920617373657473", + "data": "0480b16240e182fcfb3d1437b108a600036c78a7f8a2017377656570206d7920617373657473", "supported": true, - "utxos_info": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3:1", + "utxos_info": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "flags": 1, "memo": "sweep my assets" } @@ -754,53 +754,53 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802ae0ca086d281f046afa5927e69de29e640e6a6280c9435a1d17b078c22ab3b67935f7fbaa28e99e2f8048679a4ad46ccfb39129094fc4ea5ad1385a05f5400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380cd4cce463e7e46e89ecf1c25aa143c8a724f591a804efd3277d785851bf1bfb18ef3ebd9ea8732f76580b16240e182fcfb3d1437b108a600036c78a7f8a2400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "9b45e6b5a1c4c809c36d2765debd08b36930e60be858e9f6372a8080e0724c45", + "hash": "61b89d289ff7cbdd8b237e577bab96e2520a059f2770a216d078c1268219b148", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "bf4d0c584aeecf193a5b9ba2aed7d76c9139f4816d3f605a0471dcbf5af932f9", + "hash": "4bcc88c6869c2c03133df22767e60404baeee3f5138edeebb29dabd3a798fdce", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "cbcd6b10cefe05ebe1c397fdd16d384eb348204a8b330adb0194a79b6233293b", + "hash": "2782f40f10afefdc143f14d357cfe34f944494aa373833b9832289ba2143f8f8", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "3251ba633fdcfd3f7b2e78ba1975ee862855f6b7609928d0cddb78dbfcf1cb5c", + "hash": "5aa5f588de814d302d41d9f100b7b3a542e1ec2050ecb18b2fc60ed9374dd7e2", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "ed8aa0948f7b1c3bfbf4bb63b59660435dd68655149f32ddb0387dbc360f2785", + "hash": "a2e429abf0729e4b98b996a0f43844e6b542e00084adc2ecb36dfe6e9340793b", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "c0f68c660bfe27938ca58d8e8a9f7c0b35207049406140faa8c6148217e0679a", + "hash": "75086d0ba9bc241f39567d71adaed566064def254fc38b7a103fdb3bdd394947", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -810,38 +810,38 @@ "vout": [ { "value": 1000, - "script_pub_key": "512102aa559bfd9be7b031c2f631c1657ce98314d1787a2f460159ae0e5307a6f8c4822102cb741c6504e51506bd91dac0618348856305296558a2fcee8db544bedf3c0e972102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53ae" + "script_pub_key": "51210394992133fa4f244f3fa68c4e576be848acfb88d51ff9533c00b4f5359bba4e5e2102d1259a6447c1b3481545c888843b4977bf8551a62b304b47bb60f551654996ab2102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853ae" }, { "value": 1000, - "script_pub_key": "512103aa559bfd9be7b031c246a0ebec19cda3466d683f2ed9bb0089eec428fd475e7c2102a1169cac47bf08380de918ead23531b5b4fe834db13cd36ee5d2def40b50c10f2102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53ae" + "script_pub_key": "51210294992133fa4f244f3f98987a66ae0286e9a98e340fc5dc202518ebc4d413953d2103883f1a2abaf3c4b690c0d3793b8ac781745cbb2119c72ec72a02b5b0e7b56d6a2102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853ae" }, { "value": 1000, - "script_pub_key": "5121029c559bfd9be7b031c2f525c2e55609491cbc50652b2cfb0089e8cee5389cca672102a1169cac47bf08110de918ead23531b094fe834db13cd36ec5d2def40b50c1582102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53ae" + "script_pub_key": "512103a2992133fa4f244f3fa5984dd7a6a486eac5f693f7679c20251ee10911c801c22103883f1a2abaf3c49f90c0d3793b8ac784545cbb2119c72ec70a02b5b0e7b56db82102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853ae" }, { "value": 29999987000, - "script_pub_key": "0014a1d4c53a2839a34cbf7e8ecd9810a21633992fda" + "script_pub_key": "0014e829a0216c4a51744db91c43f5bb56f5f150753c" } ], "vtxinwit": [ - "3044022028371896db515c37441fbb575a0a15e0fcd0ffecb926a62fa5df412a28996b05022061816598d6c0274acfec2e328537ddda3bfd780089e958b2fe14727628a8664c01", - "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", - "3043021f4196bfc187a01dd17c59cd4d5c394d58814276e9bf02999abbc2d68921deea0220788b51ed37ea5813ae43ec23680d6194a65c2f54173f2713bd37248581bafdef01", - "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", - "3044022069aa3b9d7a5b1fe5a742892d00f858ed621e5deb9afe8e2a6f2587b2966b2c50022003139f22e955b397de240176a2a4b9ffb82ab34924d1a5da67ed4ec8949cbea701", - "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", - "304402205c19d27abd5de29b4c40ff39ab29996219b4243930136f9d9093067e9afd600c022044999ed8319ea9dbffdf7caffb934705e9b0ffbd48545f2dd5e8015cc5be9b7701", - "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", - "304402201a16d16c85613f55999ca43495007ac797d6f4674c41e038984e0dd5b73df505022006aa7c119339424385c394f3001e643089611963d6b99ef501b5ad8897d4494f01", - "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f", - "304402204b35f2e089cb94fdaedff7efc9433fa1961ed0ee8b817cfa21027d1ad7be5a2102201533b20b40e453cbcb93ec79262f8d81d8af12a8e85fc1477a4dfb63e213bb1c01", - "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f" + "30440220123c8737294552558203cac285693f15a108d3966e66c75a6617d1f2d56c476402204150203a1a74e8ec140894ef2572bebeee6aa8bbdb14f21a58a69ad077b1ea4501", + "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", + "3044022062494e5172ff51aed3620115b80977d636ceda870a1b9a8025dfa760f411d3b102201d180e5181694e7ab7b23cdcad25e4948327307445562a4bf825aaebd5f6393f01", + "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", + "304402203db0029f1092b6d9d5a0fd36008b58a3043ba4c3443e4bf3bb766bbfa402aec902201763bdc7755cebedcdd4a88735d86b57aa7679fa52b527d7d4d231f6c24e52d201", + "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", + "3044022033a7f73562ffc5320e3efc0e2f5dc31764ff8fb17bfbb1c71b05ca474d552554022037f9509621d4371aad20f09681dbac89f7066806b53f778fe07f9a9dd80aca9b01", + "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", + "304402207a6523b190d5b118122e7aedbe74c681320dc810b2bb09bf53f7343690e813be02201af2265792a6ac960e9a644f75fee65a2126bc6732168759f1cc50201e04dc3f01", + "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", + "3044022074bd570d18e84ca337e54a3322b7b804f038a0f70704e794962ee9a23779787502205ca00f90f23fc252c9efdbd6915fbfaf478618f697e1420162f9acc4d5ee244b01", + "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08" ], "lock_time": 0, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", - "tx_id": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4" + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_id": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d" }, "unpacked_data": { "message_type": "mpma_send", @@ -849,14 +849,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -864,7 +864,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -884,18 +884,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080c9435a1d17b078c22ab3b67935f7fbaa28e99e2f", + "data": "0200000000000000010000000000002710804efd3277d785851bf1bfb18ef3ebd9ea8732f765", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "a1cd07ab813f3082c3e6d4ed351940efb05c24840e52be969992d7213fe3df61", + "hash": "b6d40817627c585579c9c43ddb072e77f99d3626deca5b52451fd86ab5938203", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -905,20 +905,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e6acf57add293d4881371f3c9430472f06964ebac1ab59d31e0a6dbba917ab2a118c0dc3baadbff5b3b888eaa408f" + "script_pub_key": "6a2ed944a4bcea26c59d5b101769dda1f522bf6af06606e2baf7ba99e033685f103913435e82889644e3602d799e48ad" }, { "value": 4999955000, - "script_pub_key": "001448679a4ad46ccfb39129094fc4ea5ad1385a05f5" + "script_pub_key": "0014b16240e182fcfb3d1437b108a600036c78a7f8a2" } ], "vtxinwit": [ - "304402205bce2a20a4f2b0f355d5c1ada689ee23bcedb6f3ef90b2fa53e565b04ced786b022043b0469b6d80599a37f8c77dd8ceadda1a1e103cc8ecc50d94a32d18ac089f3101", - "0232a55257b495344474136eebb3408ad9dcb9e275fbbc0f81f8b2f67c031d0490" + "30440220500964d371a2df466c8cb65ee0a04c9016aec3791c5fcb51b4b692e3e39ff7c50220202faa7a62a2d622bfba780b2f6be3f0a225d13e26ce4f8da5b3cecc617c5cd201", + "0268539bd755f8fa4f5aa15f95da1dcbbbd86d28c794673d670f60fb3e1040bbd1" ], "lock_time": 0, - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", - "tx_id": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e" + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_id": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f" }, "unpacked_data": { "message_type": "enhanced_send", @@ -926,7 +926,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "memo": null, "asset_info": { "divisible": true, @@ -953,17 +953,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", - "block_time": 1727093475, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_time": 1727095038, + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", + "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -988,17 +988,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", - "block_time": 1727093475, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_time": 1727095038, + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", + "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1027,47 +1027,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58 }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "status": "valid", - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, - "block_time": 1727093471, + "block_time": 1727095033, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -1077,24 +1077,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "XCP", "block_index": 192, - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -1104,36 +1104,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 } ], "next_cursor": 523, @@ -1146,47 +1146,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58 }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "status": "valid", - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, - "block_time": 1727093471, + "block_time": 1727095033, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -1196,24 +1196,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "XCP", "block_index": 192, - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -1223,36 +1223,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 } ], "next_cursor": 523, @@ -1262,10 +1262,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -1273,7 +1273,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "divisible": true, "asset_longname": null, @@ -1286,10 +1286,10 @@ }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1297,11 +1297,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -1310,10 +1310,10 @@ }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1321,11 +1321,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -1341,27 +1341,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", - "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "last_status_tx_hash": null, - "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -1376,7 +1376,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727093274, + "block_time": 1727094846, "asset_info": { "divisible": true, "asset_longname": null, @@ -1397,16 +1397,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -1416,63 +1416,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 } ], "next_cursor": null, @@ -1484,16 +1484,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -1503,63 +1503,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 } ], "next_cursor": null, @@ -1572,7 +1572,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1582,7 +1582,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -1593,7 +1593,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1603,7 +1603,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -1614,7 +1614,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1624,7 +1624,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -1635,7 +1635,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1645,7 +1645,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -1656,7 +1656,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1666,7 +1666,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -1680,17 +1680,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "block_index": 191, - "block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", - "block_time": 1727093467, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", + "block_time": 1727095029, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043:1", + "utxos_info": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1726,23 +1726,23 @@ }, { "tx_index": 56, - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "block_index": 190, - "block_hash": "1e78891fe58a2e15a13d98d52c73741c700e2b3b647c004bbd6c3630de502d3e", - "block_time": 1727093462, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "15b333419e3b9742692eeb0e5dcbbc123b0bc51e93ef5afa59e3467566caf68d", + "block_time": 1727095025, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "data": "465cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "supported": true, - "utxos_info": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf:1", + "utxos_info": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "status": "valid" } }, @@ -1750,17 +1750,17 @@ }, { "tx_index": 55, - "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "block_index": 189, - "block_hash": "08f347c0a8ec608432ef24c00b1b75e5bab12e9a9bff9232e1cfd94c5bd702fb", - "block_time": 1727093458, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "131c3eb09ef4a1fb5a9b6b20241ec06f87662e2b8ef1a964e039a96020523d95", + "block_time": 1727095020, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82:1", + "utxos_info": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1796,17 +1796,17 @@ }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "block_hash": "09999219b91d9f0a2141c7ccbf97cb0bb3518f3b2116061e96668f7d305e7b40", - "block_time": 1727093444, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "0e7d90a67c58b55067a8a1fedf031c4d5fe6e616c5739c5832c179189357078a", + "block_time": 1727095016, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802ae0ca086d281f046afa5927e69de29e640e6a6280c9435a1d17b078c22ab3b67935f7fbaa28e99e2f8048679a4ad46ccfb39129094fc4ea5ad1385a05f5400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380cd4cce463e7e46e89ecf1c25aa143c8a724f591a804efd3277d785851bf1bfb18ef3ebd9ea8732f76580b16240e182fcfb3d1437b108a600036c78a7f8a2400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4:0", + "utxos_info": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1814,14 +1814,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -1829,7 +1829,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1848,25 +1848,25 @@ }, { "tx_index": 51, - "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", + "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", "block_index": 185, - "block_hash": "3379d8745eedf0e59561b011b4fa1b60839abae63aa5e6fe901c8fd353255b44", - "block_time": 1727093431, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "4a9667cee3f15e9c8483631f9b833f99a1c792e7a9edb176af5ef5397aaff5a6", + "block_time": 1727095004, + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "btc_amount": 2000, "fee": 10000, - "data": "0bc5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c11d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "data": "0b0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "supported": true, - "utxos_info": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b:0", + "utxos_info": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", - "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", - "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "status": "valid" } }, @@ -1895,11 +1895,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "status": "open", - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "tx_index": 57, - "block_time": 1727093467, + "block_time": 1727095029, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1923,24 +1923,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "block_index": 191, - "block_time": 1727093467 + "block_time": 1727095029 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "block_index": 191, - "event": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "event": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727093467, + "block_time": 1727095029, "asset_info": { "divisible": true, "asset_longname": null, @@ -1950,25 +1950,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "block_index": 191, - "block_time": 1727093467 + "block_time": 1727095029 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", + "block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", "block_index": 191, - "block_time": 1727093467, + "block_time": 1727095029, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "tx_index": 57, - "utxos_info": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043:1", + "utxos_info": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -2000,40 +2000,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "block_index": 191, - "block_time": 1727093467 + "block_time": 1727095029 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "status": "valid", - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "tx_index": 56, - "block_time": 1727093462 + "block_time": 1727095025 }, - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "block_index": 190, - "block_time": 1727093462 + "block_time": 1727095025 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727093462, + "block_time": 1727095025, "asset_info": { "divisible": true, "asset_longname": null, @@ -2043,9 +2043,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "block_index": 190, - "block_time": 1727093462 + "block_time": 1727095025 } ], "next_cursor": 506, @@ -2054,17 +2054,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "memo": null, "quantity": 10000, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "status": "valid", - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "tx_index": 60, "asset_info": { "divisible": true, @@ -2077,19 +2077,19 @@ } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "CREDIT", "params": { - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -2101,19 +2101,19 @@ } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 193, - "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -2125,27 +2125,27 @@ } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727093479.718657, + "block_time": 1727095042.4665813, "btc_amount": 0, - "data": "020000000000000001000000000000271080c9435a1d17b078c22ab3b67935f7fbaa28e99e2f", + "data": "0200000000000000010000000000002710804efd3277d785851bf1bfb18ef3ebd9ea8732f765", "destination": "", "fee": 10000, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "tx_index": 60, - "utxos_info": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e:1", + "utxos_info": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "memo": null, "asset_info": { "divisible": true, @@ -2167,7 +2167,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2175,14 +2175,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2190,14 +2190,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2212,7 +2212,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2220,7 +2220,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2232,7 +2232,7 @@ }, "/v2/addresses/
/balances/": { "result": { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2251,16 +2251,16 @@ "result": [ { "block_index": 190, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093462, + "block_time": 1727095025, "asset_info": { "divisible": true, "asset_longname": null, @@ -2272,16 +2272,16 @@ }, { "block_index": 182, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "event": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093354, + "block_time": 1727094927, "asset_info": { "divisible": true, "asset_longname": null, @@ -2293,20 +2293,20 @@ }, { "block_index": 159, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", + "event": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093340, + "block_time": 1727094911, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2314,20 +2314,20 @@ }, { "block_index": 156, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "02e0dc7bbbbc4974003b5a437a68b7e2cbfacb3747f4e8d64d60242fa4478372", + "event": "0a6900f413f8095625003b8d59bebdc8af81dc18dbf66310ff9229b879d53d0a", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093327, + "block_time": 1727094888, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2339,16 +2339,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", + "event": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", "tx_index": 38, - "utxo": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a:1", - "utxo_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "utxo": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa:1", + "utxo_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "confirmed": true, - "block_time": 1727093305, + "block_time": 1727094866, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2362,16 +2362,16 @@ "result": [ { "block_index": 191, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "event": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093467, + "block_time": 1727095029, "asset_info": { "divisible": true, "asset_longname": null, @@ -2383,16 +2383,16 @@ }, { "block_index": 189, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093458, + "block_time": 1727095020, "asset_info": { "divisible": true, "asset_longname": null, @@ -2404,16 +2404,16 @@ }, { "block_index": 188, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "event": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "divisible": true, "asset_longname": null, @@ -2425,20 +2425,20 @@ }, { "block_index": 188, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "event": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2446,16 +2446,16 @@ }, { "block_index": 183, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "event": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093423, + "block_time": 1727094996, "asset_info": { "divisible": true, "asset_longname": null, @@ -2478,9 +2478,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "000e98b21330a957d503936a5a5b4a4a45befd508a16c30ed1912d21d0020d6f", + "tx_hash": "30e595f74d9b77faf4d326988b5fa49da4919c874be0dbbaf37a0f5efc4a6769", "block_index": 137, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2488,7 +2488,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727093226, + "block_time": 1727094799, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2499,14 +2499,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "f67545e10ba5017c416d24a9cf8e3cc34a18035b0d55526a01c26fa48e9d5588", + "tx_hash": "ecafab150e29b2f11e67fa108a503e3a577e8e583993702da34fe10940501e86", "block_index": 112, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1727093122, + "block_time": 1727094685, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2518,10 +2518,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2529,7 +2529,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "divisible": true, "asset_longname": null, @@ -2542,10 +2542,10 @@ }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2553,11 +2553,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2566,10 +2566,10 @@ }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2577,11 +2577,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2590,10 +2590,10 @@ }, { "tx_index": 38, - "tx_hash": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", + "tx_hash": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", "block_index": 151, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a:1", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2601,11 +2601,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093305, + "block_time": 1727094866, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2614,10 +2614,10 @@ }, { "tx_index": 35, - "tx_hash": "a5103a244743dcbecce27787d68d30f8c54303e944677e41a7c82e166bf295e1", + "tx_hash": "b7a064b83eeb86730a5ea9846eb110e4603a852e6aed9ff90a9f42243482b416", "block_index": 148, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "1925463e88ee34000a3ea11c42581ce890f717f7eba97775d5f17c143f29364d:1", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "0c869ae1b35c7a20c2384369babb94e31d003833139318542392ce07c372f378:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2625,11 +2625,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093293, + "block_time": 1727094855, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2644,10 +2644,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "c3e06075fdd1fb6f1f7cc6564239be9ec52c5dc566d6dd823aa0af0d61f900dd", + "tx_hash": "2ab44625e41aa03c78b532beacdd49dde9f69aa713170235cd829fdf3bde631a", "block_index": 150, - "source": "144554b15a22c114b9c5521d0d24a3c04f73a8b41253e822cc95199c1d067299:0", - "destination": "bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x", + "source": "28492d2ebdcfa146b86f026a77270b902bd2a4ee130b1cb59bd4b51a8eabf1d4:0", + "destination": "bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2655,11 +2655,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093301, + "block_time": 1727094862, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2674,10 +2674,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2685,11 +2685,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2698,10 +2698,10 @@ }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2709,11 +2709,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2722,10 +2722,10 @@ }, { "tx_index": 38, - "tx_hash": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", + "tx_hash": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", "block_index": 151, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a:1", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2733,11 +2733,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093305, + "block_time": 1727094866, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2746,10 +2746,10 @@ }, { "tx_index": 35, - "tx_hash": "a5103a244743dcbecce27787d68d30f8c54303e944677e41a7c82e166bf295e1", + "tx_hash": "b7a064b83eeb86730a5ea9846eb110e4603a852e6aed9ff90a9f42243482b416", "block_index": 148, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "1925463e88ee34000a3ea11c42581ce890f717f7eba97775d5f17c143f29364d:1", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "0c869ae1b35c7a20c2384369babb94e31d003833139318542392ce07c372f378:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2757,11 +2757,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093293, + "block_time": 1727094855, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2776,10 +2776,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "c3e06075fdd1fb6f1f7cc6564239be9ec52c5dc566d6dd823aa0af0d61f900dd", + "tx_hash": "2ab44625e41aa03c78b532beacdd49dde9f69aa713170235cd829fdf3bde631a", "block_index": 150, - "source": "144554b15a22c114b9c5521d0d24a3c04f73a8b41253e822cc95199c1d067299:0", - "destination": "bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x", + "source": "28492d2ebdcfa146b86f026a77270b902bd2a4ee130b1cb59bd4b51a8eabf1d4:0", + "destination": "bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2787,11 +2787,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093301, + "block_time": 1727094862, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -2806,9 +2806,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2817,7 +2817,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2827,7 +2827,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -2843,9 +2843,9 @@ }, { "tx_index": 30, - "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", + "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", "block_index": 144, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2854,7 +2854,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2864,7 +2864,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093265, + "block_time": 1727094839, "asset_info": { "divisible": true, "asset_longname": null, @@ -2885,9 +2885,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 30, - "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", + "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", "block_index": 144, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2896,7 +2896,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2906,7 +2906,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093265, + "block_time": 1727094839, "asset_info": { "divisible": true, "asset_longname": null, @@ -2926,19 +2926,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", + "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2946,7 +2946,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2961,7 +2961,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -2975,19 +2975,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", + "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", "block_index": 140, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2995,7 +2995,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3010,7 +3010,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093239, + "block_time": 1727094812, "asset_info": { "divisible": true, "asset_longname": null, @@ -3030,19 +3030,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", + "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3050,7 +3050,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3065,7 +3065,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -3079,19 +3079,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", + "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", "block_index": 140, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3099,7 +3099,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3114,7 +3114,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093239, + "block_time": 1727094812, "asset_info": { "divisible": true, "asset_longname": null, @@ -3134,19 +3134,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", + "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3154,7 +3154,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3169,7 +3169,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -3183,19 +3183,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", + "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", "block_index": 140, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3203,7 +3203,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3218,7 +3218,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093239, + "block_time": 1727094812, "asset_info": { "divisible": true, "asset_longname": null, @@ -3238,19 +3238,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", + "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3258,7 +3258,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3273,7 +3273,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -3287,19 +3287,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", + "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", "block_index": 140, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3307,7 +3307,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3322,7 +3322,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093239, + "block_time": 1727094812, "asset_info": { "divisible": true, "asset_longname": null, @@ -3341,16 +3341,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "fee_paid_normalized": "0.00600000" } ], @@ -3361,14 +3361,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", + "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -3383,20 +3383,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093340, + "block_time": 1727094911, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "87c03f2279383a3df0081f24a9f1fa5c0a0871379ef14a982ab69879184b38f7", + "tx_hash": "766ce7ba7a212e1b43cbe3df259ab0cd0bf5579c5cf1c4c27ceb05911f1f7109", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -3411,20 +3411,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727093335, + "block_time": 1727094897, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "8545fa4b393d2af3b1304014da38dd6988b8ad70e7eb5942312966346dbf5c1c", + "tx_hash": "4c63b42edf0cfbe37a429815c6724cfea57503fe580f8d9022c3a2bc16e8db38", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -3439,20 +3439,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093331, + "block_time": 1727094893, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "02e0dc7bbbbc4974003b5a437a68b7e2cbfacb3747f4e8d64d60242fa4478372", + "tx_hash": "0a6900f413f8095625003b8d59bebdc8af81dc18dbf66310ff9229b879d53d0a", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -3467,20 +3467,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093327, + "block_time": 1727094888, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "a84da37d8e8ad79645d7780708d7b97548eca8abbe86d0adaa93df726eef2c00", + "tx_hash": "81aca02b207fc43014326338aa1faa03766d072cb1f86dc4db356fad27fff5fc", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -3495,7 +3495,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093278, + "block_time": 1727094850, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -3509,8 +3509,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false, "supply": 10000000000, @@ -3518,16 +3518,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727093327, - "last_issuance_block_time": 1727093335, + "first_issuance_block_time": 1727094888, + "last_issuance_block_time": 1727094897, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false, "supply": 100000000000, @@ -3535,16 +3535,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727093278, - "last_issuance_block_time": 1727093278, + "first_issuance_block_time": 1727094850, + "last_issuance_block_time": 1727094850, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "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": 1727093218, - "last_issuance_block_time": 1727093222, + "first_issuance_block_time": 1727094790, + "last_issuance_block_time": 1727094794, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "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": 1727093201, - "last_issuance_block_time": 1727093214, + "first_issuance_block_time": 1727094764, + "last_issuance_block_time": 1727094786, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "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": 1727093180, - "last_issuance_block_time": 1727093197, + "first_issuance_block_time": 1727094743, + "last_issuance_block_time": 1727094760, "supply_normalized": "0.00000000" } ], @@ -3598,17 +3598,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "block_index": 191, - "block_hash": "269fad82fd89d724f3cc62de8d4b398d776c90f5a1740e5a87ff0f56f93e01dd", - "block_time": 1727093467, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", + "block_time": 1727095029, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043:1", + "utxos_info": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3644,23 +3644,23 @@ }, { "tx_index": 56, - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "block_index": 190, - "block_hash": "1e78891fe58a2e15a13d98d52c73741c700e2b3b647c004bbd6c3630de502d3e", - "block_time": 1727093462, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "15b333419e3b9742692eeb0e5dcbbc123b0bc51e93ef5afa59e3467566caf68d", + "block_time": 1727095025, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "data": "465cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "supported": true, - "utxos_info": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf:1", + "utxos_info": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "status": "valid" } }, @@ -3668,17 +3668,17 @@ }, { "tx_index": 55, - "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "block_index": 189, - "block_hash": "08f347c0a8ec608432ef24c00b1b75e5bab12e9a9bff9232e1cfd94c5bd702fb", - "block_time": 1727093458, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "131c3eb09ef4a1fb5a9b6b20241ec06f87662e2b8ef1a964e039a96020523d95", + "block_time": 1727095020, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82:1", + "utxos_info": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3714,17 +3714,17 @@ }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "block_hash": "09999219b91d9f0a2141c7ccbf97cb0bb3518f3b2116061e96668f7d305e7b40", - "block_time": 1727093444, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "0e7d90a67c58b55067a8a1fedf031c4d5fe6e616c5739c5832c179189357078a", + "block_time": 1727095016, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802ae0ca086d281f046afa5927e69de29e640e6a6280c9435a1d17b078c22ab3b67935f7fbaa28e99e2f8048679a4ad46ccfb39129094fc4ea5ad1385a05f5400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380cd4cce463e7e46e89ecf1c25aa143c8a724f591a804efd3277d785851bf1bfb18ef3ebd9ea8732f76580b16240e182fcfb3d1437b108a600036c78a7f8a2400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4:0", + "utxos_info": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3732,14 +3732,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -3747,7 +3747,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3766,17 +3766,17 @@ }, { "tx_index": 49, - "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", "block_index": 183, - "block_hash": "1521ba188fec316a932935d167f999621868384b4e6e557b83ea37056300136b", - "block_time": 1727093423, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "block_hash": "4a143f2552233e509a13de0b3000486448be60508bcff70deab46b4f502d58a9", + "block_time": 1727094996, + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1:1", + "utxos_info": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3818,20 +3818,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", + "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", "block_index": 153, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727093314, + "block_time": 1727094875, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -3853,9 +3853,9 @@ "result": [ { "tx_index": 47, - "tx_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "tx_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", "block_index": 182, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3870,7 +3870,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727093354, + "block_time": 1727094927, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3896,9 +3896,9 @@ }, { "tx_index": 49, - "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", "block_index": 186, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3913,7 +3913,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727093435, + "block_time": 1727095009, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3939,9 +3939,9 @@ }, { "tx_index": 55, - "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "block_index": 190, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3956,7 +3956,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727093462, + "block_time": 1727095025, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3982,9 +3982,9 @@ }, { "tx_index": 57, - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "block_index": 191, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3999,7 +3999,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727093467, + "block_time": 1727095029, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4030,10 +4030,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", + "tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", "tx_index": 22, "block_index": 135, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4058,13 +4058,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727093218 + "block_time": 1727094790 }, { - "tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", + "tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", "tx_index": 18, "block_index": 131, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4089,13 +4089,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727093201 + "block_time": 1727094764 }, { - "tx_hash": "7a9102f321f0d0fa53fc2a72888a63e7fb5ade06068f5a3401438b09db2d6ed7", + "tx_hash": "801ce5c24ea2170c2937ab2d624deefa78877919ee48f5b5d5134b4b1c1d545e", "tx_index": 14, "block_index": 130, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4120,13 +4120,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727093197 + "block_time": 1727094760 }, { - "tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "tx_index": 10, "block_index": 125, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4151,7 +4151,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727093176 + "block_time": 1727094739 } ], "next_cursor": null, @@ -4160,127 +4160,127 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "5cadef994ef817048b024cb011579c3e4b9baa49462417190150f05a34a9bcf9", + "tx_hash": "cfa6d447a379922dd0da484f07f975e5f68176b84d2aee0d31fa0acec398bb72", "tx_index": 23, "block_index": 136, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "fairminter_tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "fairminter_tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093222, + "block_time": 1727094794, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } }, { - "tx_hash": "50b750262a123626672ee6285a36b9d1836a5da7980de9ed42573c516dc0bfba", + "tx_hash": "8d1c0def2f1a5e730424a9ba152df29d054307de1e3349b107a4d38bbcda226b", "tx_index": 21, "block_index": 134, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "fairminter_tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "fairminter_tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093214, + "block_time": 1727094786, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } }, { - "tx_hash": "b41d216bd5e86231e03bb51e877b156c421b62f114c085a1eb153435620f9d53", + "tx_hash": "992ed3ec1967242742fe7ddde03a6e116c2b4bc20a039f3753bc954c69bac92c", "tx_index": 20, "block_index": 133, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "fairminter_tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "fairminter_tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093209, + "block_time": 1727094772, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } }, { - "tx_hash": "e205c0212c92af890ba9019c1d3aaf5fd70bf2b246dd36187c9175c8c08ab3fd", + "tx_hash": "47c564253e148783c32ae4ae2224e3656a91ade6afa6a567038bd10355f3ba0b", "tx_index": 19, "block_index": 132, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "fairminter_tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "fairminter_tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093205, + "block_time": 1727094767, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } }, { - "tx_hash": "6e4c49dc83facc1956475e1dbf513058755325acbe2974c556d7f09f846f52b4", + "tx_hash": "b665264a50495d9162549493a10fd88af7eae43d85bfb5fd1422bb2494564799", "tx_index": 15, "block_index": 127, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "fairminter_tx_hash": "7a9102f321f0d0fa53fc2a72888a63e7fb5ade06068f5a3401438b09db2d6ed7", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "fairminter_tx_hash": "801ce5c24ea2170c2937ab2d624deefa78877919ee48f5b5d5134b4b1c1d545e", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093184, + "block_time": 1727094747, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } }, { - "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", + "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093167, + "block_time": 1727094730, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } @@ -4292,22 +4292,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", + "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093167, + "block_time": 1727094730, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } @@ -4322,7 +4322,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4334,7 +4334,7 @@ "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "020000000001011b513f6fdd1f7df388cb3a662c9bedb782eedb095ea0717969b0849aacf25b0f00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff0200000000000000002b6a296186e4ea78104e3725bdd638b6a278dc81b803953a3f54490b5f7f103cc616c8c15c878889480c4e7a3bb1052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "020000000001012753781abf3ef2fce372e23bccc466fa67e142098a3631c85e550e2d463af6b400000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff0200000000000000002b6a295c95cb43452450545471a142695239a49e999afcd68e45ef43302f0a84d7929eb69ccc07e2eedc7d873bb1052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4347,16 +4347,16 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956" + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2" }, "name": "btcpay", - "data": "434e5452505254590bc5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c112946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "data": "434e5452505254590b0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e761268029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999975897, "btc_fee": 21103, - "rawtransaction": "020000000001019f89fd6211d359d6f693f7d7ef3662fe29b15b263c4ae05643dec92cc201d49300000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff03b80b000000000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda00000000000000004b6a49fd74939129837c7351989251869f5391885030a789aec69c3f96482bad7dd2fc7f96b6faf69b54d04401cf6ae44b7e798d52fdcd810dddbfe182e155a7b279db7850fb49f596aebe8ed993052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "020000000001013707d42a6b3e09f63cab8dbcecd052e284d9b3f7d327785934ad1f6e903b2a7e00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff03b80b000000000000160014e829a0216c4a51744db91c43f5bb56f5f150753c00000000000000004b6a491b04cb4beea64c20d9040b3269732068e1dcacb0bb0b9a234093062e5fec48637b40ad0c4003a2c9ed173e13ca3decc91a01e5f36f215591467470ebb8430f9a981b32fb0c5b905959d993052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4369,7 +4369,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "quantity": 1000, "overburn": false }, @@ -4379,22 +4379,22 @@ "btc_out": 1000, "btc_change": 4999983584, "btc_fee": 15416, - "rawtransaction": "020000000001016f4ab9ebc13fb9781f630b0cd5e2ccd0aefb2224adf72cf64d75e941ee8748aa00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000" + "rawtransaction": "02000000000101935395f62de465450f628d51b71eb929561cabadff4d44bc9648b01a4737810600000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "offer_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043" + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "offer_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d" }, "name": "cancel", - "data": "434e545250525459467961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "data": "434e545250525459460d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "020000000001010ea8b0ffa527d2efd792ef5af53d6740d3bf55df53d42241607204281aa8aa0e00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff0200000000000000002b6a292fc8c1ce801333c0ababbf752eb6c579710b0622f4c027a7a0ba41d379d03471a77e5f1c3b80e5bdc23bb1052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "020000000001011ba4bc1fe795234b95f9f58de52278906d7a3114f88f52713f801f1522de429100000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff0200000000000000002b6a29007801a76b6587fc2ba7aa3ae94f5b957d1940c47504a0b60ac23ec1cf99a8587cee37c1669b2472253bb1052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4407,7 +4407,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4426,7 +4426,7 @@ "btc_out": 0, "btc_change": 4999984036, "btc_fee": 15964, - "rawtransaction": "020000000001010a24bbbb8016c85b33229ee3792609be59352c6eaa21efbbc7896a322a1c37ce00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000226a202b516871e2539518ca5ef8444a9d50936c4acb3716ce16fa69704e657c9948a9a4b3052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "020000000001014a8583cd5197ec1748bc59ca810479021ff53c793b359686426cb25dfb1aeab700000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000226a207da825ccda30cbec0f9cdcf4ae73541389f0c719d881442587a86269e4c2faeba4b3052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4439,7 +4439,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", + "source": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4463,7 +4463,7 @@ "btc_out": 0, "btc_change": 4949953351, "btc_fee": 16649, - "rawtransaction": "020000000001018004f2aa7e02c301909cca5e3b8faf7d8d4574233122a61c538904e39d2e238002000000160014068d236984cf5e62eb7f6628e63d0081fa0ed227ffffffff0200000000000000002c6a2ac9c82425abfcc58faac5bb5dc65eac3e618a754de7e312b450901686d49ea7b3b36c819ec2791d75e4eb474b0a2701000000160014068d236984cf5e62eb7f6628e63d0081fa0ed22702000000000000", + "rawtransaction": "02000000000101e94a3e476d38d0ee40ef150171d3aac1078b23fccc16429d6f881d8eea88bd8b0200000016001464aa4081fb72662d398468df64ae2c8247e1ad0fffffffff0200000000000000002c6a2a46a59187955d441c02c9f0f35b589fb10bad5dfaa9e474f70e73df105466b802c1bf429ea33f3dc5933c474b0a270100000016001464aa4081fb72662d398468df64ae2c8247e1ad0f02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4476,14 +4476,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -4502,7 +4502,7 @@ "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "020000000001014dde4c0c84f0a650805533cc702f7e60fb64a2fd5983045ef8f391e63f3ee5e600000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000236a21b3f3a78c45931030d7c10bb4428beada2e067fc45b8b60754cc84bdd7ab1df948b60b3052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "02000000000101a1cf27caadcf7aa0806331f4e40a13f4c1249ff13acfc7dc7e9df8c919c9ad6900000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000236a213075cb95a5d9480d7739d48194a183a760add3617bab58601cea029b41aec39e2160b3052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4515,10 +4515,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "transfer_destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "lock": false, "reset": false, @@ -4531,7 +4531,7 @@ "btc_out": 546, "btc_change": 4999981092, "btc_fee": 18362, - "rawtransaction": "02000000000101d0cdc389fd4c7bf47b1c23c05e05f3acd8b650d3fdc550f5c4b4e58660462b3600000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff032202000000000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda0000000000000000236a2109cfd3845a4f4ebea7d37e916683d7b6461abfdda34112aa25cc22bcac9218a95324a8052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "020000000001018bd1824abe126426ead3d07b8c342bc52c6697187d076b78d437f9a35bdad4ba00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff032202000000000000160014e829a0216c4a51744db91c43f5bb56f5f150753c0000000000000000236a219833bffc8f4e7366fc332fd7906d1423a5d4fb7c644f0e882ff5eb724ee78897f824a8052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4544,16 +4544,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", 1 ], [ "MYASSETA", - "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", 2 ] ], @@ -4561,12 +4561,12 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280a1d4c53a2839a34cbf7e8ecd9810a21633992fda802ae0ca086d281f046afa5927e69de29e640e6a628f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280e829a0216c4a51744db91c43f5bb56f5f150753c80cd4cce463e7e46e89ecf1c25aa143c8a724f591a8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999936609, "btc_fee": 61391, - "rawtransaction": "02000000000104d88254573590eb4337080df10b4f0b4ad803c09b301c1a1faae6ce2943ecd35f00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff75629894e727fe2e729774923a03d6971a8232e2d48baaa5bf1a1449e015514c00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff2d82e749d405fc455cefabcbdf042432516f1e0dc071f6e0cade76f1fa3b5a7f00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff95ef41b04543eb2e3a7228831a3094e0012dabe8a066a8dae923cc53077b0ff700000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff03e8030000000000006951210243f6f7fc25867032afaab047699b42f38677e21c4bddb7dd150b9466ba363fe22102499443450efd3c4bd336ac3d7b848954342c1d4234735cb9b87b2eaee5245f512102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee803000000000000695121024cf6f7fc25867032af89c72a9b56f2179edfdbbf0b7752d86fb384c4ac05a63b2102664e8b6fee373426fb29a05781ddaeb2a9ce81263a193e369a334bc2894b73bb2102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53ae61d016a804000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000002000002000002000000000000", + "rawtransaction": "0200000000010492a4ba9f83395c0bd2dd5c4c4946dd217a59ea1322d4f33e95da29341448a5df00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cfffffffffbb4ab5c80076e926c51b45a0090f8d197e9d95333d56a35bff6da15b37a046d00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff0e5181d60a798bbbe3521d346d6d2dc7001512f92d28a84289eb81503184ba3b00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff4d0da1973cebb7d58592999392de91d1a64ea5b0f90befcadde427361a741f7700000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff03e80300000000000069512103cbac3b0c06292afed4455a36526e7e216c0c370466b084ef020854b9a48719152102517fdbb6532ebbab0ac304e4a55cdad26d587d75d9fcf81fff460e3120c87c452102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee80300000000000069512103c4ac3b0c06292afed4662d5ba0ea33a06fe07d551ee8a678f6ddefef517649cd21032443137b1fe0fd957485e47a6a40ff787964f50796a5e290dd0e6b5d4ca7508c2102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853ae61d016a804000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4579,7 +4579,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4596,7 +4596,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -4610,7 +4610,7 @@ "btc_out": 0, "btc_change": 4999982734, "btc_fee": 17266, - "rawtransaction": "020000000001014aacb3b6ad815a4c50210c455562526822143e09629ab5cfae241abfb1eab7ae00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000356a33d2dbbb794ae4b5d99fb235390b9eb26d1b36baa3a6f44e12910f9ffb6039d025052431a45283f6ab01f5a7158c7df7aac8fc738eae052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "02000000000101c6fb84cd2ceb0b3b84413102e3df25028728c0fca08191a6cbd2e583802b69ee00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000356a336c63fd97b8f90741212d5dc3b7580c471eb70992eaf022ab254274bd3bd75da0ad4f024c62f602de374d22defec956daa7fee58eae052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4623,8 +4623,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4640,12 +4640,12 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8802ae0ca086d281f046afa5927e69de29e640e6a62", + "data": "434e54525052545902000000000000000100000000000003e880cd4cce463e7e46e89ecf1c25aa143c8a724f591a", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983077, "btc_fee": 16923, - "rawtransaction": "02000000000101cdb2043481d9e60271c55a9dffae7e8bcf3f594d494145952d2f09d41021123300000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000306a2e739847d72081f157104b3f0a1992e1777522f8de11bf3171ae56dc10be77a55616893c889e9ffd540fd31eb624dee5af052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "02000000000101ecc8cc77ffad54b83edb1d30f97d30702f2677496bbc297ae7c19cb5b61c240400000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000306a2ed369c03500434c51d445cb62a9fc01b33ce7cc0bbf4770f0d8ed5010b9b1c657f48b4e775fb1bd34edbc045614b8e5af052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4658,18 +4658,18 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904802ae0ca086d281f046afa5927e69de29e640e6a6207ffff", + "data": "434e5452505254590480cd4cce463e7e46e89ecf1c25aa143c8a724f591a07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "02000000000101469740e2c86396825812cc793adc952cb159869fbe68f70ad62ec8f90e3dca8500000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000236a21eb6c0a6f87a70df6580c99f871c80d905cd0c3c3c7ca09b3177df4a32679df84ed60b3052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "0200000000010170675a3d293ca41b0bedee451e3924ba2f5a9fa61db622d14f4348e3e5ab200a00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000236a218f510ab8c951833a2b75bb4e9766d2dec649a393271b2abf3ed870b11a3a572b4960b3052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4682,8 +4682,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "quantity": 1000 }, "name": "dispense", @@ -4692,7 +4692,7 @@ "btc_out": 1000, "btc_change": 4949850214, "btc_fee": 16786, - "rawtransaction": "020000000001016bbe33f447b862a08c6c7e6853210f90154fad7add09b03cbcc11e8033767e4a020000001600142ae0ca086d281f046afa5927e69de29e640e6a62ffffffff03e80300000000000016001448679a4ad46ccfb39129094fc4ea5ad1385a05f500000000000000000c6a0a4564db1175b8a24eaf8266b80827010000001600142ae0ca086d281f046afa5927e69de29e640e6a6202000000000000", + "rawtransaction": "02000000000101cf2df0607c3a61517992fb3d0656cb1a7df1406f6cdbd4662604730e3004c94002000000160014cd4cce463e7e46e89ecf1c25aa143c8a724f591affffffff03e803000000000000160014b16240e182fcfb3d1437b108a600036c78a7f8a200000000000000000c6a0a97dddfa8bf5d09d8cce566b8082701000000160014cd4cce463e7e46e89ecf1c25aa143c8a724f591a02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4705,7 +4705,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4730,7 +4730,7 @@ "btc_out": 0, "btc_change": 4999983008, "btc_fee": 16992, - "rawtransaction": "0200000000010188c825db2b13d7c4582dc26cedae5437f4050194ff8a8fef902088045cbb38c200000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000316a2f78a7cb7c7fc1b9f3887131a36926d6ebcef1c20698d24431d8ae0ecd5db486c3046dc7e1a21bddf5b7923ad699db51a0af052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "02000000000101b3a8ea6e4f8eb45913e609652e259af9c6e6eca8c561996218d2ebea0997dd1900000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000316a2fd9ab2df527d279c6d4c2e0bc2b050c3bef1b34b372ba02ea4f711fd12fe10d7e8ae76b0586f1330d77f146e8f87116a0af052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4743,13 +4743,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -4761,7 +4761,7 @@ "btc_out": 0, "btc_change": 4999984858, "btc_fee": 15142, - "rawtransaction": "020000000001014e29093d974c2b92f83b61c9bb75a7a28ad5ff2e0b1fa9e185a10aaaa47ad82400000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff020000000000000000166a14833fdd88988e3689c1f82e0b988279be26738447dab6052a01000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000000000000", + "rawtransaction": "02000000000101421347058c622d1d61385a7f92c7cb77b8703bdadf6d9b2b6f3efdee64c440b300000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000166a146d69de097e977560a3ae751a6dee79266c4b203bdab6052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4774,8 +4774,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4:3", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d:3", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4788,12 +4788,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317135383276327733673878333565306d37336d78657379397a7a6365656a7437366863707a37797c363563643661383034396632393133396265663364373864343461646236353266306136343837333461616166366431613163613835623963376634353665343a337c5843507c31303030", + "data": "434e54525052545964626372743171617135367167747666666768676e64657233706c7477366b37686334716166753535666b6b757c353631616262333238383864636464366436643730633564333838656533393966653362353164313062623330373330636239396535333133386639373133643a337c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999905256, "btc_fee": 91744, - "rawtransaction": "0200000000010648c9fd3cb5f428032cc8ed89bf5c3b36fc13547024f4128b2e140f929728e1a000000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffffe1f3f7c7904eabd1536bf76b8b3fa402d7b9202f765226da53d078ddd488af2100000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff94fc5de95229556e4566ff3ae8cd7d383e76a7bd9ae610106978d64c443f505300000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffffa3e388ae2ebee65472cc607151f49002d6de5ff576fe47941ef69f375e974d6d00000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff4297fb2e2b6fc7559f3648e0664907f1e4f3377ddb31d134ead6a366a4981ff300000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffffeccbf203673843794be03d22fcf570fe9d8bd202878e1224961f0e80a103d4b900000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fdaffffffff04e80300000000000069512103865345e83ce6f89535b804d9c9b2ba9b32cf453423d6e6725febe65b3b037f7c21021c6fd22f5dc1266af20aac17bcecb6fbee9f08bd3260f40ee5cb87b728c76f1b2102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee80300000000000069512102865345e83ce6f89535ec5283ddf4b2db34ce15277792b1225ff7e15a3f57705121021d698d3108d36967b047fc46b8e7a3aaee935aac7934ec4ae69cddb029c063f32102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee80300000000000069512102ac5345e83ce6f89535e950df8ffcb8965fb4273e2091e5256793d56e5e3312a121022b5cbf5738b25f538870cf72d986c2ccd8f76bcd48578d72d3fee4d31ea6576f2102e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f53aee83922fc06000000160014a1d4c53a2839a34cbf7e8ecd9810a21633992fda02000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106b627e317f10b77b7e289a77baf87646e05e1a63b36b17596a99f2e60e299a20500000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffffb4ca6249f8ef72cfb804afcc7698fad762b72331f548e24197f2341b7909505e00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff5765180b7ea5e05af9eb195c81a6255235ada15eb8d1e8b7b750b25fd133342600000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff707710929e481d91f9c3f608c3cefd0d8f608abd29d7b13c6af0bca108d1e22e00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff02f5fd3e8a84f2ebb61c7b4877f81724a13027db3f8cbf542ddf90a28b9d29b500000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff02626c456777e623c5f61924c131e89ee9312e6125adafc1c1c8cf5dd5660f2700000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff04e803000000000000695121033cffa7619ed50f4bde596392e3b7f4a95f6ab29b250e1a6ef2ae7d84954d2e2b2102f27d87cca6f41879e6f5b99a74fefc8013b8a66a847ebf28e49a64fbbba4e5d82102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee803000000000000695121033cffa7619ed50f4bde0f39c9a9a7a6bc5a2de39b305e5e7ba1ac29d4ca462ff82102a4368ddaafb30d7abca6e0c922edaed651bea36f8d2cf331e49f64a9e1a0ef902102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee8030000000000006951210216ffa7619ed50f4bde0a30c2f5f9f6a46658d7d165595e2894c81aecf2234a432103970fb4bcca806f4f8dc2d1f9408f9de6668d930cef15ca54d1ac559ad9c6d6e12102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee83922fc06000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4806,8 +4806,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389:1", - "destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940:1", + "destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4820,12 +4820,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964333432393634363138333939316237626663656438623535646464623836663035303466666534393262316237373265323764646532336431643061643338393a317c62637274317135383276327733673878333565306d37336d78657379397a7a6365656a7437366863707a37797c5843507c31303030", + "data": "434e54525052545964353433383537383130643432653335393766306463336135383234313033343464633261626366336464343131643631373138393661653365623563373934303a317c626372743171617135367167747666666768676e64657233706c7477366b37686334716166753535666b6b757c5843507c31303030", "btc_in": 4949874900, "btc_out": 3000, "btc_change": 4949842164, "btc_fee": 29736, - "rawtransaction": "0200000000010189d30a1d3de2dd272e771b2b49fe4f50f086dbdd558bedfc7b1b998361642934010000001600141ffcb5e94b4bb7721d31470b9127310a921e5f9cffffffff04e80300000000000069512103e4a08582503791c795b346510299e80d744e26bdc7e437c630b0dfc44929d44821038e01933582663073f222ebb5f6c7a41f7acf01246a8d326259d60704bca9f7b721037eea63e0236a331d93b3a01fac2fb0a1770b0580e0e98f89d6262276cca409db53aee80300000000000069512103e4a08582503791c795b247565491ba09231b2db6c7e737d865b1cbd31d3cd9f02102d406d06391313573bc77eee5f69ef54a72835d6571852a2f0d81075cfffaa51e21037eea63e0236a331d93b3a01fac2fb0a1770b0580e0e98f89d6262276cca409db53aee80300000000000069512102cea08582503791c795bf16154a97a7451a3c4ef2cfed369407d2b9a72c4dec722102ec34a651e602524bc444db80c6f3c2791ffb381608bc50556ee462368bcd939421037eea63e0236a331d93b3a01fac2fb0a1770b0580e0e98f89d6262276cca409db53aef4980827010000001600141ffcb5e94b4bb7721d31470b9127310a921e5f9c02000000000000", + "rawtransaction": "0200000000010140795cebe36a8971611d41ddf3bc2adc44034182a5c30d7f59e3420d815738540100000016001437e73d81e066d65b5208cfbf973f0a0436365e8bffffffff04e803000000000000695121021cd41ad1151db6fd319756e0ba7e1b19371e7a907c192ca23f6ff3b4ca1c03a32102681750f1cfec13382f07e31b4ea9359e27b077250deefcf6c8e366b1ceeefbe12102e2f9408019cc58d6becf6805fead856caeadf7edf56b2ca3a17d96cabb078aeb53aee803000000000000695121031cd41ad1151db6fd31c502b1ba234c1b6c1873c0781178ed6835b6a6cb09018c21032a4353b89aac546e7a54bf1843ff318e77a628351eeca6f0c4b663f79eb0b7c92102e2f9408019cc58d6becf6805fead856caeadf7edf56b2ca3a17d96cabb078aeb53aee8030000000000006951210236d41ad1151db6fd31c656b2e22d5b52576c1a88791b79a10a56c4d2fa78605021025b7665c9fdd822081c33d77f2d9b54fc44d6444169dacdc7acd55786ffd6c2592102e2f9408019cc58d6becf6805fead856caeadf7edf56b2ca3a17d96cabb078aeb53aef49808270100000016001437e73d81e066d65b5208cfbf973f0a0436365e8b02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4841,8 +4841,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false, "supply": 10000000000, @@ -4850,16 +4850,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727093327, - "last_issuance_block_time": 1727093335, + "first_issuance_block_time": 1727094888, + "last_issuance_block_time": 1727094897, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", - "owner": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", + "issuer": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", + "owner": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", "divisible": true, "locked": false, "supply": 100000000000, @@ -4867,16 +4867,16 @@ "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1727093323, - "last_issuance_block_time": 1727093323, + "first_issuance_block_time": 1727094884, + "last_issuance_block_time": 1727094884, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false, "supply": 100000000000, @@ -4884,16 +4884,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727093278, - "last_issuance_block_time": 1727093278, + "first_issuance_block_time": 1727094850, + "last_issuance_block_time": 1727094850, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false, "supply": 40, @@ -4901,16 +4901,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727093218, - "last_issuance_block_time": 1727093222, + "first_issuance_block_time": 1727094790, + "last_issuance_block_time": 1727094794, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false, "supply": 19, @@ -4918,8 +4918,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727093201, - "last_issuance_block_time": 1727093214, + "first_issuance_block_time": 1727094764, + "last_issuance_block_time": 1727094786, "supply_normalized": "0.00000019" } ], @@ -4931,8 +4931,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false, "supply": 10000000000, @@ -4940,15 +4940,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1727093163, - "last_issuance_block_time": 1727093176, + "first_issuance_block_time": 1727094726, + "last_issuance_block_time": 1727094739, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4956,14 +4956,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4971,7 +4971,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -4983,7 +4983,7 @@ }, "/v2/assets//balances/
": { "result": { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -5002,9 +5002,9 @@ "result": [ { "tx_index": 47, - "tx_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "tx_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", "block_index": 182, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5019,7 +5019,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727093354, + "block_time": 1727094927, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5045,9 +5045,9 @@ }, { "tx_index": 49, - "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", "block_index": 186, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5062,7 +5062,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727093435, + "block_time": 1727095009, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5088,9 +5088,9 @@ }, { "tx_index": 55, - "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "block_index": 190, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5105,7 +5105,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727093462, + "block_time": 1727095025, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5131,9 +5131,9 @@ }, { "tx_index": 57, - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "block_index": 191, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5148,7 +5148,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727093467, + "block_time": 1727095029, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5174,9 +5174,9 @@ }, { "tx_index": 50, - "tx_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "tx_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "block_index": 185, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5191,7 +5191,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727093431, + "block_time": 1727095004, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5222,13 +5222,13 @@ "/v2/assets//matches": { "result": [ { - "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "tx0_index": 49, - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 52, - "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", - "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5242,7 +5242,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727093435, + "block_time": 1727095009, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5262,13 +5262,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "tx0_index": 49, - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 50, - "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", - "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5282,7 +5282,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727093431, + "block_time": 1727095004, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5302,13 +5302,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", "tx0_index": 47, - "tx0_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 48, - "tx1_hash": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", - "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "tx1_hash": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5322,7 +5322,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727093354, + "block_time": 1727094927, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5349,20 +5349,20 @@ "result": [ { "block_index": 192, - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5370,20 +5370,20 @@ }, { "block_index": 125, - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "51964afe198dc7b43960247984e8e03be0113effcaa92fef97aa1cbfdb64a6c0", + "event": "6d46c4d6f2bfa733cabf35461464be1de853bd359fce0e0b56d3281408e3083e", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093176, + "block_time": 1727094739, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5391,20 +5391,20 @@ }, { "block_index": 124, - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7", + "event": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093171, + "block_time": 1727094734, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5412,20 +5412,20 @@ }, { "block_index": 124, - "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", + "event": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093171, + "block_time": 1727094734, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5437,16 +5437,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7", + "event": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093171, + "block_time": 1727094734, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5460,16 +5460,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "event": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -5481,16 +5481,16 @@ }, { "block_index": 192, - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -5502,16 +5502,16 @@ }, { "block_index": 192, - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -5523,16 +5523,16 @@ }, { "block_index": 191, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "event": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093467, + "block_time": 1727095029, "asset_info": { "divisible": true, "asset_longname": null, @@ -5544,16 +5544,16 @@ }, { "block_index": 189, - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093458, + "block_time": 1727095020, "asset_info": { "divisible": true, "asset_longname": null, @@ -5571,20 +5571,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", + "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", "block_index": 153, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727093314, + "block_time": 1727094875, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -5606,14 +5606,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "51964afe198dc7b43960247984e8e03be0113effcaa92fef97aa1cbfdb64a6c0", + "tx_hash": "6d46c4d6f2bfa733cabf35461464be1de853bd359fce0e0b56d3281408e3083e", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -5628,20 +5628,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727093176, + "block_time": 1727094739, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7", + "tx_hash": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -5656,20 +5656,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727093171, + "block_time": 1727094734, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", + "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -5684,20 +5684,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727093167, + "block_time": 1727094730, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -5712,7 +5712,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1727093163, + "block_time": 1727094726, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5724,10 +5724,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5735,7 +5735,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "divisible": true, "asset_longname": null, @@ -5748,10 +5748,10 @@ }, { "tx_index": 53, - "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0", + "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039", "block_index": 187, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5759,7 +5759,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093439, + "block_time": 1727095012, "asset_info": { "divisible": true, "asset_longname": null, @@ -5772,10 +5772,10 @@ }, { "tx_index": 42, - "tx_hash": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", + "tx_hash": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", "block_index": 155, - "source": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561:0", - "destination": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389:1", + "source": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea:0", + "destination": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5783,7 +5783,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093323, + "block_time": 1727094884, "asset_info": { "divisible": true, "asset_longname": null, @@ -5796,10 +5796,10 @@ }, { "tx_index": 41, - "tx_hash": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561", + "tx_hash": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea", "block_index": 154, - "source": "61dfe33f21d7929996be520e84245cb0ef401935edd4e6c382303f81ab07cda1:0", - "destination": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561:0", + "source": "038293b56ad81f45525bcade26369df9772e07db3dc4c97955587c621708d4b6:0", + "destination": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5807,7 +5807,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093318, + "block_time": 1727094880, "asset_info": { "divisible": true, "asset_longname": null, @@ -5826,9 +5826,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5837,7 +5837,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5847,7 +5847,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -5863,9 +5863,9 @@ }, { "tx_index": 29, - "tx_hash": "22d25e58a41019478c7742f0049a02c6e66fda5f38c995a6cdbbbb79d282f4d5", + "tx_hash": "d15aff344f340fa392282b0db80499fcf0785fcc1406f0d8d7508eddaac1757e", "block_index": 142, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5874,7 +5874,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "origin": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5884,7 +5884,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093257, + "block_time": 1727094830, "asset_info": { "divisible": true, "asset_longname": null, @@ -5900,9 +5900,9 @@ }, { "tx_index": 30, - "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", + "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", "block_index": 144, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5911,7 +5911,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5921,7 +5921,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093265, + "block_time": 1727094839, "asset_info": { "divisible": true, "asset_longname": null, @@ -5937,18 +5937,18 @@ }, { "tx_index": 32, - "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "last_status_tx_hash": null, - "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5958,7 +5958,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727093274, + "block_time": 1727094846, "asset_info": { "divisible": true, "asset_longname": null, @@ -5979,9 +5979,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 30, - "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", + "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", "block_index": 144, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5990,7 +5990,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6000,7 +6000,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093265, + "block_time": 1727094839, "asset_info": { "divisible": true, "asset_longname": null, @@ -6028,7 +6028,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -6036,7 +6036,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6045,7 +6045,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -6053,7 +6053,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6062,7 +6062,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -6070,7 +6070,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6079,7 +6079,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -6094,27 +6094,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", - "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "last_status_tx_hash": null, - "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6129,7 +6129,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727093274, + "block_time": 1727094846, "asset_info": { "divisible": true, "asset_longname": null, @@ -6143,19 +6143,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", + "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6163,7 +6163,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6178,7 +6178,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -6192,19 +6192,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", + "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", "block_index": 140, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6212,7 +6212,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6227,7 +6227,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093239, + "block_time": 1727094812, "asset_info": { "divisible": true, "asset_longname": null, @@ -6248,8 +6248,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "owner": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false, "supply": 0, @@ -6257,8 +6257,8 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1727093331, - "last_issuance_block_time": 1727093331, + "first_issuance_block_time": 1727094893, + "last_issuance_block_time": 1727094893, "supply_normalized": "0.00000000" } ], @@ -6268,10 +6268,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "tx_index": 10, "block_index": 125, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6296,7 +6296,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727093176 + "block_time": 1727094739 } ], "next_cursor": null, @@ -6305,64 +6305,64 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "51964afe198dc7b43960247984e8e03be0113effcaa92fef97aa1cbfdb64a6c0", + "tx_hash": "6d46c4d6f2bfa733cabf35461464be1de853bd359fce0e0b56d3281408e3083e", "tx_index": 13, "block_index": 125, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", - "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093176, + "block_time": 1727094739, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } }, { - "tx_hash": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7", + "tx_hash": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e", "tx_index": 12, "block_index": 124, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", - "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093171, + "block_time": 1727094734, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } }, { - "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", + "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093167, + "block_time": 1727094730, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } @@ -6374,22 +6374,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "d17809e0dcd0cdb6cfaff60cd5ef89abe0994a1559541312531639d1dbf4e42e", + "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "fairminter_tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727093167, + "block_time": 1727094730, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } @@ -6402,9 +6402,9 @@ "result": [ { "tx_index": 47, - "tx_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "tx_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", "block_index": 182, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6419,7 +6419,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727093354, + "block_time": 1727094927, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6445,9 +6445,9 @@ }, { "tx_index": 50, - "tx_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "tx_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "block_index": 185, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6462,7 +6462,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727093431, + "block_time": 1727095004, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6488,9 +6488,9 @@ }, { "tx_index": 49, - "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", "block_index": 186, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6505,7 +6505,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727093435, + "block_time": 1727095009, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6531,9 +6531,9 @@ }, { "tx_index": 52, - "tx_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "tx_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "block_index": 186, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6548,7 +6548,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727093435, + "block_time": 1727095009, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6574,9 +6574,9 @@ }, { "tx_index": 55, - "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "block_index": 190, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6591,7 +6591,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727093462, + "block_time": 1727095025, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6622,9 +6622,9 @@ "/v2/orders/": { "result": { "tx_index": 57, - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "block_index": 191, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6639,7 +6639,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727093467, + "block_time": 1727095029, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6667,13 +6667,13 @@ "/v2/orders//matches": { "result": [ { - "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "tx0_index": 49, - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 52, - "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", - "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6687,7 +6687,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727093435, + "block_time": 1727095009, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6707,13 +6707,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "tx0_index": 49, - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 50, - "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", - "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6727,7 +6727,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727093431, + "block_time": 1727095004, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6754,15 +6754,15 @@ "result": [ { "tx_index": 51, - "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", + "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", "block_index": 185, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "btc_amount": 2000, - "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "status": "valid", "confirmed": true, - "block_time": 1727093431, + "block_time": 1727095004, "btc_amount_normalized": "0.00002000" } ], @@ -6773,9 +6773,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "tx_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "block_index": 185, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6793,7 +6793,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727093431, + "block_time": 1727095004, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6819,9 +6819,9 @@ }, { "tx_index": 52, - "tx_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "tx_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "block_index": 186, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6839,7 +6839,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727093435, + "block_time": 1727095009, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6865,9 +6865,9 @@ }, { "tx_index": 47, - "tx_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", + "tx_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", "block_index": 182, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6885,7 +6885,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727093354, + "block_time": 1727094927, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6911,9 +6911,9 @@ }, { "tx_index": 49, - "tx_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", "block_index": 186, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6931,7 +6931,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727093435, + "block_time": 1727095009, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6957,9 +6957,9 @@ }, { "tx_index": 55, - "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "block_index": 190, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6977,7 +6977,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727093462, + "block_time": 1727095025, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7008,13 +7008,13 @@ "/v2/orders///matches": { "result": [ { - "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "tx0_index": 49, - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 52, - "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", - "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7031,7 +7031,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727093435, + "block_time": 1727095009, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7051,13 +7051,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "tx0_index": 49, - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 50, - "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", - "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7074,7 +7074,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727093431, + "block_time": 1727095004, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7094,13 +7094,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", "tx0_index": 47, - "tx0_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 48, - "tx1_hash": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", - "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "tx1_hash": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7117,7 +7117,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727093354, + "block_time": 1727094927, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7143,13 +7143,13 @@ "/v2/order_matches": { "result": [ { - "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "tx0_index": 49, - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 52, - "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", - "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7163,7 +7163,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727093435, + "block_time": 1727095009, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7183,13 +7183,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "tx0_index": 49, - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 50, - "tx1_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", - "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7203,7 +7203,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727093431, + "block_time": 1727095004, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7223,13 +7223,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", + "id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", "tx0_index": 47, - "tx0_hash": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx1_index": 48, - "tx1_hash": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", - "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "tx1_hash": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7243,7 +7243,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727093354, + "block_time": 1727094927, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7288,66 +7288,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "d460a52fd5533e197907b84dcdc8e7fc885c9e17ede386f2ecc15af162d7113c", + "tx_hash": "43093d52e847e4f5f87c441d762c47e61b2b30dd12418bb88f8a1ec5686fb269", "block_index": 121, - "source": "bcrt1qswegegswg6qyw5u90tafnw398gzn5a0d5re8u4", + "source": "bcrt1qzlgv5ud7ygwd6qudn3fpnh7a97lhyu2yp4uggk", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1727093158, + "block_time": 1727094721, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "c9daab89307e84bcc14f96bd8fc527be86b26696b8f2d095cec58e769818aab3", + "tx_hash": "73cee698f7e849caad6658e0350b1338d076a8ffda592a3386f4b9b0608cbba8", "block_index": 120, - "source": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", + "source": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1727093154, + "block_time": 1727094717, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "b249762795207fb5f190c065f1828cd125d79735399db8e49f372255863f630c", + "tx_hash": "dc2edb8719cae9a3345615cdc3a977be3cf2a2662e3910891dd5d3681bfff876", "block_index": 119, - "source": "bcrt1qqhp6nrswkpq6js9wqn9rf56zzrer5a3myr0pc3", + "source": "bcrt1qxdxmwlv97cc9s7jk5hs3z6cqdu7tasktae5eag", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1727093150, + "block_time": 1727094713, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "fcc7f7764c0d2d26074b73dda895c366d443e986398c86125a5ab881d010ed88", + "tx_hash": "14b38ae9c3846aae4acfb3f79364bbd2b0bc8739cd453c2f8d8ebccc68b78328", "block_index": 118, - "source": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", + "source": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1727093146, + "block_time": 1727094709, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "0d976e3a765844dc3bc60fe2f329fe2d1d7e194761b3cb3c78eef3448bbb92dd", + "tx_hash": "a1a48939003f5d217f71ffde747f89bca6cda99cf75029249dff0e2d435d114a", "block_index": 117, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1727093142, + "block_time": 1727094706, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7359,18 +7359,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "last_status_tx_hash": null, - "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7380,7 +7380,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727093274, + "block_time": 1727094846, "asset_info": { "divisible": true, "asset_longname": null, @@ -7396,9 +7396,9 @@ }, { "tx_index": 30, - "tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", + "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", "block_index": 144, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7407,7 +7407,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7417,7 +7417,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093265, + "block_time": 1727094839, "asset_info": { "divisible": true, "asset_longname": null, @@ -7433,9 +7433,9 @@ }, { "tx_index": 29, - "tx_hash": "22d25e58a41019478c7742f0049a02c6e66fda5f38c995a6cdbbbb79d282f4d5", + "tx_hash": "d15aff344f340fa392282b0db80499fcf0785fcc1406f0d8d7508eddaac1757e", "block_index": 142, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7444,7 +7444,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "origin": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7454,7 +7454,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093257, + "block_time": 1727094830, "asset_info": { "divisible": true, "asset_longname": null, @@ -7470,9 +7470,9 @@ }, { "tx_index": 26, - "tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7481,7 +7481,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7491,7 +7491,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -7512,9 +7512,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7523,7 +7523,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7533,7 +7533,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -7553,19 +7553,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", + "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7573,7 +7573,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7588,7 +7588,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -7602,19 +7602,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", + "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", "block_index": 140, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7622,7 +7622,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7637,7 +7637,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093239, + "block_time": 1727094812, "asset_info": { "divisible": true, "asset_longname": null, @@ -7656,20 +7656,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", + "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", "block_index": 153, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727093314, + "block_time": 1727094875, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -7690,20 +7690,20 @@ "/v2/dividends/": { "result": { "tx_index": 40, - "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", + "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", "block_index": 153, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727093314, + "block_time": 1727094875, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -7726,12 +7726,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", + "event": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", "tx_index": 40, - "utxo": "61dfe33f21d7929996be520e84245cb0ef401935edd4e6c382303f81ab07cda1:0", - "utxo_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "utxo": "038293b56ad81f45525bcade26369df9772e07db3dc4c97955587c621708d4b6:0", + "utxo_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "confirmed": true, - "block_time": 1727093314, + "block_time": 1727094875, "asset_info": { "divisible": true, "asset_longname": null, @@ -7743,16 +7743,16 @@ }, { "block_index": 153, - "address": "bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x", + "address": "bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", + "event": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727093314, + "block_time": 1727094875, "asset_info": { "divisible": true, "asset_longname": null, @@ -7773,27 +7773,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", - "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", + "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", + "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", "transaction_count": 1, - "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", - "block_time": 1727093475 + "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", + "block_time": 1727095038 }, "tx_hash": null, "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "tx_index": 59 }, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 }, { "event_index": 533, @@ -7802,12 +7802,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "status": "valid", "tag": "64657374726f79", - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "tx_index": 59, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -7817,24 +7817,24 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 193, - "event": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "event": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -7844,25 +7844,25 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", "block_index": 193, - "block_time": 1727093475, + "block_time": 1727095038, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "tx_index": 59, - "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", + "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -7882,9 +7882,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 } ], "next_cursor": 530, @@ -7896,15 +7896,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", - "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", + "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", + "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", "transaction_count": 1, - "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", - "block_time": 1727093475 + "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", + "block_time": 1727095038 }, "tx_hash": null, "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 } }, "/v2/events/counts": { @@ -7939,16 +7939,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -7958,78 +7958,78 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", + "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727093462, + "block_time": 1727095025, "asset_info": { "divisible": true, "asset_longname": null, @@ -8039,24 +8039,24 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "block_index": 190, - "block_time": 1727093462 + "block_time": 1727095025 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "event": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "divisible": true, "asset_longname": null, @@ -8066,9 +8066,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "block_time": 1727093444 + "block_time": 1727095016 } ], "next_cursor": 490, @@ -8085,27 +8085,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", - "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "last_status_tx_hash": null, - "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8120,7 +8120,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727093274, + "block_time": 1727094846, "asset_info": { "divisible": true, "asset_longname": null, @@ -8134,19 +8134,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d4fa82bec85ae23c6b9ed807b9bc8161a057b4e88058fce9f63f92b2c5832457", + "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8154,7 +8154,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8169,7 +8169,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093252, + "block_time": 1727094826, "asset_info": { "divisible": true, "asset_longname": null, @@ -8183,19 +8183,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bc3e49a0c495c6eacfc1bb5cab84889424170f5ee2d61a9e725c50f8c408095f", + "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", "block_index": 140, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "446f12599eb533184ec3baa98de386113295256086e56f3fd484cb1289307b2b", + "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8203,7 +8203,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8218,7 +8218,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727093239, + "block_time": 1727094812, "asset_info": { "divisible": true, "asset_longname": null, @@ -8237,10 +8237,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8248,7 +8248,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "divisible": true, "asset_longname": null, @@ -8261,10 +8261,10 @@ }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8272,11 +8272,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -8285,10 +8285,10 @@ }, { "tx_index": 54, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8296,11 +8296,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -8309,10 +8309,10 @@ }, { "tx_index": 53, - "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0", + "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039", "block_index": 187, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -8320,7 +8320,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093439, + "block_time": 1727095012, "asset_info": { "divisible": true, "asset_longname": null, @@ -8333,10 +8333,10 @@ }, { "tx_index": 42, - "tx_hash": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", + "tx_hash": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", "block_index": 155, - "source": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561:0", - "destination": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389:1", + "source": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea:0", + "destination": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8344,7 +8344,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727093323, + "block_time": 1727094884, "asset_info": { "divisible": true, "asset_longname": null, @@ -8363,14 +8363,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", + "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -8385,20 +8385,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093340, + "block_time": 1727094911, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "87c03f2279383a3df0081f24a9f1fa5c0a0871379ef14a982ab69879184b38f7", + "tx_hash": "766ce7ba7a212e1b43cbe3df259ab0cd0bf5579c5cf1c4c27ceb05911f1f7109", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -8413,20 +8413,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727093335, + "block_time": 1727094897, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "8545fa4b393d2af3b1304014da38dd6988b8ad70e7eb5942312966346dbf5c1c", + "tx_hash": "4c63b42edf0cfbe37a429815c6724cfea57503fe580f8d9022c3a2bc16e8db38", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -8441,20 +8441,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093331, + "block_time": 1727094893, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "02e0dc7bbbbc4974003b5a437a68b7e2cbfacb3747f4e8d64d60242fa4478372", + "tx_hash": "0a6900f413f8095625003b8d59bebdc8af81dc18dbf66310ff9229b879d53d0a", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -8469,20 +8469,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093327, + "block_time": 1727094888, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", + "tx_hash": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", - "issuer": "bcrt1qrl7tt62tfwmhy8f3gu9ezfe3p2fpuhuu74zzmn", + "source": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", + "issuer": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", "transfer": false, "callable": false, "call_date": 0, @@ -8497,7 +8497,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093323, + "block_time": 1727094884, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8508,14 +8508,14 @@ "/v2/issuances/": { "result": { "tx_index": 46, - "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", + "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "transfer": false, "callable": false, "call_date": 0, @@ -8530,7 +8530,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727093340, + "block_time": 1727094911, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8539,16 +8539,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "fee_paid_normalized": "0.00600000" } ], @@ -8559,16 +8559,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727093471, + "block_time": 1727095033, "fee_paid_normalized": "0.00600000" } ], @@ -8579,9 +8579,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572", + "tx_hash": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a", "block_index": 138, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8589,14 +8589,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727093231, + "block_time": 1727094803, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "000e98b21330a957d503936a5a5b4a4a45befd508a16c30ed1912d21d0020d6f", + "tx_hash": "30e595f74d9b77faf4d326988b5fa49da4919c874be0dbbaf37a0f5efc4a6769", "block_index": 137, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8604,7 +8604,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727093226, + "block_time": 1727094799, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8614,9 +8614,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572", + "tx_hash": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a", "block_index": 138, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8624,17 +8624,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727093231, + "block_time": 1727094803, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", + "tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", "tx_index": 22, "block_index": 135, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8659,13 +8659,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727093218 + "block_time": 1727094790 }, { - "tx_hash": "ffb4f47e322a5717409022097a223a7184dcec72f0866d94a1c10b58cb841818", + "tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", "tx_index": 18, "block_index": 131, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8690,13 +8690,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727093201 + "block_time": 1727094764 }, { - "tx_hash": "7a9102f321f0d0fa53fc2a72888a63e7fb5ade06068f5a3401438b09db2d6ed7", + "tx_hash": "801ce5c24ea2170c2937ab2d624deefa78877919ee48f5b5d5134b4b1c1d545e", "tx_index": 14, "block_index": 130, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8721,13 +8721,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727093197 + "block_time": 1727094760 }, { - "tx_hash": "f57a574f4112bcbb288477ce91527eb54dcc95130837cfec446dd74fc04d3347", + "tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", "tx_index": 10, "block_index": 125, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8752,7 +8752,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727093176 + "block_time": 1727094739 } ], "next_cursor": null, @@ -8766,8 +8766,8 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", - "address": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58" + "txid": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "address": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj" }, { "vout": 2, @@ -8775,8 +8775,8 @@ "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", - "address": "bcrt1qqhp6nrswkpq6js9wqn9rf56zzrer5a3myr0pc3" + "txid": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", + "address": "bcrt1qxdxmwlv97cc9s7jk5hs3z6cqdu7tasktae5eag" } ], "next_cursor": null, @@ -8785,28 +8785,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "89a09ac9d6239ab036e8e05a10e7e1bd980f1a8ba1843d56755c2c16187d6a14" + "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039" }, { - "tx_hash": "1925463e88ee34000a3ea11c42581ce890f717f7eba97775d5f17c143f29364d" + "tx_hash": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e" }, { - "tx_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956" + "tx_hash": "a08984ad55f4e1a2ed5a1f25a107dc4d298156d23fac72bd19d9a33948aa9962" }, { - "tx_hash": "144554b15a22c114b9c5521d0d24a3c04f73a8b41253e822cc95199c1d067299" + "tx_hash": "0c869ae1b35c7a20c2384369babb94e31d003833139318542392ce07c372f378" }, { - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3" + "tx_hash": "b2ac9ee9375c7dc1103dcf5356e6e38dedaf5fcd3e1b113959df1ff0c6c4faba" }, { - "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0" + "tx_hash": "28492d2ebdcfa146b86f026a77270b902bd2a4ee130b1cb59bd4b51a8eabf1d4" }, { - "tx_hash": "f71f19ba7f557184e9c2cb74ed878ef2951fa53c0444a2db8a83b747c26a2cd7" + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" }, { - "tx_hash": "3c4051bdedfa9154c9b7f71c4870b9f4267c24ca98d4eb9e00285d6704da9bf0" + "tx_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2" } ], "next_cursor": null, @@ -8814,8 +8814,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 3, - "tx_hash": "ff537bf687431f1b8eacb1508399c66f2ddcd9ebdfad42882925e2c43833e443" + "block_index": 9, + "tx_hash": "bb46b82006453c3fbf60dcd71ccac08673e11507d02e502f6fcdc3d04972d343" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -8826,17 +8826,17 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480" + "txid": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "02e335ead2ecf58a2866461d5d2ce3c6eebd200fbd3b164964492d08ceec97113f" + "result": "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101dd00f9610dafa03a82ddd666c55d2cc59ebe394256c67c1f6ffbd1fd7560e0c30300000000ffffffff020000000000000000226a203bd937e5a00203cd95ff353270c398e18162febbdbae967d477619ebf1816b3c680b0a270100000016001448679a4ad46ccfb39129094fc4ea5ad1385a05f50247304402205376f592e41d9e273f9b5e7ad1a7fa190a240501b08a29e0d55f8648126aa91002206027d94d88df37a14de6e98f6391c5d647df41369deddd886861fb1125bfd2d801210232a55257b495344474136eebb3408ad9dcb9e275fbbc0f81f8b2f67c031d049000000000" + "result": "020000000001011a63de3bdf9f82cd35021713a79af6e9dd49ddacbe32b5783ca01ae42546b42a0300000000ffffffff020000000000000000226a2021344a64b6120942909bf09e6397fd6cad305e4e73bca1dec78b18aedf4edbb9680b0a2701000000160014b16240e182fcfb3d1437b108a600036c78a7f8a202473044022074d2b3de539cbacb3d364cc992ee27c026a13ed1a8442e45ae2f7fcc4e7e02b30220649e9d695f1f028945cb10308c822475cb7b2c9df47370d143c14c5cc8567bcc01210268539bd755f8fa4f5aa15f95da1dcbbbd86d28c794673d670f60fb3e1040bbd100000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 68517 @@ -8859,26 +8859,26 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "tx_index": 60 } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "memo": null, "quantity": 10000, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "status": "valid", - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "tx_index": 60, "asset_info": { "divisible": true, @@ -8891,19 +8891,19 @@ } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "CREDIT", "params": { - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -8915,19 +8915,19 @@ } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 193, - "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -8939,27 +8939,27 @@ } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727093479.718657, + "block_time": 1727095042.4665813, "btc_amount": 0, - "data": "020000000000000001000000000000271080c9435a1d17b078c22ab3b67935f7fbaa28e99e2f", + "data": "0200000000000000010000000000002710804efd3277d785851bf1bfb18ef3ebd9ea8732f765", "destination": "", "fee": 10000, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "tx_index": 60, - "utxos_info": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e:1", + "utxos_info": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "memo": null, "asset_info": { "divisible": true, @@ -8981,19 +8981,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "CREDIT", "params": { - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -9011,26 +9011,26 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "tx_index": 60 } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "memo": null, "quantity": 10000, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "status": "valid", - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "tx_index": 60, "asset_info": { "divisible": true, @@ -9043,19 +9043,19 @@ } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "CREDIT", "params": { - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -9067,19 +9067,19 @@ } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 193, - "event": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -9091,27 +9091,27 @@ } }, { - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727093479.718657, + "block_time": 1727095042.4665813, "btc_amount": 0, - "data": "020000000000000001000000000000271080c9435a1d17b078c22ab3b67935f7fbaa28e99e2f", + "data": "0200000000000000010000000000002710804efd3277d785851bf1bfb18ef3ebd9ea8732f765", "destination": "", "fee": 10000, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", - "tx_hash": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", "tx_index": 60, - "utxos_info": "4d4e911c3c86cce14425b89880b90003618b60fc9211dd9113eae74a0eda967e:1", + "utxos_info": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "memo": null, "asset_info": { "divisible": true, @@ -9146,15 +9146,15 @@ "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", "block_index": 193, - "block_time": 1727093475, + "block_time": 1727095038, "difficulty": 545259519, - "previous_block_hash": "76d9c4e2328b7a0bb5c83d9623d5eaac17568dafeb3f2bb77605779b5986932e" + "previous_block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f" }, "tx_hash": null, "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 } ], "next_cursor": 518, @@ -9166,17 +9166,17 @@ "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "6a324c476d8fde46b896439e537f4c75774f1232d6d0e2e5a41ba1e3f582cad9", + "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", "block_index": 193, - "block_time": 1727093475, + "block_time": 1727095038, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "tx_index": 59, - "utxos_info": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f:1", + "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -9196,9 +9196,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 } ], "next_cursor": 519, @@ -9212,16 +9212,16 @@ "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "destination": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "out_index": 0, - "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", "tx_index": 33, - "block_time": 1727093274, + "block_time": 1727094846, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", "block_index": 146, - "block_time": 1727093274 + "block_time": 1727094846 } ], "next_cursor": 237, @@ -9234,15 +9234,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "a00157bdf7ee8a57b4fd9046766c1758a37a192dd6e0437afc243fe78dcb5ffc", - "messages_hash": "5f3f7a44e6c92073f0955f865ec21fdececfb3d28248cbdaf240d6c36673930e", + "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", + "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", "transaction_count": 1, - "txlist_hash": "813774f4219158d6e83f4dfe8812a1086aa342ad4c3374eb0ac54365307d9f1a", - "block_time": 1727093475 + "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", + "block_time": 1727095038 }, "tx_hash": null, "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 } ], "next_cursor": 529, @@ -9255,12 +9255,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "tx_index": 59 }, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 } ], "next_cursor": 528, @@ -9273,15 +9273,15 @@ "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 193, - "event": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "event": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -9291,9 +9291,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 } ], "next_cursor": 525, @@ -9305,16 +9305,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727093471, + "block_time": 1727095033, "asset_info": { "divisible": true, "asset_longname": null, @@ -9324,9 +9324,9 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 } ], "next_cursor": 524, @@ -9340,14 +9340,14 @@ "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "memo": null, "quantity": 10000, - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "status": "valid", - "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0", + "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039", "tx_index": 53, - "block_time": 1727093439, + "block_time": 1727095012, "asset_info": { "divisible": true, "asset_longname": null, @@ -9357,9 +9357,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "afb4740f7ff7876843cee0711c740dbcdb2c14c4fe494242b55d3106369e12c0", + "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039", "block_index": 187, - "block_time": 1727093439 + "block_time": 1727095012 } ], "next_cursor": null, @@ -9373,15 +9373,15 @@ "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "status": "valid", - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "tx_index": 54, - "block_time": 1727093444, + "block_time": 1727095016, "asset_info": { "divisible": true, "asset_longname": null, @@ -9391,9 +9391,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "65cd6a8049f29139bef3d78d44adb652f0a648734aaaf6d1a1ca85b9c7f456e4", + "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", "block_index": 188, - "block_time": 1727093444 + "block_time": 1727095016 } ], "next_cursor": 495, @@ -9416,20 +9416,20 @@ "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "status": "valid", - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "tx_index": 58, - "block_time": 1727093471, + "block_time": 1727095033, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "fa56acc32c9424787c91c3244c0686e234dde7e3bd4310ea95841019da9200a3", + "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", "block_index": 192, - "block_time": 1727093471 + "block_time": 1727095033 } ], "next_cursor": null, @@ -9446,15 +9446,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "status": "valid", - "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", + "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", "tx_index": 40, - "block_time": 1727093314, + "block_time": 1727094875, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, @@ -9468,9 +9468,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "1bb48b521991d1c96c661144b56f08a01ed87f64f2f21bae02b443411031659e", + "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", "block_index": 153, - "block_time": 1727093314 + "block_time": 1727094875 } ], "next_cursor": null, @@ -9491,11 +9491,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 159, - "block_time": 1727093340 + "block_time": 1727094911 }, - "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", + "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", "block_index": 159, - "block_time": 1727093340 + "block_time": 1727094911 } ], "next_cursor": 367, @@ -9518,22 +9518,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "status": "valid", "transfer": false, - "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", + "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", "tx_index": 46, - "block_time": 1727093340, + "block_time": 1727094911, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "dce927828a206833190adaaf9af52651327fbab72cef1928e3881812700e0745", + "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", "block_index": 159, - "block_time": 1727093340 + "block_time": 1727094911 } ], "next_cursor": 374, @@ -9548,12 +9548,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qfpne5jk5dn8m8yffp98uf6j66yu95p04zzwg2n", + "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", "status": "valid", "tag": "64657374726f79", - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "tx_index": 59, - "block_time": 1727093475, + "block_time": 1727095038, "asset_info": { "divisible": true, "asset_longname": null, @@ -9563,9 +9563,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "6d92e40346a070eee7046c9c7a7b500b69122fd18e9e3f715c717b6bf830509f", + "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", "block_index": 193, - "block_time": 1727093475 + "block_time": 1727095038 } ], "next_cursor": 157, @@ -9590,11 +9590,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "status": "open", - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "tx_index": 57, - "block_time": 1727093467, + "block_time": 1727095029, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9618,9 +9618,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "7961682ba31de96a7c5aa16237826f79ba36b3bba02abb2cfd01877e3a7a0043", + "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", "block_index": 191, - "block_time": 1727093467 + "block_time": 1727095029 } ], "next_cursor": 502, @@ -9638,20 +9638,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1", + "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", "tx0_index": 49, - "tx1_address": "bcrt1qe9p458ghkpuvy24nkeuntalm4g5wn830037nhd", + "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "tx1_index": 52, - "block_time": 1727093435, + "block_time": 1727095009, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9670,9 +9670,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "12946f6b344c8051191d17cc3c865330c6ebfb4a5ffa243960036b1dbac01956", + "tx_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", "block_index": 186, - "block_time": 1727093435 + "block_time": 1727095009 } ], "next_cursor": 461, @@ -9685,11 +9685,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82" + "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e" }, - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "block_index": 190, - "block_time": 1727093462 + "block_time": 1727095025 } ], "next_cursor": 476, @@ -9702,11 +9702,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047" + "tx_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811" }, - "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", + "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", "block_index": 185, - "block_time": 1727093431 + "block_time": 1727095004 } ], "next_cursor": null, @@ -9718,13 +9718,13 @@ "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", - "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", + "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", "status": "completed" }, - "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", + "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", "block_index": 185, - "block_time": 1727093431 + "block_time": 1727095004 } ], "next_cursor": 440, @@ -9738,18 +9738,18 @@ "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "order_match_id": "c5c92d179df85047f63a91b8726adc63b323f6fc84c14d96d06cad7ed41f05c1_1d702b9c1627eeb9354abaa448bcf553e5e5e6874602e99c1acbb9e021597047", - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "status": "valid", - "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", + "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", "tx_index": 51, - "block_time": 1727093431, + "block_time": 1727095004, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "4a7e7633801ec1bc3cb009dd7aad4f15900f2153687e6c8ca062b847f433be6b", + "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", "block_index": 185, - "block_time": 1727093431 + "block_time": 1727095004 } ], "next_cursor": null, @@ -9762,16 +9762,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "c8dcecdfe6c8c366c4584ddb26777f90ac75dfdbe980ace408e47a50f13feb82", - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "status": "valid", - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "tx_index": 56, - "block_time": 1727093462 + "block_time": 1727095025 }, - "tx_hash": "f81b20fb44fc2d874dff9fe61b71b874f0db8c0e03471f2dcf7d70173129cfbf", + "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", "block_index": 190, - "block_time": 1727093462 + "block_time": 1727095025 } ], "next_cursor": null, @@ -9784,13 +9784,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "block_time": 1727093354 + "order_hash": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "block_time": 1727094927 }, "tx_hash": null, "block_index": 182, - "block_time": 1727093354 + "block_time": 1727094927 } ], "next_cursor": 446, @@ -9803,14 +9803,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "0549de45c4ec8249f91a97c1282473afb1f3a828fa035727ece411d6efc18f24_8d1b72f491fcb8394c3812c1c0decb056c9f98972c7aa15b7ab20ae4fa17d13e", - "tx0_address": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "tx1_address": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", - "block_time": 1727093354 + "order_match_id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "block_time": 1727094927 }, "tx_hash": null, "block_index": 182, - "block_time": 1727093354 + "block_time": 1727094927 } ], "next_cursor": null, @@ -9828,14 +9828,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", - "origin": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "satoshirate": 1, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "status": 0, - "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", "tx_index": 32, - "block_time": 1727093270, + "block_time": 1727094842, "asset_info": { "divisible": true, "asset_longname": null, @@ -9848,9 +9848,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", "block_index": 145, - "block_time": 1727093270 + "block_time": 1727094842 } ], "next_cursor": 254, @@ -9865,9 +9865,9 @@ "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "status": 0, - "tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", + "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", "asset_info": { "divisible": true, "asset_longname": null, @@ -9877,9 +9877,9 @@ }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", "block_index": 146, - "block_time": 1727093274 + "block_time": 1727094846 } ], "next_cursor": 260, @@ -9893,13 +9893,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "n4jPTsoLW457YTSc3XsQ1Y4gHB8Q4kHjcS", + "destination": "mswKMJEVhPVAQYJDEPVBvaADKf2fmZC6hN", "dispense_quantity": 10, - "dispenser_tx_hash": "7445149874ff91aa241f7fbedd7a2445e55fe0fcf308da78876b29a787993d8c", - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", - "tx_hash": "69e6e449ccddd30e971cac1a51c578ae45dc8a430d8f8998718f7c09f4cfe895", + "dispenser_tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx_hash": "cc547f0e1d0b1b9e9bedbdb98174f8bb688efdaabade4e76ce52efe2f4cda71b", "tx_index": 31, - "block_time": 1727093265, + "block_time": 1727094839, "asset_info": { "divisible": true, "asset_longname": null, @@ -9909,9 +9909,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "69e6e449ccddd30e971cac1a51c578ae45dc8a430d8f8998718f7c09f4cfe895", + "tx_hash": "cc547f0e1d0b1b9e9bedbdb98174f8bb688efdaabade4e76ce52efe2f4cda71b", "block_index": 144, - "block_time": 1727093265 + "block_time": 1727094839 } ], "next_cursor": null, @@ -9926,14 +9926,14 @@ "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qq6xjx6vyea0x96mlvc5wv0gqs8aqa538x2qh58", + "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "b848a22721d756a16c8d8aba2320d6383ea34adc5e9474ad0f9caa159f4ca898", - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", - "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", "tx_index": 33, - "block_time": 1727093274, + "block_time": 1727094846, "asset_info": { "divisible": true, "asset_longname": null, @@ -9944,9 +9944,9 @@ "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "80232e9de30489531ca622312374458d7daf8f3b5eca9c9001c3027eaaf20480", + "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", "block_index": 146, - "block_time": 1727093274 + "block_time": 1727094846 } ], "next_cursor": 240, @@ -9961,19 +9961,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qphaccg2f7hdxhrjyhmp4ee34k2zmf6gytjcjrg", + "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572", + "tx_hash": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a", "tx_index": 25, "value": 66600.0, - "block_time": 1727093231, + "block_time": 1727094803, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "6d56577fba18853b14a97f2d09cd09fb7df7512d7c43f583a26bd675762e6572", + "tx_hash": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a", "block_index": 138, - "block_time": 1727093231 + "block_time": 1727094803 } ], "next_cursor": 213, @@ -10004,16 +10004,16 @@ "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "start_block": 0, "status": "open", - "tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", + "tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", "tx_index": 22, - "block_time": 1727093218 + "block_time": 1727094790 }, - "tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", + "tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", "block_index": 135, - "block_time": 1727093218 + "block_time": 1727094790 } ], "next_cursor": 161, @@ -10026,11 +10026,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "7a9102f321f0d0fa53fc2a72888a63e7fb5ade06068f5a3401438b09db2d6ed7" + "tx_hash": "801ce5c24ea2170c2937ab2d624deefa78877919ee48f5b5d5134b4b1c1d545e" }, "tx_hash": null, "block_index": 130, - "block_time": 1727093197 + "block_time": 1727094760 } ], "next_cursor": 110, @@ -10046,24 +10046,24 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "8b88cf8c3c7dc220103cf9d2ea72f9e6aa674b9617c7b0e59bfc742e319a2570", + "fairminter_tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", "paid_quantity": 34, - "source": "bcrt1q9tsv5zrd9q0sg6h6tyn7d80znejqu6nz7vrqsx", + "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", "status": "valid", - "tx_hash": "5cadef994ef817048b024cb011579c3e4b9baa49462417190150f05a34a9bcf9", + "tx_hash": "cfa6d447a379922dd0da484f07f975e5f68176b84d2aee0d31fa0acec398bb72", "tx_index": 23, - "block_time": 1727093222, + "block_time": 1727094794, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false } }, - "tx_hash": "5cadef994ef817048b024cb011579c3e4b9baa49462417190150f05a34a9bcf9", + "tx_hash": "cfa6d447a379922dd0da484f07f975e5f68176b84d2aee0d31fa0acec398bb72", "block_index": 136, - "block_time": 1727093222 + "block_time": 1727094794 } ], "next_cursor": 190, @@ -10077,28 +10077,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a:1", + "destination": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "status": "valid", - "tx_hash": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", + "tx_hash": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", "tx_index": 38, - "block_time": 1727093305, + "block_time": 1727094866, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c366f5dc6132022a55cc3fc8f068f21a1dc181cf49add7268aefefe0a091760a", + "tx_hash": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", "block_index": 151, - "block_time": 1727093305 + "block_time": 1727094866 } ], "next_cursor": 291, @@ -10112,28 +10112,28 @@ "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qnp9gs7jv296euwdd6e8t4st963wc69hqfjrr3x", + "destination": "bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "144554b15a22c114b9c5521d0d24a3c04f73a8b41253e822cc95199c1d067299:0", + "source": "28492d2ebdcfa146b86f026a77270b902bd2a4ee130b1cb59bd4b51a8eabf1d4:0", "status": "valid", - "tx_hash": "c3e06075fdd1fb6f1f7cc6564239be9ec52c5dc566d6dd823aa0af0d61f900dd", + "tx_hash": "2ab44625e41aa03c78b532beacdd49dde9f69aa713170235cd829fdf3bde631a", "tx_index": 37, - "block_time": 1727093301, + "block_time": 1727094862, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q582v2w3g8x35e0m73mxesy9zzceejt76hcpz7y", + "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c3e06075fdd1fb6f1f7cc6564239be9ec52c5dc566d6dd823aa0af0d61f900dd", + "tx_hash": "2ab44625e41aa03c78b532beacdd49dde9f69aa713170235cd829fdf3bde631a", "block_index": 150, - "block_time": 1727093301 + "block_time": 1727094862 } ], "next_cursor": null, @@ -10147,14 +10147,14 @@ "params": { "asset": "XCP", "block_index": 155, - "destination": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389:1", + "destination": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940:1", "msg_index": 1, "quantity": 1500000000, - "source": "5d639f1b9cfaa5336c49782c702d2ce545efb5d09a3a26057c7deb301541e561:0", + "source": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea:0", "status": "valid", - "tx_hash": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", + "tx_hash": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", "tx_index": 42, - "block_time": 1727093323, + "block_time": 1727094884, "asset_info": { "divisible": true, "asset_longname": null, @@ -10164,9 +10164,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "3429646183991b7bfced8b55dddb86f0504ffe492b1b772e27dde23d1d0ad389", + "tx_hash": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", "block_index": 155, - "block_time": 1727093323 + "block_time": 1727094884 } ], "next_cursor": 346, @@ -10181,17 +10181,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qswegegswg6qyw5u90tafnw398gzn5a0d5re8u4", + "source": "bcrt1qzlgv5ud7ygwd6qudn3fpnh7a97lhyu2yp4uggk", "status": "valid", - "tx_hash": "d460a52fd5533e197907b84dcdc8e7fc885c9e17ede386f2ecc15af162d7113c", + "tx_hash": "43093d52e847e4f5f87c441d762c47e61b2b30dd12418bb88f8a1ec5686fb269", "tx_index": 9, - "block_time": 1727093158, + "block_time": 1727094721, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "d460a52fd5533e197907b84dcdc8e7fc885c9e17ede386f2ecc15af162d7113c", + "tx_hash": "43093d52e847e4f5f87c441d762c47e61b2b30dd12418bb88f8a1ec5686fb269", "block_index": 121, - "block_time": 1727093158 + "block_time": 1727094721 } ], "next_cursor": 65, diff --git a/dredd.yml b/dredd.yml index 95ad2ba9fe..0294f30407 100644 --- a/dredd.yml +++ b/dredd.yml @@ -86,7 +86,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 Address And Asset > Get Balance By Address And Asset +- Assets > Get Balance By Asset And Address > Get Balance 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 diff --git a/release-notes/release-notes-v10.4.1.md b/release-notes/release-notes-v10.4.1.md index 3ea2077a06..144eda7561 100644 --- a/release-notes/release-notes-v10.4.1.md +++ b/release-notes/release-notes-v10.4.1.md @@ -13,6 +13,7 @@ * Fix typo in `protocol_changes.json` * Fix division by zero in `api.util.divide()` * Catch invalid raw transaction in `/v2/transactions/info` endpoint +* Fix duplicate command in `xcpcli.py` ## Codebase From 78c6801b78400017a6d4de9a5e972cbe9653d1f2 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 23 Sep 2024 12:48:38 +0000 Subject: [PATCH 33/46] fix fixtures --- .../test/fixtures/api_v2_fixtures.json | 31 ++++++++++++++++--- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index cb9306b704..3ee4eaf36c 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -9205,6 +9205,13 @@ "type": "int", "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)" }, + { + "name": "sort", + "default": null, + "required": false, + "type": "str", + "description": "The sort order of the dispensers to return (overrides the `cursor` parameter) (e.g. give_quantity:desc)" + }, { "name": "verbose", "type": "bool", @@ -13588,20 +13595,20 @@ ] }, "/v2/assets//balances/
": { - "function": "get_balance_by_address_and_asset", + "function": "get_balance_by_asset_and_address", "description": "Returns the balance of an address and asset", "args": [ { - "name": "address", + "name": "asset", "required": true, "type": "str", - "description": "The address to return (e.g. $ADDRESS_1)" + "description": "The asset to return (e.g. XCP)" }, { - "name": "asset", + "name": "address", "required": true, "type": "str", - "description": "The asset to return (e.g. XCP)" + "description": "The address to return (e.g. $ADDRESS_1)" }, { "name": "verbose", @@ -14097,6 +14104,13 @@ "type": "int", "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)" }, + { + "name": "sort", + "default": null, + "required": false, + "type": "str", + "description": "The sort order of the dispensers to return (overrides the `cursor` parameter) (e.g. give_quantity:desc)" + }, { "name": "verbose", "type": "bool", @@ -15104,6 +15118,13 @@ "type": "int", "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)" }, + { + "name": "sort", + "default": null, + "required": false, + "type": "str", + "description": "The sort order of the dispensers to return (overrides the `cursor` parameter) (e.g. give_quantity:desc)" + }, { "name": "verbose", "type": "bool", From 972718844a5eec7c8815e00c2b71c27cf49063ef Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 24 Sep 2024 10:25:20 +0000 Subject: [PATCH 34/46] tweaks and fixes --- apiary.apib | 3455 ++++++++--------- .../counterpartycore/lib/api/api_server.py | 5 +- .../counterpartycore/lib/api/api_v1.py | 28 +- .../lib/transaction_helper/p2sh_serializer.py | 18 +- .../transaction_helper/transaction_inputs.py | 4 +- .../transaction_helper/transaction_outputs.py | 4 +- .../test/regtest/apidoc/apicache.json | 3123 ++++++++------- 7 files changed, 3256 insertions(+), 3381 deletions(-) diff --git a/apiary.apib b/apiary.apib index ab72a37d0f..13d2ee35ad 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-09-23 12:37:37.956634. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-09-24 10:17:09.701169. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -179,15 +179,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", "block_index": 193, - "block_time": 1727095038, + "block_time": 1727173013, "difficulty": 545259519, - "previous_block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f" + "previous_block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20" }, "tx_hash": null, "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 } ], "next_cursor": 518, @@ -204,17 +204,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", "block_index": 193, - "block_time": 1727095038, + "block_time": 1727173013, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "tx_index": 59, - "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", + "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -234,9 +234,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 } ], "next_cursor": 519, @@ -255,16 +255,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "destination": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "out_index": 0, - "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", "tx_index": 33, - "block_time": 1727094846, + "block_time": 1727172806, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", "block_index": 146, - "block_time": 1727094846 + "block_time": 1727172806 } ], "next_cursor": 237, @@ -282,15 +282,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", - "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", + "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", + "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", "transaction_count": 1, - "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", - "block_time": 1727095038 + "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", + "block_time": 1727173013 }, "tx_hash": null, "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 } ], "next_cursor": 529, @@ -308,12 +308,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "tx_index": 59 }, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 } ], "next_cursor": 528, @@ -333,15 +333,15 @@ Here is a list of events classified by theme and for each an example response: "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 193, - "event": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "event": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -351,9 +351,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 } ], "next_cursor": 525, @@ -370,16 +370,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -389,9 +389,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 } ], "next_cursor": 524, @@ -410,14 +410,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "memo": null, "quantity": 10000, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "status": "valid", - "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039", + "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5", "tx_index": 53, - "block_time": 1727095012, + "block_time": 1727172988, "asset_info": { "divisible": true, "asset_longname": null, @@ -427,9 +427,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039", + "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5", "block_index": 187, - "block_time": 1727095012 + "block_time": 1727172988 } ], "next_cursor": null, @@ -448,15 +448,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "status": "valid", - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "tx_index": 54, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "divisible": true, "asset_longname": null, @@ -466,9 +466,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "block_time": 1727095016 + "block_time": 1727172992 } ], "next_cursor": 495, @@ -506,20 +506,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "status": "valid", - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, - "block_time": 1727095033, + "block_time": 1727173009, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 } ], "next_cursor": null, @@ -541,15 +541,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": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "status": "valid", - "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", + "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", "tx_index": 40, - "block_time": 1727094875, + "block_time": 1727172836, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -563,9 +563,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": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", + "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", "block_index": 153, - "block_time": 1727094875 + "block_time": 1727172836 } ], "next_cursor": null, @@ -598,11 +598,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": 159, - "block_time": 1727094911 + "block_time": 1727172872 }, - "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", + "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", "block_index": 159, - "block_time": 1727094911 + "block_time": 1727172872 } ], "next_cursor": 367, @@ -630,22 +630,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": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "status": "valid", "transfer": false, - "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", + "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", "tx_index": 46, - "block_time": 1727094911, + "block_time": 1727172872, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", + "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", "block_index": 159, - "block_time": 1727094911 + "block_time": 1727172872 } ], "next_cursor": 374, @@ -665,12 +665,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "status": "valid", "tag": "64657374726f79", - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "tx_index": 59, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -680,9 +680,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 } ], "next_cursor": 157, @@ -714,11 +714,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": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "status": "open", - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "tx_index": 57, - "block_time": 1727095029, + "block_time": 1727173005, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -742,9 +742,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": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "block_index": 191, - "block_time": 1727095029 + "block_time": 1727173005 } ], "next_cursor": 502, @@ -767,20 +767,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": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", "tx0_index": 49, - "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "tx1_index": 52, - "block_time": 1727095009, + "block_time": 1727172973, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -799,9 +799,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": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "tx_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "block_index": 186, - "block_time": 1727095009 + "block_time": 1727172973 } ], "next_cursor": 461, @@ -819,11 +819,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e" + "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06" }, - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "block_index": 190, - "block_time": 1727095025 + "block_time": 1727173001 } ], "next_cursor": 476, @@ -841,11 +841,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811" + "tx_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e" }, - "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", + "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", "block_index": 185, - "block_time": 1727095004 + "block_time": 1727172969 } ], "next_cursor": null, @@ -862,13 +862,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", - "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "status": "completed" }, - "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", + "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", "block_index": 185, - "block_time": 1727095004 + "block_time": 1727172969 } ], "next_cursor": 440, @@ -887,18 +887,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "status": "valid", - "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", + "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", "tx_index": 51, - "block_time": 1727095004, + "block_time": 1727172969, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", + "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", "block_index": 185, - "block_time": 1727095004 + "block_time": 1727172969 } ], "next_cursor": null, @@ -916,16 +916,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "status": "valid", - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "tx_index": 56, - "block_time": 1727095025 + "block_time": 1727173001 }, - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "block_index": 190, - "block_time": 1727095025 + "block_time": 1727173001 } ], "next_cursor": null, @@ -943,13 +943,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "block_time": 1727094927 + "order_hash": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "block_time": 1727172888 }, "tx_hash": null, "block_index": 182, - "block_time": 1727094927 + "block_time": 1727172888 } ], "next_cursor": 446, @@ -967,14 +967,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "block_time": 1727094927 + "order_match_id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "block_time": 1727172888 }, "tx_hash": null, "block_index": 182, - "block_time": 1727094927 + "block_time": 1727172888 } ], "next_cursor": null, @@ -999,14 +999,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": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", - "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "satoshirate": 1, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "status": 0, - "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", "tx_index": 32, - "block_time": 1727094842, + "block_time": 1727172802, "asset_info": { "divisible": true, "asset_longname": null, @@ -1019,9 +1019,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": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", "block_index": 145, - "block_time": 1727094842 + "block_time": 1727172802 } ], "next_cursor": 254, @@ -1041,9 +1041,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "status": 0, - "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", "asset_info": { "divisible": true, "asset_longname": null, @@ -1053,9 +1053,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", "block_index": 146, - "block_time": 1727094846 + "block_time": 1727172806 } ], "next_cursor": 260, @@ -1074,13 +1074,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mswKMJEVhPVAQYJDEPVBvaADKf2fmZC6hN", + "destination": "mmrTk1uWkJbzqpooxUaCcr7B4jGgGg1KQv", "dispense_quantity": 10, - "dispenser_tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "tx_hash": "cc547f0e1d0b1b9e9bedbdb98174f8bb688efdaabade4e76ce52efe2f4cda71b", + "dispenser_tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_hash": "d7510384be95e1cf002f98fbbcb6b4abf6a6be9ef00f5d0b38a409f15af32e6f", "tx_index": 31, - "block_time": 1727094839, + "block_time": 1727172798, "asset_info": { "divisible": true, "asset_longname": null, @@ -1090,9 +1090,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "cc547f0e1d0b1b9e9bedbdb98174f8bb688efdaabade4e76ce52efe2f4cda71b", + "tx_hash": "d7510384be95e1cf002f98fbbcb6b4abf6a6be9ef00f5d0b38a409f15af32e6f", "block_index": 144, - "block_time": 1727094839 + "block_time": 1727172798 } ], "next_cursor": null, @@ -1112,14 +1112,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", + "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", - "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", "tx_index": 33, - "block_time": 1727094846, + "block_time": 1727172806, "asset_info": { "divisible": true, "asset_longname": null, @@ -1130,9 +1130,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", "block_index": 146, - "block_time": 1727094846 + "block_time": 1727172806 } ], "next_cursor": 240, @@ -1154,19 +1154,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": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a", + "tx_hash": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f", "tx_index": 25, "value": 66600.0, - "block_time": 1727094803, + "block_time": 1727172762, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a", + "tx_hash": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f", "block_index": 138, - "block_time": 1727094803 + "block_time": 1727172762 } ], "next_cursor": 213, @@ -1204,16 +1204,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "start_block": 0, "status": "open", - "tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", + "tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", "tx_index": 22, - "block_time": 1727094790 + "block_time": 1727172750 }, - "tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", + "tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", "block_index": 135, - "block_time": 1727094790 + "block_time": 1727172750 } ], "next_cursor": 161, @@ -1231,11 +1231,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "801ce5c24ea2170c2937ab2d624deefa78877919ee48f5b5d5134b4b1c1d545e" + "tx_hash": "c768c790db646fe20b33e0828c0042c6705ee66248d68fde588e91455ea70222" }, "tx_hash": null, "block_index": 130, - "block_time": 1727094760 + "block_time": 1727172729 } ], "next_cursor": 110, @@ -1256,24 +1256,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", + "fairminter_tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", "paid_quantity": 34, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "status": "valid", - "tx_hash": "cfa6d447a379922dd0da484f07f975e5f68176b84d2aee0d31fa0acec398bb72", + "tx_hash": "7f69a52eaeb924d936bb756185de09623ce5fc4623732debde3ceb5f2c01dcb1", "tx_index": 23, - "block_time": 1727094794, + "block_time": 1727172754, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } }, - "tx_hash": "cfa6d447a379922dd0da484f07f975e5f68176b84d2aee0d31fa0acec398bb72", + "tx_hash": "7f69a52eaeb924d936bb756185de09623ce5fc4623732debde3ceb5f2c01dcb1", "block_index": 136, - "block_time": 1727094794 + "block_time": 1727172754 } ], "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": 151, - "destination": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa:1", + "destination": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "status": "valid", - "tx_hash": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", + "tx_hash": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", "tx_index": 38, - "block_time": 1727094866, + "block_time": 1727172827, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", + "tx_hash": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", "block_index": 151, - "block_time": 1727094866 + "block_time": 1727172827 } ], "next_cursor": 291, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu", + "destination": "bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "28492d2ebdcfa146b86f026a77270b902bd2a4ee130b1cb59bd4b51a8eabf1d4:0", + "source": "21b3e83b0b0df662cf0bd787cf0aa89d24f2ff8a271d6fc2859150e567f2d8af:0", "status": "valid", - "tx_hash": "2ab44625e41aa03c78b532beacdd49dde9f69aa713170235cd829fdf3bde631a", + "tx_hash": "88ce36f56bec0bde16401bf8d29fc724911d18c4b2e04c5381143b345405c019", "tx_index": 37, - "block_time": 1727094862, + "block_time": 1727172823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "2ab44625e41aa03c78b532beacdd49dde9f69aa713170235cd829fdf3bde631a", + "tx_hash": "88ce36f56bec0bde16401bf8d29fc724911d18c4b2e04c5381143b345405c019", "block_index": 150, - "block_time": 1727094862 + "block_time": 1727172823 } ], "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": 155, - "destination": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940:1", + "destination": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800:1", "msg_index": 1, "quantity": 1500000000, - "source": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea:0", + "source": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a:0", "status": "valid", - "tx_hash": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", + "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", "tx_index": 42, - "block_time": 1727094884, + "block_time": 1727172845, "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": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", + "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", "block_index": 155, - "block_time": 1727094884 + "block_time": 1727172845 } ], "next_cursor": 346, @@ -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": "bcrt1qzlgv5ud7ygwd6qudn3fpnh7a97lhyu2yp4uggk", + "source": "bcrt1qx8nq65mcz45h8s0zdjjssw5cx8ln5utgc6xt67", "status": "valid", - "tx_hash": "43093d52e847e4f5f87c441d762c47e61b2b30dd12418bb88f8a1ec5686fb269", + "tx_hash": "fb670497b1b7bdfefa37ae903873231799070c083dad68feaeffa589cb749da7", "tx_index": 9, - "block_time": 1727094721, + "block_time": 1727172691, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "43093d52e847e4f5f87c441d762c47e61b2b30dd12418bb88f8a1ec5686fb269", + "tx_hash": "fb670497b1b7bdfefa37ae903873231799070c083dad68feaeffa589cb749da7", "block_index": 121, - "block_time": 1727094721 + "block_time": 1727172691 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 193, - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", - "block_time": 1727095038, - "previous_block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", + "block_time": 1727173013, + "previous_block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", "difficulty": 545259519, - "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", - "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", - "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", + "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", + "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", + "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", - "block_time": 1727095033, - "previous_block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", + "block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", + "block_time": 1727173009, + "previous_block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", "difficulty": 545259519, - "ledger_hash": "f4b76f07514166cfabd35b7a2da674150970518d1c613f55e96eddbd99affaf0", - "txlist_hash": "d6781ffd27f34f36d002569e3fb9f70d46aec42a19059e55ac6a3e950c33e0c9", - "messages_hash": "82aa539e8b22a466290d78e0276fa997beab8c70a841cd1f1c5941772500745c", + "ledger_hash": "7c5a10c60e0adda273a820ac0f140981f23ec027153fdaf5863e9fbb1950b507", + "txlist_hash": "10113b203d2e9b08f332a14a1a7b1e357fe1b95667c66460e14365341f37e508", + "messages_hash": "469a73b1b8afe332b56deab233991be89b015331b31aa3cc7daa11de356308f7", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", - "block_time": 1727095029, - "previous_block_hash": "15b333419e3b9742692eeb0e5dcbbc123b0bc51e93ef5afa59e3467566caf68d", + "block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", + "block_time": 1727173005, + "previous_block_hash": "02f6700fcf36370ae093a8b30af0f487ddbd03c2c43ad683a4ba98deb4c51323", "difficulty": 545259519, - "ledger_hash": "1806c223db9e0630602852badf94b7487b3c6315bce8f305c31354cd74e960ed", - "txlist_hash": "1a83d74b83b692b715dea5270ac39c6824aa58e9f5a474f018f9daaff4fd3211", - "messages_hash": "07f3dd746c35a1a10b151ff73117c7aa3a1530bd686c33e2753e4211f8b434a8", + "ledger_hash": "46e56e1c4701cacad891239b4357cdbe904d35306f95f374e48651661bd28119", + "txlist_hash": "74aadb7ca23cc44a9d5530bab8d1037e502d28f47c1bdaa139c4a792ea767333", + "messages_hash": "a9eaf5c9f4f1f092d273b6e208fca477dcbcf9f65e7245e4b371514b7299ebf9", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "15b333419e3b9742692eeb0e5dcbbc123b0bc51e93ef5afa59e3467566caf68d", - "block_time": 1727095025, - "previous_block_hash": "131c3eb09ef4a1fb5a9b6b20241ec06f87662e2b8ef1a964e039a96020523d95", + "block_hash": "02f6700fcf36370ae093a8b30af0f487ddbd03c2c43ad683a4ba98deb4c51323", + "block_time": 1727173001, + "previous_block_hash": "0fc8aabb62aabd549bddf7c7b53943e2152520c9e1bf3e24ab8aac1977208f47", "difficulty": 545259519, - "ledger_hash": "7fae07ae63846d69d3335162f6207534a432c0cccf4a99433d8e6a76522affb7", - "txlist_hash": "3be2ee8d28f225529efdf0dc294e36cbd4fbe28b12585d248f6bc7aeb50ca123", - "messages_hash": "548e424c951f748549371636b9496042d366811563c345d7e46e804ec5d24ecf", + "ledger_hash": "fd99cd30b4b6ceb23579445adeb2ff01abb843af3232ccf152f83b8da6fc6088", + "txlist_hash": "b85a789a31429c13b3e556a4f0665a31733ea0ca06d5026a81333e5708b27b20", + "messages_hash": "0265d415f94f48d43cd18b77e5033b2d22270632f66d4eda2a07ea4ad26f6371", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "131c3eb09ef4a1fb5a9b6b20241ec06f87662e2b8ef1a964e039a96020523d95", - "block_time": 1727095020, - "previous_block_hash": "0e7d90a67c58b55067a8a1fedf031c4d5fe6e616c5739c5832c179189357078a", + "block_hash": "0fc8aabb62aabd549bddf7c7b53943e2152520c9e1bf3e24ab8aac1977208f47", + "block_time": 1727172996, + "previous_block_hash": "4a56fb7af76004d2f0d9e697200b176b68422435a6c64d80053a15e2d76b9bbb", "difficulty": 545259519, - "ledger_hash": "18965373ea5ad513653401944234b465dcbf5681e0e083b48847e8a9db288909", - "txlist_hash": "5213ad907f4dae2e1e4de6f216c9bdeb0ea1895c63b69ac233b71b47a4027475", - "messages_hash": "482e0ad064e0485873002d4a555c8e59c1abcbdf6f8dff3a329d8762d9e8ec20", + "ledger_hash": "8de4e9ba279dcf9d61fe03dd631ac235f92b565f6f5c5b787273ca791ed092a4", + "txlist_hash": "2d26a9f871599f84b034aec8fbe8ec79d1e34902055e7a40c8517899e9b69ca3", + "messages_hash": "071c88ddb360523caf0a6070d8c9955a2749d7afee700bc45d0e7185f8b65d3a", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 193, - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", - "block_time": 1727095038, - "previous_block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", + "block_time": 1727173013, + "previous_block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", "difficulty": 545259519, - "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", - "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", - "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", + "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", + "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", + "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52` (str, required) - The index of the block to return + + block_hash: `16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240` (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": 193, - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", - "block_time": 1727095038, - "previous_block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", + "block_time": 1727173013, + "previous_block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", "difficulty": 545259519, - "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", - "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", - "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", + "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", + "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", + "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 59, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", - "block_time": 1727095038, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", + "block_time": 1727173013, + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", + "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1706,11 +1706,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "f4b76f07514166cfabd35b7a2da674150970518d1c613f55e96eddbd99affaf0", - "messages_hash": "82aa539e8b22a466290d78e0276fa997beab8c70a841cd1f1c5941772500745c", + "ledger_hash": "7c5a10c60e0adda273a820ac0f140981f23ec027153fdaf5863e9fbb1950b507", + "messages_hash": "469a73b1b8afe332b56deab233991be89b015331b31aa3cc7daa11de356308f7", "transaction_count": 1, - "txlist_hash": "d6781ffd27f34f36d002569e3fb9f70d46aec42a19059e55ac6a3e950c33e0c9", - "block_time": 1727095033 + "txlist_hash": "10113b203d2e9b08f332a14a1a7b1e357fe1b95667c66460e14365341f37e508", + "block_time": 1727173009 }, "tx_hash": null }, @@ -1719,43 +1719,43 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58 }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "status": "valid", - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, - "block_time": 1727095033, + "block_time": 1727173009, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -1765,22 +1765,22 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "XCP", "block_index": 192, - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -1790,7 +1790,7 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" } ], "next_cursor": 524, @@ -1873,16 +1873,16 @@ Returns the events of a block filtered by event "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -1892,57 +1892,57 @@ Returns the events of a block filtered by event }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" } ], "next_cursor": null, @@ -2005,16 +2005,16 @@ Returns the credits of a block "result": [ { "block_index": 192, - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,20 +2026,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2047,20 +2047,20 @@ Returns the credits of a block }, { "block_index": 192, - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2116,16 +2116,16 @@ Returns the debits of a block "result": [ { "block_index": 193, - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "event": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -2165,24 +2165,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "object_id": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", "block_index": 182, "confirmed": true, - "block_time": 1727094927 + "block_time": 1727172888 }, { "type": "order", - "object_id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", + "object_id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", "block_index": 182, "confirmed": true, - "block_time": 1727094927 + "block_time": 1727172888 }, { "type": "order_match", - "object_id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "object_id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", "block_index": 182, "confirmed": true, - "block_time": 1727094927 + "block_time": 1727172888 } ], "next_cursor": null, @@ -2214,13 +2214,13 @@ Returns the cancels of a block "result": [ { "tx_index": 56, - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "block_index": 190, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "status": "valid", "confirmed": true, - "block_time": 1727095025 + "block_time": 1727173001 } ], "next_cursor": null, @@ -2252,15 +2252,15 @@ Returns the destructions of a block "result": [ { "tx_index": 59, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -2300,14 +2300,14 @@ Returns the issuances of a block "result": [ { "tx_index": 46, - "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", + "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -2322,7 +2322,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094911, + "block_time": 1727172872, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2356,10 +2356,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2367,7 +2367,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "divisible": true, "asset_longname": null, @@ -2380,10 +2380,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2391,11 +2391,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2404,10 +2404,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2415,11 +2415,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2457,27 +2457,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", - "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "last_status_tx_hash": null, - "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2492,7 +2492,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727094846, + "block_time": 1727172806, "asset_info": { "divisible": true, "asset_longname": null, @@ -2533,16 +2533,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 58, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "fee_paid_normalized": "0.00600000" } ], @@ -2576,17 +2576,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a", + "tx_hash": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f", "block_index": 138, - "block_hash": "715c39366978061f27066029ccbcfc33dd26d440388e9696977ea887b0335190", - "block_time": 1727094803, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "block_hash": "016501740eb2e2bbe5dbf3cc03bfc157c53bbab3308053b5dd16a698f2c43386", + "block_time": 1727172762, + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a:1", + "utxos_info": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2611,25 +2611,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 51, - "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", + "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", "block_index": 185, - "block_hash": "4a9667cee3f15e9c8483631f9b833f99a1c792e7a9edb176af5ef5397aaff5a6", - "block_time": 1727095004, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "1d6980459044b891166b8b08040dbfaf7f1e6bf6b4eabe8b4847304731354204", + "block_time": 1727172969, + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "btc_amount": 2000, "fee": 10000, - "data": "0b0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "data": "0b592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "supported": true, - "utxos_info": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf:0", + "utxos_info": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", - "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", - "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", + "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "status": "valid" } }, @@ -2644,23 +2644,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "block_index": 190, - "block_hash": "15b333419e3b9742692eeb0e5dcbbc123b0bc51e93ef5afa59e3467566caf68d", - "block_time": 1727095025, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "02f6700fcf36370ae093a8b30af0f487ddbd03c2c43ad683a4ba98deb4c51323", + "block_time": 1727173001, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "465cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "data": "4607b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "supported": true, - "utxos_info": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a:1", + "utxos_info": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "status": "valid" } }, @@ -2675,17 +2675,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", - "block_time": 1727095038, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", + "block_time": 1727173013, + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", + "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2715,17 +2715,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 32, - "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", "block_index": 145, - "block_hash": "204201de2525d52f3b6bb40197a9bfeef65554dfeeb7705ffdc2ed23194386e2", - "block_time": 1727094842, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "block_hash": "3f2649d7462b851aad641625387bbaaebdca0732229f48ff37f55b631752a272", + "block_time": 1727172802, + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c000000000000000100000000000000010000000000002710000000000000000100805f3661ede0bb8faf3dacaca835a6cac6e8c9c0f1", + "data": "0c000000000000000100000000000000010000000000002710000000000000000100802a7de4784b2a5ac19d0f38d5234d48473a9330bf", "supported": true, - "utxos_info": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf:1", + "utxos_info": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2737,7 +2737,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "status": "valid", "asset_info": { "divisible": true, @@ -2761,17 +2761,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", "block_index": 146, - "block_hash": "6b8becbdf9342a2a85170e63ff82820e772f5a0777a1f2b2b70d8a5468aa9a7c", - "block_time": 1727094846, - "source": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", - "destination": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "block_hash": "326eafa2366f787138a43075c3502bcb5cc7bb9e23f33a2e9bd6e5edea5e367c", + "block_time": 1727172806, + "source": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", + "destination": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "btc_amount": 10000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9:0", + "utxos_info": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 40, - "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", + "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", "block_index": 153, - "block_hash": "14f622ac71894170ac2f4827468e63aeeda4db73b0ee356968aa8006ea7dfb6d", - "block_time": 1727094875, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "2cdf300ab7a5282d725bc408eca397e49d623f369f6faff1f334f61d814502c5", + "block_time": 1727172836, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c:1", + "utxos_info": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2814,7 +2814,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2839,17 +2839,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 46, - "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", + "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", "block_index": 159, - "block_hash": "11b02f8a8158ebe302bbb5ba0625dc6cf7dab81cbef9b8465d8390ed513510e8", - "block_time": 1727094911, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "40243aa85a9d52a8adda4577f1065f05c1b76ceec3fd366c260bdcfd5ccdde75", + "block_time": 1727172872, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18:1", + "utxos_info": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2881,17 +2881,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "block_index": 191, - "block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", - "block_time": 1727095029, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", + "block_time": 1727173005, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d:1", + "utxos_info": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2934,17 +2934,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039", + "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5", "block_index": 187, - "block_hash": "47e79d3137e4c7fe6d7de5cf5185eb40bea9c8842fac6dc9b2f0bb29b4a3504e", - "block_time": 1727095012, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "block_hash": "65667de29f3b10d45fc48c6f8eab77893250ac756b243425a6dabdea3c7ed133", + "block_time": 1727172988, + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080b16240e182fcfb3d1437b108a600036c78a7f8a2", + "data": "020000000000000001000000000000271080d429e837a5671380d2470256f79bfb7e09709e7f", "supported": true, - "utxos_info": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039:1", + "utxos_info": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2952,7 +2952,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "memo": null, "asset_info": { "divisible": true, @@ -2975,17 +2975,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "block_hash": "0e7d90a67c58b55067a8a1fedf031c4d5fe6e616c5739c5832c179189357078a", - "block_time": 1727095016, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "4a56fb7af76004d2f0d9e697200b176b68422435a6c64d80053a15e2d76b9bbb", + "block_time": 1727172992, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380cd4cce463e7e46e89ecf1c25aa143c8a724f591a804efd3277d785851bf1bfb18ef3ebd9ea8732f76580b16240e182fcfb3d1437b108a600036c78a7f8a2400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380532aac116f3cb07b11be377d648899a80753971d80ae5b876a7593a9bc79de22969203c476ffdfd3db80d429e837a5671380d2470256f79bfb7e09709e7f400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d:0", + "utxos_info": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2993,14 +2993,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -3008,7 +3008,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3034,23 +3034,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", - "block_time": 1727095033, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", + "block_time": 1727173009, + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480b16240e182fcfb3d1437b108a600036c78a7f8a2017377656570206d7920617373657473", + "data": "0480d429e837a5671380d2470256f79bfb7e09709e7f017377656570206d7920617373657473", "supported": true, - "utxos_info": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc:1", + "utxos_info": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "flags": 1, "memo": "sweep my assets" } @@ -3083,17 +3083,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 59, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", - "block_time": 1727095038, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", + "block_time": 1727173013, + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", + "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3116,23 +3116,23 @@ Returns the list of the last ten transactions }, { "tx_index": 58, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", - "block_time": 1727095033, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", + "block_time": 1727173009, + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480b16240e182fcfb3d1437b108a600036c78a7f8a2017377656570206d7920617373657473", + "data": "0480d429e837a5671380d2470256f79bfb7e09709e7f017377656570206d7920617373657473", "supported": true, - "utxos_info": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc:1", + "utxos_info": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "flags": 1, "memo": "sweep my assets" } @@ -3150,7 +3150,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `0200000000010661b89d289ff7cbdd8b237e577bab96e2520a059f2770a216d078c1268219b1480000000000ffffffff4bcc88c6869c2c03133df22767e60404baeee3f5138edeebb29dabd3a798fdce0000000000ffffffff2782f40f10afefdc143f14d357cfe34f944494aa373833b9832289ba2143f8f80000000000ffffffff5aa5f588de814d302d41d9f100b7b3a542e1ec2050ecb18b2fc60ed9374dd7e20000000000ffffffffa2e429abf0729e4b98b996a0f43844e6b542e00084adc2ecb36dfe6e9340793b0000000000ffffffff75086d0ba9bc241f39567d71adaed566064def254fc38b7a103fdb3bdd3949470000000000ffffffff04e8030000000000006951210394992133fa4f244f3fa68c4e576be848acfb88d51ff9533c00b4f5359bba4e5e2102d1259a6447c1b3481545c888843b4977bf8551a62b304b47bb60f551654996ab2102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee8030000000000006951210294992133fa4f244f3f98987a66ae0286e9a98e340fc5dc202518ebc4d413953d2103883f1a2abaf3c4b690c0d3793b8ac781745cbb2119c72ec72a02b5b0e7b56d6a2102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee80300000000000069512103a2992133fa4f244f3fa5984dd7a6a486eac5f693f7679c20251ee10911c801c22103883f1a2abaf3c49f90c0d3793b8ac784545cbb2119c72ec70a02b5b0e7b56db82102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853ae387923fc06000000160014e829a0216c4a51744db91c43f5bb56f5f150753c024730440220123c8737294552558203cac285693f15a108d3966e66c75a6617d1f2d56c476402204150203a1a74e8ec140894ef2572bebeee6aa8bbdb14f21a58a69ad077b1ea45012102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0802473044022062494e5172ff51aed3620115b80977d636ceda870a1b9a8025dfa760f411d3b102201d180e5181694e7ab7b23cdcad25e4948327307445562a4bf825aaebd5f6393f012102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b080247304402203db0029f1092b6d9d5a0fd36008b58a3043ba4c3443e4bf3bb766bbfa402aec902201763bdc7755cebedcdd4a88735d86b57aa7679fa52b527d7d4d231f6c24e52d2012102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0802473044022033a7f73562ffc5320e3efc0e2f5dc31764ff8fb17bfbb1c71b05ca474d552554022037f9509621d4371aad20f09681dbac89f7066806b53f778fe07f9a9dd80aca9b012102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b080247304402207a6523b190d5b118122e7aedbe74c681320dc810b2bb09bf53f7343690e813be02201af2265792a6ac960e9a644f75fee65a2126bc6732168759f1cc50201e04dc3f012102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0802473044022074bd570d18e84ca337e54a3322b7b804f038a0f70704e794962ee9a23779787502205ca00f90f23fc252c9efdbd6915fbfaf478618f697e1420162f9acc4d5ee244b012102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0800000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000101737477f765c6c08ac99fe1a9a5f2370d6234a789d06d95e6af11b9b1f2ea022d0000000000ffffffff020000000000000000356a335dc759e5c2bd07e4533e2597e39bacdc8e5df787d31f3ff513ffd149c3bb44c18977e802847bff14e37a2ec579d6417837f7c0f0ca052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad0247304402202ff34c46adcf93288c974036e0eb7d4b6ebfc890b5eded0da2177fa4947e181302203f334aed60f6f2326335192f9dfe906a2c4fb66cda9266a6e20cc3bda6fc2e4c012102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94000000000` (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. @@ -3163,53 +3163,18 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380cd4cce463e7e46e89ecf1c25aa143c8a724f591a804efd3277d785851bf1bfb18ef3ebd9ea8732f76580b16240e182fcfb3d1437b108a600036c78a7f8a2400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "61b89d289ff7cbdd8b237e577bab96e2520a059f2770a216d078c1268219b148", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "4bcc88c6869c2c03133df22767e60404baeee3f5138edeebb29dabd3a798fdce", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "2782f40f10afefdc143f14d357cfe34f944494aa373833b9832289ba2143f8f8", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "5aa5f588de814d302d41d9f100b7b3a542e1ec2050ecb18b2fc60ed9374dd7e2", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "a2e429abf0729e4b98b996a0f43844e6b542e00084adc2ecb36dfe6e9340793b", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "75086d0ba9bc241f39567d71adaed566064def254fc38b7a103fdb3bdd394947", + "hash": "737477f765c6c08ac99fe1a9a5f2370d6234a789d06d95e6af11b9b1f2ea022d", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3218,75 +3183,51 @@ Returns Counterparty information from a raw transaction in hex format. ], "vout": [ { - "value": 1000, - "script_pub_key": "51210394992133fa4f244f3fa68c4e576be848acfb88d51ff9533c00b4f5359bba4e5e2102d1259a6447c1b3481545c888843b4977bf8551a62b304b47bb60f551654996ab2102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853ae" - }, - { - "value": 1000, - "script_pub_key": "51210294992133fa4f244f3f98987a66ae0286e9a98e340fc5dc202518ebc4d413953d2103883f1a2abaf3c4b690c0d3793b8ac781745cbb2119c72ec72a02b5b0e7b56d6a2102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853ae" - }, - { - "value": 1000, - "script_pub_key": "512103a2992133fa4f244f3fa5984dd7a6a486eac5f693f7679c20251ee10911c801c22103883f1a2abaf3c49f90c0d3793b8ac784545cbb2119c72ec70a02b5b0e7b56db82102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853ae" + "value": 0, + "script_pub_key": "6a335dc759e5c2bd07e4533e2597e39bacdc8e5df787d31f3ff513ffd149c3bb44c18977e802847bff14e37a2ec579d6417837f7c0" }, { - "value": 29999987000, - "script_pub_key": "0014e829a0216c4a51744db91c43f5bb56f5f150753c" + "value": 4999990000, + "script_pub_key": "00145599316be7057562b9146e3d03cc6ea42923b1ad" } ], "vtxinwit": [ - "30440220123c8737294552558203cac285693f15a108d3966e66c75a6617d1f2d56c476402204150203a1a74e8ec140894ef2572bebeee6aa8bbdb14f21a58a69ad077b1ea4501", - "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", - "3044022062494e5172ff51aed3620115b80977d636ceda870a1b9a8025dfa760f411d3b102201d180e5181694e7ab7b23cdcad25e4948327307445562a4bf825aaebd5f6393f01", - "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", - "304402203db0029f1092b6d9d5a0fd36008b58a3043ba4c3443e4bf3bb766bbfa402aec902201763bdc7755cebedcdd4a88735d86b57aa7679fa52b527d7d4d231f6c24e52d201", - "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", - "3044022033a7f73562ffc5320e3efc0e2f5dc31764ff8fb17bfbb1c71b05ca474d552554022037f9509621d4371aad20f09681dbac89f7066806b53f778fe07f9a9dd80aca9b01", - "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", - "304402207a6523b190d5b118122e7aedbe74c681320dc810b2bb09bf53f7343690e813be02201af2265792a6ac960e9a644f75fee65a2126bc6732168759f1cc50201e04dc3f01", - "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", - "3044022074bd570d18e84ca337e54a3322b7b804f038a0f70704e794962ee9a23779787502205ca00f90f23fc252c9efdbd6915fbfaf478618f697e1420162f9acc4d5ee244b01", - "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08" + "304402202ff34c46adcf93288c974036e0eb7d4b6ebfc890b5eded0da2177fa4947e181302203f334aed60f6f2326335192f9dfe906a2c4fb66cda9266a6e20cc3bda6fc2e4c01", + "02bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b940" ], "lock_time": 0, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", - "tx_id": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d" + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", + "tx_id": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9" }, "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MYASSETA", - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", - "quantity": 10, - "memo": null, - "memo_is_hex": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" + "message_type": "order", + "message_type_id": 10, + "message_data": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "expiration": 21, + "fee_required": 0, + "status": "open", + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, - { - "asset": "XCP", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "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" - } - ] + "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" } @@ -3298,7 +3239,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f` (str, required) - Transaction hash + + tx_hash: `b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e` (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. @@ -3309,18 +3250,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710804efd3277d785851bf1bfb18ef3ebd9ea8732f765", + "data": "020000000000000001000000000000271080ae5b876a7593a9bc79de22969203c476ffdfd3db", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "b6d40817627c585579c9c43ddb072e77f99d3626deca5b52451fd86ab5938203", + "hash": "303babb3f33ba5da113c0f5926f9e0b6fb0fab29be8815b676687637e1bf6193", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3330,20 +3271,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2ed944a4bcea26c59d5b101769dda1f522bf6af06606e2baf7ba99e033685f103913435e82889644e3602d799e48ad" + "script_pub_key": "6a2e22e7a1d4fa666ac96161f86a86ec54ea0b3c211b73145a133a00111c728c8ff509252af0e1f8f0c20d7b94a92994" }, { "value": 4999955000, - "script_pub_key": "0014b16240e182fcfb3d1437b108a600036c78a7f8a2" + "script_pub_key": "0014d429e837a5671380d2470256f79bfb7e09709e7f" } ], "vtxinwit": [ - "30440220500964d371a2df466c8cb65ee0a04c9016aec3791c5fcb51b4b692e3e39ff7c50220202faa7a62a2d622bfba780b2f6be3f0a225d13e26ce4f8da5b3cecc617c5cd201", - "0268539bd755f8fa4f5aa15f95da1dcbbbd86d28c794673d670f60fb3e1040bbd1" + "304402203561f9ba0ae46ad26f8daa4aa16c4fc6d8048a02b9eb18086adbd408a6a7fd9102206a9343c49504c18b0b1135b202c28cbee146645af2f653bb4510361c9bb0fd3a01", + "028f281d89d24d92d61488bbd143cc93dd9c65b12631e2f3e98eab7fbc800e92e6" ], "lock_time": 0, - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", - "tx_id": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f" + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_id": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3351,7 +3292,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "memo": null, "asset_info": { "divisible": true, @@ -3412,17 +3353,17 @@ Returns a transaction by its index. { "result": { "tx_index": 59, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", - "block_time": 1727095038, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", + "block_time": 1727173013, + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", + "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3451,7 +3392,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d` (str, required) - The hash of the transaction + + tx_hash: `37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526` (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. @@ -3463,17 +3404,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 59, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", - "block_time": 1727095038, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", + "block_time": 1727173013, + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", + "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3526,47 +3467,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58 }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "status": "valid", - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, - "block_time": 1727095033, + "block_time": 1727173009, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -3576,24 +3517,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "XCP", "block_index": 192, - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -3603,36 +3544,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 } ], "next_cursor": 523, @@ -3645,7 +3586,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc` (str, required) - The hash of the transaction to return + + tx_hash: `81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -3669,47 +3610,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58 }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "status": "valid", - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, - "block_time": 1727095033, + "block_time": 1727173009, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -3719,24 +3660,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "XCP", "block_index": 192, - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -3746,36 +3687,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 } ], "next_cursor": 523, @@ -3788,7 +3729,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d` (str, required) - The hash of the transaction to return + + tx_hash: `01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444` (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 @@ -3807,10 +3748,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "quantity": 10, "status": "valid", @@ -3818,7 +3759,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "divisible": true, "asset_longname": null, @@ -3831,10 +3772,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3842,11 +3783,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -3855,10 +3796,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3866,11 +3807,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -3888,7 +3829,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9` (str, required) - The hash of the transaction to return + + tx_hash: `c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9` (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,27 +3849,27 @@ Returns the dispenses of a block { "tx_index": 33, "dispense_index": 0, - "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", - "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "last_status_tx_hash": null, - "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3943,7 +3884,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727094846, + "block_time": 1727172806, "asset_info": { "divisible": true, "asset_longname": null, @@ -3987,16 +3928,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -4006,63 +3947,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 } ], "next_cursor": null, @@ -4075,7 +4016,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc` (str, required) - The hash of the transaction to return + + tx_hash: `81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `535` (str, optional) - The last event index to return + Default: `None` @@ -4097,16 +4038,16 @@ Returns the events of a transaction "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -4116,63 +4057,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 } ], "next_cursor": null, @@ -4187,7 +4128,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku,bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql,bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (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 @@ -4211,7 +4152,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4221,7 +4162,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -4232,7 +4173,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4242,7 +4183,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -4253,7 +4194,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4263,7 +4204,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -4274,7 +4215,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4284,7 +4225,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -4295,7 +4236,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4305,7 +4246,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -4322,7 +4263,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku,bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql,bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (str, required) - Comma separated list of addresses to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4341,17 +4282,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 57, - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "block_index": 191, - "block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", - "block_time": 1727095029, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", + "block_time": 1727173005, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d:1", + "utxos_info": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4387,23 +4328,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "block_index": 190, - "block_hash": "15b333419e3b9742692eeb0e5dcbbc123b0bc51e93ef5afa59e3467566caf68d", - "block_time": 1727095025, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "02f6700fcf36370ae093a8b30af0f487ddbd03c2c43ad683a4ba98deb4c51323", + "block_time": 1727173001, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "465cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "data": "4607b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "supported": true, - "utxos_info": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a:1", + "utxos_info": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "status": "valid" } }, @@ -4411,17 +4352,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 55, - "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "block_index": 189, - "block_hash": "131c3eb09ef4a1fb5a9b6b20241ec06f87662e2b8ef1a964e039a96020523d95", - "block_time": 1727095020, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "0fc8aabb62aabd549bddf7c7b53943e2152520c9e1bf3e24ab8aac1977208f47", + "block_time": 1727172996, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e:1", + "utxos_info": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4457,17 +4398,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "block_hash": "0e7d90a67c58b55067a8a1fedf031c4d5fe6e616c5739c5832c179189357078a", - "block_time": 1727095016, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "4a56fb7af76004d2f0d9e697200b176b68422435a6c64d80053a15e2d76b9bbb", + "block_time": 1727172992, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380cd4cce463e7e46e89ecf1c25aa143c8a724f591a804efd3277d785851bf1bfb18ef3ebd9ea8732f76580b16240e182fcfb3d1437b108a600036c78a7f8a2400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380532aac116f3cb07b11be377d648899a80753971d80ae5b876a7593a9bc79de22969203c476ffdfd3db80d429e837a5671380d2470256f79bfb7e09709e7f400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d:0", + "utxos_info": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4475,14 +4416,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -4490,7 +4431,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4509,25 +4450,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 51, - "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", + "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", "block_index": 185, - "block_hash": "4a9667cee3f15e9c8483631f9b833f99a1c792e7a9edb176af5ef5397aaff5a6", - "block_time": 1727095004, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "1d6980459044b891166b8b08040dbfaf7f1e6bf6b4eabe8b4847304731354204", + "block_time": 1727172969, + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "btc_amount": 2000, "fee": 10000, - "data": "0b0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "data": "0b592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "supported": true, - "utxos_info": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf:0", + "utxos_info": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", - "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", - "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", + "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "status": "valid" } }, @@ -4544,7 +4485,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku,bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql,bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `535` (str, optional) - The last event index to return @@ -4580,11 +4521,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "status": "open", - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "tx_index": 57, - "block_time": 1727095029, + "block_time": 1727173005, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4608,24 +4549,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "block_index": 191, - "block_time": 1727095029 + "block_time": 1727173005 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "block_index": 191, - "event": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "event": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727095029, + "block_time": 1727173005, "asset_info": { "divisible": true, "asset_longname": null, @@ -4635,25 +4576,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "block_index": 191, - "block_time": 1727095029 + "block_time": 1727173005 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", + "block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", "block_index": 191, - "block_time": 1727095029, + "block_time": 1727173005, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "tx_index": 57, - "utxos_info": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d:1", + "utxos_info": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4685,40 +4626,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "block_index": 191, - "block_time": 1727095029 + "block_time": 1727173005 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "status": "valid", - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "tx_index": 56, - "block_time": 1727095025 + "block_time": 1727173001 }, - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "block_index": 190, - "block_time": 1727095025 + "block_time": 1727173001 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727095025, + "block_time": 1727173001, "asset_info": { "divisible": true, "asset_longname": null, @@ -4728,9 +4669,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "block_index": 190, - "block_time": 1727095025 + "block_time": 1727173001 } ], "next_cursor": 506, @@ -4743,7 +4684,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7,bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu,bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn` (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 @@ -4759,17 +4700,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "memo": null, "quantity": 10000, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "status": "valid", - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "tx_index": 60, "asset_info": { "divisible": true, @@ -4782,19 +4723,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "CREDIT", "params": { - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -4806,19 +4747,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 193, - "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -4830,27 +4771,27 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727095042.4665813, + "block_time": 1727173018.087438, "btc_amount": 0, - "data": "0200000000000000010000000000002710804efd3277d785851bf1bfb18ef3ebd9ea8732f765", + "data": "020000000000000001000000000000271080ae5b876a7593a9bc79de22969203c476ffdfd3db", "destination": "", "fee": 10000, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "tx_index": 60, - "utxos_info": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f:1", + "utxos_info": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "memo": null, "asset_info": { "divisible": true, @@ -4876,7 +4817,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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 @@ -4896,7 +4837,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4904,14 +4845,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4919,14 +4860,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -4941,7 +4882,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4949,7 +4890,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -4966,7 +4907,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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` @@ -4978,7 +4919,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -5000,7 +4941,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5050,16 +4991,16 @@ Returns the credits of an address "result": [ { "block_index": 190, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095025, + "block_time": 1727173001, "asset_info": { "divisible": true, "asset_longname": null, @@ -5071,16 +5012,16 @@ Returns the credits of an address }, { "block_index": 182, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", + "event": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727094927, + "block_time": 1727172888, "asset_info": { "divisible": true, "asset_longname": null, @@ -5092,20 +5033,20 @@ Returns the credits of an address }, { "block_index": 159, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", + "event": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727094911, + "block_time": 1727172872, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5113,20 +5054,20 @@ Returns the credits of an address }, { "block_index": 156, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "0a6900f413f8095625003b8d59bebdc8af81dc18dbf66310ff9229b879d53d0a", + "event": "3049d82ac4929aca6ab12d1284724095e241e923efa6738a54018abaee035899", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727094888, + "block_time": 1727172849, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5138,16 +5079,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", + "event": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", "tx_index": 38, - "utxo": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa:1", - "utxo_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "utxo": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796:1", + "utxo_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "confirmed": true, - "block_time": 1727094866, + "block_time": 1727172827, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5164,7 +5105,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5203,16 +5144,16 @@ Returns the debits of an address "result": [ { "block_index": 191, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "event": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095029, + "block_time": 1727173005, "asset_info": { "divisible": true, "asset_longname": null, @@ -5224,16 +5165,16 @@ Returns the debits of an address }, { "block_index": 189, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095020, + "block_time": 1727172996, "asset_info": { "divisible": true, "asset_longname": null, @@ -5245,16 +5186,16 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "event": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "divisible": true, "asset_longname": null, @@ -5266,20 +5207,20 @@ Returns the debits of an address }, { "block_index": 188, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "event": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5287,16 +5228,16 @@ Returns the debits of an address }, { "block_index": 183, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "event": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727094996, + "block_time": 1727172962, "asset_info": { "divisible": true, "asset_longname": null, @@ -5317,7 +5258,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address of the feed + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5352,7 +5293,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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 @@ -5371,9 +5312,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "30e595f74d9b77faf4d326988b5fa49da4919c874be0dbbaf37a0f5efc4a6769", + "tx_hash": "2dc115c4e276c363bdb2380e969b9707cf2c501926261d057ce4279b372ab4d5", "block_index": 137, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5381,7 +5322,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727094799, + "block_time": 1727172759, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5395,7 +5336,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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 @@ -5414,14 +5355,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "ecafab150e29b2f11e67fa108a503e3a577e8e583993702da34fe10940501e86", + "tx_hash": "8fe853c4e1b892ff7e5ad25d4e0262d0c3fc67bec76c41b8bf204d69675165e1", "block_index": 112, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1727094685, + "block_time": 1727172657, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5436,7 +5377,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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 @@ -5455,10 +5396,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5466,7 +5407,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "divisible": true, "asset_longname": null, @@ -5479,10 +5420,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5490,11 +5431,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5503,10 +5444,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5514,11 +5455,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5527,10 +5468,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 38, - "tx_hash": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", + "tx_hash": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", "block_index": 151, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa:1", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5538,11 +5479,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727094866, + "block_time": 1727172827, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5551,10 +5492,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 35, - "tx_hash": "b7a064b83eeb86730a5ea9846eb110e4603a852e6aed9ff90a9f42243482b416", + "tx_hash": "66763167dcd1976908a582536231a19199ce97450e535a6346c0eb5c1b9d7f57", "block_index": 148, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "0c869ae1b35c7a20c2384369babb94e31d003833139318542392ce07c372f378:1", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "2aedfe80e416a241471b340a13f770bc621e74af48504b4329591367c64ade01:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5562,11 +5503,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727094855, + "block_time": 1727172815, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5584,7 +5525,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu` (str, required) - The address to return + + address: `bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u` (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 @@ -5603,10 +5544,10 @@ Returns the receives of an address "result": [ { "tx_index": 37, - "tx_hash": "2ab44625e41aa03c78b532beacdd49dde9f69aa713170235cd829fdf3bde631a", + "tx_hash": "88ce36f56bec0bde16401bf8d29fc724911d18c4b2e04c5381143b345405c019", "block_index": 150, - "source": "28492d2ebdcfa146b86f026a77270b902bd2a4ee130b1cb59bd4b51a8eabf1d4:0", - "destination": "bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu", + "source": "21b3e83b0b0df662cf0bd787cf0aa89d24f2ff8a271d6fc2859150e567f2d8af:0", + "destination": "bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5614,11 +5555,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727094862, + "block_time": 1727172823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5636,7 +5577,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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` @@ -5656,10 +5597,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5667,11 +5608,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5680,10 +5621,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5691,11 +5632,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5704,10 +5645,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 38, - "tx_hash": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", + "tx_hash": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", "block_index": 151, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa:1", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5715,11 +5656,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727094866, + "block_time": 1727172827, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5728,10 +5669,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 35, - "tx_hash": "b7a064b83eeb86730a5ea9846eb110e4603a852e6aed9ff90a9f42243482b416", + "tx_hash": "66763167dcd1976908a582536231a19199ce97450e535a6346c0eb5c1b9d7f57", "block_index": 148, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "0c869ae1b35c7a20c2384369babb94e31d003833139318542392ce07c372f378:1", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "2aedfe80e416a241471b340a13f770bc621e74af48504b4329591367c64ade01:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5739,11 +5680,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727094855, + "block_time": 1727172815, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5761,7 +5702,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu` (str, required) - The address to return + + address: `bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u` (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` @@ -5781,10 +5722,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 37, - "tx_hash": "2ab44625e41aa03c78b532beacdd49dde9f69aa713170235cd829fdf3bde631a", + "tx_hash": "88ce36f56bec0bde16401bf8d29fc724911d18c4b2e04c5381143b345405c019", "block_index": 150, - "source": "28492d2ebdcfa146b86f026a77270b902bd2a4ee130b1cb59bd4b51a8eabf1d4:0", - "destination": "bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu", + "source": "21b3e83b0b0df662cf0bd787cf0aa89d24f2ff8a271d6fc2859150e567f2d8af:0", + "destination": "bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5792,11 +5733,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727094862, + "block_time": 1727172823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5814,7 +5755,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5843,9 +5784,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5854,7 +5795,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5864,7 +5805,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -5880,9 +5821,9 @@ Returns the dispensers of an address }, { "tx_index": 30, - "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", + "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", "block_index": 144, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5891,7 +5832,7 @@ Returns the dispensers of an address "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5901,7 +5842,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094839, + "block_time": 1727172798, "asset_info": { "divisible": true, "asset_longname": null, @@ -5926,7 +5867,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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` @@ -5939,9 +5880,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", + "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", "block_index": 144, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5950,7 +5891,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5960,7 +5901,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094839, + "block_time": 1727172798, "asset_info": { "divisible": true, "asset_longname": null, @@ -5982,7 +5923,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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 @@ -6002,19 +5943,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", + "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6022,7 +5963,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6037,7 +5978,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -6051,19 +5992,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", + "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", "block_index": 140, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6071,7 +6012,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6086,7 +6027,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094812, + "block_time": 1727172770, "asset_info": { "divisible": true, "asset_longname": null, @@ -6108,7 +6049,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (str, required) - The address to return + + address: `bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (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 @@ -6128,19 +6069,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", + "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6148,7 +6089,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6163,7 +6104,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -6177,19 +6118,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", + "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", "block_index": 140, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6197,7 +6138,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6212,7 +6153,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094812, + "block_time": 1727172770, "asset_info": { "divisible": true, "asset_longname": null, @@ -6234,7 +6175,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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` @@ -6255,19 +6196,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", + "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6275,7 +6216,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6290,7 +6231,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -6304,19 +6245,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", + "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", "block_index": 140, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6324,7 +6265,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6339,7 +6280,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094812, + "block_time": 1727172770, "asset_info": { "divisible": true, "asset_longname": null, @@ -6361,7 +6302,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (str, required) - The address to return + + address: `bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (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` @@ -6382,19 +6323,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", + "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6402,7 +6343,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6417,7 +6358,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -6431,19 +6372,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", + "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", "block_index": 140, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6451,7 +6392,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6466,7 +6407,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094812, + "block_time": 1727172770, "asset_info": { "divisible": true, "asset_longname": null, @@ -6488,7 +6429,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7` (str, required) - The address to return + + address: `bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu` (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 @@ -6507,16 +6448,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 58, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "fee_paid_normalized": "0.00600000" } ], @@ -6530,7 +6471,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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 @@ -6549,14 +6490,14 @@ Returns the issuances of an address "result": [ { "tx_index": 46, - "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", + "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -6571,20 +6512,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094911, + "block_time": 1727172872, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "766ce7ba7a212e1b43cbe3df259ab0cd0bf5579c5cf1c4c27ceb05911f1f7109", + "tx_hash": "a5f2456ffc60bddd11a2187be2545ed9673ef35e6a0875df3c290bd24ebc8710", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -6599,20 +6540,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727094897, + "block_time": 1727172868, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "4c63b42edf0cfbe37a429815c6724cfea57503fe580f8d9022c3a2bc16e8db38", + "tx_hash": "5e797f98d87c1d82f48855c68cbc2145fa7d10b690e61df3912aa5816a3b0fd0", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -6627,20 +6568,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094893, + "block_time": 1727172853, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "0a6900f413f8095625003b8d59bebdc8af81dc18dbf66310ff9229b879d53d0a", + "tx_hash": "3049d82ac4929aca6ab12d1284724095e241e923efa6738a54018abaee035899", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -6655,20 +6596,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094888, + "block_time": 1727172849, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "81aca02b207fc43014326338aa1faa03766d072cb1f86dc4db356fad27fff5fc", + "tx_hash": "b96874fd1a0fdbfc5bb12fb920c61bac293b0b0ae4f4be876b3eae4f2a1bdeb0", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -6683,7 +6624,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094850, + "block_time": 1727172810, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -6698,7 +6639,7 @@ Returns the issuances of an address Returns the valid assets of an issuer + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The issuer to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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 @@ -6721,8 +6662,8 @@ Returns the valid assets of an issuer "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 10000000000, @@ -6730,16 +6671,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727094888, - "last_issuance_block_time": 1727094897, + "first_issuance_block_time": 1727172849, + "last_issuance_block_time": 1727172868, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 100000000000, @@ -6747,16 +6688,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727094850, - "last_issuance_block_time": 1727094850, + "first_issuance_block_time": 1727172810, + "last_issuance_block_time": 1727172810, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 40, @@ -6764,16 +6705,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727094790, - "last_issuance_block_time": 1727094794, + "first_issuance_block_time": 1727172750, + "last_issuance_block_time": 1727172754, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 19, @@ -6781,16 +6722,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727094764, - "last_issuance_block_time": 1727094786, + "first_issuance_block_time": 1727172733, + "last_issuance_block_time": 1727172746, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 0, @@ -6798,8 +6739,8 @@ Returns the valid assets of an issuer "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1727094743, - "last_issuance_block_time": 1727094760, + "first_issuance_block_time": 1727172712, + "last_issuance_block_time": 1727172729, "supply_normalized": "0.00000000" } ], @@ -6813,7 +6754,7 @@ Returns the valid assets of an issuer Returns the transactions of an address + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + cursor: `59` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -6832,17 +6773,17 @@ Returns the transactions of an address "result": [ { "tx_index": 57, - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "block_index": 191, - "block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", - "block_time": 1727095029, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", + "block_time": 1727173005, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d:1", + "utxos_info": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6878,23 +6819,23 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "block_index": 190, - "block_hash": "15b333419e3b9742692eeb0e5dcbbc123b0bc51e93ef5afa59e3467566caf68d", - "block_time": 1727095025, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "02f6700fcf36370ae093a8b30af0f487ddbd03c2c43ad683a4ba98deb4c51323", + "block_time": 1727173001, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "465cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "data": "4607b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "supported": true, - "utxos_info": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a:1", + "utxos_info": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "status": "valid" } }, @@ -6902,17 +6843,17 @@ Returns the transactions of an address }, { "tx_index": 55, - "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "block_index": 189, - "block_hash": "131c3eb09ef4a1fb5a9b6b20241ec06f87662e2b8ef1a964e039a96020523d95", - "block_time": 1727095020, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "0fc8aabb62aabd549bddf7c7b53943e2152520c9e1bf3e24ab8aac1977208f47", + "block_time": 1727172996, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e:1", + "utxos_info": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6948,17 +6889,17 @@ Returns the transactions of an address }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "block_hash": "0e7d90a67c58b55067a8a1fedf031c4d5fe6e616c5739c5832c179189357078a", - "block_time": 1727095016, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "4a56fb7af76004d2f0d9e697200b176b68422435a6c64d80053a15e2d76b9bbb", + "block_time": 1727172992, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380cd4cce463e7e46e89ecf1c25aa143c8a724f591a804efd3277d785851bf1bfb18ef3ebd9ea8732f76580b16240e182fcfb3d1437b108a600036c78a7f8a2400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380532aac116f3cb07b11be377d648899a80753971d80ae5b876a7593a9bc79de22969203c476ffdfd3db80d429e837a5671380d2470256f79bfb7e09709e7f400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d:0", + "utxos_info": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -6966,14 +6907,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -6981,7 +6922,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -7000,17 +6941,17 @@ Returns the transactions of an address }, { "tx_index": 49, - "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", "block_index": 183, - "block_hash": "4a143f2552233e509a13de0b3000486448be60508bcff70deab46b4f502d58a9", - "block_time": 1727094996, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "04fd73239f17e0cea1b251ec4ee8954da7be64cc416654baa2deddde1a5f7dec", + "block_time": 1727172962, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126:1", + "utxos_info": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7055,7 +6996,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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 @@ -7074,20 +7015,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 40, - "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", + "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", "block_index": 153, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727094875, + "block_time": 1727172836, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -7112,7 +7053,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7141,9 +7082,9 @@ Returns the orders of an address "result": [ { "tx_index": 47, - "tx_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", + "tx_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", "block_index": 182, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7158,7 +7099,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727094927, + "block_time": 1727172888, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7184,9 +7125,9 @@ Returns the orders of an address }, { "tx_index": 49, - "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", "block_index": 186, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7201,7 +7142,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727095009, + "block_time": 1727172973, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7227,9 +7168,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "block_index": 190, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7244,7 +7185,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727095025, + "block_time": 1727173001, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7270,9 +7211,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "block_index": 191, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7287,7 +7228,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727095029, + "block_time": 1727173005, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7322,7 +7263,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The source of the fairminter to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7340,10 +7281,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", + "tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", "tx_index": 22, "block_index": 135, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7368,13 +7309,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727094790 + "block_time": 1727172750 }, { - "tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", + "tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", "tx_index": 18, "block_index": 131, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7399,13 +7340,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727094764 + "block_time": 1727172733 }, { - "tx_hash": "801ce5c24ea2170c2937ab2d624deefa78877919ee48f5b5d5134b4b1c1d545e", + "tx_hash": "c768c790db646fe20b33e0828c0042c6705ee66248d68fde588e91455ea70222", "tx_index": 14, "block_index": 130, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7430,13 +7371,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727094760 + "block_time": 1727172729 }, { - "tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "tx_index": 10, "block_index": 125, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7461,7 +7402,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727094739 + "block_time": 1727172708 } ], "next_cursor": null, @@ -7474,7 +7415,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (str, required) - The address of the mints to return + + address: `bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7492,127 +7433,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "cfa6d447a379922dd0da484f07f975e5f68176b84d2aee0d31fa0acec398bb72", + "tx_hash": "7f69a52eaeb924d936bb756185de09623ce5fc4623732debde3ceb5f2c01dcb1", "tx_index": 23, "block_index": 136, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "fairminter_tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "fairminter_tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094794, + "block_time": 1727172754, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } }, { - "tx_hash": "8d1c0def2f1a5e730424a9ba152df29d054307de1e3349b107a4d38bbcda226b", + "tx_hash": "720c78644e95b750e5e89458ccba3ac499218259786b4d705dc9c52e45645434", "tx_index": 21, "block_index": 134, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "fairminter_tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "fairminter_tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094786, + "block_time": 1727172746, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } }, { - "tx_hash": "992ed3ec1967242742fe7ddde03a6e116c2b4bc20a039f3753bc954c69bac92c", + "tx_hash": "f2f695801cc23d5fda9c3c04391153803dc91a18c9d7c5ad415a606b0a94299e", "tx_index": 20, "block_index": 133, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "fairminter_tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "fairminter_tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094772, + "block_time": 1727172742, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } }, { - "tx_hash": "47c564253e148783c32ae4ae2224e3656a91ade6afa6a567038bd10355f3ba0b", + "tx_hash": "6a7d3fe4b60626f6bc00da9990c5bdcfb41decb4b0a8ee2e09bdb23821d767a8", "tx_index": 19, "block_index": 132, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "fairminter_tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "fairminter_tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094767, + "block_time": 1727172737, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } }, { - "tx_hash": "b665264a50495d9162549493a10fd88af7eae43d85bfb5fd1422bb2494564799", + "tx_hash": "06cc86ee9d16e7b4176cce6b793d383387d5d47b51999ee9b53aea4497473deb", "tx_index": 15, "block_index": 127, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "fairminter_tx_hash": "801ce5c24ea2170c2937ab2d624deefa78877919ee48f5b5d5134b4b1c1d545e", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "fairminter_tx_hash": "c768c790db646fe20b33e0828c0042c6705ee66248d68fde588e91455ea70222", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094747, + "block_time": 1727172716, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } }, { - "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", + "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", "tx_index": 11, "block_index": 123, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094730, + "block_time": 1727172700, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } @@ -7628,7 +7569,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (str, required) - The address of the mints to return + + address: `bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (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` @@ -7647,22 +7588,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", + "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", "tx_index": 11, "block_index": 123, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094730, + "block_time": 1727172700, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } @@ -7701,8 +7642,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: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address that will make the bet - + feed_address: `bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address that will make the bet + + feed_address: `bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (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) @@ -7770,7 +7711,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: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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) @@ -7826,7 +7767,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7838,7 +7779,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "020000000001012753781abf3ef2fce372e23bccc466fa67e142098a3631c85e550e2d463af6b400000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff0200000000000000002b6a295c95cb43452450545471a142695239a49e999afcd68e45ef43302f0a84d7929eb69ccc07e2eedc7d873bb1052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "02000000000101af33d0d8f9d98165a3da059f96c1af823cbb4cc220da66af9ca7820fdea70915000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff0200000000000000002b6a292e0958b1a601ea9d60f71d51d49062154b9cc6a43b77217cd07044731ba022e0e6a006dca21d479bc23bb1052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7855,8 +7796,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: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address that will be sending the payment - + order_match_id: `0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2` (str, required) - The ID of the order match to pay for + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address that will be sending the payment + + order_match_id: `592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f` (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) @@ -7908,16 +7849,16 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2" + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f" }, "name": "btcpay", - "data": "434e5452505254590b0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e761268029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "data": "434e5452505254590b592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d85808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999975897, "btc_fee": 21103, - "rawtransaction": "020000000001013707d42a6b3e09f63cab8dbcecd052e284d9b3f7d327785934ad1f6e903b2a7e00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff03b80b000000000000160014e829a0216c4a51744db91c43f5bb56f5f150753c00000000000000004b6a491b04cb4beea64c20d9040b3269732068e1dcacb0bb0b9a234093062e5fec48637b40ad0c4003a2c9ed173e13ca3decc91a01e5f36f215591467470ebb8430f9a981b32fb0c5b905959d993052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "0200000000010163dac5ee4013e42cb89a5ec4ef18cea55496b8d98b3daa3cd931ebaf61e7c52c000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff03b80b0000000000001600145599316be7057562b9146e3d03cc6ea42923b1ad00000000000000004b6a495f939fc66ad4c4b808a244e70c8f9487760b1ab7362a37f7841c56041c3375d1ad367af6939046080bd40f6cc16b8b7c93975712c3ed79e175f3d930e92848dc6c26f0c6c0a77ded45d993052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7934,7 +7875,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: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address with the BTC to burn + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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` @@ -7989,7 +7930,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "quantity": 1000, "overburn": false }, @@ -7999,7 +7940,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999983584, "btc_fee": 15416, - "rawtransaction": "02000000000101935395f62de465450f628d51b71eb929561cabadff4d44bc9648b01a4737810600000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000" + "rawtransaction": "0200000000010174fc5ee9d502fe1b41269a653d8f5dab6622bc7d7c7ec05369d3f052fe5f33a2000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000" } } ``` @@ -8009,8 +7950,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: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9` (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) @@ -8062,16 +8003,16 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "offer_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d" + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "offer_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9" }, "name": "cancel", - "data": "434e545250525459460d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "data": "434e545250525459461d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "020000000001011ba4bc1fe795234b95f9f58de52278906d7a3114f88f52713f801f1522de429100000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff0200000000000000002b6a29007801a76b6587fc2ba7aa3ae94f5b957d1940c47504a0b60ac23ec1cf99a8587cee37c1669b2472253bb1052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "02000000000101e4361b0c596d859603d49e99d8632c55d50447899d3984fbe31070c4b200e42e000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff0200000000000000002b6a29a2fe08d4e271b515e930cf3749bfa7e8531426f6b727c59ef8e511af5f690c7bf93ff598a7c21cdff83bb1052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8088,7 +8029,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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 @@ -8143,7 +8084,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8162,7 +8103,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999984036, "btc_fee": 15964, - "rawtransaction": "020000000001014a8583cd5197ec1748bc59ca810479021ff53c793b359686426cb25dfb1aeab700000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000226a207da825ccda30cbec0f9cdcf4ae73541389f0c719d881442587a86269e4c2faeba4b3052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "0200000000010129b2d6399f693ac888d531fbbc2164a572f5b2eaf3f0018c98a206ca27ecc030000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000226a20f3bae5a23d489e414499b16b6a729f07a42e929f1be203ede83a10049ad80220a4b3052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8179,7 +8120,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: `bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e` (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) @@ -8240,7 +8181,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", + "source": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8264,7 +8205,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949953351, "btc_fee": 16649, - "rawtransaction": "02000000000101e94a3e476d38d0ee40ef150171d3aac1078b23fccc16429d6f881d8eea88bd8b0200000016001464aa4081fb72662d398468df64ae2c8247e1ad0fffffffff0200000000000000002c6a2a46a59187955d441c02c9f0f35b589fb10bad5dfaa9e474f70e73df105466b802c1bf429ea33f3dc5933c474b0a270100000016001464aa4081fb72662d398468df64ae2c8247e1ad0f02000000000000", + "rawtransaction": "02000000000101a9ea80a3ad8fe7e0dea389ed4e802d920cf9a7f5ee1b9dba3aacd3dabdfdfac002000000160014c2219b0461c00c84849c64009a4a3dcad6d47741ffffffff0200000000000000002c6a2abea145d0731b63994ac94646399aff7fb33e31388520dc68e6a97bca58077bd9ea53dcfe69800440d3d6474b0a2701000000160014c2219b0461c00c84849c64009a4a3dcad6d4774102000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8281,7 +8222,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: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (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: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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 @@ -8336,14 +8277,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -8362,7 +8303,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "02000000000101a1cf27caadcf7aa0806331f4e40a13f4c1249ff13acfc7dc7e9df8c919c9ad6900000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000236a213075cb95a5d9480d7739d48194a183a760add3617bab58601cea029b41aec39e2160b3052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "0200000000010167449216ab4e6619bf0f98e541ebd1a851a05202441fb5f3e56bad445efec8e9000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000236a21eb8e7c4b955a188e89255f343edde246588ea2a3fa296c5fc886c639c8a58698f560b3052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8379,10 +8320,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: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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` @@ -8443,10 +8384,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "transfer_destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "lock": false, "reset": false, @@ -8459,7 +8400,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999981092, "btc_fee": 18362, - "rawtransaction": "020000000001018bd1824abe126426ead3d07b8c342bc52c6697187d076b78d437f9a35bdad4ba00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff032202000000000000160014e829a0216c4a51744db91c43f5bb56f5f150753c0000000000000000236a219833bffc8f4e7366fc332fd7906d1423a5d4fb7c644f0e882ff5eb724ee78897f824a8052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "02000000000101199607f896a2f31801606f5fd7abf71412922759c071ad98481ed0a6c340784a000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff0322020000000000001600145599316be7057562b9146e3d03cc6ea42923b1ad0000000000000000236a21f863b50b8432cad457c32ed600f3d68155964c65b7ff1174207312984a5fcfa96a24a8052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8476,9 +8417,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: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku,bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql,bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (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` @@ -8535,16 +8476,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset_dest_quant_list": [ [ "XCP", - "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", 1 ], [ "MYASSETA", - "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", 2 ] ], @@ -8552,12 +8493,12 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280e829a0216c4a51744db91c43f5bb56f5f150753c80cd4cce463e7e46e89ecf1c25aa143c8a724f591a8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e545250525459030002805599316be7057562b9146e3d03cc6ea42923b1ad80532aac116f3cb07b11be377d648899a80753971d8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999936609, "btc_fee": 61391, - "rawtransaction": "0200000000010492a4ba9f83395c0bd2dd5c4c4946dd217a59ea1322d4f33e95da29341448a5df00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cfffffffffbb4ab5c80076e926c51b45a0090f8d197e9d95333d56a35bff6da15b37a046d00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff0e5181d60a798bbbe3521d346d6d2dc7001512f92d28a84289eb81503184ba3b00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff4d0da1973cebb7d58592999392de91d1a64ea5b0f90befcadde427361a741f7700000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff03e80300000000000069512103cbac3b0c06292afed4455a36526e7e216c0c370466b084ef020854b9a48719152102517fdbb6532ebbab0ac304e4a55cdad26d587d75d9fcf81fff460e3120c87c452102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee80300000000000069512103c4ac3b0c06292afed4662d5ba0ea33a06fe07d551ee8a678f6ddefef517649cd21032443137b1fe0fd957485e47a6a40ff787964f50796a5e290dd0e6b5d4ca7508c2102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853ae61d016a804000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000002000002000002000000000000", + "rawtransaction": "02000000000104ccdb1eae0a96b64e00444775d7e7668add22ff3d2f824f54efe88177b8a7d8da000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff7526f54f5b77068cd36a98f8d5ae2a9d8b12930f17a6cb7555a35aefda2ab8e8000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff123e063c7807662d9c0b60b684ee0f381f0707fefb4c5fc00c166e2d0be5b65d000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff5832ead26b4ebe2833817f3b1ff238931ec296f2c5f2be5e969e2d34a82ebf2f000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff03e80300000000000069512103f874fafd07a3d16cd378132e1588914d0c9f7bd914f4c67633bf836e34910eda21025ad7d920a9ebb2956228c2716af4b56be83a74cd43b6a7533e20c27e59e47a412102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053aee80300000000000069512102f774fafd07a3d16cd35b6443e7b16c5d45f87eac7a584993b99c4f0090b82d5c2102eb7a11738347a3fa5e98b160d4c3c80f60a3deca1021badc1c68a712358b56f82102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053ae61d016a8040000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8574,7 +8515,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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 @@ -8632,7 +8573,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8649,7 +8590,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -8663,7 +8604,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999982734, "btc_fee": 17266, - "rawtransaction": "02000000000101c6fb84cd2ceb0b3b84413102e3df25028728c0fca08191a6cbd2e583802b69ee00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000356a336c63fd97b8f90741212d5dc3b7580c471eb70992eaf022ab254274bd3bd75da0ad4f024c62f602de374d22defec956daa7fee58eae052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "020000000001010e6d8cd850f4eaadc7cdee81783eca6693e9f3e83fff2e6afee9d45b3f8d8cfa000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000356a332b3117d5e90fe257c0a5f5203547fd01fe65d953da9c8cd282ae5ea93466f2b9f68d1c61d92d3c7196f0056f71e447fa1f26198eae052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8680,8 +8621,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: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (str, required) - The address that will be receiving the asset + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (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 @@ -8741,8 +8682,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8758,12 +8699,12 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880cd4cce463e7e46e89ecf1c25aa143c8a724f591a", + "data": "434e54525052545902000000000000000100000000000003e880532aac116f3cb07b11be377d648899a80753971d", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983077, "btc_fee": 16923, - "rawtransaction": "02000000000101ecc8cc77ffad54b83edb1d30f97d30702f2677496bbc297ae7c19cb5b61c240400000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000306a2ed369c03500434c51d445cb62a9fc01b33ce7cc0bbf4770f0d8ed5010b9b1c657f48b4e775fb1bd34edbc045614b8e5af052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "02000000000101e83a100b7448574562d89c192966d72f92315d9294eebe6c04eb5a0d4ae95a24000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000306a2eacc042d5926ad0fa8e9f92acc6b4d354dbde14c4b114a8239148ce044f2d8777d2707cfa7d3b315d2b7c1cc1fe6ae5af052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8780,8 +8721,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: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address that will be sending - + destination: `bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address that will be sending + + destination: `bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (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 @@ -8835,18 +8776,18 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480cd4cce463e7e46e89ecf1c25aa143c8a724f591a07ffff", + "data": "434e5452505254590480532aac116f3cb07b11be377d648899a80753971d07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "0200000000010170675a3d293ca41b0bedee451e3924ba2f5a9fa61db622d14f4348e3e5ab200a00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000236a218f510ab8c951833a2b75bb4e9766d2dec649a393271b2abf3ed870b11a3a572b4960b3052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "02000000000101f9d65187386f8dbded15ef13b18f58bea74c65f34d6ce63338214e8e3bbf79d6000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000236a21629b15563737c408657c595345ae6ed93030db8fda271bffb89408e45aa1c0387b60b3052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8863,8 +8804,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: `bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn` (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` @@ -8917,8 +8858,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "quantity": 1000 }, "name": "dispense", @@ -8927,7 +8868,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949850214, "btc_fee": 16786, - "rawtransaction": "02000000000101cf2df0607c3a61517992fb3d0656cb1a7df1406f6cdbd4662604730e3004c94002000000160014cd4cce463e7e46e89ecf1c25aa143c8a724f591affffffff03e803000000000000160014b16240e182fcfb3d1437b108a600036c78a7f8a200000000000000000c6a0a97dddfa8bf5d09d8cce566b8082701000000160014cd4cce463e7e46e89ecf1c25aa143c8a724f591a02000000000000", + "rawtransaction": "02000000000101520b2f2fc3321caa95322c7979a6307502ea4808332b326290a07cc816dcfc0402000000160014532aac116f3cb07b11be377d648899a80753971dffffffff03e803000000000000160014d429e837a5671380d2470256f79bfb7e09709e7f00000000000000000c6a0ade90a904cccc5ac72d7c66b8082701000000160014532aac116f3cb07b11be377d648899a80753971d02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8944,7 +8885,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address that will be issuing the asset + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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: `` @@ -9029,7 +8970,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9054,7 +8995,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999983008, "btc_fee": 16992, - "rawtransaction": "02000000000101b3a8ea6e4f8eb45913e609652e259af9c6e6eca8c561996218d2ebea0997dd1900000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000316a2fd9ab2df527d279c6d4c2e0bc2b050c3bef1b34b372ba02ea4f711fd12fe10d7e8ae76b0586f1330d77f146e8f87116a0af052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "020000000001014d786e5f0a5b51bf4adb3bd3b916e2f701e6a3187789decc113124d60c4d9d74000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000316a2f5c690cfaa2c14b48ee14eaabefc2388a814775ef7336a0b61ee0c3ae0bf93a875c7a25d490cd443326495cb6c862aca0af052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9071,7 +9012,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: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address that will be minting the asset + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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` @@ -9126,13 +9067,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -9144,7 +9085,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999984858, "btc_fee": 15142, - "rawtransaction": "02000000000101421347058c622d1d61385a7f92c7cb77b8703bdadf6d9b2b6f3efdee64c440b300000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000166a146d69de097e977560a3ae751a6dee79266c4b203bdab6052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "020000000001015c396740f5887c718e263d3760fb658b943adc75ab8fb5db018685122e4f5434000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000166a14b451f024663bf86f83f2d985f1df34edb43d4934dab6052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9161,10 +9102,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: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address from which the assets are attached + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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: `561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d:3` (str, optional) - The utxo to attach the assets to + + destination: `1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9217,8 +9158,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d:3", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9231,12 +9172,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171617135367167747666666768676e64657233706c7477366b37686334716166753535666b6b757c353631616262333238383864636464366436643730633564333838656533393966653362353164313062623330373330636239396535333133386639373133643a337c5843507c31303030", + "data": "434e54525052545964626372743171326b766e7a366c387134366b3977673564633773386e72773573356a3876646467733470716c7c316439623961393935316438323032376361343332633830343363393239653837643766363866363838643036303063616463396132303632376134616664393a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999905256, "btc_fee": 91744, - "rawtransaction": "02000000000106b627e317f10b77b7e289a77baf87646e05e1a63b36b17596a99f2e60e299a20500000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffffb4ca6249f8ef72cfb804afcc7698fad762b72331f548e24197f2341b7909505e00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff5765180b7ea5e05af9eb195c81a6255235ada15eb8d1e8b7b750b25fd133342600000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff707710929e481d91f9c3f608c3cefd0d8f608abd29d7b13c6af0bca108d1e22e00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff02f5fd3e8a84f2ebb61c7b4877f81724a13027db3f8cbf542ddf90a28b9d29b500000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff02626c456777e623c5f61924c131e89ee9312e6125adafc1c1c8cf5dd5660f2700000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff04e803000000000000695121033cffa7619ed50f4bde596392e3b7f4a95f6ab29b250e1a6ef2ae7d84954d2e2b2102f27d87cca6f41879e6f5b99a74fefc8013b8a66a847ebf28e49a64fbbba4e5d82102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee803000000000000695121033cffa7619ed50f4bde0f39c9a9a7a6bc5a2de39b305e5e7ba1ac29d4ca462ff82102a4368ddaafb30d7abca6e0c922edaed651bea36f8d2cf331e49f64a9e1a0ef902102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee8030000000000006951210216ffa7619ed50f4bde0a30c2f5f9f6a46658d7d165595e2894c81aecf2234a432103970fb4bcca806f4f8dc2d1f9408f9de6668d930cef15ca54d1ac559ad9c6d6e12102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee83922fc06000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106f8218679e74b551d77b8e082747a9ef8766d8768d166f17506d431cf53bae90e000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffffa67567318e89ab8dde23f50c4b33b7a460fe8fcca6c9b2f826f9872bd08bfd73000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffffb489150449da2b610fc751903848a033271c3490e7aba6d057d9e66fe7515aee000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff3df59728427c5fd0fb19c90369cd1d19d859659f1e12f17e807b1e2bc3a6f10c000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffffbb610b5457889662f9c2b57140d693ea81ba99dcd97606875a5d1672a6acd73e000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffffe5394c1b875fc8ee43c265eeb9db212205519ba3a3fcac85151519726303880a000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff04e803000000000000695121031ef305f702a88a3e3ca11a0866662be994b32ea6712721e4156ebe57b304a1ff2103add0c30606601de4e736a90e3933f42f66202d1bb35cceeeb5c0afd48ec877662102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053aee803000000000000695121031ef305f702a88a3e3cfc4d5a702a28a894ef3ba93f227fbf5c6abc0fe94af4fd2103a1d19806116f15a0a865ec036b6fb27d32773d4ea74e9bf3b694a08480c87a6f2102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053aee8030000000000006951210234f305f702a88a3e3ca41e0f2d282be4fe9b08b43a217dec645a883c8a73c642210298b4a031755873969003da3b530b824b02475e2fc32da29284a496b6b7a94eaa2102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053aee83922fc060000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9253,8 +9194,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: `543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940:1` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to detach the assets to + + utxo: `01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800:1` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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 @@ -9308,8 +9249,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940:1", - "destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800:1", + "destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9322,12 +9263,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964353433383537383130643432653335393766306463336135383234313033343464633261626366336464343131643631373138393661653365623563373934303a317c626372743171617135367167747666666768676e64657233706c7477366b37686334716166753535666b6b757c5843507c31303030", + "data": "434e54525052545964303165623165353238306339353962353632623232386430303436386438653062393931356337343531666361623132316533346636393633626131383830303a317c626372743171326b766e7a366c387134366b3977673564633773386e72773573356a3876646467733470716c7c5843507c31303030", "btc_in": 4949874900, "btc_out": 3000, "btc_change": 4949842164, "btc_fee": 29736, - "rawtransaction": "0200000000010140795cebe36a8971611d41ddf3bc2adc44034182a5c30d7f59e3420d815738540100000016001437e73d81e066d65b5208cfbf973f0a0436365e8bffffffff04e803000000000000695121021cd41ad1151db6fd319756e0ba7e1b19371e7a907c192ca23f6ff3b4ca1c03a32102681750f1cfec13382f07e31b4ea9359e27b077250deefcf6c8e366b1ceeefbe12102e2f9408019cc58d6becf6805fead856caeadf7edf56b2ca3a17d96cabb078aeb53aee803000000000000695121031cd41ad1151db6fd31c502b1ba234c1b6c1873c0781178ed6835b6a6cb09018c21032a4353b89aac546e7a54bf1843ff318e77a628351eeca6f0c4b663f79eb0b7c92102e2f9408019cc58d6becf6805fead856caeadf7edf56b2ca3a17d96cabb078aeb53aee8030000000000006951210236d41ad1151db6fd31c656b2e22d5b52576c1a88791b79a10a56c4d2fa78605021025b7665c9fdd822081c33d77f2d9b54fc44d6444169dacdc7acd55786ffd6c2592102e2f9408019cc58d6becf6805fead856caeadf7edf56b2ca3a17d96cabb078aeb53aef49808270100000016001437e73d81e066d65b5208cfbf973f0a0436365e8b02000000000000", + "rawtransaction": "020000000001010088a13b96f6341e12abfc51745c91b9e0d86804d028b262b559c980521eeb010100000016001472e6693bf8a47cff7fa322286a03432d00c03826ffffffff04e80300000000000069512102f0391dd0aaab3ba977ac87a9523cbdc3ddcfd9543c8d9028cfb769863202bd292103b860b59fb41791a856bec4f6412905e9f515968a4778335a0a176ed998f2c58b21032b1dff0d6591da3ff998b1d12adf6162e7716c5ff519896a2fc1053c2aa1c55f53aee80300000000000069512103f0391dd0aaab3ba977ae81a1016deec7d9c5d9546f8e946dcfe12dc06141bdbb2103eb72ebd5b64d91bd5aed9fad0f7701b8f515d187186c270e1b1336d08ba5951721032b1dff0d6591da3ff998b1d12adf6162e7716c5ff519896a2fc1053c2aa1c55f53aee80300000000000069512103da391dd0aaab3ba977afc4ac472fe0dab0beb1186e849521ad825fb450308ff12102800485af8021a9cc6edbf494781034dc9622a2bf761e503b68265ce8fdc1f18b21032b1dff0d6591da3ff998b1d12adf6162e7716c5ff519896a2fc1053c2aa1c55f53aef49808270100000016001472e6693bf8a47cff7fa322286a03432d00c0382602000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9382,8 +9323,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 10000000000, @@ -9391,16 +9332,16 @@ Returns the valid assets "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727094888, - "last_issuance_block_time": 1727094897, + "first_issuance_block_time": 1727172849, + "last_issuance_block_time": 1727172868, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", - "owner": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", + "issuer": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", + "owner": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", "divisible": true, "locked": false, "supply": 100000000000, @@ -9408,16 +9349,16 @@ Returns the valid assets "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1727094884, - "last_issuance_block_time": 1727094884, + "first_issuance_block_time": 1727172845, + "last_issuance_block_time": 1727172845, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 100000000000, @@ -9425,16 +9366,16 @@ Returns the valid assets "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727094850, - "last_issuance_block_time": 1727094850, + "first_issuance_block_time": 1727172810, + "last_issuance_block_time": 1727172810, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 40, @@ -9442,16 +9383,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727094790, - "last_issuance_block_time": 1727094794, + "first_issuance_block_time": 1727172750, + "last_issuance_block_time": 1727172754, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 19, @@ -9459,8 +9400,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727094764, - "last_issuance_block_time": 1727094786, + "first_issuance_block_time": 1727172733, + "last_issuance_block_time": 1727172746, "supply_normalized": "0.00000019" } ], @@ -9488,8 +9429,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 10000000000, @@ -9497,8 +9438,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1727094726, - "last_issuance_block_time": 1727094739, + "first_issuance_block_time": 1727172696, + "last_issuance_block_time": 1727172708, "supply_normalized": "100.00000000" } } @@ -9529,7 +9470,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9537,14 +9478,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9552,7 +9493,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -9570,7 +9511,7 @@ Returns the balance of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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. @@ -9581,7 +9522,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -9632,9 +9573,9 @@ Returns the orders of an asset "result": [ { "tx_index": 47, - "tx_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", + "tx_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", "block_index": 182, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9649,7 +9590,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727094927, + "block_time": 1727172888, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9675,9 +9616,9 @@ Returns the orders of an asset }, { "tx_index": 49, - "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", "block_index": 186, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9692,7 +9633,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727095009, + "block_time": 1727172973, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9718,9 +9659,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "block_index": 190, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9735,7 +9676,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727095025, + "block_time": 1727173001, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9761,9 +9702,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "block_index": 191, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9778,7 +9719,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727095029, + "block_time": 1727173005, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9804,9 +9745,9 @@ Returns the orders of an asset }, { "tx_index": 50, - "tx_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "tx_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "block_index": 185, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -9821,7 +9762,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727095004, + "block_time": 1727172969, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9883,13 +9824,13 @@ Returns the orders of an asset { "result": [ { - "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "tx0_index": 49, - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 52, - "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", - "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", + "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -9903,7 +9844,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727095009, + "block_time": 1727172973, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9923,13 +9864,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "tx0_index": 49, - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 50, - "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", - "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -9943,7 +9884,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727095004, + "block_time": 1727172969, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9963,13 +9904,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", "tx0_index": 47, - "tx0_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 48, - "tx1_hash": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", - "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "tx1_hash": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", + "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -9983,7 +9924,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727094927, + "block_time": 1727172888, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10063,20 +10004,20 @@ Returns the credits of an asset "result": [ { "block_index": 192, - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -10084,20 +10025,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "6d46c4d6f2bfa733cabf35461464be1de853bd359fce0e0b56d3281408e3083e", + "event": "52ebf33632f8a0fd2efc653028f1a0c05d0372d42cc8cfcc19e529d2dd45e983", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727094739, + "block_time": 1727172708, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -10105,20 +10046,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e", + "event": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727094734, + "block_time": 1727172703, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -10126,20 +10067,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", + "event": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727094734, + "block_time": 1727172703, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -10151,16 +10092,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e", + "event": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727094734, + "block_time": 1727172703, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -10216,16 +10157,16 @@ Returns the debits of an asset "result": [ { "block_index": 193, - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "event": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -10237,16 +10178,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -10258,16 +10199,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -10279,16 +10220,16 @@ Returns the debits of an asset }, { "block_index": 191, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "event": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095029, + "block_time": 1727173005, "asset_info": { "divisible": true, "asset_longname": null, @@ -10300,16 +10241,16 @@ Returns the debits of an asset }, { "block_index": 189, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095020, + "block_time": 1727172996, "asset_info": { "divisible": true, "asset_longname": null, @@ -10349,20 +10290,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 40, - "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", + "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", "block_index": 153, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727094875, + "block_time": 1727172836, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -10406,14 +10347,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "6d46c4d6f2bfa733cabf35461464be1de853bd359fce0e0b56d3281408e3083e", + "tx_hash": "52ebf33632f8a0fd2efc653028f1a0c05d0372d42cc8cfcc19e529d2dd45e983", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -10428,20 +10369,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727094739, + "block_time": 1727172708, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e", + "tx_hash": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -10456,20 +10397,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727094734, + "block_time": 1727172703, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", + "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -10484,20 +10425,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727094730, + "block_time": 1727172700, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -10512,7 +10453,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1727094726, + "block_time": 1727172696, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10546,10 +10487,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10557,7 +10498,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "divisible": true, "asset_longname": null, @@ -10570,10 +10511,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 53, - "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039", + "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5", "block_index": 187, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10581,7 +10522,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095012, + "block_time": 1727172988, "asset_info": { "divisible": true, "asset_longname": null, @@ -10594,10 +10535,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 42, - "tx_hash": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", + "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", "block_index": 155, - "source": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea:0", - "destination": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940:1", + "source": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a:0", + "destination": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10605,7 +10546,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727094884, + "block_time": 1727172845, "asset_info": { "divisible": true, "asset_longname": null, @@ -10618,10 +10559,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 41, - "tx_hash": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea", + "tx_hash": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a", "block_index": 154, - "source": "038293b56ad81f45525bcade26369df9772e07db3dc4c97955587c621708d4b6:0", - "destination": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea:0", + "source": "9361bfe137766876b61588be29ab0ffbb6e0f926590f3c11daa53bf3b3ab3b30:0", + "destination": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10629,7 +10570,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727094880, + "block_time": 1727172840, "asset_info": { "divisible": true, "asset_longname": null, @@ -10680,9 +10621,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10691,7 +10632,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10701,7 +10642,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -10717,9 +10658,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "d15aff344f340fa392282b0db80499fcf0785fcc1406f0d8d7508eddaac1757e", + "tx_hash": "64572d1f3aab186a209cf522c3bc0c4608821658347a92c42b87e902808fc846", "block_index": 142, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10728,7 +10669,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "origin": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10738,7 +10679,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094830, + "block_time": 1727172779, "asset_info": { "divisible": true, "asset_longname": null, @@ -10754,9 +10695,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", + "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", "block_index": 144, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10765,7 +10706,7 @@ Returns the dispensers of an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10775,7 +10716,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094839, + "block_time": 1727172798, "asset_info": { "divisible": true, "asset_longname": null, @@ -10791,18 +10732,18 @@ Returns the dispensers of an asset }, { "tx_index": 32, - "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "last_status_tx_hash": null, - "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10812,7 +10753,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727094846, + "block_time": 1727172806, "asset_info": { "divisible": true, "asset_longname": null, @@ -10837,7 +10778,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - The address to return + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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` @@ -10850,9 +10791,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 30, - "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", + "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", "block_index": 144, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10861,7 +10802,7 @@ Returns the dispenser of an address and an asset "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10871,7 +10812,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094839, + "block_time": 1727172798, "asset_info": { "divisible": true, "asset_longname": null, @@ -10921,7 +10862,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -10929,7 +10870,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -10938,7 +10879,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -10946,7 +10887,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -10955,7 +10896,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -10963,7 +10904,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -10972,7 +10913,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -11009,27 +10950,27 @@ Returns the dispenses of an asset { "tx_index": 33, "dispense_index": 0, - "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", - "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "last_status_tx_hash": null, - "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -11044,7 +10985,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727094846, + "block_time": 1727172806, "asset_info": { "divisible": true, "asset_longname": null, @@ -11058,19 +10999,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", + "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11078,7 +11019,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11093,7 +11034,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -11107,19 +11048,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", + "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", "block_index": 140, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11127,7 +11068,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11142,7 +11083,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094812, + "block_time": 1727172770, "asset_info": { "divisible": true, "asset_longname": null, @@ -11185,8 +11126,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 0, @@ -11194,8 +11135,8 @@ Returns asset subassets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1727094893, - "last_issuance_block_time": 1727094893, + "first_issuance_block_time": 1727172853, + "last_issuance_block_time": 1727172853, "supply_normalized": "0.00000000" } ], @@ -11227,10 +11168,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "tx_index": 10, "block_index": 125, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11255,7 +11196,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727094739 + "block_time": 1727172708 } ], "next_cursor": null, @@ -11286,64 +11227,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "6d46c4d6f2bfa733cabf35461464be1de853bd359fce0e0b56d3281408e3083e", + "tx_hash": "52ebf33632f8a0fd2efc653028f1a0c05d0372d42cc8cfcc19e529d2dd45e983", "tx_index": 13, "block_index": 125, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", - "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094739, + "block_time": 1727172708, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } }, { - "tx_hash": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e", + "tx_hash": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3", "tx_index": 12, "block_index": 124, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", - "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094734, + "block_time": 1727172703, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } }, { - "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", + "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", "tx_index": 11, "block_index": 123, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094730, + "block_time": 1727172700, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } @@ -11359,7 +11300,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv` (str, required) - The address of the mints to return + + address: `bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (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` @@ -11378,22 +11319,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", + "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", "tx_index": 11, "block_index": 123, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094730, + "block_time": 1727172700, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } @@ -11439,9 +11380,9 @@ Returns all the orders "result": [ { "tx_index": 47, - "tx_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", + "tx_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", "block_index": 182, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11456,7 +11397,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727094927, + "block_time": 1727172888, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11482,9 +11423,9 @@ Returns all the orders }, { "tx_index": 50, - "tx_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "tx_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "block_index": 185, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11499,7 +11440,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727095004, + "block_time": 1727172969, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11525,9 +11466,9 @@ Returns all the orders }, { "tx_index": 49, - "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", "block_index": 186, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11542,7 +11483,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727095009, + "block_time": 1727172973, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11568,9 +11509,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "tx_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "block_index": 186, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11585,7 +11526,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727095009, + "block_time": 1727172973, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11611,9 +11552,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "block_index": 190, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11628,7 +11569,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727095025, + "block_time": 1727173001, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11663,7 +11604,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d` (str, required) - The hash of the transaction that created the order + + order_hash: `1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9` (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. @@ -11675,9 +11616,9 @@ Returns the information of an order { "result": { "tx_index": 57, - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "block_index": 191, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11692,7 +11633,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727095029, + "block_time": 1727173005, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11724,7 +11665,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126` (str, required) - The hash of the transaction that created the order + + order_hash: `592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8` (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 @@ -11751,13 +11692,13 @@ Returns the order matches of an order { "result": [ { - "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "tx0_index": 49, - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 52, - "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", - "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", + "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11771,7 +11712,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727095009, + "block_time": 1727172973, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11791,13 +11732,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "tx0_index": 49, - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 50, - "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", - "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11811,7 +11752,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727095004, + "block_time": 1727172969, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11841,7 +11782,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126` (str, required) - The hash of the transaction that created the order + + order_hash: `592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8` (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 @@ -11860,15 +11801,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 51, - "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", + "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", "block_index": 185, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "btc_amount": 2000, - "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "status": "valid", "confirmed": true, - "block_time": 1727095004, + "block_time": 1727172969, "btc_amount_normalized": "0.00002000" } ], @@ -11912,9 +11853,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 50, - "tx_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "tx_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "block_index": 185, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11932,7 +11873,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727095004, + "block_time": 1727172969, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11958,9 +11899,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "tx_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "block_index": 186, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11978,7 +11919,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727095009, + "block_time": 1727172973, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12004,9 +11945,9 @@ Returns the orders to exchange two assets }, { "tx_index": 47, - "tx_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", + "tx_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", "block_index": 182, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12024,7 +11965,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727094927, + "block_time": 1727172888, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12050,9 +11991,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", "block_index": 186, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12070,7 +12011,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727095009, + "block_time": 1727172973, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12096,9 +12037,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "block_index": 190, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12116,7 +12057,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727095025, + "block_time": 1727173001, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12179,13 +12120,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "tx0_index": 49, - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 52, - "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", - "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", + "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12202,7 +12143,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727095009, + "block_time": 1727172973, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12222,13 +12163,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "tx0_index": 49, - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 50, - "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", - "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12245,7 +12186,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727095004, + "block_time": 1727172969, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12265,13 +12206,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", "tx0_index": 47, - "tx0_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 48, - "tx1_hash": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", - "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "tx1_hash": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", + "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12288,7 +12229,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727094927, + "block_time": 1727172888, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12346,13 +12287,13 @@ Returns all the order matches { "result": [ { - "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "tx0_index": 49, - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 52, - "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", - "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", + "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12366,7 +12307,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727095009, + "block_time": 1727172973, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12386,13 +12327,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "tx0_index": 49, - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 50, - "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", - "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12406,7 +12347,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727095004, + "block_time": 1727172969, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12426,13 +12367,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", "tx0_index": 47, - "tx0_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 48, - "tx1_hash": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", - "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "tx1_hash": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", + "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12446,7 +12387,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727094927, + "block_time": 1727172888, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12614,66 +12555,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "43093d52e847e4f5f87c441d762c47e61b2b30dd12418bb88f8a1ec5686fb269", + "tx_hash": "fb670497b1b7bdfefa37ae903873231799070c083dad68feaeffa589cb749da7", "block_index": 121, - "source": "bcrt1qzlgv5ud7ygwd6qudn3fpnh7a97lhyu2yp4uggk", + "source": "bcrt1qx8nq65mcz45h8s0zdjjssw5cx8ln5utgc6xt67", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1727094721, + "block_time": 1727172691, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "73cee698f7e849caad6658e0350b1338d076a8ffda592a3386f4b9b0608cbba8", + "tx_hash": "dd707604e4b68bb969dca8e244f8ff68a47b502fdeb7da2710543f49a39020a5", "block_index": 120, - "source": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", + "source": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1727094717, + "block_time": 1727172687, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "dc2edb8719cae9a3345615cdc3a977be3cf2a2662e3910891dd5d3681bfff876", + "tx_hash": "976cc1e602b6d8c62d548685b818ad775b6cef7eaba1f5acec676cc45cef5e1b", "block_index": 119, - "source": "bcrt1qxdxmwlv97cc9s7jk5hs3z6cqdu7tasktae5eag", + "source": "bcrt1qg4j653h8yfns3eql8vzs5lc64xf58d9uxma9az", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1727094713, + "block_time": 1727172683, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "14b38ae9c3846aae4acfb3f79364bbd2b0bc8739cd453c2f8d8ebccc68b78328", + "tx_hash": "6f640affad7ea7f23de9aa778e7fa582511a03fed9628109b81b4e64eea8fb31", "block_index": 118, - "source": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", + "source": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1727094709, + "block_time": 1727172679, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "a1a48939003f5d217f71ffde747f89bca6cda99cf75029249dff0e2d435d114a", + "tx_hash": "49b961c62ebdd86c0a144932cd6e248072b3d12b607a1d7f43af6721e7a0240b", "block_index": 117, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1727094706, + "block_time": 1727172675, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12718,18 +12659,18 @@ Returns all dispensers "result": [ { "tx_index": 32, - "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "last_status_tx_hash": null, - "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -12739,7 +12680,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727094846, + "block_time": 1727172806, "asset_info": { "divisible": true, "asset_longname": null, @@ -12755,9 +12696,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", + "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", "block_index": 144, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -12766,7 +12707,7 @@ Returns all dispensers "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12776,7 +12717,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094839, + "block_time": 1727172798, "asset_info": { "divisible": true, "asset_longname": null, @@ -12792,9 +12733,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "d15aff344f340fa392282b0db80499fcf0785fcc1406f0d8d7508eddaac1757e", + "tx_hash": "64572d1f3aab186a209cf522c3bc0c4608821658347a92c42b87e902808fc846", "block_index": 142, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12803,7 +12744,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "origin": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12813,7 +12754,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094830, + "block_time": 1727172779, "asset_info": { "divisible": true, "asset_longname": null, @@ -12829,9 +12770,9 @@ Returns all dispensers }, { "tx_index": 26, - "tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12840,7 +12781,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12850,7 +12791,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -12875,7 +12816,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb` (str, required) - The hash of the dispenser to return + + dispenser_hash: `b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e` (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. @@ -12887,9 +12828,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12898,7 +12839,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12908,7 +12849,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -12930,7 +12871,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb` (str, required) - The hash of the dispenser to return + + dispenser_hash: `b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e` (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 @@ -12950,19 +12891,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", + "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12970,7 +12911,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12985,7 +12926,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -12999,19 +12940,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", + "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", "block_index": 140, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13019,7 +12960,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13034,7 +12975,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094812, + "block_time": 1727172770, "asset_info": { "divisible": true, "asset_longname": null, @@ -13076,20 +13017,20 @@ Returns all the dividends "result": [ { "tx_index": 40, - "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", + "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", "block_index": 153, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727094875, + "block_time": 1727172836, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -13114,7 +13055,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c` (str, required) - The hash of the dividend to return + + dividend_hash: `71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609` (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. @@ -13126,20 +13067,20 @@ Returns a dividend by its hash { "result": { "tx_index": 40, - "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", + "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", "block_index": 153, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727094875, + "block_time": 1727172836, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -13161,7 +13102,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609` (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 @@ -13184,12 +13125,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", + "event": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", "tx_index": 40, - "utxo": "038293b56ad81f45525bcade26369df9772e07db3dc4c97955587c621708d4b6:0", - "utxo_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "utxo": "9361bfe137766876b61588be29ab0ffbb6e0f926590f3c11daa53bf3b3ab3b30:0", + "utxo_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "confirmed": true, - "block_time": 1727094875, + "block_time": 1727172836, "asset_info": { "divisible": true, "asset_longname": null, @@ -13201,16 +13142,16 @@ Returns a dividend distribution by its hash }, { "block_index": 153, - "address": "bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu", + "address": "bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", + "event": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727094875, + "block_time": 1727172836, "asset_info": { "divisible": true, "asset_longname": null, @@ -13256,27 +13197,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", - "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", + "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", + "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", "transaction_count": 1, - "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", - "block_time": 1727095038 + "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", + "block_time": 1727173013 }, "tx_hash": null, "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "tx_index": 59 }, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 }, { "event_index": 533, @@ -13285,12 +13226,12 @@ Returns all events "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "status": "valid", "tag": "64657374726f79", - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "tx_index": 59, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -13300,24 +13241,24 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 193, - "event": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "event": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -13327,25 +13268,25 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", "block_index": 193, - "block_time": 1727095038, + "block_time": 1727173013, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "tx_index": 59, - "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", + "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -13365,9 +13306,9 @@ Returns all events }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 } ], "next_cursor": 530, @@ -13395,15 +13336,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", - "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", + "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", + "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", "transaction_count": 1, - "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", - "block_time": 1727095038 + "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", + "block_time": 1727173013 }, "tx_hash": null, "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 } } ``` @@ -13481,16 +13422,16 @@ Returns the events filtered by event name "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -13500,78 +13441,78 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727095025, + "block_time": 1727173001, "asset_info": { "divisible": true, "asset_longname": null, @@ -13581,24 +13522,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "block_index": 190, - "block_time": 1727095025 + "block_time": 1727173001 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "event": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "divisible": true, "asset_longname": null, @@ -13608,9 +13549,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "block_time": 1727095016 + "block_time": 1727172992 } ], "next_cursor": 490, @@ -13666,27 +13607,27 @@ Returns all the dispenses { "tx_index": 33, "dispense_index": 0, - "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", - "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "last_status_tx_hash": null, - "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13701,7 +13642,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727094846, + "block_time": 1727172806, "asset_info": { "divisible": true, "asset_longname": null, @@ -13715,19 +13656,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", + "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13735,7 +13676,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13750,7 +13691,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -13764,19 +13705,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", + "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", "block_index": 140, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13784,7 +13725,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13799,7 +13740,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094812, + "block_time": 1727172770, "asset_info": { "divisible": true, "asset_longname": null, @@ -13841,10 +13782,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "quantity": 10, "status": "valid", @@ -13852,7 +13793,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "divisible": true, "asset_longname": null, @@ -13865,10 +13806,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13876,11 +13817,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -13889,10 +13830,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13900,11 +13841,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -13913,10 +13854,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 53, - "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039", + "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5", "block_index": 187, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -13924,7 +13865,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095012, + "block_time": 1727172988, "asset_info": { "divisible": true, "asset_longname": null, @@ -13937,10 +13878,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 42, - "tx_hash": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", + "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", "block_index": 155, - "source": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea:0", - "destination": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940:1", + "source": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a:0", + "destination": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -13948,7 +13889,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727094884, + "block_time": 1727172845, "asset_info": { "divisible": true, "asset_longname": null, @@ -13990,14 +13931,14 @@ Returns all the issuances "result": [ { "tx_index": 46, - "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", + "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -14012,20 +13953,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094911, + "block_time": 1727172872, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "766ce7ba7a212e1b43cbe3df259ab0cd0bf5579c5cf1c4c27ceb05911f1f7109", + "tx_hash": "a5f2456ffc60bddd11a2187be2545ed9673ef35e6a0875df3c290bd24ebc8710", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -14040,20 +13981,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727094897, + "block_time": 1727172868, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "4c63b42edf0cfbe37a429815c6724cfea57503fe580f8d9022c3a2bc16e8db38", + "tx_hash": "5e797f98d87c1d82f48855c68cbc2145fa7d10b690e61df3912aa5816a3b0fd0", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -14068,20 +14009,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094893, + "block_time": 1727172853, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "0a6900f413f8095625003b8d59bebdc8af81dc18dbf66310ff9229b879d53d0a", + "tx_hash": "3049d82ac4929aca6ab12d1284724095e241e923efa6738a54018abaee035899", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -14096,20 +14037,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094888, + "block_time": 1727172849, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", + "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", - "issuer": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", + "source": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", + "issuer": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", "transfer": false, "callable": false, "call_date": 0, @@ -14124,7 +14065,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094884, + "block_time": 1727172845, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -14139,7 +14080,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18` (str, required) - The hash of the transaction to return + + tx_hash: `67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79` (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. @@ -14151,14 +14092,14 @@ Returns the issuances of a block { "result": { "tx_index": 46, - "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", + "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -14173,7 +14114,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094911, + "block_time": 1727172872, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14205,16 +14146,16 @@ Returns all sweeps "result": [ { "tx_index": 58, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "fee_paid_normalized": "0.00600000" } ], @@ -14228,7 +14169,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc` (str, required) - The hash of the transaction to return + + tx_hash: `81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5` (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. @@ -14241,16 +14182,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 58, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "fee_paid_normalized": "0.00600000" } ], @@ -14284,9 +14225,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a", + "tx_hash": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f", "block_index": 138, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14294,14 +14235,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727094803, + "block_time": 1727172762, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "30e595f74d9b77faf4d326988b5fa49da4919c874be0dbbaf37a0f5efc4a6769", + "tx_hash": "2dc115c4e276c363bdb2380e969b9707cf2c501926261d057ce4279b372ab4d5", "block_index": 137, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14309,7 +14250,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727094799, + "block_time": 1727172759, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14323,7 +14264,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a` (str, required) - The hash of the transaction to return + + tx_hash: `2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f` (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. @@ -14335,9 +14276,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a", + "tx_hash": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f", "block_index": 138, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14345,7 +14286,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727094803, + "block_time": 1727172762, "fee_fraction_int_normalized": "0.00000000" } } @@ -14375,10 +14316,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", + "tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", "tx_index": 22, "block_index": 135, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14403,13 +14344,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727094790 + "block_time": 1727172750 }, { - "tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", + "tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", "tx_index": 18, "block_index": 131, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14434,13 +14375,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727094764 + "block_time": 1727172733 }, { - "tx_hash": "801ce5c24ea2170c2937ab2d624deefa78877919ee48f5b5d5134b4b1c1d545e", + "tx_hash": "c768c790db646fe20b33e0828c0042c6705ee66248d68fde588e91455ea70222", "tx_index": 14, "block_index": 130, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14465,13 +14406,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727094760 + "block_time": 1727172729 }, { - "tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "tx_index": 10, "block_index": 125, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14496,7 +14437,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727094739 + "block_time": 1727172708 } ], "next_cursor": null, @@ -14539,7 +14480,7 @@ Returns the mints by fairminter Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj,bcrt1qxdxmwlv97cc9s7jk5hs3z6cqdu7tasktae5eag` (str, required) - The addresses to search for + + addresses: `bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e,bcrt1qg4j653h8yfns3eql8vzs5lc64xf58d9uxma9az` (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. @@ -14558,8 +14499,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", - "address": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj" + "txid": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", + "address": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e" }, { "vout": 2, @@ -14567,8 +14508,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", - "address": "bcrt1qxdxmwlv97cc9s7jk5hs3z6cqdu7tasktae5eag" + "txid": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", + "address": "bcrt1qg4j653h8yfns3eql8vzs5lc64xf58d9uxma9az" } ], "next_cursor": null, @@ -14581,7 +14522,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7` (str, required) - The address to search for + + address: `bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu` (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 @@ -14597,28 +14538,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039" + "tx_hash": "2aedfe80e416a241471b340a13f770bc621e74af48504b4329591367c64ade01" }, { - "tx_hash": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e" + "tx_hash": "edd6f686828415f585bd42c3ca4864ff84e1b5c2e75517b94fe17e3639d4da0d" }, { - "tx_hash": "a08984ad55f4e1a2ed5a1f25a107dc4d298156d23fac72bd19d9a33948aa9962" + "tx_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f" }, { - "tx_hash": "0c869ae1b35c7a20c2384369babb94e31d003833139318542392ce07c372f378" + "tx_hash": "3bdb824385af75abbfdef877ede3f5683d21db19386acac7124de3685f5a3e65" }, { - "tx_hash": "b2ac9ee9375c7dc1103dcf5356e6e38dedaf5fcd3e1b113959df1ff0c6c4faba" + "tx_hash": "21b3e83b0b0df662cf0bd787cf0aa89d24f2ff8a271d6fc2859150e567f2d8af" }, { - "tx_hash": "28492d2ebdcfa146b86f026a77270b902bd2a4ee130b1cb59bd4b51a8eabf1d4" + "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5" }, { - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" }, { - "tx_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2" + "tx_hash": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3" } ], "next_cursor": null, @@ -14631,7 +14572,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p` (str, required) - The address to search for. + + address: `bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds` (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. @@ -14644,8 +14585,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 9, - "tx_hash": "bb46b82006453c3fbf60dcd71ccac08673e11507d02e502f6fcdc3d04972d343" + "block_index": 6, + "tx_hash": "ff2e8295fd7ab1a1e12dccdb1e0cb26c7a2c9647fea68820fcb31e775bfb06c9" } } ``` @@ -14655,7 +14596,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj` (str, required) - The address to search for + + address: `bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e` (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 @@ -14676,7 +14617,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9" + "txid": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9" } ], "next_cursor": null, @@ -14689,7 +14630,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku` (str, required) - Address to get pubkey for. + + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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. @@ -14701,7 +14642,7 @@ Get pubkey for an address. ``` { - "result": "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08" + "result": "02bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b940" } ``` @@ -14710,7 +14651,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d` (str, required) - The transaction hash + + tx_hash: `37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526` (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. @@ -14722,7 +14663,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001011a63de3bdf9f82cd35021713a79af6e9dd49ddacbe32b5783ca01ae42546b42a0300000000ffffffff020000000000000000226a2021344a64b6120942909bf09e6397fd6cad305e4e73bca1dec78b18aedf4edbb9680b0a2701000000160014b16240e182fcfb3d1437b108a600036c78a7f8a202473044022074d2b3de539cbacb3d364cc992ee27c026a13ed1a8442e45ae2f7fcc4e7e02b30220649e9d695f1f028945cb10308c822475cb7b2c9df47370d143c14c5cc8567bcc01210268539bd755f8fa4f5aa15f95da1dcbbbd86d28c794673d670f60fb3e1040bbd100000000" + "result": "0200000000010119c00554343b1481534ce0b2c4181d9124c79fd2f81b4016de0bec6bf536ce880300000000ffffffff020000000000000000226a20689b27632757bf127305d82613cfb2a7af5b4764dfd522033f8dc72dcfcea81b680b0a2701000000160014d429e837a5671380d2470256f79bfb7e09709e7f02473044022006b7bd3381e0c96a3555827d1910233f84217ad197a9d1e64a6a3d42b1f1ad7a02202423e2658233424ba4fd5d7776e6a8d2c49d86aecc9d9b053af38c35d94709b00121028f281d89d24d92d61488bbd143cc93dd9c65b12631e2f3e98eab7fbc800e92e600000000" } ``` @@ -14815,26 +14756,26 @@ Returns all mempool events { "result": [ { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "tx_index": 60 } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "memo": null, "quantity": 10000, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "status": "valid", - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "tx_index": 60, "asset_info": { "divisible": true, @@ -14847,19 +14788,19 @@ Returns all mempool events } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "CREDIT", "params": { - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -14871,19 +14812,19 @@ Returns all mempool events } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 193, - "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -14895,27 +14836,27 @@ Returns all mempool events } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727095042.4665813, + "block_time": 1727173018.087438, "btc_amount": 0, - "data": "0200000000000000010000000000002710804efd3277d785851bf1bfb18ef3ebd9ea8732f765", + "data": "020000000000000001000000000000271080ae5b876a7593a9bc79de22969203c476ffdfd3db", "destination": "", "fee": 10000, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "tx_index": 60, - "utxos_info": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f:1", + "utxos_info": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "memo": null, "asset_info": { "divisible": true, @@ -14959,19 +14900,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "CREDIT", "params": { - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -14993,7 +14934,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f` (str, required) - The hash of the transaction to return + + tx_hash: `b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e` (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 @@ -15013,26 +14954,26 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "tx_index": 60 } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "memo": null, "quantity": 10000, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "status": "valid", - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "tx_index": 60, "asset_info": { "divisible": true, @@ -15045,19 +14986,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "CREDIT", "params": { - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -15069,19 +15010,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 193, - "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -15093,27 +15034,27 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727095042.4665813, + "block_time": 1727173018.087438, "btc_amount": 0, - "data": "0200000000000000010000000000002710804efd3277d785851bf1bfb18ef3ebd9ea8732f765", + "data": "020000000000000001000000000000271080ae5b876a7593a9bc79de22969203c476ffdfd3db", "destination": "", "fee": 10000, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "tx_index": 60, - "utxos_info": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f:1", + "utxos_info": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "memo": null, "asset_info": { "divisible": true, diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 8972655e40..c7a1be351f 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -321,9 +321,8 @@ def handle_route(**kwargs): except Exception as e: capture_exception(e) logger.error("Error in API: %s", e) - import traceback - - print(traceback.format_exc()) # for debugging + # import traceback + # print(traceback.format_exc()) # for debugging return return_result( 503, error="Unknown error", start_time=start_time, query_args=query_args ) diff --git a/counterparty-core/counterpartycore/lib/api/api_v1.py b/counterparty-core/counterpartycore/lib/api/api_v1.py index 6f57f3d206..48cacb25f5 100644 --- a/counterparty-core/counterpartycore/lib/api/api_v1.py +++ b/counterparty-core/counterpartycore/lib/api/api_v1.py @@ -562,21 +562,21 @@ def sql(query, bindings=None): # Generate dynamically create_{transaction} methods def generate_create_method(tx): def create_method(**kwargs): + transaction_args, common_args, private_key_wif = api_compose.split_compose_params( + **kwargs + ) + extended_tx_info = old_style_api = False + if "extended_tx_info" in common_args: + extended_tx_info = common_args["extended_tx_info"] + del common_args["extended_tx_info"] + if "old_style_api" in common_args: + old_style_api = common_args["old_style_api"] + del common_args["old_style_api"] + for v2_arg in ["return_only_data", "return_psbt"]: + common_args.pop(v2_arg, None) + if "fee" in transaction_args and "exact_fee" not in common_args: + common_args["exact_fee"] = transaction_args.pop("fee") try: - transaction_args, common_args, private_key_wif = ( - api_compose.split_compose_params(**kwargs) - ) - extended_tx_info = old_style_api = False - if "extended_tx_info" in common_args: - extended_tx_info = common_args["extended_tx_info"] - del common_args["extended_tx_info"] - if "old_style_api" in common_args: - old_style_api = common_args["old_style_api"] - del common_args["old_style_api"] - for v2_arg in ["return_only_data", "return_psbt"]: - common_args.pop(v2_arg, None) - if "fee" in transaction_args and "exact_fee" not in common_args: - common_args["exact_fee"] = transaction_args.pop("fee") with self.connection_pool.connection() as db: transaction_info = transaction.compose_transaction( db, diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/p2sh_serializer.py b/counterparty-core/counterpartycore/lib/transaction_helper/p2sh_serializer.py index 26b0677b7a..365aebf2b5 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/p2sh_serializer.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/p2sh_serializer.py @@ -333,14 +333,14 @@ def select_any_coin_from_source( unspent = sort_unspent_txouts(unspent, dust_size=config.DEFAULT_REGULAR_DUST_SIZE) # use the first input - input = unspent[0] - if input is None: + tx_input = unspent[0] + if tx_input is None: return None if not disable_utxo_locks: - UTXOLocks().lock_utxos(source, [input]) + UTXOLocks().lock_utxos(source, [tx_input]) - return input + return tx_input def serialise_p2sh_pretx( @@ -363,8 +363,7 @@ def serialise_p2sh_pretx( s += var_int(int(len(inputs))) # List of Inputs. - for i in range(len(inputs)): - txin = inputs[i] + for txin in inputs: s += binascii.unhexlify(bytes(txin["txid"], "utf-8"))[::-1] # TxOutHash s += txin["vout"].to_bytes(4, byteorder="little") # TxOutIndex @@ -391,7 +390,7 @@ def serialise_p2sh_pretx( ) # if data_value is an array, then every output fee is specified in it - if type(data_value) == list: # noqa: E721 + if isinstance(data_value, list): # noqa: E721 s += data_value[n].to_bytes(8, byteorder="little") # Value else: s += data_value.to_bytes(8, byteorder="little") # Value @@ -561,17 +560,12 @@ def serialise_p2sh_datatx( script_sig, redeem_script, output_script = make_p2sh_encoding_redeemscript( data_chunk, n, pubkey, multisig_pubkeys, multisig_pubkeys_required ) - # substituteScript = script_sig + output_script s += txhash # TxOutHash s += (n).to_bytes(4, byteorder="little") # TxOutIndex (assumes 0-based) - # s += var_int(len(substituteScript)) # Script length - # s += substituteScript # Script - s += var_int(len(script_sig)) # + len(output_script)) # Script length s += script_sig # Script - # s += output_script # Script s += b"\xff" * 4 # Sequence diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py index 3d827afbe0..8519b5f56e 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py @@ -144,8 +144,8 @@ def lock_utxos(self, source, inputs): self.utxo_locks[source] = ThreadSafeTTLCache( self.utxo_locks_per_address_maxsize, self.utxo_locks_max_age ) - for input in inputs: - self.utxo_locks[source].set(make_outkey(input), input) + for tx_input in inputs: + self.utxo_locks[source].set(make_outkey(tx_input), tx_input) def lock_p2sh_utxos(self, unsigned_pretx): self.utxo_p2sh_encoding_locks.set(make_outkey_vin(unsigned_pretx, 0), True) diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_outputs.py b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_outputs.py index c3301fb2d1..ae031addab 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_outputs.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_outputs.py @@ -22,7 +22,7 @@ def chunks(l, n): # noqa: E741 def pubkeyhash_to_pubkey(pubkeyhash, provided_pubkeys=None): # Search provided pubkeys. if provided_pubkeys: - if type(provided_pubkeys) != list: # noqa: E721 + if not isinstance(provided_pubkeys, list): # noqa: E721 provided_pubkeys = [provided_pubkeys] for pubkey in provided_pubkeys: if pubkeyhash == script.pubkey_to_pubkeyhash(util.unhexlify(pubkey)): @@ -107,7 +107,7 @@ def compute_destinations_and_values( dust_size = multisig_dust_size else: dust_size = regular_dust_size - if value == None: # noqa: E711 + if value is None: # noqa: E711 value = dust_size # noqa: PLW2901 elif value < dust_size: raise exceptions.TransactionError("Destination output is dust.") diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 833618ad76..e4545e50cb 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": 193, - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", - "block_time": 1727095038, - "previous_block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", + "block_time": 1727173013, + "previous_block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", "difficulty": 545259519, - "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", - "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", - "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", + "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", + "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", + "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", - "block_time": 1727095033, - "previous_block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", + "block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", + "block_time": 1727173009, + "previous_block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", "difficulty": 545259519, - "ledger_hash": "f4b76f07514166cfabd35b7a2da674150970518d1c613f55e96eddbd99affaf0", - "txlist_hash": "d6781ffd27f34f36d002569e3fb9f70d46aec42a19059e55ac6a3e950c33e0c9", - "messages_hash": "82aa539e8b22a466290d78e0276fa997beab8c70a841cd1f1c5941772500745c", + "ledger_hash": "7c5a10c60e0adda273a820ac0f140981f23ec027153fdaf5863e9fbb1950b507", + "txlist_hash": "10113b203d2e9b08f332a14a1a7b1e357fe1b95667c66460e14365341f37e508", + "messages_hash": "469a73b1b8afe332b56deab233991be89b015331b31aa3cc7daa11de356308f7", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", - "block_time": 1727095029, - "previous_block_hash": "15b333419e3b9742692eeb0e5dcbbc123b0bc51e93ef5afa59e3467566caf68d", + "block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", + "block_time": 1727173005, + "previous_block_hash": "02f6700fcf36370ae093a8b30af0f487ddbd03c2c43ad683a4ba98deb4c51323", "difficulty": 545259519, - "ledger_hash": "1806c223db9e0630602852badf94b7487b3c6315bce8f305c31354cd74e960ed", - "txlist_hash": "1a83d74b83b692b715dea5270ac39c6824aa58e9f5a474f018f9daaff4fd3211", - "messages_hash": "07f3dd746c35a1a10b151ff73117c7aa3a1530bd686c33e2753e4211f8b434a8", + "ledger_hash": "46e56e1c4701cacad891239b4357cdbe904d35306f95f374e48651661bd28119", + "txlist_hash": "74aadb7ca23cc44a9d5530bab8d1037e502d28f47c1bdaa139c4a792ea767333", + "messages_hash": "a9eaf5c9f4f1f092d273b6e208fca477dcbcf9f65e7245e4b371514b7299ebf9", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "15b333419e3b9742692eeb0e5dcbbc123b0bc51e93ef5afa59e3467566caf68d", - "block_time": 1727095025, - "previous_block_hash": "131c3eb09ef4a1fb5a9b6b20241ec06f87662e2b8ef1a964e039a96020523d95", + "block_hash": "02f6700fcf36370ae093a8b30af0f487ddbd03c2c43ad683a4ba98deb4c51323", + "block_time": 1727173001, + "previous_block_hash": "0fc8aabb62aabd549bddf7c7b53943e2152520c9e1bf3e24ab8aac1977208f47", "difficulty": 545259519, - "ledger_hash": "7fae07ae63846d69d3335162f6207534a432c0cccf4a99433d8e6a76522affb7", - "txlist_hash": "3be2ee8d28f225529efdf0dc294e36cbd4fbe28b12585d248f6bc7aeb50ca123", - "messages_hash": "548e424c951f748549371636b9496042d366811563c345d7e46e804ec5d24ecf", + "ledger_hash": "fd99cd30b4b6ceb23579445adeb2ff01abb843af3232ccf152f83b8da6fc6088", + "txlist_hash": "b85a789a31429c13b3e556a4f0665a31733ea0ca06d5026a81333e5708b27b20", + "messages_hash": "0265d415f94f48d43cd18b77e5033b2d22270632f66d4eda2a07ea4ad26f6371", "transaction_count": 1, "confirmed": true }, { "block_index": 189, - "block_hash": "131c3eb09ef4a1fb5a9b6b20241ec06f87662e2b8ef1a964e039a96020523d95", - "block_time": 1727095020, - "previous_block_hash": "0e7d90a67c58b55067a8a1fedf031c4d5fe6e616c5739c5832c179189357078a", + "block_hash": "0fc8aabb62aabd549bddf7c7b53943e2152520c9e1bf3e24ab8aac1977208f47", + "block_time": 1727172996, + "previous_block_hash": "4a56fb7af76004d2f0d9e697200b176b68422435a6c64d80053a15e2d76b9bbb", "difficulty": 545259519, - "ledger_hash": "18965373ea5ad513653401944234b465dcbf5681e0e083b48847e8a9db288909", - "txlist_hash": "5213ad907f4dae2e1e4de6f216c9bdeb0ea1895c63b69ac233b71b47a4027475", - "messages_hash": "482e0ad064e0485873002d4a555c8e59c1abcbdf6f8dff3a329d8762d9e8ec20", + "ledger_hash": "8de4e9ba279dcf9d61fe03dd631ac235f92b565f6f5c5b787273ca791ed092a4", + "txlist_hash": "2d26a9f871599f84b034aec8fbe8ec79d1e34902055e7a40c8517899e9b69ca3", + "messages_hash": "071c88ddb360523caf0a6070d8c9955a2749d7afee700bc45d0e7185f8b65d3a", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", - "block_time": 1727095038, - "previous_block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", + "block_time": 1727173013, + "previous_block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", "difficulty": 545259519, - "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", - "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", - "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", + "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", + "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", + "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 193, - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", - "block_time": 1727095038, - "previous_block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", + "block_time": 1727173013, + "previous_block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", "difficulty": 545259519, - "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", - "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", - "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", + "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", + "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", + "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", - "block_time": 1727095038, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", + "block_time": 1727173013, + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", + "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -139,11 +139,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 192, - "ledger_hash": "f4b76f07514166cfabd35b7a2da674150970518d1c613f55e96eddbd99affaf0", - "messages_hash": "82aa539e8b22a466290d78e0276fa997beab8c70a841cd1f1c5941772500745c", + "ledger_hash": "7c5a10c60e0adda273a820ac0f140981f23ec027153fdaf5863e9fbb1950b507", + "messages_hash": "469a73b1b8afe332b56deab233991be89b015331b31aa3cc7daa11de356308f7", "transaction_count": 1, - "txlist_hash": "d6781ffd27f34f36d002569e3fb9f70d46aec42a19059e55ac6a3e950c33e0c9", - "block_time": 1727095033 + "txlist_hash": "10113b203d2e9b08f332a14a1a7b1e357fe1b95667c66460e14365341f37e508", + "block_time": 1727173009 }, "tx_hash": null }, @@ -152,43 +152,43 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58 }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "status": "valid", - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, - "block_time": 1727095033, + "block_time": 1727173009, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -198,22 +198,22 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "XCP", "block_index": 192, - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -223,7 +223,7 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" } ], "next_cursor": 524, @@ -261,16 +261,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -280,57 +280,57 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" } ], "next_cursor": null, @@ -340,16 +340,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -361,20 +361,20 @@ }, { "block_index": 192, - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -382,20 +382,20 @@ }, { "block_index": 192, - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -409,16 +409,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "event": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -436,24 +436,24 @@ "result": [ { "type": "order", - "object_id": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "object_id": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", "block_index": 182, "confirmed": true, - "block_time": 1727094927 + "block_time": 1727172888 }, { "type": "order", - "object_id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", + "object_id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", "block_index": 182, "confirmed": true, - "block_time": 1727094927 + "block_time": 1727172888 }, { "type": "order_match", - "object_id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "object_id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", "block_index": 182, "confirmed": true, - "block_time": 1727094927 + "block_time": 1727172888 } ], "next_cursor": null, @@ -463,13 +463,13 @@ "result": [ { "tx_index": 56, - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "block_index": 190, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "status": "valid", "confirmed": true, - "block_time": 1727095025 + "block_time": 1727173001 } ], "next_cursor": null, @@ -479,15 +479,15 @@ "result": [ { "tx_index": 59, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -505,14 +505,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", + "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -527,7 +527,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094911, + "block_time": 1727172872, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -539,10 +539,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "quantity": 10, "status": "valid", @@ -550,7 +550,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "divisible": true, "asset_longname": null, @@ -563,10 +563,10 @@ }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -574,11 +574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -587,10 +587,10 @@ }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -598,11 +598,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -618,27 +618,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", - "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "last_status_tx_hash": null, - "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -653,7 +653,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727094846, + "block_time": 1727172806, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,16 +672,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "fee_paid_normalized": "0.00600000" } ], @@ -692,17 +692,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", - "block_time": 1727095038, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", + "block_time": 1727173013, + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", + "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -725,23 +725,23 @@ }, { "tx_index": 58, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f", - "block_time": 1727095033, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", + "block_time": 1727173009, + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480b16240e182fcfb3d1437b108a600036c78a7f8a2017377656570206d7920617373657473", + "data": "0480d429e837a5671380d2470256f79bfb7e09709e7f017377656570206d7920617373657473", "supported": true, - "utxos_info": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc:1", + "utxos_info": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "flags": 1, "memo": "sweep my assets" } @@ -754,53 +754,18 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380cd4cce463e7e46e89ecf1c25aa143c8a724f591a804efd3277d785851bf1bfb18ef3ebd9ea8732f76580b16240e182fcfb3d1437b108a600036c78a7f8a2400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "61b89d289ff7cbdd8b237e577bab96e2520a059f2770a216d078c1268219b148", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "4bcc88c6869c2c03133df22767e60404baeee3f5138edeebb29dabd3a798fdce", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "2782f40f10afefdc143f14d357cfe34f944494aa373833b9832289ba2143f8f8", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "5aa5f588de814d302d41d9f100b7b3a542e1ec2050ecb18b2fc60ed9374dd7e2", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "a2e429abf0729e4b98b996a0f43844e6b542e00084adc2ecb36dfe6e9340793b", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "75086d0ba9bc241f39567d71adaed566064def254fc38b7a103fdb3bdd394947", + "hash": "737477f765c6c08ac99fe1a9a5f2370d6234a789d06d95e6af11b9b1f2ea022d", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -809,93 +774,69 @@ ], "vout": [ { - "value": 1000, - "script_pub_key": "51210394992133fa4f244f3fa68c4e576be848acfb88d51ff9533c00b4f5359bba4e5e2102d1259a6447c1b3481545c888843b4977bf8551a62b304b47bb60f551654996ab2102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853ae" - }, - { - "value": 1000, - "script_pub_key": "51210294992133fa4f244f3f98987a66ae0286e9a98e340fc5dc202518ebc4d413953d2103883f1a2abaf3c4b690c0d3793b8ac781745cbb2119c72ec72a02b5b0e7b56d6a2102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853ae" - }, - { - "value": 1000, - "script_pub_key": "512103a2992133fa4f244f3fa5984dd7a6a486eac5f693f7679c20251ee10911c801c22103883f1a2abaf3c49f90c0d3793b8ac784545cbb2119c72ec70a02b5b0e7b56db82102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853ae" + "value": 0, + "script_pub_key": "6a335dc759e5c2bd07e4533e2597e39bacdc8e5df787d31f3ff513ffd149c3bb44c18977e802847bff14e37a2ec579d6417837f7c0" }, { - "value": 29999987000, - "script_pub_key": "0014e829a0216c4a51744db91c43f5bb56f5f150753c" + "value": 4999990000, + "script_pub_key": "00145599316be7057562b9146e3d03cc6ea42923b1ad" } ], "vtxinwit": [ - "30440220123c8737294552558203cac285693f15a108d3966e66c75a6617d1f2d56c476402204150203a1a74e8ec140894ef2572bebeee6aa8bbdb14f21a58a69ad077b1ea4501", - "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", - "3044022062494e5172ff51aed3620115b80977d636ceda870a1b9a8025dfa760f411d3b102201d180e5181694e7ab7b23cdcad25e4948327307445562a4bf825aaebd5f6393f01", - "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", - "304402203db0029f1092b6d9d5a0fd36008b58a3043ba4c3443e4bf3bb766bbfa402aec902201763bdc7755cebedcdd4a88735d86b57aa7679fa52b527d7d4d231f6c24e52d201", - "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", - "3044022033a7f73562ffc5320e3efc0e2f5dc31764ff8fb17bfbb1c71b05ca474d552554022037f9509621d4371aad20f09681dbac89f7066806b53f778fe07f9a9dd80aca9b01", - "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", - "304402207a6523b190d5b118122e7aedbe74c681320dc810b2bb09bf53f7343690e813be02201af2265792a6ac960e9a644f75fee65a2126bc6732168759f1cc50201e04dc3f01", - "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08", - "3044022074bd570d18e84ca337e54a3322b7b804f038a0f70704e794962ee9a23779787502205ca00f90f23fc252c9efdbd6915fbfaf478618f697e1420162f9acc4d5ee244b01", - "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08" + "304402202ff34c46adcf93288c974036e0eb7d4b6ebfc890b5eded0da2177fa4947e181302203f334aed60f6f2326335192f9dfe906a2c4fb66cda9266a6e20cc3bda6fc2e4c01", + "02bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b940" ], "lock_time": 0, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", - "tx_id": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d" + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", + "tx_id": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9" }, "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MYASSETA", - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", - "quantity": 10, - "memo": null, - "memo_is_hex": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" + "message_type": "order", + "message_type_id": 10, + "message_data": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "expiration": 21, + "fee_required": 0, + "status": "open", + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, - { - "asset": "XCP", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "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" - } - ] + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000000" + } }, "btc_amount_normalized": "0.00000000" } }, "/v2/transactions//info": { "result": { - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710804efd3277d785851bf1bfb18ef3ebd9ea8732f765", + "data": "020000000000000001000000000000271080ae5b876a7593a9bc79de22969203c476ffdfd3db", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "b6d40817627c585579c9c43ddb072e77f99d3626deca5b52451fd86ab5938203", + "hash": "303babb3f33ba5da113c0f5926f9e0b6fb0fab29be8815b676687637e1bf6193", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -905,20 +846,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2ed944a4bcea26c59d5b101769dda1f522bf6af06606e2baf7ba99e033685f103913435e82889644e3602d799e48ad" + "script_pub_key": "6a2e22e7a1d4fa666ac96161f86a86ec54ea0b3c211b73145a133a00111c728c8ff509252af0e1f8f0c20d7b94a92994" }, { "value": 4999955000, - "script_pub_key": "0014b16240e182fcfb3d1437b108a600036c78a7f8a2" + "script_pub_key": "0014d429e837a5671380d2470256f79bfb7e09709e7f" } ], "vtxinwit": [ - "30440220500964d371a2df466c8cb65ee0a04c9016aec3791c5fcb51b4b692e3e39ff7c50220202faa7a62a2d622bfba780b2f6be3f0a225d13e26ce4f8da5b3cecc617c5cd201", - "0268539bd755f8fa4f5aa15f95da1dcbbbd86d28c794673d670f60fb3e1040bbd1" + "304402203561f9ba0ae46ad26f8daa4aa16c4fc6d8048a02b9eb18086adbd408a6a7fd9102206a9343c49504c18b0b1135b202c28cbee146645af2f653bb4510361c9bb0fd3a01", + "028f281d89d24d92d61488bbd143cc93dd9c65b12631e2f3e98eab7fbc800e92e6" ], "lock_time": 0, - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", - "tx_id": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f" + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_id": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e" }, "unpacked_data": { "message_type": "enhanced_send", @@ -926,7 +867,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "memo": null, "asset_info": { "divisible": true, @@ -953,17 +894,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", - "block_time": 1727095038, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", + "block_time": 1727173013, + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", + "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -988,17 +929,17 @@ "/v2/transactions/": { "result": { "tx_index": 59, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", - "block_time": 1727095038, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", + "block_time": 1727173013, + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", + "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1027,47 +968,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58 }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "status": "valid", - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, - "block_time": 1727095033, + "block_time": 1727173009, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -1077,24 +1018,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "XCP", "block_index": 192, - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -1104,36 +1045,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 } ], "next_cursor": 523, @@ -1146,47 +1087,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58 }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 527, "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "status": "valid", - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, - "block_time": 1727095033, + "block_time": 1727173009, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -1196,24 +1137,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 525, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "XCP", "block_index": 192, - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -1223,36 +1164,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 } ], "next_cursor": 523, @@ -1262,10 +1203,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "quantity": 10, "status": "valid", @@ -1273,7 +1214,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "divisible": true, "asset_longname": null, @@ -1286,10 +1227,10 @@ }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1297,11 +1238,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -1310,10 +1251,10 @@ }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1321,11 +1262,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -1341,27 +1282,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", - "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "last_status_tx_hash": null, - "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -1376,7 +1317,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727094846, + "block_time": 1727172806, "asset_info": { "divisible": true, "asset_longname": null, @@ -1397,16 +1338,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -1416,63 +1357,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 } ], "next_cursor": null, @@ -1484,16 +1425,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -1503,63 +1444,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 } ], "next_cursor": null, @@ -1572,7 +1513,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1582,7 +1523,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -1593,7 +1534,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1603,7 +1544,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -1614,7 +1555,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1624,7 +1565,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -1635,7 +1576,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1645,7 +1586,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -1656,7 +1597,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1666,7 +1607,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -1680,17 +1621,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "block_index": 191, - "block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", - "block_time": 1727095029, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", + "block_time": 1727173005, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d:1", + "utxos_info": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1726,23 +1667,23 @@ }, { "tx_index": 56, - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "block_index": 190, - "block_hash": "15b333419e3b9742692eeb0e5dcbbc123b0bc51e93ef5afa59e3467566caf68d", - "block_time": 1727095025, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "02f6700fcf36370ae093a8b30af0f487ddbd03c2c43ad683a4ba98deb4c51323", + "block_time": 1727173001, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "465cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "data": "4607b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "supported": true, - "utxos_info": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a:1", + "utxos_info": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "status": "valid" } }, @@ -1750,17 +1691,17 @@ }, { "tx_index": 55, - "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "block_index": 189, - "block_hash": "131c3eb09ef4a1fb5a9b6b20241ec06f87662e2b8ef1a964e039a96020523d95", - "block_time": 1727095020, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "0fc8aabb62aabd549bddf7c7b53943e2152520c9e1bf3e24ab8aac1977208f47", + "block_time": 1727172996, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e:1", + "utxos_info": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1796,17 +1737,17 @@ }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "block_hash": "0e7d90a67c58b55067a8a1fedf031c4d5fe6e616c5739c5832c179189357078a", - "block_time": 1727095016, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "4a56fb7af76004d2f0d9e697200b176b68422435a6c64d80053a15e2d76b9bbb", + "block_time": 1727172992, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380cd4cce463e7e46e89ecf1c25aa143c8a724f591a804efd3277d785851bf1bfb18ef3ebd9ea8732f76580b16240e182fcfb3d1437b108a600036c78a7f8a2400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380532aac116f3cb07b11be377d648899a80753971d80ae5b876a7593a9bc79de22969203c476ffdfd3db80d429e837a5671380d2470256f79bfb7e09709e7f400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d:0", + "utxos_info": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1814,14 +1755,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -1829,7 +1770,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1848,25 +1789,25 @@ }, { "tx_index": 51, - "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", + "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", "block_index": 185, - "block_hash": "4a9667cee3f15e9c8483631f9b833f99a1c792e7a9edb176af5ef5397aaff5a6", - "block_time": 1727095004, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "1d6980459044b891166b8b08040dbfaf7f1e6bf6b4eabe8b4847304731354204", + "block_time": 1727172969, + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "btc_amount": 2000, "fee": 10000, - "data": "0b0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "data": "0b592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "supported": true, - "utxos_info": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf:0", + "utxos_info": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", - "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", - "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", + "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "status": "valid" } }, @@ -1895,11 +1836,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "status": "open", - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "tx_index": 57, - "block_time": 1727095029, + "block_time": 1727173005, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1923,24 +1864,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "block_index": 191, - "block_time": 1727095029 + "block_time": 1727173005 }, { "event_index": 514, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "block_index": 191, - "event": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "event": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727095029, + "block_time": 1727173005, "asset_info": { "divisible": true, "asset_longname": null, @@ -1950,25 +1891,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "block_index": 191, - "block_time": 1727095029 + "block_time": 1727173005 }, { "event_index": 513, "event": "NEW_TRANSACTION", "params": { - "block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", + "block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", "block_index": 191, - "block_time": 1727095029, + "block_time": 1727173005, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "tx_index": 57, - "utxos_info": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d:1", + "utxos_info": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -2000,40 +1941,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "block_index": 191, - "block_time": 1727095029 + "block_time": 1727173005 }, { "event_index": 509, "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "status": "valid", - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "tx_index": 56, - "block_time": 1727095025 + "block_time": 1727173001 }, - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "block_index": 190, - "block_time": 1727095025 + "block_time": 1727173001 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727095025, + "block_time": 1727173001, "asset_info": { "divisible": true, "asset_longname": null, @@ -2043,9 +1984,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "block_index": 190, - "block_time": 1727095025 + "block_time": 1727173001 } ], "next_cursor": 506, @@ -2054,17 +1995,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "memo": null, "quantity": 10000, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "status": "valid", - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "tx_index": 60, "asset_info": { "divisible": true, @@ -2077,19 +2018,19 @@ } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "CREDIT", "params": { - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -2101,19 +2042,19 @@ } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 193, - "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -2125,27 +2066,27 @@ } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727095042.4665813, + "block_time": 1727173018.087438, "btc_amount": 0, - "data": "0200000000000000010000000000002710804efd3277d785851bf1bfb18ef3ebd9ea8732f765", + "data": "020000000000000001000000000000271080ae5b876a7593a9bc79de22969203c476ffdfd3db", "destination": "", "fee": 10000, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "tx_index": 60, - "utxos_info": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f:1", + "utxos_info": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "memo": null, "asset_info": { "divisible": true, @@ -2167,7 +2108,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2175,14 +2116,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2190,14 +2131,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2212,7 +2153,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2220,7 +2161,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2232,7 +2173,7 @@ }, "/v2/addresses/
/balances/": { "result": { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -2251,16 +2192,16 @@ "result": [ { "block_index": 190, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095025, + "block_time": 1727173001, "asset_info": { "divisible": true, "asset_longname": null, @@ -2272,16 +2213,16 @@ }, { "block_index": 182, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", + "event": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727094927, + "block_time": 1727172888, "asset_info": { "divisible": true, "asset_longname": null, @@ -2293,20 +2234,20 @@ }, { "block_index": 159, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", + "event": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", "tx_index": 46, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727094911, + "block_time": 1727172872, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2314,20 +2255,20 @@ }, { "block_index": 156, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "0a6900f413f8095625003b8d59bebdc8af81dc18dbf66310ff9229b879d53d0a", + "event": "3049d82ac4929aca6ab12d1284724095e241e923efa6738a54018abaee035899", "tx_index": 43, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727094888, + "block_time": 1727172849, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2339,16 +2280,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", + "event": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", "tx_index": 38, - "utxo": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa:1", - "utxo_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "utxo": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796:1", + "utxo_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "confirmed": true, - "block_time": 1727094866, + "block_time": 1727172827, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2362,16 +2303,16 @@ "result": [ { "block_index": 191, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "event": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095029, + "block_time": 1727173005, "asset_info": { "divisible": true, "asset_longname": null, @@ -2383,16 +2324,16 @@ }, { "block_index": 189, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095020, + "block_time": 1727172996, "asset_info": { "divisible": true, "asset_longname": null, @@ -2404,16 +2345,16 @@ }, { "block_index": 188, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "event": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "divisible": true, "asset_longname": null, @@ -2425,20 +2366,20 @@ }, { "block_index": 188, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "event": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "tx_index": 54, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2446,16 +2387,16 @@ }, { "block_index": 183, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "event": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", "tx_index": 49, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727094996, + "block_time": 1727172962, "asset_info": { "divisible": true, "asset_longname": null, @@ -2478,9 +2419,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "30e595f74d9b77faf4d326988b5fa49da4919c874be0dbbaf37a0f5efc4a6769", + "tx_hash": "2dc115c4e276c363bdb2380e969b9707cf2c501926261d057ce4279b372ab4d5", "block_index": 137, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2488,7 +2429,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727094799, + "block_time": 1727172759, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2499,14 +2440,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "ecafab150e29b2f11e67fa108a503e3a577e8e583993702da34fe10940501e86", + "tx_hash": "8fe853c4e1b892ff7e5ad25d4e0262d0c3fc67bec76c41b8bf204d69675165e1", "block_index": 112, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1727094685, + "block_time": 1727172657, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2518,10 +2459,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2529,7 +2470,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "divisible": true, "asset_longname": null, @@ -2542,10 +2483,10 @@ }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2553,11 +2494,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2566,10 +2507,10 @@ }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2577,11 +2518,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2590,10 +2531,10 @@ }, { "tx_index": 38, - "tx_hash": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", + "tx_hash": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", "block_index": 151, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa:1", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2601,11 +2542,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727094866, + "block_time": 1727172827, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2614,10 +2555,10 @@ }, { "tx_index": 35, - "tx_hash": "b7a064b83eeb86730a5ea9846eb110e4603a852e6aed9ff90a9f42243482b416", + "tx_hash": "66763167dcd1976908a582536231a19199ce97450e535a6346c0eb5c1b9d7f57", "block_index": 148, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "0c869ae1b35c7a20c2384369babb94e31d003833139318542392ce07c372f378:1", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "2aedfe80e416a241471b340a13f770bc621e74af48504b4329591367c64ade01:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2625,11 +2566,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727094855, + "block_time": 1727172815, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2644,10 +2585,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "2ab44625e41aa03c78b532beacdd49dde9f69aa713170235cd829fdf3bde631a", + "tx_hash": "88ce36f56bec0bde16401bf8d29fc724911d18c4b2e04c5381143b345405c019", "block_index": 150, - "source": "28492d2ebdcfa146b86f026a77270b902bd2a4ee130b1cb59bd4b51a8eabf1d4:0", - "destination": "bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu", + "source": "21b3e83b0b0df662cf0bd787cf0aa89d24f2ff8a271d6fc2859150e567f2d8af:0", + "destination": "bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2655,11 +2596,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727094862, + "block_time": 1727172823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2674,10 +2615,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2685,11 +2626,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2698,10 +2639,10 @@ }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2709,11 +2650,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2722,10 +2663,10 @@ }, { "tx_index": 38, - "tx_hash": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", + "tx_hash": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", "block_index": 151, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa:1", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2733,11 +2674,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727094866, + "block_time": 1727172827, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2746,10 +2687,10 @@ }, { "tx_index": 35, - "tx_hash": "b7a064b83eeb86730a5ea9846eb110e4603a852e6aed9ff90a9f42243482b416", + "tx_hash": "66763167dcd1976908a582536231a19199ce97450e535a6346c0eb5c1b9d7f57", "block_index": 148, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "0c869ae1b35c7a20c2384369babb94e31d003833139318542392ce07c372f378:1", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "2aedfe80e416a241471b340a13f770bc621e74af48504b4329591367c64ade01:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2757,11 +2698,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727094855, + "block_time": 1727172815, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2776,10 +2717,10 @@ "result": [ { "tx_index": 37, - "tx_hash": "2ab44625e41aa03c78b532beacdd49dde9f69aa713170235cd829fdf3bde631a", + "tx_hash": "88ce36f56bec0bde16401bf8d29fc724911d18c4b2e04c5381143b345405c019", "block_index": 150, - "source": "28492d2ebdcfa146b86f026a77270b902bd2a4ee130b1cb59bd4b51a8eabf1d4:0", - "destination": "bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu", + "source": "21b3e83b0b0df662cf0bd787cf0aa89d24f2ff8a271d6fc2859150e567f2d8af:0", + "destination": "bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2787,11 +2728,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727094862, + "block_time": 1727172823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -2806,9 +2747,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2817,7 +2758,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2827,7 +2768,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -2843,9 +2784,9 @@ }, { "tx_index": 30, - "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", + "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", "block_index": 144, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2854,7 +2795,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2864,7 +2805,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094839, + "block_time": 1727172798, "asset_info": { "divisible": true, "asset_longname": null, @@ -2885,9 +2826,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 30, - "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", + "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", "block_index": 144, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -2896,7 +2837,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -2906,7 +2847,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094839, + "block_time": 1727172798, "asset_info": { "divisible": true, "asset_longname": null, @@ -2926,19 +2867,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", + "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2946,7 +2887,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2961,7 +2902,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -2975,19 +2916,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", + "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", "block_index": 140, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2995,7 +2936,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3010,7 +2951,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094812, + "block_time": 1727172770, "asset_info": { "divisible": true, "asset_longname": null, @@ -3030,19 +2971,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", + "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3050,7 +2991,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3065,7 +3006,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -3079,19 +3020,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", + "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", "block_index": 140, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3099,7 +3040,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3114,7 +3055,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094812, + "block_time": 1727172770, "asset_info": { "divisible": true, "asset_longname": null, @@ -3134,19 +3075,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", + "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3154,7 +3095,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3169,7 +3110,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -3183,19 +3124,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", + "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", "block_index": 140, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3203,7 +3144,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3218,7 +3159,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094812, + "block_time": 1727172770, "asset_info": { "divisible": true, "asset_longname": null, @@ -3238,19 +3179,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", + "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3258,7 +3199,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3273,7 +3214,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -3287,19 +3228,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", + "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", "block_index": 140, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3307,7 +3248,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3322,7 +3263,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094812, + "block_time": 1727172770, "asset_info": { "divisible": true, "asset_longname": null, @@ -3341,16 +3282,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "fee_paid_normalized": "0.00600000" } ], @@ -3361,14 +3302,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", + "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -3383,20 +3324,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094911, + "block_time": 1727172872, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "766ce7ba7a212e1b43cbe3df259ab0cd0bf5579c5cf1c4c27ceb05911f1f7109", + "tx_hash": "a5f2456ffc60bddd11a2187be2545ed9673ef35e6a0875df3c290bd24ebc8710", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -3411,20 +3352,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727094897, + "block_time": 1727172868, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "4c63b42edf0cfbe37a429815c6724cfea57503fe580f8d9022c3a2bc16e8db38", + "tx_hash": "5e797f98d87c1d82f48855c68cbc2145fa7d10b690e61df3912aa5816a3b0fd0", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -3439,20 +3380,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094893, + "block_time": 1727172853, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "0a6900f413f8095625003b8d59bebdc8af81dc18dbf66310ff9229b879d53d0a", + "tx_hash": "3049d82ac4929aca6ab12d1284724095e241e923efa6738a54018abaee035899", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -3467,20 +3408,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094888, + "block_time": 1727172849, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 34, - "tx_hash": "81aca02b207fc43014326338aa1faa03766d072cb1f86dc4db356fad27fff5fc", + "tx_hash": "b96874fd1a0fdbfc5bb12fb920c61bac293b0b0ae4f4be876b3eae4f2a1bdeb0", "msg_index": 0, "block_index": 147, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -3495,7 +3436,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094850, + "block_time": 1727172810, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -3509,8 +3450,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 10000000000, @@ -3518,16 +3459,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727094888, - "last_issuance_block_time": 1727094897, + "first_issuance_block_time": 1727172849, + "last_issuance_block_time": 1727172868, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 100000000000, @@ -3535,16 +3476,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727094850, - "last_issuance_block_time": 1727094850, + "first_issuance_block_time": 1727172810, + "last_issuance_block_time": 1727172810, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 40, @@ -3552,16 +3493,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727094790, - "last_issuance_block_time": 1727094794, + "first_issuance_block_time": 1727172750, + "last_issuance_block_time": 1727172754, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 19, @@ -3569,16 +3510,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727094764, - "last_issuance_block_time": 1727094786, + "first_issuance_block_time": 1727172733, + "last_issuance_block_time": 1727172746, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 0, @@ -3586,8 +3527,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1727094743, - "last_issuance_block_time": 1727094760, + "first_issuance_block_time": 1727172712, + "last_issuance_block_time": 1727172729, "supply_normalized": "0.00000000" } ], @@ -3598,17 +3539,17 @@ "result": [ { "tx_index": 57, - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "block_index": 191, - "block_hash": "25e82b6a8ad98c584597a4d980b6516598f245f85774ccbbfbfb67a7a97fbdc6", - "block_time": 1727095029, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", + "block_time": 1727173005, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d:1", + "utxos_info": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3644,23 +3585,23 @@ }, { "tx_index": 56, - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "block_index": 190, - "block_hash": "15b333419e3b9742692eeb0e5dcbbc123b0bc51e93ef5afa59e3467566caf68d", - "block_time": 1727095025, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "02f6700fcf36370ae093a8b30af0f487ddbd03c2c43ad683a4ba98deb4c51323", + "block_time": 1727173001, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "465cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "data": "4607b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "supported": true, - "utxos_info": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a:1", + "utxos_info": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "status": "valid" } }, @@ -3668,17 +3609,17 @@ }, { "tx_index": 55, - "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "block_index": 189, - "block_hash": "131c3eb09ef4a1fb5a9b6b20241ec06f87662e2b8ef1a964e039a96020523d95", - "block_time": 1727095020, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "0fc8aabb62aabd549bddf7c7b53943e2152520c9e1bf3e24ab8aac1977208f47", + "block_time": 1727172996, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e:1", + "utxos_info": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3714,17 +3655,17 @@ }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "block_hash": "0e7d90a67c58b55067a8a1fedf031c4d5fe6e616c5739c5832c179189357078a", - "block_time": 1727095016, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "4a56fb7af76004d2f0d9e697200b176b68422435a6c64d80053a15e2d76b9bbb", + "block_time": 1727172992, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380cd4cce463e7e46e89ecf1c25aa143c8a724f591a804efd3277d785851bf1bfb18ef3ebd9ea8732f76580b16240e182fcfb3d1437b108a600036c78a7f8a2400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380532aac116f3cb07b11be377d648899a80753971d80ae5b876a7593a9bc79de22969203c476ffdfd3db80d429e837a5671380d2470256f79bfb7e09709e7f400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d:0", + "utxos_info": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3732,14 +3673,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -3747,7 +3688,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3766,17 +3707,17 @@ }, { "tx_index": 49, - "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", "block_index": 183, - "block_hash": "4a143f2552233e509a13de0b3000486448be60508bcff70deab46b4f502d58a9", - "block_time": 1727094996, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "block_hash": "04fd73239f17e0cea1b251ec4ee8954da7be64cc416654baa2deddde1a5f7dec", + "block_time": 1727172962, + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126:1", + "utxos_info": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3818,20 +3759,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", + "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", "block_index": 153, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727094875, + "block_time": 1727172836, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -3853,9 +3794,9 @@ "result": [ { "tx_index": 47, - "tx_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", + "tx_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", "block_index": 182, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3870,7 +3811,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727094927, + "block_time": 1727172888, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3896,9 +3837,9 @@ }, { "tx_index": 49, - "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", "block_index": 186, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3913,7 +3854,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727095009, + "block_time": 1727172973, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3939,9 +3880,9 @@ }, { "tx_index": 55, - "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "block_index": 190, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3956,7 +3897,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727095025, + "block_time": 1727173001, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3982,9 +3923,9 @@ }, { "tx_index": 57, - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "block_index": 191, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3999,7 +3940,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727095029, + "block_time": 1727173005, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4030,10 +3971,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", + "tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", "tx_index": 22, "block_index": 135, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4058,13 +3999,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727094790 + "block_time": 1727172750 }, { - "tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", + "tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", "tx_index": 18, "block_index": 131, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4089,13 +4030,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727094764 + "block_time": 1727172733 }, { - "tx_hash": "801ce5c24ea2170c2937ab2d624deefa78877919ee48f5b5d5134b4b1c1d545e", + "tx_hash": "c768c790db646fe20b33e0828c0042c6705ee66248d68fde588e91455ea70222", "tx_index": 14, "block_index": 130, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4120,13 +4061,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727094760 + "block_time": 1727172729 }, { - "tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "tx_index": 10, "block_index": 125, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4151,7 +4092,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727094739 + "block_time": 1727172708 } ], "next_cursor": null, @@ -4160,127 +4101,127 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "cfa6d447a379922dd0da484f07f975e5f68176b84d2aee0d31fa0acec398bb72", + "tx_hash": "7f69a52eaeb924d936bb756185de09623ce5fc4623732debde3ceb5f2c01dcb1", "tx_index": 23, "block_index": 136, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "fairminter_tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "fairminter_tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094794, + "block_time": 1727172754, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } }, { - "tx_hash": "8d1c0def2f1a5e730424a9ba152df29d054307de1e3349b107a4d38bbcda226b", + "tx_hash": "720c78644e95b750e5e89458ccba3ac499218259786b4d705dc9c52e45645434", "tx_index": 21, "block_index": 134, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "fairminter_tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "fairminter_tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094786, + "block_time": 1727172746, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } }, { - "tx_hash": "992ed3ec1967242742fe7ddde03a6e116c2b4bc20a039f3753bc954c69bac92c", + "tx_hash": "f2f695801cc23d5fda9c3c04391153803dc91a18c9d7c5ad415a606b0a94299e", "tx_index": 20, "block_index": 133, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "fairminter_tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "fairminter_tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094772, + "block_time": 1727172742, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } }, { - "tx_hash": "47c564253e148783c32ae4ae2224e3656a91ade6afa6a567038bd10355f3ba0b", + "tx_hash": "6a7d3fe4b60626f6bc00da9990c5bdcfb41decb4b0a8ee2e09bdb23821d767a8", "tx_index": 19, "block_index": 132, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "fairminter_tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "fairminter_tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094767, + "block_time": 1727172737, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } }, { - "tx_hash": "b665264a50495d9162549493a10fd88af7eae43d85bfb5fd1422bb2494564799", + "tx_hash": "06cc86ee9d16e7b4176cce6b793d383387d5d47b51999ee9b53aea4497473deb", "tx_index": 15, "block_index": 127, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "fairminter_tx_hash": "801ce5c24ea2170c2937ab2d624deefa78877919ee48f5b5d5134b4b1c1d545e", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "fairminter_tx_hash": "c768c790db646fe20b33e0828c0042c6705ee66248d68fde588e91455ea70222", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094747, + "block_time": 1727172716, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } }, { - "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", + "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", "tx_index": 11, "block_index": 123, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094730, + "block_time": 1727172700, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } @@ -4292,22 +4233,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", + "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", "tx_index": 11, "block_index": 123, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094730, + "block_time": 1727172700, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } @@ -4322,7 +4263,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4334,7 +4275,7 @@ "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "020000000001012753781abf3ef2fce372e23bccc466fa67e142098a3631c85e550e2d463af6b400000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff0200000000000000002b6a295c95cb43452450545471a142695239a49e999afcd68e45ef43302f0a84d7929eb69ccc07e2eedc7d873bb1052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "02000000000101af33d0d8f9d98165a3da059f96c1af823cbb4cc220da66af9ca7820fdea70915000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff0200000000000000002b6a292e0958b1a601ea9d60f71d51d49062154b9cc6a43b77217cd07044731ba022e0e6a006dca21d479bc23bb1052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4347,16 +4288,16 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2" + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f" }, "name": "btcpay", - "data": "434e5452505254590b0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e761268029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "data": "434e5452505254590b592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d85808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999975897, "btc_fee": 21103, - "rawtransaction": "020000000001013707d42a6b3e09f63cab8dbcecd052e284d9b3f7d327785934ad1f6e903b2a7e00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff03b80b000000000000160014e829a0216c4a51744db91c43f5bb56f5f150753c00000000000000004b6a491b04cb4beea64c20d9040b3269732068e1dcacb0bb0b9a234093062e5fec48637b40ad0c4003a2c9ed173e13ca3decc91a01e5f36f215591467470ebb8430f9a981b32fb0c5b905959d993052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "0200000000010163dac5ee4013e42cb89a5ec4ef18cea55496b8d98b3daa3cd931ebaf61e7c52c000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff03b80b0000000000001600145599316be7057562b9146e3d03cc6ea42923b1ad00000000000000004b6a495f939fc66ad4c4b808a244e70c8f9487760b1ab7362a37f7841c56041c3375d1ad367af6939046080bd40f6cc16b8b7c93975712c3ed79e175f3d930e92848dc6c26f0c6c0a77ded45d993052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4369,7 +4310,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "quantity": 1000, "overburn": false }, @@ -4379,22 +4320,22 @@ "btc_out": 1000, "btc_change": 4999983584, "btc_fee": 15416, - "rawtransaction": "02000000000101935395f62de465450f628d51b71eb929561cabadff4d44bc9648b01a4737810600000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000" + "rawtransaction": "0200000000010174fc5ee9d502fe1b41269a653d8f5dab6622bc7d7c7ec05369d3f052fe5f33a2000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "offer_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d" + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "offer_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9" }, "name": "cancel", - "data": "434e545250525459460d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "data": "434e545250525459461d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983419, "btc_fee": 16581, - "rawtransaction": "020000000001011ba4bc1fe795234b95f9f58de52278906d7a3114f88f52713f801f1522de429100000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff0200000000000000002b6a29007801a76b6587fc2ba7aa3ae94f5b957d1940c47504a0b60ac23ec1cf99a8587cee37c1669b2472253bb1052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "02000000000101e4361b0c596d859603d49e99d8632c55d50447899d3984fbe31070c4b200e42e000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff0200000000000000002b6a29a2fe08d4e271b515e930cf3749bfa7e8531426f6b727c59ef8e511af5f690c7bf93ff598a7c21cdff83bb1052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4407,7 +4348,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4426,7 +4367,7 @@ "btc_out": 0, "btc_change": 4999984036, "btc_fee": 15964, - "rawtransaction": "020000000001014a8583cd5197ec1748bc59ca810479021ff53c793b359686426cb25dfb1aeab700000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000226a207da825ccda30cbec0f9cdcf4ae73541389f0c719d881442587a86269e4c2faeba4b3052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "0200000000010129b2d6399f693ac888d531fbbc2164a572f5b2eaf3f0018c98a206ca27ecc030000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000226a20f3bae5a23d489e414499b16b6a729f07a42e929f1be203ede83a10049ad80220a4b3052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4439,7 +4380,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", + "source": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4463,7 +4404,7 @@ "btc_out": 0, "btc_change": 4949953351, "btc_fee": 16649, - "rawtransaction": "02000000000101e94a3e476d38d0ee40ef150171d3aac1078b23fccc16429d6f881d8eea88bd8b0200000016001464aa4081fb72662d398468df64ae2c8247e1ad0fffffffff0200000000000000002c6a2a46a59187955d441c02c9f0f35b589fb10bad5dfaa9e474f70e73df105466b802c1bf429ea33f3dc5933c474b0a270100000016001464aa4081fb72662d398468df64ae2c8247e1ad0f02000000000000", + "rawtransaction": "02000000000101a9ea80a3ad8fe7e0dea389ed4e802d920cf9a7f5ee1b9dba3aacd3dabdfdfac002000000160014c2219b0461c00c84849c64009a4a3dcad6d47741ffffffff0200000000000000002c6a2abea145d0731b63994ac94646399aff7fb33e31388520dc68e6a97bca58077bd9ea53dcfe69800440d3d6474b0a2701000000160014c2219b0461c00c84849c64009a4a3dcad6d4774102000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4476,14 +4417,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -4502,7 +4443,7 @@ "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "02000000000101a1cf27caadcf7aa0806331f4e40a13f4c1249ff13acfc7dc7e9df8c919c9ad6900000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000236a213075cb95a5d9480d7739d48194a183a760add3617bab58601cea029b41aec39e2160b3052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "0200000000010167449216ab4e6619bf0f98e541ebd1a851a05202441fb5f3e56bad445efec8e9000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000236a21eb8e7c4b955a188e89255f343edde246588ea2a3fa296c5fc886c639c8a58698f560b3052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4515,10 +4456,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "transfer_destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "lock": false, "reset": false, @@ -4531,7 +4472,7 @@ "btc_out": 546, "btc_change": 4999981092, "btc_fee": 18362, - "rawtransaction": "020000000001018bd1824abe126426ead3d07b8c342bc52c6697187d076b78d437f9a35bdad4ba00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff032202000000000000160014e829a0216c4a51744db91c43f5bb56f5f150753c0000000000000000236a219833bffc8f4e7366fc332fd7906d1423a5d4fb7c644f0e882ff5eb724ee78897f824a8052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "02000000000101199607f896a2f31801606f5fd7abf71412922759c071ad98481ed0a6c340784a000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff0322020000000000001600145599316be7057562b9146e3d03cc6ea42923b1ad0000000000000000236a21f863b50b8432cad457c32ed600f3d68155964c65b7ff1174207312984a5fcfa96a24a8052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4544,16 +4485,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset_dest_quant_list": [ [ "XCP", - "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", 1 ], [ "MYASSETA", - "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", 2 ] ], @@ -4561,12 +4502,12 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280e829a0216c4a51744db91c43f5bb56f5f150753c80cd4cce463e7e46e89ecf1c25aa143c8a724f591a8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e545250525459030002805599316be7057562b9146e3d03cc6ea42923b1ad80532aac116f3cb07b11be377d648899a80753971d8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999936609, "btc_fee": 61391, - "rawtransaction": "0200000000010492a4ba9f83395c0bd2dd5c4c4946dd217a59ea1322d4f33e95da29341448a5df00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cfffffffffbb4ab5c80076e926c51b45a0090f8d197e9d95333d56a35bff6da15b37a046d00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff0e5181d60a798bbbe3521d346d6d2dc7001512f92d28a84289eb81503184ba3b00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff4d0da1973cebb7d58592999392de91d1a64ea5b0f90befcadde427361a741f7700000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff03e80300000000000069512103cbac3b0c06292afed4455a36526e7e216c0c370466b084ef020854b9a48719152102517fdbb6532ebbab0ac304e4a55cdad26d587d75d9fcf81fff460e3120c87c452102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee80300000000000069512103c4ac3b0c06292afed4662d5ba0ea33a06fe07d551ee8a678f6ddefef517649cd21032443137b1fe0fd957485e47a6a40ff787964f50796a5e290dd0e6b5d4ca7508c2102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853ae61d016a804000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000002000002000002000000000000", + "rawtransaction": "02000000000104ccdb1eae0a96b64e00444775d7e7668add22ff3d2f824f54efe88177b8a7d8da000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff7526f54f5b77068cd36a98f8d5ae2a9d8b12930f17a6cb7555a35aefda2ab8e8000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff123e063c7807662d9c0b60b684ee0f381f0707fefb4c5fc00c166e2d0be5b65d000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff5832ead26b4ebe2833817f3b1ff238931ec296f2c5f2be5e969e2d34a82ebf2f000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff03e80300000000000069512103f874fafd07a3d16cd378132e1588914d0c9f7bd914f4c67633bf836e34910eda21025ad7d920a9ebb2956228c2716af4b56be83a74cd43b6a7533e20c27e59e47a412102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053aee80300000000000069512102f774fafd07a3d16cd35b6443e7b16c5d45f87eac7a584993b99c4f0090b82d5c2102eb7a11738347a3fa5e98b160d4c3c80f60a3deca1021badc1c68a712358b56f82102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053ae61d016a8040000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4579,7 +4520,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4596,7 +4537,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -4610,7 +4551,7 @@ "btc_out": 0, "btc_change": 4999982734, "btc_fee": 17266, - "rawtransaction": "02000000000101c6fb84cd2ceb0b3b84413102e3df25028728c0fca08191a6cbd2e583802b69ee00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000356a336c63fd97b8f90741212d5dc3b7580c471eb70992eaf022ab254274bd3bd75da0ad4f024c62f602de374d22defec956daa7fee58eae052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "020000000001010e6d8cd850f4eaadc7cdee81783eca6693e9f3e83fff2e6afee9d45b3f8d8cfa000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000356a332b3117d5e90fe257c0a5f5203547fd01fe65d953da9c8cd282ae5ea93466f2b9f68d1c61d92d3c7196f0056f71e447fa1f26198eae052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4623,8 +4564,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4640,12 +4581,12 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880cd4cce463e7e46e89ecf1c25aa143c8a724f591a", + "data": "434e54525052545902000000000000000100000000000003e880532aac116f3cb07b11be377d648899a80753971d", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983077, "btc_fee": 16923, - "rawtransaction": "02000000000101ecc8cc77ffad54b83edb1d30f97d30702f2677496bbc297ae7c19cb5b61c240400000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000306a2ed369c03500434c51d445cb62a9fc01b33ce7cc0bbf4770f0d8ed5010b9b1c657f48b4e775fb1bd34edbc045614b8e5af052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "02000000000101e83a100b7448574562d89c192966d72f92315d9294eebe6c04eb5a0d4ae95a24000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000306a2eacc042d5926ad0fa8e9f92acc6b4d354dbde14c4b114a8239148ce044f2d8777d2707cfa7d3b315d2b7c1cc1fe6ae5af052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4658,18 +4599,18 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480cd4cce463e7e46e89ecf1c25aa143c8a724f591a07ffff", + "data": "434e5452505254590480532aac116f3cb07b11be377d648899a80753971d07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999983968, "btc_fee": 16032, - "rawtransaction": "0200000000010170675a3d293ca41b0bedee451e3924ba2f5a9fa61db622d14f4348e3e5ab200a00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000236a218f510ab8c951833a2b75bb4e9766d2dec649a393271b2abf3ed870b11a3a572b4960b3052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "02000000000101f9d65187386f8dbded15ef13b18f58bea74c65f34d6ce63338214e8e3bbf79d6000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000236a21629b15563737c408657c595345ae6ed93030db8fda271bffb89408e45aa1c0387b60b3052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4682,8 +4623,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "quantity": 1000 }, "name": "dispense", @@ -4692,7 +4633,7 @@ "btc_out": 1000, "btc_change": 4949850214, "btc_fee": 16786, - "rawtransaction": "02000000000101cf2df0607c3a61517992fb3d0656cb1a7df1406f6cdbd4662604730e3004c94002000000160014cd4cce463e7e46e89ecf1c25aa143c8a724f591affffffff03e803000000000000160014b16240e182fcfb3d1437b108a600036c78a7f8a200000000000000000c6a0a97dddfa8bf5d09d8cce566b8082701000000160014cd4cce463e7e46e89ecf1c25aa143c8a724f591a02000000000000", + "rawtransaction": "02000000000101520b2f2fc3321caa95322c7979a6307502ea4808332b326290a07cc816dcfc0402000000160014532aac116f3cb07b11be377d648899a80753971dffffffff03e803000000000000160014d429e837a5671380d2470256f79bfb7e09709e7f00000000000000000c6a0ade90a904cccc5ac72d7c66b8082701000000160014532aac116f3cb07b11be377d648899a80753971d02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4705,7 +4646,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4730,7 +4671,7 @@ "btc_out": 0, "btc_change": 4999983008, "btc_fee": 16992, - "rawtransaction": "02000000000101b3a8ea6e4f8eb45913e609652e259af9c6e6eca8c561996218d2ebea0997dd1900000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000316a2fd9ab2df527d279c6d4c2e0bc2b050c3bef1b34b372ba02ea4f711fd12fe10d7e8ae76b0586f1330d77f146e8f87116a0af052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "020000000001014d786e5f0a5b51bf4adb3bd3b916e2f701e6a3187789decc113124d60c4d9d74000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000316a2f5c690cfaa2c14b48ee14eaabefc2388a814775ef7336a0b61ee0c3ae0bf93a875c7a25d490cd443326495cb6c862aca0af052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4743,13 +4684,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -4761,7 +4702,7 @@ "btc_out": 0, "btc_change": 4999984858, "btc_fee": 15142, - "rawtransaction": "02000000000101421347058c622d1d61385a7f92c7cb77b8703bdadf6d9b2b6f3efdee64c440b300000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff020000000000000000166a146d69de097e977560a3ae751a6dee79266c4b203bdab6052a01000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000000000000", + "rawtransaction": "020000000001015c396740f5887c718e263d3760fb658b943adc75ab8fb5db018685122e4f5434000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000166a14b451f024663bf86f83f2d985f1df34edb43d4934dab6052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4774,8 +4715,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d:3", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4788,12 +4729,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171617135367167747666666768676e64657233706c7477366b37686334716166753535666b6b757c353631616262333238383864636464366436643730633564333838656533393966653362353164313062623330373330636239396535333133386639373133643a337c5843507c31303030", + "data": "434e54525052545964626372743171326b766e7a366c387134366b3977673564633773386e72773573356a3876646467733470716c7c316439623961393935316438323032376361343332633830343363393239653837643766363866363838643036303063616463396132303632376134616664393a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999905256, "btc_fee": 91744, - "rawtransaction": "02000000000106b627e317f10b77b7e289a77baf87646e05e1a63b36b17596a99f2e60e299a20500000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffffb4ca6249f8ef72cfb804afcc7698fad762b72331f548e24197f2341b7909505e00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff5765180b7ea5e05af9eb195c81a6255235ada15eb8d1e8b7b750b25fd133342600000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff707710929e481d91f9c3f608c3cefd0d8f608abd29d7b13c6af0bca108d1e22e00000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff02f5fd3e8a84f2ebb61c7b4877f81724a13027db3f8cbf542ddf90a28b9d29b500000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff02626c456777e623c5f61924c131e89ee9312e6125adafc1c1c8cf5dd5660f2700000000160014e829a0216c4a51744db91c43f5bb56f5f150753cffffffff04e803000000000000695121033cffa7619ed50f4bde596392e3b7f4a95f6ab29b250e1a6ef2ae7d84954d2e2b2102f27d87cca6f41879e6f5b99a74fefc8013b8a66a847ebf28e49a64fbbba4e5d82102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee803000000000000695121033cffa7619ed50f4bde0f39c9a9a7a6bc5a2de39b305e5e7ba1ac29d4ca462ff82102a4368ddaafb30d7abca6e0c922edaed651bea36f8d2cf331e49f64a9e1a0ef902102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee8030000000000006951210216ffa7619ed50f4bde0a30c2f5f9f6a46658d7d165595e2894c81aecf2234a432103970fb4bcca806f4f8dc2d1f9408f9de6668d930cef15ca54d1ac559ad9c6d6e12102fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b0853aee83922fc06000000160014e829a0216c4a51744db91c43f5bb56f5f150753c02000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106f8218679e74b551d77b8e082747a9ef8766d8768d166f17506d431cf53bae90e000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffffa67567318e89ab8dde23f50c4b33b7a460fe8fcca6c9b2f826f9872bd08bfd73000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffffb489150449da2b610fc751903848a033271c3490e7aba6d057d9e66fe7515aee000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff3df59728427c5fd0fb19c90369cd1d19d859659f1e12f17e807b1e2bc3a6f10c000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffffbb610b5457889662f9c2b57140d693ea81ba99dcd97606875a5d1672a6acd73e000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffffe5394c1b875fc8ee43c265eeb9db212205519ba3a3fcac85151519726303880a000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff04e803000000000000695121031ef305f702a88a3e3ca11a0866662be994b32ea6712721e4156ebe57b304a1ff2103add0c30606601de4e736a90e3933f42f66202d1bb35cceeeb5c0afd48ec877662102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053aee803000000000000695121031ef305f702a88a3e3cfc4d5a702a28a894ef3ba93f227fbf5c6abc0fe94af4fd2103a1d19806116f15a0a865ec036b6fb27d32773d4ea74e9bf3b694a08480c87a6f2102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053aee8030000000000006951210234f305f702a88a3e3ca41e0f2d282be4fe9b08b43a217dec645a883c8a73c642210298b4a031755873969003da3b530b824b02475e2fc32da29284a496b6b7a94eaa2102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053aee83922fc060000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4806,8 +4747,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940:1", - "destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800:1", + "destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4820,12 +4761,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964353433383537383130643432653335393766306463336135383234313033343464633261626366336464343131643631373138393661653365623563373934303a317c626372743171617135367167747666666768676e64657233706c7477366b37686334716166753535666b6b757c5843507c31303030", + "data": "434e54525052545964303165623165353238306339353962353632623232386430303436386438653062393931356337343531666361623132316533346636393633626131383830303a317c626372743171326b766e7a366c387134366b3977673564633773386e72773573356a3876646467733470716c7c5843507c31303030", "btc_in": 4949874900, "btc_out": 3000, "btc_change": 4949842164, "btc_fee": 29736, - "rawtransaction": "0200000000010140795cebe36a8971611d41ddf3bc2adc44034182a5c30d7f59e3420d815738540100000016001437e73d81e066d65b5208cfbf973f0a0436365e8bffffffff04e803000000000000695121021cd41ad1151db6fd319756e0ba7e1b19371e7a907c192ca23f6ff3b4ca1c03a32102681750f1cfec13382f07e31b4ea9359e27b077250deefcf6c8e366b1ceeefbe12102e2f9408019cc58d6becf6805fead856caeadf7edf56b2ca3a17d96cabb078aeb53aee803000000000000695121031cd41ad1151db6fd31c502b1ba234c1b6c1873c0781178ed6835b6a6cb09018c21032a4353b89aac546e7a54bf1843ff318e77a628351eeca6f0c4b663f79eb0b7c92102e2f9408019cc58d6becf6805fead856caeadf7edf56b2ca3a17d96cabb078aeb53aee8030000000000006951210236d41ad1151db6fd31c656b2e22d5b52576c1a88791b79a10a56c4d2fa78605021025b7665c9fdd822081c33d77f2d9b54fc44d6444169dacdc7acd55786ffd6c2592102e2f9408019cc58d6becf6805fead856caeadf7edf56b2ca3a17d96cabb078aeb53aef49808270100000016001437e73d81e066d65b5208cfbf973f0a0436365e8b02000000000000", + "rawtransaction": "020000000001010088a13b96f6341e12abfc51745c91b9e0d86804d028b262b559c980521eeb010100000016001472e6693bf8a47cff7fa322286a03432d00c03826ffffffff04e80300000000000069512102f0391dd0aaab3ba977ac87a9523cbdc3ddcfd9543c8d9028cfb769863202bd292103b860b59fb41791a856bec4f6412905e9f515968a4778335a0a176ed998f2c58b21032b1dff0d6591da3ff998b1d12adf6162e7716c5ff519896a2fc1053c2aa1c55f53aee80300000000000069512103f0391dd0aaab3ba977ae81a1016deec7d9c5d9546f8e946dcfe12dc06141bdbb2103eb72ebd5b64d91bd5aed9fad0f7701b8f515d187186c270e1b1336d08ba5951721032b1dff0d6591da3ff998b1d12adf6162e7716c5ff519896a2fc1053c2aa1c55f53aee80300000000000069512103da391dd0aaab3ba977afc4ac472fe0dab0beb1186e849521ad825fb450308ff12102800485af8021a9cc6edbf494781034dc9622a2bf761e503b68265ce8fdc1f18b21032b1dff0d6591da3ff998b1d12adf6162e7716c5ff519896a2fc1053c2aa1c55f53aef49808270100000016001472e6693bf8a47cff7fa322286a03432d00c0382602000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4841,8 +4782,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 10000000000, @@ -4850,16 +4791,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727094888, - "last_issuance_block_time": 1727094897, + "first_issuance_block_time": 1727172849, + "last_issuance_block_time": 1727172868, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", - "owner": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", + "issuer": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", + "owner": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", "divisible": true, "locked": false, "supply": 100000000000, @@ -4867,16 +4808,16 @@ "first_issuance_block_index": 155, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1727094884, - "last_issuance_block_time": 1727094884, + "first_issuance_block_time": 1727172845, + "last_issuance_block_time": 1727172845, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 100000000000, @@ -4884,16 +4825,16 @@ "first_issuance_block_index": 147, "last_issuance_block_index": 147, "confirmed": true, - "first_issuance_block_time": 1727094850, - "last_issuance_block_time": 1727094850, + "first_issuance_block_time": 1727172810, + "last_issuance_block_time": 1727172810, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 40, @@ -4901,16 +4842,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727094790, - "last_issuance_block_time": 1727094794, + "first_issuance_block_time": 1727172750, + "last_issuance_block_time": 1727172754, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 19, @@ -4918,8 +4859,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727094764, - "last_issuance_block_time": 1727094786, + "first_issuance_block_time": 1727172733, + "last_issuance_block_time": 1727172746, "supply_normalized": "0.00000019" } ], @@ -4931,8 +4872,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 10000000000, @@ -4940,15 +4881,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1727094726, - "last_issuance_block_time": 1727094739, + "first_issuance_block_time": 1727172696, + "last_issuance_block_time": 1727172708, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4956,14 +4897,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4971,7 +4912,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -4983,7 +4924,7 @@ }, "/v2/assets//balances/
": { "result": { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 82699937176, "utxo": null, @@ -5002,9 +4943,9 @@ "result": [ { "tx_index": 47, - "tx_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", + "tx_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", "block_index": 182, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5019,7 +4960,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727094927, + "block_time": 1727172888, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5045,9 +4986,9 @@ }, { "tx_index": 49, - "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", "block_index": 186, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5062,7 +5003,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727095009, + "block_time": 1727172973, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5088,9 +5029,9 @@ }, { "tx_index": 55, - "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "block_index": 190, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5105,7 +5046,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727095025, + "block_time": 1727173001, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5131,9 +5072,9 @@ }, { "tx_index": 57, - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "block_index": 191, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5148,7 +5089,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727095029, + "block_time": 1727173005, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5174,9 +5115,9 @@ }, { "tx_index": 50, - "tx_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "tx_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "block_index": 185, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5191,7 +5132,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727095004, + "block_time": 1727172969, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5222,13 +5163,13 @@ "/v2/assets//matches": { "result": [ { - "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "tx0_index": 49, - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 52, - "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", - "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", + "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5242,7 +5183,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727095009, + "block_time": 1727172973, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5262,13 +5203,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "tx0_index": 49, - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 50, - "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", - "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5282,7 +5223,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727095004, + "block_time": 1727172969, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5302,13 +5243,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", "tx0_index": 47, - "tx0_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 48, - "tx1_hash": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", - "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "tx1_hash": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", + "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5322,7 +5263,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727094927, + "block_time": 1727172888, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5349,20 +5290,20 @@ "result": [ { "block_index": 192, - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5370,20 +5311,20 @@ }, { "block_index": 125, - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "6d46c4d6f2bfa733cabf35461464be1de853bd359fce0e0b56d3281408e3083e", + "event": "52ebf33632f8a0fd2efc653028f1a0c05d0372d42cc8cfcc19e529d2dd45e983", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727094739, + "block_time": 1727172708, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5391,20 +5332,20 @@ }, { "block_index": 124, - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e", + "event": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727094734, + "block_time": 1727172703, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5412,20 +5353,20 @@ }, { "block_index": 124, - "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", + "event": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727094734, + "block_time": 1727172703, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5437,16 +5378,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e", + "event": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727094734, + "block_time": 1727172703, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5460,16 +5401,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "event": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -5481,16 +5422,16 @@ }, { "block_index": 192, - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -5502,16 +5443,16 @@ }, { "block_index": 192, - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -5523,16 +5464,16 @@ }, { "block_index": 191, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "event": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095029, + "block_time": 1727173005, "asset_info": { "divisible": true, "asset_longname": null, @@ -5544,16 +5485,16 @@ }, { "block_index": 189, - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727095020, + "block_time": 1727172996, "asset_info": { "divisible": true, "asset_longname": null, @@ -5571,20 +5512,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", + "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", "block_index": 153, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727094875, + "block_time": 1727172836, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -5606,14 +5547,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "6d46c4d6f2bfa733cabf35461464be1de853bd359fce0e0b56d3281408e3083e", + "tx_hash": "52ebf33632f8a0fd2efc653028f1a0c05d0372d42cc8cfcc19e529d2dd45e983", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -5628,20 +5569,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727094739, + "block_time": 1727172708, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e", + "tx_hash": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -5656,20 +5597,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727094734, + "block_time": 1727172703, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", + "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -5684,20 +5625,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727094730, + "block_time": 1727172700, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -5712,7 +5653,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1727094726, + "block_time": 1727172696, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5724,10 +5665,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5735,7 +5676,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "divisible": true, "asset_longname": null, @@ -5748,10 +5689,10 @@ }, { "tx_index": 53, - "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039", + "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5", "block_index": 187, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5759,7 +5700,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095012, + "block_time": 1727172988, "asset_info": { "divisible": true, "asset_longname": null, @@ -5772,10 +5713,10 @@ }, { "tx_index": 42, - "tx_hash": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", + "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", "block_index": 155, - "source": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea:0", - "destination": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940:1", + "source": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a:0", + "destination": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5783,7 +5724,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727094884, + "block_time": 1727172845, "asset_info": { "divisible": true, "asset_longname": null, @@ -5796,10 +5737,10 @@ }, { "tx_index": 41, - "tx_hash": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea", + "tx_hash": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a", "block_index": 154, - "source": "038293b56ad81f45525bcade26369df9772e07db3dc4c97955587c621708d4b6:0", - "destination": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea:0", + "source": "9361bfe137766876b61588be29ab0ffbb6e0f926590f3c11daa53bf3b3ab3b30:0", + "destination": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5807,7 +5748,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727094880, + "block_time": 1727172840, "asset_info": { "divisible": true, "asset_longname": null, @@ -5826,9 +5767,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5837,7 +5778,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5847,7 +5788,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -5863,9 +5804,9 @@ }, { "tx_index": 29, - "tx_hash": "d15aff344f340fa392282b0db80499fcf0785fcc1406f0d8d7508eddaac1757e", + "tx_hash": "64572d1f3aab186a209cf522c3bc0c4608821658347a92c42b87e902808fc846", "block_index": 142, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5874,7 +5815,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "origin": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5884,7 +5825,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094830, + "block_time": 1727172779, "asset_info": { "divisible": true, "asset_longname": null, @@ -5900,9 +5841,9 @@ }, { "tx_index": 30, - "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", + "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", "block_index": 144, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5911,7 +5852,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5921,7 +5862,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094839, + "block_time": 1727172798, "asset_info": { "divisible": true, "asset_longname": null, @@ -5937,18 +5878,18 @@ }, { "tx_index": 32, - "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "last_status_tx_hash": null, - "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5958,7 +5899,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727094846, + "block_time": 1727172806, "asset_info": { "divisible": true, "asset_longname": null, @@ -5979,9 +5920,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 30, - "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", + "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", "block_index": 144, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5990,7 +5931,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6000,7 +5941,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094839, + "block_time": 1727172798, "asset_info": { "divisible": true, "asset_longname": null, @@ -6028,7 +5969,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -6036,7 +5977,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6045,7 +5986,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -6053,7 +5994,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6062,7 +6003,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -6070,7 +6011,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6079,7 +6020,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -6094,27 +6035,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", - "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "last_status_tx_hash": null, - "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6129,7 +6070,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727094846, + "block_time": 1727172806, "asset_info": { "divisible": true, "asset_longname": null, @@ -6143,19 +6084,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", + "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6163,7 +6104,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6178,7 +6119,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -6192,19 +6133,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", + "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", "block_index": 140, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6212,7 +6153,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6227,7 +6168,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094812, + "block_time": 1727172770, "asset_info": { "divisible": true, "asset_longname": null, @@ -6248,8 +6189,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "owner": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false, "supply": 0, @@ -6257,8 +6198,8 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1727094893, - "last_issuance_block_time": 1727094893, + "first_issuance_block_time": 1727172853, + "last_issuance_block_time": 1727172853, "supply_normalized": "0.00000000" } ], @@ -6268,10 +6209,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "tx_index": 10, "block_index": 125, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6296,7 +6237,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727094739 + "block_time": 1727172708 } ], "next_cursor": null, @@ -6305,64 +6246,64 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "6d46c4d6f2bfa733cabf35461464be1de853bd359fce0e0b56d3281408e3083e", + "tx_hash": "52ebf33632f8a0fd2efc653028f1a0c05d0372d42cc8cfcc19e529d2dd45e983", "tx_index": 13, "block_index": 125, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", - "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094739, + "block_time": 1727172708, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } }, { - "tx_hash": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e", + "tx_hash": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3", "tx_index": 12, "block_index": 124, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", - "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094734, + "block_time": 1727172703, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } }, { - "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", + "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", "tx_index": 11, "block_index": 123, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094730, + "block_time": 1727172700, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } @@ -6374,22 +6315,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "a3bf43f896f29c98bba089a71e943d8f1a0b6ac80b83e7741ab02857c4865036", + "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", "tx_index": 11, "block_index": 123, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "fairminter_tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727094730, + "block_time": 1727172700, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } @@ -6402,9 +6343,9 @@ "result": [ { "tx_index": 47, - "tx_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", + "tx_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", "block_index": 182, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6419,7 +6360,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727094927, + "block_time": 1727172888, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6445,9 +6386,9 @@ }, { "tx_index": 50, - "tx_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "tx_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "block_index": 185, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6462,7 +6403,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727095004, + "block_time": 1727172969, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6488,9 +6429,9 @@ }, { "tx_index": 49, - "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", "block_index": 186, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6505,7 +6446,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727095009, + "block_time": 1727172973, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6531,9 +6472,9 @@ }, { "tx_index": 52, - "tx_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "tx_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "block_index": 186, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6548,7 +6489,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727095009, + "block_time": 1727172973, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6574,9 +6515,9 @@ }, { "tx_index": 55, - "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "block_index": 190, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6591,7 +6532,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727095025, + "block_time": 1727173001, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6622,9 +6563,9 @@ "/v2/orders/": { "result": { "tx_index": 57, - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "block_index": 191, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6639,7 +6580,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727095029, + "block_time": 1727173005, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6667,13 +6608,13 @@ "/v2/orders//matches": { "result": [ { - "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "tx0_index": 49, - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 52, - "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", - "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", + "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6687,7 +6628,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727095009, + "block_time": 1727172973, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6707,13 +6648,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "tx0_index": 49, - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 50, - "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", - "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6727,7 +6668,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727095004, + "block_time": 1727172969, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6754,15 +6695,15 @@ "result": [ { "tx_index": 51, - "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", + "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", "block_index": 185, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "btc_amount": 2000, - "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "status": "valid", "confirmed": true, - "block_time": 1727095004, + "block_time": 1727172969, "btc_amount_normalized": "0.00002000" } ], @@ -6773,9 +6714,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "tx_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "block_index": 185, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6793,7 +6734,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727095004, + "block_time": 1727172969, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6819,9 +6760,9 @@ }, { "tx_index": 52, - "tx_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "tx_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "block_index": 186, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6839,7 +6780,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727095009, + "block_time": 1727172973, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6865,9 +6806,9 @@ }, { "tx_index": 47, - "tx_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", + "tx_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", "block_index": 182, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6885,7 +6826,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727094927, + "block_time": 1727172888, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6911,9 +6852,9 @@ }, { "tx_index": 49, - "tx_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", "block_index": 186, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6931,7 +6872,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727095009, + "block_time": 1727172973, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6957,9 +6898,9 @@ }, { "tx_index": 55, - "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "block_index": 190, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6977,7 +6918,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727095025, + "block_time": 1727173001, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7008,13 +6949,13 @@ "/v2/orders///matches": { "result": [ { - "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "tx0_index": 49, - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 52, - "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", - "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", + "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7031,7 +6972,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727095009, + "block_time": 1727172973, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7051,13 +6992,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "tx0_index": 49, - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 50, - "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", - "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7074,7 +7015,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727095004, + "block_time": 1727172969, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7094,13 +7035,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", "tx0_index": 47, - "tx0_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 48, - "tx1_hash": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", - "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "tx1_hash": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", + "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7117,7 +7058,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727094927, + "block_time": 1727172888, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7143,13 +7084,13 @@ "/v2/order_matches": { "result": [ { - "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "tx0_index": 49, - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 52, - "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", - "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", + "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7163,7 +7104,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727095009, + "block_time": 1727172973, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7183,13 +7124,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "tx0_index": 49, - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 50, - "tx1_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", - "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7203,7 +7144,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727095004, + "block_time": 1727172969, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7223,13 +7164,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", + "id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", "tx0_index": 47, - "tx0_hash": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx1_index": 48, - "tx1_hash": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", - "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "tx1_hash": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", + "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7243,7 +7184,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727094927, + "block_time": 1727172888, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7288,66 +7229,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "43093d52e847e4f5f87c441d762c47e61b2b30dd12418bb88f8a1ec5686fb269", + "tx_hash": "fb670497b1b7bdfefa37ae903873231799070c083dad68feaeffa589cb749da7", "block_index": 121, - "source": "bcrt1qzlgv5ud7ygwd6qudn3fpnh7a97lhyu2yp4uggk", + "source": "bcrt1qx8nq65mcz45h8s0zdjjssw5cx8ln5utgc6xt67", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1727094721, + "block_time": 1727172691, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "73cee698f7e849caad6658e0350b1338d076a8ffda592a3386f4b9b0608cbba8", + "tx_hash": "dd707604e4b68bb969dca8e244f8ff68a47b502fdeb7da2710543f49a39020a5", "block_index": 120, - "source": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", + "source": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1727094717, + "block_time": 1727172687, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "dc2edb8719cae9a3345615cdc3a977be3cf2a2662e3910891dd5d3681bfff876", + "tx_hash": "976cc1e602b6d8c62d548685b818ad775b6cef7eaba1f5acec676cc45cef5e1b", "block_index": 119, - "source": "bcrt1qxdxmwlv97cc9s7jk5hs3z6cqdu7tasktae5eag", + "source": "bcrt1qg4j653h8yfns3eql8vzs5lc64xf58d9uxma9az", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1727094713, + "block_time": 1727172683, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "14b38ae9c3846aae4acfb3f79364bbd2b0bc8739cd453c2f8d8ebccc68b78328", + "tx_hash": "6f640affad7ea7f23de9aa778e7fa582511a03fed9628109b81b4e64eea8fb31", "block_index": 118, - "source": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", + "source": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1727094709, + "block_time": 1727172679, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "a1a48939003f5d217f71ffde747f89bca6cda99cf75029249dff0e2d435d114a", + "tx_hash": "49b961c62ebdd86c0a144932cd6e248072b3d12b607a1d7f43af6721e7a0240b", "block_index": 117, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1727094706, + "block_time": 1727172675, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7359,18 +7300,18 @@ "result": [ { "tx_index": 32, - "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "last_status_tx_hash": null, - "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7380,7 +7321,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727094846, + "block_time": 1727172806, "asset_info": { "divisible": true, "asset_longname": null, @@ -7396,9 +7337,9 @@ }, { "tx_index": 30, - "tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", + "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", "block_index": 144, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7407,7 +7348,7 @@ "give_remaining": 20, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7417,7 +7358,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094839, + "block_time": 1727172798, "asset_info": { "divisible": true, "asset_longname": null, @@ -7433,9 +7374,9 @@ }, { "tx_index": 29, - "tx_hash": "d15aff344f340fa392282b0db80499fcf0785fcc1406f0d8d7508eddaac1757e", + "tx_hash": "64572d1f3aab186a209cf522c3bc0c4608821658347a92c42b87e902808fc846", "block_index": 142, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7444,7 +7385,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "origin": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7454,7 +7395,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094830, + "block_time": 1727172779, "asset_info": { "divisible": true, "asset_longname": null, @@ -7470,9 +7411,9 @@ }, { "tx_index": 26, - "tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7481,7 +7422,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7491,7 +7432,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -7512,9 +7453,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7523,7 +7464,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7533,7 +7474,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -7553,19 +7494,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", + "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7573,7 +7514,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7588,7 +7529,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -7602,19 +7543,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", + "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", "block_index": 140, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7622,7 +7563,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7637,7 +7578,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094812, + "block_time": 1727172770, "asset_info": { "divisible": true, "asset_longname": null, @@ -7656,20 +7597,20 @@ "result": [ { "tx_index": 40, - "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", + "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", "block_index": 153, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727094875, + "block_time": 1727172836, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -7690,20 +7631,20 @@ "/v2/dividends/": { "result": { "tx_index": 40, - "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", + "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", "block_index": 153, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727094875, + "block_time": 1727172836, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -7726,12 +7667,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", + "event": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", "tx_index": 40, - "utxo": "038293b56ad81f45525bcade26369df9772e07db3dc4c97955587c621708d4b6:0", - "utxo_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "utxo": "9361bfe137766876b61588be29ab0ffbb6e0f926590f3c11daa53bf3b3ab3b30:0", + "utxo_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "confirmed": true, - "block_time": 1727094875, + "block_time": 1727172836, "asset_info": { "divisible": true, "asset_longname": null, @@ -7743,16 +7684,16 @@ }, { "block_index": 153, - "address": "bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu", + "address": "bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", + "event": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", "tx_index": 40, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727094875, + "block_time": 1727172836, "asset_info": { "divisible": true, "asset_longname": null, @@ -7773,27 +7714,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", - "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", + "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", + "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", "transaction_count": 1, - "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", - "block_time": 1727095038 + "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", + "block_time": 1727173013 }, "tx_hash": null, "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 }, { "event_index": 534, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "tx_index": 59 }, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 }, { "event_index": 533, @@ -7802,12 +7743,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "status": "valid", "tag": "64657374726f79", - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "tx_index": 59, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -7817,24 +7758,24 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 193, - "event": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "event": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -7844,25 +7785,25 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 }, { "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", "block_index": 193, - "block_time": 1727095038, + "block_time": 1727173013, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "tx_index": 59, - "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", + "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -7882,9 +7823,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 } ], "next_cursor": 530, @@ -7896,15 +7837,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", - "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", + "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", + "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", "transaction_count": 1, - "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", - "block_time": 1727095038 + "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", + "block_time": 1727173013 }, "tx_hash": null, "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 } }, "/v2/events/counts": { @@ -7939,16 +7880,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -7958,78 +7899,78 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 524, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 10, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "FAIRMINTA", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 500000000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 }, { "event_index": 508, "event": "CREDIT", "params": { - "address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "XCP", "block_index": 190, "calling_function": "cancel order", - "event": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", + "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", "quantity": 1000, "tx_index": 56, "utxo": null, "utxo_address": null, - "block_time": 1727095025, + "block_time": 1727173001, "asset_info": { "divisible": true, "asset_longname": null, @@ -8039,24 +7980,24 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "block_index": 190, - "block_time": 1727095025 + "block_time": 1727173001 }, { "event_index": 491, "event": "CREDIT", "params": { - "address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "block_index": 188, "calling_function": "mpma send", - "event": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "event": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "quantity": 10, "tx_index": 54, "utxo": null, "utxo_address": null, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "divisible": true, "asset_longname": null, @@ -8066,9 +8007,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "block_time": 1727095016 + "block_time": 1727172992 } ], "next_cursor": 490, @@ -8085,27 +8026,27 @@ { "tx_index": 33, "dispense_index": 0, - "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", - "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 32, "block_index": 146, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "last_status_tx_hash": null, - "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8120,7 +8061,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727094846, + "block_time": 1727172806, "asset_info": { "divisible": true, "asset_longname": null, @@ -8134,19 +8075,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5f867f0417b2a07193b57346bb32d5f34d4a3e0abb10d552df7bde837c120350", + "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8154,7 +8095,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8169,7 +8110,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094826, + "block_time": 1727172775, "asset_info": { "divisible": true, "asset_longname": null, @@ -8183,19 +8124,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ef8f60fd2e21f59524ee3f952ae2f8283933556b5160aac4c353f2f4343a190e", + "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", "block_index": 140, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "009fa9523f07e5ac5e5190bb886df406ed3fb0539d4c961ce055e979623821eb", + "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8203,7 +8144,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8218,7 +8159,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727094812, + "block_time": 1727172770, "asset_info": { "divisible": true, "asset_longname": null, @@ -8237,10 +8178,10 @@ "result": [ { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8248,7 +8189,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "divisible": true, "asset_longname": null, @@ -8261,10 +8202,10 @@ }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8272,11 +8213,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -8285,10 +8226,10 @@ }, { "tx_index": 54, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8296,11 +8237,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -8309,10 +8250,10 @@ }, { "tx_index": 53, - "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039", + "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5", "block_index": 187, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -8320,7 +8261,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727095012, + "block_time": 1727172988, "asset_info": { "divisible": true, "asset_longname": null, @@ -8333,10 +8274,10 @@ }, { "tx_index": 42, - "tx_hash": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", + "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", "block_index": 155, - "source": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea:0", - "destination": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940:1", + "source": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a:0", + "destination": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8344,7 +8285,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727094884, + "block_time": 1727172845, "asset_info": { "divisible": true, "asset_longname": null, @@ -8363,14 +8304,14 @@ "result": [ { "tx_index": 46, - "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", + "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -8385,20 +8326,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094911, + "block_time": 1727172872, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "766ce7ba7a212e1b43cbe3df259ab0cd0bf5579c5cf1c4c27ceb05911f1f7109", + "tx_hash": "a5f2456ffc60bddd11a2187be2545ed9673ef35e6a0875df3c290bd24ebc8710", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -8413,20 +8354,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727094897, + "block_time": 1727172868, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "4c63b42edf0cfbe37a429815c6724cfea57503fe580f8d9022c3a2bc16e8db38", + "tx_hash": "5e797f98d87c1d82f48855c68cbc2145fa7d10b690e61df3912aa5816a3b0fd0", "msg_index": 0, "block_index": 157, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -8441,20 +8382,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094893, + "block_time": 1727172853, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 43, - "tx_hash": "0a6900f413f8095625003b8d59bebdc8af81dc18dbf66310ff9229b879d53d0a", + "tx_hash": "3049d82ac4929aca6ab12d1284724095e241e923efa6738a54018abaee035899", "msg_index": 0, "block_index": 156, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -8469,20 +8410,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094888, + "block_time": 1727172849, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", + "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", "msg_index": 0, "block_index": 155, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", - "issuer": "bcrt1qxlnnmq0qvmt9k5sge7lew0c2qsmrvh5tdhxq7p", + "source": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", + "issuer": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", "transfer": false, "callable": false, "call_date": 0, @@ -8497,7 +8438,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094884, + "block_time": 1727172845, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8508,14 +8449,14 @@ "/v2/issuances/": { "result": { "tx_index": 46, - "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", + "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", "msg_index": 0, "block_index": 159, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "transfer": false, "callable": false, "call_date": 0, @@ -8530,7 +8471,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727094911, + "block_time": 1727172872, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8539,16 +8480,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "fee_paid_normalized": "0.00600000" } ], @@ -8559,16 +8500,16 @@ "result": [ { "tx_index": 58, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727095033, + "block_time": 1727173009, "fee_paid_normalized": "0.00600000" } ], @@ -8579,9 +8520,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a", + "tx_hash": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f", "block_index": 138, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8589,14 +8530,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727094803, + "block_time": 1727172762, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "30e595f74d9b77faf4d326988b5fa49da4919c874be0dbbaf37a0f5efc4a6769", + "tx_hash": "2dc115c4e276c363bdb2380e969b9707cf2c501926261d057ce4279b372ab4d5", "block_index": 137, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8604,7 +8545,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727094799, + "block_time": 1727172759, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8614,9 +8555,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a", + "tx_hash": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f", "block_index": 138, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8624,17 +8565,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727094803, + "block_time": 1727172762, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", + "tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", "tx_index": 22, "block_index": 135, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8659,13 +8600,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727094790 + "block_time": 1727172750 }, { - "tx_hash": "ca8e58cebbe9f196d995ecc1ab12edde090972e1349b84583af3169aa3bdff94", + "tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", "tx_index": 18, "block_index": 131, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8690,13 +8631,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727094764 + "block_time": 1727172733 }, { - "tx_hash": "801ce5c24ea2170c2937ab2d624deefa78877919ee48f5b5d5134b4b1c1d545e", + "tx_hash": "c768c790db646fe20b33e0828c0042c6705ee66248d68fde588e91455ea70222", "tx_index": 14, "block_index": 130, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8721,13 +8662,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727094760 + "block_time": 1727172729 }, { - "tx_hash": "d0bab6aec10c80247f116c8d32613fd1161dc7de6f6ad6d17fa28c22fcf5a4a9", + "tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", "tx_index": 10, "block_index": 125, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8752,7 +8693,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727094739 + "block_time": 1727172708 } ], "next_cursor": null, @@ -8766,8 +8707,8 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", - "address": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj" + "txid": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", + "address": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e" }, { "vout": 2, @@ -8775,8 +8716,8 @@ "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", - "address": "bcrt1qxdxmwlv97cc9s7jk5hs3z6cqdu7tasktae5eag" + "txid": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", + "address": "bcrt1qg4j653h8yfns3eql8vzs5lc64xf58d9uxma9az" } ], "next_cursor": null, @@ -8785,28 +8726,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039" + "tx_hash": "2aedfe80e416a241471b340a13f770bc621e74af48504b4329591367c64ade01" }, { - "tx_hash": "4d26425223d25f79af84d50fcf53e738ebdf78a02c1d4b7d7f67ae03c7c9db3e" + "tx_hash": "edd6f686828415f585bd42c3ca4864ff84e1b5c2e75517b94fe17e3639d4da0d" }, { - "tx_hash": "a08984ad55f4e1a2ed5a1f25a107dc4d298156d23fac72bd19d9a33948aa9962" + "tx_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f" }, { - "tx_hash": "0c869ae1b35c7a20c2384369babb94e31d003833139318542392ce07c372f378" + "tx_hash": "3bdb824385af75abbfdef877ede3f5683d21db19386acac7124de3685f5a3e65" }, { - "tx_hash": "b2ac9ee9375c7dc1103dcf5356e6e38dedaf5fcd3e1b113959df1ff0c6c4faba" + "tx_hash": "21b3e83b0b0df662cf0bd787cf0aa89d24f2ff8a271d6fc2859150e567f2d8af" }, { - "tx_hash": "28492d2ebdcfa146b86f026a77270b902bd2a4ee130b1cb59bd4b51a8eabf1d4" + "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5" }, { - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc" + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" }, { - "tx_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2" + "tx_hash": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3" } ], "next_cursor": null, @@ -8814,8 +8755,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 9, - "tx_hash": "bb46b82006453c3fbf60dcd71ccac08673e11507d02e502f6fcdc3d04972d343" + "block_index": 6, + "tx_hash": "ff2e8295fd7ab1a1e12dccdb1e0cb26c7a2c9647fea68820fcb31e775bfb06c9" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -8826,17 +8767,17 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9" + "txid": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "02fce2d7c28db9e68005d1df927f5f20b45cfc39072377b7a3d4b30ca9c38a8b08" + "result": "02bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b940" }, "/v2/bitcoin/transactions/": { - "result": "020000000001011a63de3bdf9f82cd35021713a79af6e9dd49ddacbe32b5783ca01ae42546b42a0300000000ffffffff020000000000000000226a2021344a64b6120942909bf09e6397fd6cad305e4e73bca1dec78b18aedf4edbb9680b0a2701000000160014b16240e182fcfb3d1437b108a600036c78a7f8a202473044022074d2b3de539cbacb3d364cc992ee27c026a13ed1a8442e45ae2f7fcc4e7e02b30220649e9d695f1f028945cb10308c822475cb7b2c9df47370d143c14c5cc8567bcc01210268539bd755f8fa4f5aa15f95da1dcbbbd86d28c794673d670f60fb3e1040bbd100000000" + "result": "0200000000010119c00554343b1481534ce0b2c4181d9124c79fd2f81b4016de0bec6bf536ce880300000000ffffffff020000000000000000226a20689b27632757bf127305d82613cfb2a7af5b4764dfd522033f8dc72dcfcea81b680b0a2701000000160014d429e837a5671380d2470256f79bfb7e09709e7f02473044022006b7bd3381e0c96a3555827d1910233f84217ad197a9d1e64a6a3d42b1f1ad7a02202423e2658233424ba4fd5d7776e6a8d2c49d86aecc9d9b053af38c35d94709b00121028f281d89d24d92d61488bbd143cc93dd9c65b12631e2f3e98eab7fbc800e92e600000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 68517 @@ -8859,26 +8800,26 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "tx_index": 60 } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "memo": null, "quantity": 10000, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "status": "valid", - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "tx_index": 60, "asset_info": { "divisible": true, @@ -8891,19 +8832,19 @@ } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "CREDIT", "params": { - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -8915,19 +8856,19 @@ } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 193, - "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -8939,27 +8880,27 @@ } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727095042.4665813, + "block_time": 1727173018.087438, "btc_amount": 0, - "data": "0200000000000000010000000000002710804efd3277d785851bf1bfb18ef3ebd9ea8732f765", + "data": "020000000000000001000000000000271080ae5b876a7593a9bc79de22969203c476ffdfd3db", "destination": "", "fee": 10000, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "tx_index": 60, - "utxos_info": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f:1", + "utxos_info": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "memo": null, "asset_info": { "divisible": true, @@ -8981,19 +8922,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "CREDIT", "params": { - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -9011,26 +8952,26 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "tx_index": 60 } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "memo": null, "quantity": 10000, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "status": "valid", - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "tx_index": 60, "asset_info": { "divisible": true, @@ -9043,19 +8984,19 @@ } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "CREDIT", "params": { - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "asset": "XCP", "block_index": 193, "calling_function": "send", - "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -9067,19 +9008,19 @@ } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 193, - "event": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "quantity": 10000, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -9091,27 +9032,27 @@ } }, { - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727095042.4665813, + "block_time": 1727173018.087438, "btc_amount": 0, - "data": "0200000000000000010000000000002710804efd3277d785851bf1bfb18ef3ebd9ea8732f765", + "data": "020000000000000001000000000000271080ae5b876a7593a9bc79de22969203c476ffdfd3db", "destination": "", "fee": 10000, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", - "tx_hash": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", "tx_index": 60, - "utxos_info": "fc730f4a544fe13bdf141b805c1d01ea06f255a0c6b2ab404fdbc9bed767a99f:1", + "utxos_info": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "memo": null, "asset_info": { "divisible": true, @@ -9146,15 +9087,15 @@ "event_index": 530, "event": "NEW_BLOCK", "params": { - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", "block_index": 193, - "block_time": 1727095038, + "block_time": 1727173013, "difficulty": 545259519, - "previous_block_hash": "6c851fb7d6fcdcf86b0d18920db550be26b0b586b6aa39744d4f2ab8fb40722f" + "previous_block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20" }, "tx_hash": null, "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 } ], "next_cursor": 518, @@ -9166,17 +9107,17 @@ "event_index": 531, "event": "NEW_TRANSACTION", "params": { - "block_hash": "348999d0a7fbb169e01ec7ac14694f7c038470e4703e748e4296cad2232c9d52", + "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", "block_index": 193, - "block_time": 1727095038, + "block_time": 1727173013, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "tx_index": 59, - "utxos_info": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d:1", + "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -9196,9 +9137,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 } ], "next_cursor": 519, @@ -9212,16 +9153,16 @@ "params": { "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "destination": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "out_index": 0, - "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", "tx_index": 33, - "block_time": 1727094846, + "block_time": 1727172806, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", "block_index": 146, - "block_time": 1727094846 + "block_time": 1727172806 } ], "next_cursor": 237, @@ -9234,15 +9175,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "f0a654cc552b39b5c0c9b3eec07b23dfe7a0c0c242b242092065f2c11f4c592f", - "messages_hash": "7d6c3e3b87a160f25b13eb6107e1aec60e653ddfe56bc6b616baaf96a1b68e8b", + "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", + "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", "transaction_count": 1, - "txlist_hash": "35bb990776fbfb6595582009e6cb412f1c703d02e9c88fa9098ed7ee3ff04f8a", - "block_time": 1727095038 + "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", + "block_time": 1727173013 }, "tx_hash": null, "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 } ], "next_cursor": 529, @@ -9255,12 +9196,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "tx_index": 59 }, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 } ], "next_cursor": 528, @@ -9273,15 +9214,15 @@ "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 193, - "event": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "event": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "quantity": 1, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -9291,9 +9232,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 } ], "next_cursor": 525, @@ -9305,16 +9246,16 @@ "event_index": 526, "event": "CREDIT", "params": { - "address": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "asset": "XCP", "block_index": 192, "calling_function": "sweep", - "event": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "quantity": 74499387833, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727095033, + "block_time": 1727173009, "asset_info": { "divisible": true, "asset_longname": null, @@ -9324,9 +9265,9 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 } ], "next_cursor": 524, @@ -9340,14 +9281,14 @@ "params": { "asset": "XCP", "block_index": 187, - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "memo": null, "quantity": 10000, - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "status": "valid", - "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039", + "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5", "tx_index": 53, - "block_time": 1727095012, + "block_time": 1727172988, "asset_info": { "divisible": true, "asset_longname": null, @@ -9357,9 +9298,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "dadf7112349a12aa84a46c6fde1c0b850710b88769de54bcb8cee82f16279039", + "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5", "block_index": 187, - "block_time": 1727095012 + "block_time": 1727172988 } ], "next_cursor": null, @@ -9373,15 +9314,15 @@ "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "status": "valid", - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "tx_index": 54, - "block_time": 1727095016, + "block_time": 1727172992, "asset_info": { "divisible": true, "asset_longname": null, @@ -9391,9 +9332,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "561abb32888dcdd6d6d70c5d388ee399fe3b51d10bb30730cb99e53138f9713d", + "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", "block_index": 188, - "block_time": 1727095016 + "block_time": 1727172992 } ], "next_cursor": 495, @@ -9416,20 +9357,20 @@ "event": "SWEEP", "params": { "block_index": 192, - "destination": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "status": "valid", - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "tx_index": 58, - "block_time": 1727095033, + "block_time": 1727173009, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "b97152ea14f6c300d0f31bd3a64794a734e1c50199408782e22feca524ed21dc", + "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", "block_index": 192, - "block_time": 1727095033 + "block_time": 1727173009 } ], "next_cursor": null, @@ -9446,15 +9387,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "status": "valid", - "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", + "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", "tx_index": 40, - "block_time": 1727094875, + "block_time": 1727172836, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, @@ -9468,9 +9409,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "2ad6ea5800704edd0f1bb6a85670427ad3a4fb74fea0334094062c913276970c", + "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", "block_index": 153, - "block_time": 1727094875 + "block_time": 1727172836 } ], "next_cursor": null, @@ -9491,11 +9432,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 159, - "block_time": 1727094911 + "block_time": 1727172872 }, - "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", + "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", "block_index": 159, - "block_time": 1727094911 + "block_time": 1727172872 } ], "next_cursor": 367, @@ -9518,22 +9459,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "status": "valid", "transfer": false, - "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", + "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", "tx_index": 46, - "block_time": 1727094911, + "block_time": 1727172872, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c0a4c29c5a9c611e4142f07295862c455ebf6d077cf69de2ba16105d13991b18", + "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", "block_index": 159, - "block_time": 1727094911 + "block_time": 1727172872 } ], "next_cursor": 374, @@ -9548,12 +9489,12 @@ "asset": "XCP", "block_index": 193, "quantity": 1, - "source": "bcrt1qk93ypcvzlnan69phkyy2vqqrd3u2079z9sszzu", + "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", "status": "valid", "tag": "64657374726f79", - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "tx_index": 59, - "block_time": 1727095038, + "block_time": 1727173013, "asset_info": { "divisible": true, "asset_longname": null, @@ -9563,9 +9504,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "baaa4887496bfaa81f72343175039e8431b8028eb41b6e213ed976b7b499937d", + "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", "block_index": 193, - "block_time": 1727095038 + "block_time": 1727173013 } ], "next_cursor": 157, @@ -9590,11 +9531,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "status": "open", - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "tx_index": 57, - "block_time": 1727095029, + "block_time": 1727173005, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9618,9 +9559,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "0d0751273609d09dc42f23b5fc57ab7bd24822572fca475df89b9c559d1bcf6d", + "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", "block_index": 191, - "block_time": 1727095029 + "block_time": 1727173005 } ], "next_cursor": 502, @@ -9638,20 +9579,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "match_expire_index": 206, "status": "pending", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "tx0_block_index": 184, "tx0_expiration": 21, - "tx0_hash": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126", + "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", "tx0_index": 49, - "tx1_address": "bcrt1qfm7nya7hskz3hudlkx80867ea2rn9am9w00dj7", + "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", "tx1_block_index": 186, "tx1_expiration": 21, - "tx1_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "tx1_index": 52, - "block_time": 1727095009, + "block_time": 1727172973, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9670,9 +9611,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "8029542728201f4b143b8724f25f38084f9bf7f5e0a1533944731cf3581b5df2", + "tx_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", "block_index": 186, - "block_time": 1727095009 + "block_time": 1727172973 } ], "next_cursor": 461, @@ -9685,11 +9626,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e" + "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06" }, - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "block_index": 190, - "block_time": 1727095025 + "block_time": 1727173001 } ], "next_cursor": 476, @@ -9702,11 +9643,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811" + "tx_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e" }, - "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", + "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", "block_index": 185, - "block_time": 1727095004 + "block_time": 1727172969 } ], "next_cursor": null, @@ -9718,13 +9659,13 @@ "event_index": 467, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", - "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", + "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", "status": "completed" }, - "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", + "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", "block_index": 185, - "block_time": 1727095004 + "block_time": 1727172969 } ], "next_cursor": 440, @@ -9738,18 +9679,18 @@ "params": { "block_index": 185, "btc_amount": 2000, - "destination": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "order_match_id": "0a1ecc9b9485a15f0acaf538c5e35f7fae7abfdd4bc8959fb5db22cb33e76126_e6976c0211a12415c14e16c96edfa586451a1d5ea6df0fcbc7020be8f6d16811", - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "status": "valid", - "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", + "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", "tx_index": 51, - "block_time": 1727095004, + "block_time": 1727172969, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "40c904300e73042666d4db6c6f40f17d1acb56063dfb927951613a7c60f02dcf", + "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", "block_index": 185, - "block_time": 1727095004 + "block_time": 1727172969 } ], "next_cursor": null, @@ -9762,16 +9703,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 190, - "offer_hash": "5cac1cf782b06a302a15b8da814f4317c48d263455fd78fe051a038c04b2453e", - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "status": "valid", - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "tx_index": 56, - "block_time": 1727095025 + "block_time": 1727173001 }, - "tx_hash": "27e3be27947895dd2a33380deff6cdd5955f6ba483f4c1e87e98937d27bab62a", + "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", "block_index": 190, - "block_time": 1727095025 + "block_time": 1727173001 } ], "next_cursor": null, @@ -9784,13 +9725,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 182, - "order_hash": "a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "block_time": 1727094927 + "order_hash": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "block_time": 1727172888 }, "tx_hash": null, "block_index": 182, - "block_time": 1727094927 + "block_time": 1727172888 } ], "next_cursor": 446, @@ -9803,14 +9744,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 182, - "order_match_id": "5b90bafebdcd1bd6ce9785fd16d685350c21b2b77fe92dc87a046fca0504adf6_a15988767ecd3c583512ae5baadbf07adb1f136940e5436fd63c2af1f580bc80", - "tx0_address": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "tx1_address": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", - "block_time": 1727094927 + "order_match_id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", + "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "block_time": 1727172888 }, "tx_hash": null, "block_index": 182, - "block_time": 1727094927 + "block_time": 1727172888 } ], "next_cursor": null, @@ -9828,14 +9769,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", - "origin": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "satoshirate": 1, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "status": 0, - "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", "tx_index": 32, - "block_time": 1727094842, + "block_time": 1727172802, "asset_info": { "divisible": true, "asset_longname": null, @@ -9848,9 +9789,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", "block_index": 145, - "block_time": 1727094842 + "block_time": 1727172802 } ], "next_cursor": 254, @@ -9865,9 +9806,9 @@ "asset": "XCP", "dispense_count": 1, "give_remaining": 9334, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "status": 0, - "tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", + "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", "asset_info": { "divisible": true, "asset_longname": null, @@ -9877,9 +9818,9 @@ }, "give_remaining_normalized": "0.00009334" }, - "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", "block_index": 146, - "block_time": 1727094846 + "block_time": 1727172806 } ], "next_cursor": 260, @@ -9893,13 +9834,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mswKMJEVhPVAQYJDEPVBvaADKf2fmZC6hN", + "destination": "mmrTk1uWkJbzqpooxUaCcr7B4jGgGg1KQv", "dispense_quantity": 10, - "dispenser_tx_hash": "a1f2b8abe3029bc7762072ba4541176a2041c8906593f230a9bf57cb68eb89eb", - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", - "tx_hash": "cc547f0e1d0b1b9e9bedbdb98174f8bb688efdaabade4e76ce52efe2f4cda71b", + "dispenser_tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_hash": "d7510384be95e1cf002f98fbbcb6b4abf6a6be9ef00f5d0b38a409f15af32e6f", "tx_index": 31, - "block_time": 1727094839, + "block_time": 1727172798, "asset_info": { "divisible": true, "asset_longname": null, @@ -9909,9 +9850,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "cc547f0e1d0b1b9e9bedbdb98174f8bb688efdaabade4e76ce52efe2f4cda71b", + "tx_hash": "d7510384be95e1cf002f98fbbcb6b4abf6a6be9ef00f5d0b38a409f15af32e6f", "block_index": 144, - "block_time": 1727094839 + "block_time": 1727172798 } ], "next_cursor": null, @@ -9926,14 +9867,14 @@ "asset": "XCP", "block_index": 146, "btc_amount": 10000, - "destination": "bcrt1qvj4ypq0mwfnz6wvydr0kft3vsfr7rtg0xj97nj", + "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "c4f52cbeae8fa8cc21038f648c523c192b810cc53c1734f6af8031c25f137adf", - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", - "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", "tx_index": 33, - "block_time": 1727094846, + "block_time": 1727172806, "asset_info": { "divisible": true, "asset_longname": null, @@ -9944,9 +9885,9 @@ "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "8bbd88ea8e1d886f9d4216ccfc238b07c1aad3710115ef40eed0386d473e4ae9", + "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", "block_index": 146, - "block_time": 1727094846 + "block_time": 1727172806 } ], "next_cursor": 240, @@ -9961,19 +9902,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qtumxrm0qhw8670dv4j5rtfk2cm5vns83umpexq", + "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a", + "tx_hash": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f", "tx_index": 25, "value": 66600.0, - "block_time": 1727094803, + "block_time": 1727172762, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "b954884f043ed193d673afe90c44b7401a8697a965a37eceeebb30802b82330a", + "tx_hash": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f", "block_index": 138, - "block_time": 1727094803 + "block_time": 1727172762 } ], "next_cursor": 213, @@ -10004,16 +9945,16 @@ "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "start_block": 0, "status": "open", - "tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", + "tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", "tx_index": 22, - "block_time": 1727094790 + "block_time": 1727172750 }, - "tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", + "tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", "block_index": 135, - "block_time": 1727094790 + "block_time": 1727172750 } ], "next_cursor": 161, @@ -10026,11 +9967,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "801ce5c24ea2170c2937ab2d624deefa78877919ee48f5b5d5134b4b1c1d545e" + "tx_hash": "c768c790db646fe20b33e0828c0042c6705ee66248d68fde588e91455ea70222" }, "tx_hash": null, "block_index": 130, - "block_time": 1727094760 + "block_time": 1727172729 } ], "next_cursor": 110, @@ -10046,24 +9987,24 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "e6e0d3f2b7434a60c9a1ba5068283e2f27a4822fc08b3e0997bb6c04ee9e4d6e", + "fairminter_tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", "paid_quantity": 34, - "source": "bcrt1qe4xvu3370erw38k0rsj659pu3fey7kg6sdefxv", + "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", "status": "valid", - "tx_hash": "cfa6d447a379922dd0da484f07f975e5f68176b84d2aee0d31fa0acec398bb72", + "tx_hash": "7f69a52eaeb924d936bb756185de09623ce5fc4623732debde3ceb5f2c01dcb1", "tx_index": 23, - "block_time": 1727094794, + "block_time": 1727172754, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false } }, - "tx_hash": "cfa6d447a379922dd0da484f07f975e5f68176b84d2aee0d31fa0acec398bb72", + "tx_hash": "7f69a52eaeb924d936bb756185de09623ce5fc4623732debde3ceb5f2c01dcb1", "block_index": 136, - "block_time": 1727094794 + "block_time": 1727172754 } ], "next_cursor": 190, @@ -10077,28 +10018,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa:1", + "destination": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "status": "valid", - "tx_hash": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", + "tx_hash": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", "tx_index": 38, - "block_time": 1727094866, + "block_time": 1727172827, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "406e0799a50f4be9ad6bcb08bac49b76dec02b47846183ad93f3e0faf62ba5aa", + "tx_hash": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", "block_index": 151, - "block_time": 1727094866 + "block_time": 1727172827 } ], "next_cursor": 291, @@ -10112,28 +10053,28 @@ "params": { "asset": "MYASSETA", "block_index": 150, - "destination": "bcrt1qkttq3lajq6s964300ywfdvjwghegjazhhg2wgu", + "destination": "bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "28492d2ebdcfa146b86f026a77270b902bd2a4ee130b1cb59bd4b51a8eabf1d4:0", + "source": "21b3e83b0b0df662cf0bd787cf0aa89d24f2ff8a271d6fc2859150e567f2d8af:0", "status": "valid", - "tx_hash": "2ab44625e41aa03c78b532beacdd49dde9f69aa713170235cd829fdf3bde631a", + "tx_hash": "88ce36f56bec0bde16401bf8d29fc724911d18c4b2e04c5381143b345405c019", "tx_index": 37, - "block_time": 1727094862, + "block_time": 1727172823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qaq56qgtvffghgnder3pltw6k7hc4qafu55fkku", + "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "2ab44625e41aa03c78b532beacdd49dde9f69aa713170235cd829fdf3bde631a", + "tx_hash": "88ce36f56bec0bde16401bf8d29fc724911d18c4b2e04c5381143b345405c019", "block_index": 150, - "block_time": 1727094862 + "block_time": 1727172823 } ], "next_cursor": null, @@ -10147,14 +10088,14 @@ "params": { "asset": "XCP", "block_index": 155, - "destination": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940:1", + "destination": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800:1", "msg_index": 1, "quantity": 1500000000, - "source": "bd0e07bbc6cb8d701160a57014ec93f841f511677aea2faafb54423f74de17ea:0", + "source": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a:0", "status": "valid", - "tx_hash": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", + "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", "tx_index": 42, - "block_time": 1727094884, + "block_time": 1727172845, "asset_info": { "divisible": true, "asset_longname": null, @@ -10164,9 +10105,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "543857810d42e3597f0dc3a582410344dc2abcf3dd411d6171896ae3eb5c7940", + "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", "block_index": 155, - "block_time": 1727094884 + "block_time": 1727172845 } ], "next_cursor": 346, @@ -10181,17 +10122,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qzlgv5ud7ygwd6qudn3fpnh7a97lhyu2yp4uggk", + "source": "bcrt1qx8nq65mcz45h8s0zdjjssw5cx8ln5utgc6xt67", "status": "valid", - "tx_hash": "43093d52e847e4f5f87c441d762c47e61b2b30dd12418bb88f8a1ec5686fb269", + "tx_hash": "fb670497b1b7bdfefa37ae903873231799070c083dad68feaeffa589cb749da7", "tx_index": 9, - "block_time": 1727094721, + "block_time": 1727172691, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "43093d52e847e4f5f87c441d762c47e61b2b30dd12418bb88f8a1ec5686fb269", + "tx_hash": "fb670497b1b7bdfefa37ae903873231799070c083dad68feaeffa589cb749da7", "block_index": 121, - "block_time": 1727094721 + "block_time": 1727172691 } ], "next_cursor": 65, From 4a3d9900f0fa8462c3c4412ae958ef6323fbee5a Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 24 Sep 2024 17:19:33 +0000 Subject: [PATCH 35/46] Fix dispenser refill --- apiary.apib | 4942 ++++++++--------- .../lib/messages/dispenser.py | 7 +- .../test/regtest/apidoc/apicache.json | 4506 ++++++++------- .../regtest/scenarios/scenario_6_dispenser.py | 39 +- .../test/regtest/scenarios/scenario_7_utxo.py | 40 +- 5 files changed, 4764 insertions(+), 4770 deletions(-) diff --git a/apiary.apib b/apiary.apib index 13d2ee35ad..05fbded423 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-09-24 10:17:09.701169. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-09-24 17:12:40.453783. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -176,22 +176,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 530, + "event_index": 537, "event": "NEW_BLOCK", "params": { - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_index": 193, - "block_time": 1727173013, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_index": 194, + "block_time": 1727197944, "difficulty": 545259519, - "previous_block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20" + "previous_block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6" }, "tx_hash": null, - "block_index": 193, - "block_time": 1727173013 + "block_index": 194, + "block_time": 1727197944 } ], - "next_cursor": 518, - "result_count": 93 + "next_cursor": 525, + "result_count": 94 } ``` @@ -201,20 +201,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 531, + "event_index": 538, "event": "NEW_TRANSACTION", "params": { - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_index": 193, - "block_time": 1727173013, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_index": 194, + "block_time": 1727197944, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "tx_index": 59, - "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_index": 60, + "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -234,13 +234,13 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_time": 1727173013 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_time": 1727197944 } ], - "next_cursor": 519, - "result_count": 60 + "next_cursor": 526, + "result_count": 61 } ``` @@ -250,21 +250,21 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 272, + "event_index": 277, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 146, + "block_index": 147, "btc_amount": 10000, - "destination": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "destination": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "out_index": 0, - "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "tx_index": 33, - "block_time": 1727172806, + "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "tx_index": 34, + "block_time": 1727197754, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "block_index": 146, - "block_time": 1727172806 + "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "block_index": 147, + "block_time": 1727197754 } ], "next_cursor": 237, @@ -278,23 +278,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 535, + "event_index": 542, "event": "BLOCK_PARSED", "params": { - "block_index": 193, - "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", - "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", + "block_index": 194, + "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", + "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", "transaction_count": 1, - "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", - "block_time": 1727173013 + "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", + "block_time": 1727197944 }, "tx_hash": null, - "block_index": 193, - "block_time": 1727173013 + "block_index": 194, + "block_time": 1727197944 } ], - "next_cursor": 529, - "result_count": 93 + "next_cursor": 536, + "result_count": 94 } ``` @@ -304,20 +304,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 534, + "event_index": 541, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "tx_index": 59 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_index": 60 }, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_time": 1727173013 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_time": 1727197944 } ], - "next_cursor": 528, - "result_count": 47 + "next_cursor": 535, + "result_count": 48 } ``` @@ -329,19 +329,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 532, + "event_index": 539, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 193, - "event": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", + "block_index": 194, + "event": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", "quantity": 1, - "tx_index": 59, + "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -351,12 +351,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_time": 1727173013 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_time": 1727197944 } ], - "next_cursor": 525, + "next_cursor": 532, "result_count": 54 } ``` @@ -367,19 +367,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 526, + "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -389,13 +389,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 } ], - "next_cursor": 524, - "result_count": 67 + "next_cursor": 531, + "result_count": 68 } ``` @@ -405,19 +405,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 484, + "event_index": 491, "event": "ENHANCED_SEND", "params": { "asset": "XCP", - "block_index": 187, - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 188, + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "memo": null, "quantity": 10000, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "status": "valid", - "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5", - "tx_index": 53, - "block_time": 1727172988, + "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0", + "tx_index": 54, + "block_time": 1727197909, "asset_info": { "divisible": true, "asset_longname": null, @@ -427,9 +427,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5", - "block_index": 187, - "block_time": 1727172988 + "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0", + "block_index": 188, + "block_time": 1727197909 } ], "next_cursor": null, @@ -443,20 +443,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 496, + "event_index": 503, "event": "MPMA_SEND", "params": { "asset": "XCP", - "block_index": 188, - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "block_index": 189, + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "status": "valid", - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "tx_index": 54, - "block_time": 1727172992, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_index": 55, + "block_time": 1727197914, "asset_info": { "divisible": true, "asset_longname": null, @@ -466,12 +466,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "block_time": 1727172992 + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "block_time": 1727197914 } ], - "next_cursor": 495, + "next_cursor": 502, "result_count": 3 } ``` @@ -502,24 +502,24 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 527, + "event_index": 534, "event": "SWEEP", "params": { - "block_index": 192, - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 193, + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "status": "valid", - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, - "block_time": 1727173009, + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, + "block_time": 1727197940, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 } ], "next_cursor": null, @@ -533,23 +533,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 330, + "event_index": 337, "event": "ASSET_DIVIDEND", "params": { "asset": "MYASSETA", - "block_index": 153, + "block_index": 154, "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "status": "valid", - "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", - "tx_index": 40, - "block_time": 1727172836, + "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "tx_index": 41, + "block_time": 1727197783, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -563,9 +563,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": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", - "block_index": 153, - "block_time": 1727172836 + "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "block_index": 154, + "block_time": 1727197783 } ], "next_cursor": null, @@ -591,21 +591,21 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 380, + "event_index": 387, "event": "ASSET_CREATION", "params": { "asset_id": "95428956980101314", "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", - "block_index": 159, - "block_time": 1727172872 + "block_index": 160, + "block_time": 1727197808 }, - "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", - "block_index": 159, - "block_time": 1727172872 + "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "block_index": 160, + "block_time": 1727197808 } ], - "next_cursor": 367, + "next_cursor": 374, "result_count": 9 } ``` @@ -616,13 +616,13 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 381, + "event_index": 388, "event": "ASSET_ISSUANCE", "params": { "asset": "A95428956980101314", "asset_events": "creation", "asset_longname": "A95428959745315388.SUBNUMERIC", - "block_index": 159, + "block_index": 160, "call_date": 0, "call_price": 0.0, "callable": false, @@ -630,25 +630,25 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "status": "valid", "transfer": false, - "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", - "tx_index": 46, - "block_time": 1727172872, + "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "tx_index": 47, + "block_time": 1727197808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", - "block_index": 159, - "block_time": 1727172872 + "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "block_index": 160, + "block_time": 1727197808 } ], - "next_cursor": 374, + "next_cursor": 381, "result_count": 21 } ``` @@ -659,18 +659,18 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 533, + "event_index": 540, "event": "ASSET_DESTRUCTION", "params": { "asset": "XCP", - "block_index": 193, + "block_index": 194, "quantity": 1, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "status": "valid", "tag": "64657374726f79", - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "tx_index": 59, - "block_time": 1727173013, + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_index": 60, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -680,9 +680,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_time": 1727173013 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_time": 1727197944 } ], "next_cursor": 157, @@ -698,12 +698,12 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 515, + "event_index": 522, "event": "OPEN_ORDER", "params": { - "block_index": 191, + "block_index": 192, "expiration": 21, - "expire_index": 212, + "expire_index": 213, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -714,11 +714,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": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "status": "open", - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "tx_index": 57, - "block_time": 1727173005, + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_index": 58, + "block_time": 1727197936, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -742,12 +742,12 @@ 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": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "block_index": 191, - "block_time": 1727173005 + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "block_index": 192, + "block_time": 1727197936 } ], - "next_cursor": 502, + "next_cursor": 509, "result_count": 7 } ``` @@ -758,29 +758,29 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 477, + "event_index": 484, "event": "ORDER_MATCH", "params": { "backward_asset": "BTC", "backward_quantity": 3000, - "block_index": 186, + "block_index": 187, "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "match_expire_index": 206, + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "match_expire_index": 207, "status": "pending", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx0_block_index": 184, + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_block_index": 185, "tx0_expiration": 21, - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx0_index": 49, - "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", - "tx1_block_index": 186, + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_index": 50, + "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "tx1_block_index": 187, "tx1_expiration": 21, - "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "tx1_index": 52, - "block_time": 1727172973, + "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx1_index": 53, + "block_time": 1727197905, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -799,12 +799,12 @@ 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": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "block_index": 186, - "block_time": 1727172973 + "tx_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "block_index": 187, + "block_time": 1727197905 } ], - "next_cursor": 461, + "next_cursor": 468, "result_count": 3 } ``` @@ -815,18 +815,18 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 507, + "event_index": 514, "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06" + "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b" }, - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "block_index": 190, - "block_time": 1727173001 + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "block_index": 191, + "block_time": 1727197921 } ], - "next_cursor": 476, + "next_cursor": 483, "result_count": 11 } ``` @@ -837,15 +837,15 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 468, + "event_index": 475, "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e" + "tx_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf" }, - "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", - "block_index": 185, - "block_time": 1727172969 + "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "block_index": 186, + "block_time": 1727197901 } ], "next_cursor": null, @@ -859,19 +859,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 467, + "event_index": 474, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", "status": "completed" }, - "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", - "block_index": 185, - "block_time": 1727172969 + "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "block_index": 186, + "block_time": 1727197901 } ], - "next_cursor": 440, + "next_cursor": 447, "result_count": 2 } ``` @@ -882,23 +882,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 469, + "event_index": 476, "event": "BTC_PAY", "params": { - "block_index": 185, + "block_index": 186, "btc_amount": 2000, - "destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "status": "valid", - "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", - "tx_index": 51, - "block_time": 1727172969, + "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "tx_index": 52, + "block_time": 1727197901, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", - "block_index": 185, - "block_time": 1727172969 + "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "block_index": 186, + "block_time": 1727197901 } ], "next_cursor": null, @@ -912,20 +912,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 509, + "event_index": 516, "event": "CANCEL_ORDER", "params": { - "block_index": 190, - "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 191, + "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "status": "valid", - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "tx_index": 56, - "block_time": 1727173001 + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_index": 57, + "block_time": 1727197921 }, - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "block_index": 190, - "block_time": 1727173001 + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "block_index": 191, + "block_time": 1727197921 } ], "next_cursor": null, @@ -939,20 +939,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 448, + "event_index": 455, "event": "ORDER_EXPIRATION", "params": { - "block_index": 182, - "order_hash": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "block_time": 1727172888 + "block_index": 183, + "order_hash": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "block_time": 1727197823 }, "tx_hash": null, - "block_index": 182, - "block_time": 1727172888 + "block_index": 183, + "block_time": 1727197823 } ], - "next_cursor": 446, + "next_cursor": 453, "result_count": 2 } ``` @@ -963,18 +963,18 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 443, + "event_index": 450, "event": "ORDER_MATCH_EXPIRATION", "params": { - "block_index": 182, - "order_match_id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "block_time": 1727172888 + "block_index": 183, + "order_match_id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "block_time": 1727197823 }, "tx_hash": null, - "block_index": 182, - "block_time": 1727172888 + "block_index": 183, + "block_time": 1727197823 } ], "next_cursor": null, @@ -990,23 +990,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 267, + "event_index": 272, "event": "OPEN_DISPENSER", "params": { "asset": "XCP", - "block_index": 145, + "block_index": 146, "dispense_count": 0, "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", - "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "satoshirate": 1, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "status": 0, - "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", - "tx_index": 32, - "block_time": 1727172802, + "tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "tx_index": 33, + "block_time": 1727197749, "asset_info": { "divisible": true, "asset_longname": null, @@ -1019,9 +1019,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": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", - "block_index": 145, - "block_time": 1727172802 + "tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "block_index": 146, + "block_time": 1727197749 } ], "next_cursor": 254, @@ -1035,15 +1035,14 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 274, + "event_index": 302, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", - "dispense_count": 1, - "give_remaining": 9334, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", - "status": 0, - "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", + "give_remaining": 0, + "source": "mmMQv1E9m8quqXXYXh9u1wxK5Yao7BFUfG", + "status": 10, + "tx_hash": "d8c4d9743c70dc60ca111fcd9049da47ff04b408893eb8a73659046caf40e9d1", "asset_info": { "divisible": true, "asset_longname": null, @@ -1051,15 +1050,15 @@ Here is a list of events classified by theme and for each an example response: "locked": true, "issuer": null }, - "give_remaining_normalized": "0.00009334" + "give_remaining_normalized": "0.00000000" }, - "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "block_index": 146, - "block_time": 1727172806 + "tx_hash": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18", + "block_index": 150, + "block_time": 1727197765 } ], - "next_cursor": 260, - "result_count": 4 + "next_cursor": 279, + "result_count": 6 } ``` @@ -1074,13 +1073,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mmrTk1uWkJbzqpooxUaCcr7B4jGgGg1KQv", + "destination": "mmMQv1E9m8quqXXYXh9u1wxK5Yao7BFUfG", "dispense_quantity": 10, - "dispenser_tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx_hash": "d7510384be95e1cf002f98fbbcb6b4abf6a6be9ef00f5d0b38a409f15af32e6f", + "dispenser_tx_hash": "d8c4d9743c70dc60ca111fcd9049da47ff04b408893eb8a73659046caf40e9d1", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx_hash": "4ef9bf3c6b9845c8479bd4df25a1ce8dd0706f42b3d93f1e934ac6472755b20d", "tx_index": 31, - "block_time": 1727172798, + "block_time": 1727197731, "asset_info": { "divisible": true, "asset_longname": null, @@ -1090,9 +1089,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "d7510384be95e1cf002f98fbbcb6b4abf6a6be9ef00f5d0b38a409f15af32e6f", + "tx_hash": "4ef9bf3c6b9845c8479bd4df25a1ce8dd0706f42b3d93f1e934ac6472755b20d", "block_index": 144, - "block_time": 1727172798 + "block_time": 1727197731 } ], "next_cursor": null, @@ -1106,20 +1105,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 275, + "event_index": 280, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 146, + "block_index": 147, "btc_amount": 10000, - "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", + "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", - "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "tx_index": 33, - "block_time": 1727172806, + "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "tx_index": 34, + "block_time": 1727197754, "asset_info": { "divisible": true, "asset_longname": null, @@ -1130,9 +1129,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "block_index": 146, - "block_time": 1727172806 + "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "block_index": 147, + "block_time": 1727197754 } ], "next_cursor": 240, @@ -1154,19 +1153,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": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f", + "tx_hash": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a", "tx_index": 25, "value": 66600.0, - "block_time": 1727172762, + "block_time": 1727197705, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f", + "tx_hash": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a", "block_index": 138, - "block_time": 1727172762 + "block_time": 1727197705 } ], "next_cursor": 213, @@ -1204,16 +1203,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "start_block": 0, "status": "open", - "tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", + "tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", "tx_index": 22, - "block_time": 1727172750 + "block_time": 1727197692 }, - "tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", + "tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", "block_index": 135, - "block_time": 1727172750 + "block_time": 1727197692 } ], "next_cursor": 161, @@ -1231,11 +1230,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "c768c790db646fe20b33e0828c0042c6705ee66248d68fde588e91455ea70222" + "tx_hash": "ed54030f74b75858f08f505f277c85ca7c83e98e45fa2466d05fa442687341c8" }, "tx_hash": null, "block_index": 130, - "block_time": 1727172729 + "block_time": 1727197672 } ], "next_cursor": 110, @@ -1256,24 +1255,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", + "fairminter_tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", "paid_quantity": 34, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "status": "valid", - "tx_hash": "7f69a52eaeb924d936bb756185de09623ce5fc4623732debde3ceb5f2c01dcb1", + "tx_hash": "201f88f9894c716c618457972af68ef54a92b3eeb8876fb18286c0ea68a88c25", "tx_index": 23, - "block_time": 1727172754, + "block_time": 1727197697, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } }, - "tx_hash": "7f69a52eaeb924d936bb756185de09623ce5fc4623732debde3ceb5f2c01dcb1", + "tx_hash": "201f88f9894c716c618457972af68ef54a92b3eeb8876fb18286c0ea68a88c25", "block_index": 136, - "block_time": 1727172754 + "block_time": 1727197697 } ], "next_cursor": 190, @@ -1289,36 +1288,36 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 312, + "event_index": 319, "event": "ATTACH_TO_UTXO", "params": { "asset": "MYASSETA", - "block_index": 151, - "destination": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796:1", + "block_index": 152, + "destination": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "status": "valid", - "tx_hash": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", - "tx_index": 38, - "block_time": 1727172827, + "tx_hash": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "tx_index": 39, + "block_time": 1727197774, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", - "block_index": 151, - "block_time": 1727172827 + "tx_hash": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "block_index": 152, + "block_time": 1727197774 } ], - "next_cursor": 291, + "next_cursor": 296, "result_count": 2 } ``` @@ -1329,33 +1328,33 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 304, + "event_index": 311, "event": "DETACH_FROM_UTXO", "params": { "asset": "MYASSETA", - "block_index": 150, - "destination": "bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u", + "block_index": 151, + "destination": "bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "21b3e83b0b0df662cf0bd787cf0aa89d24f2ff8a271d6fc2859150e567f2d8af:0", + "source": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18:0", "status": "valid", - "tx_hash": "88ce36f56bec0bde16401bf8d29fc724911d18c4b2e04c5381143b345405c019", - "tx_index": 37, - "block_time": 1727172823, + "tx_hash": "4e5e668a3cc76166427fea322ae7c0f5deefad71340af9a2f004c1b19bd4167d", + "tx_index": 38, + "block_time": 1727197770, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "88ce36f56bec0bde16401bf8d29fc724911d18c4b2e04c5381143b345405c019", - "block_index": 150, - "block_time": 1727172823 + "tx_hash": "4e5e668a3cc76166427fea322ae7c0f5deefad71340af9a2f004c1b19bd4167d", + "block_index": 151, + "block_time": 1727197770 } ], "next_cursor": null, @@ -1369,19 +1368,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 349, + "event_index": 356, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 155, - "destination": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800:1", + "block_index": 156, + "destination": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8:1", "msg_index": 1, "quantity": 1500000000, - "source": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a:0", + "source": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9:0", "status": "valid", - "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", - "tx_index": 42, - "block_time": 1727172845, + "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "tx_index": 43, + "block_time": 1727197791, "asset_info": { "divisible": true, "asset_longname": null, @@ -1391,12 +1390,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", - "block_index": 155, - "block_time": 1727172845 + "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "block_index": 156, + "block_time": 1727197791 } ], - "next_cursor": 346, + "next_cursor": 353, "result_count": 7 } ``` @@ -1415,17 +1414,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qx8nq65mcz45h8s0zdjjssw5cx8ln5utgc6xt67", + "source": "bcrt1qyxerv7nywhqduhyezl3s8kpvw9ts8svpuu3vka", "status": "valid", - "tx_hash": "fb670497b1b7bdfefa37ae903873231799070c083dad68feaeffa589cb749da7", + "tx_hash": "4425334c064a07609b1049b0e61f4368bf0e83b7743d8b0dfa6c08c631ca5015", "tx_index": 9, - "block_time": 1727172691, + "block_time": 1727197635, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "fb670497b1b7bdfefa37ae903873231799070c083dad68feaeffa589cb749da7", + "tx_hash": "4425334c064a07609b1049b0e61f4368bf0e83b7743d8b0dfa6c08c631ca5015", "block_index": 121, - "block_time": 1727172691 + "block_time": 1727197635 } ], "next_cursor": 65, @@ -1464,7 +1463,7 @@ Returns server information and the list of documented routes in JSON format. Returns the list of the last ten blocks + Parameters - + cursor: `193` (str, optional) - The index of the most recent block to return + + cursor: `194` (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 +1480,68 @@ Returns the list of the last ten blocks { "result": [ { - "block_index": 193, - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_time": 1727173013, - "previous_block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", + "block_index": 194, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_time": 1727197944, + "previous_block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", "difficulty": 545259519, - "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", - "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", - "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", + "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", + "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", + "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", "transaction_count": 1, "confirmed": true }, { - "block_index": 192, - "block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", - "block_time": 1727173009, - "previous_block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", + "block_index": 193, + "block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", + "block_time": 1727197940, + "previous_block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", "difficulty": 545259519, - "ledger_hash": "7c5a10c60e0adda273a820ac0f140981f23ec027153fdaf5863e9fbb1950b507", - "txlist_hash": "10113b203d2e9b08f332a14a1a7b1e357fe1b95667c66460e14365341f37e508", - "messages_hash": "469a73b1b8afe332b56deab233991be89b015331b31aa3cc7daa11de356308f7", + "ledger_hash": "8ebf0ff459fa8641d33b886fc35228153c63004c1b6d68a64ff566e9cb4de0e3", + "txlist_hash": "506c4191b8f52510ebd356fd01ac1b9bedff7b578efd0bc5a3bd85b08251a1a8", + "messages_hash": "55b40ca33d6b637a0b2410ab1e90bade3f809597ed4a502535846e0b388bc84b", "transaction_count": 1, "confirmed": true }, { - "block_index": 191, - "block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", - "block_time": 1727173005, - "previous_block_hash": "02f6700fcf36370ae093a8b30af0f487ddbd03c2c43ad683a4ba98deb4c51323", + "block_index": 192, + "block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", + "block_time": 1727197936, + "previous_block_hash": "0ba357e822a1ad9f1ee40b954ad363862e0d3afdb30fc3a5d88c175a18c38bd7", "difficulty": 545259519, - "ledger_hash": "46e56e1c4701cacad891239b4357cdbe904d35306f95f374e48651661bd28119", - "txlist_hash": "74aadb7ca23cc44a9d5530bab8d1037e502d28f47c1bdaa139c4a792ea767333", - "messages_hash": "a9eaf5c9f4f1f092d273b6e208fca477dcbcf9f65e7245e4b371514b7299ebf9", + "ledger_hash": "ed2663e807abed358c370631c393de19d2a31d71fa358bbf242406c52d095df2", + "txlist_hash": "4f8e1381f981afd674cfc8e4809c2409298d7d9c5b7c0a249c1185b179f0bfa3", + "messages_hash": "26277faaf7ebbfead3cfb663fecb912b47ae85e99f0e2711bf04cc195eeffcde", "transaction_count": 1, "confirmed": true }, { - "block_index": 190, - "block_hash": "02f6700fcf36370ae093a8b30af0f487ddbd03c2c43ad683a4ba98deb4c51323", - "block_time": 1727173001, - "previous_block_hash": "0fc8aabb62aabd549bddf7c7b53943e2152520c9e1bf3e24ab8aac1977208f47", + "block_index": 191, + "block_hash": "0ba357e822a1ad9f1ee40b954ad363862e0d3afdb30fc3a5d88c175a18c38bd7", + "block_time": 1727197921, + "previous_block_hash": "0033c741fc5613728a96e2ae19f264cc8678daa5777b8c77ee8ae758f1fe49e8", "difficulty": 545259519, - "ledger_hash": "fd99cd30b4b6ceb23579445adeb2ff01abb843af3232ccf152f83b8da6fc6088", - "txlist_hash": "b85a789a31429c13b3e556a4f0665a31733ea0ca06d5026a81333e5708b27b20", - "messages_hash": "0265d415f94f48d43cd18b77e5033b2d22270632f66d4eda2a07ea4ad26f6371", + "ledger_hash": "155de78e77691fa4852cea37b3db40e304bef521b3f2171fcb32b62a818971c0", + "txlist_hash": "624b1a10e023bf054ec39c1414b51f63aac8f1f5ffffa026d9203d72d86b302e", + "messages_hash": "123f9ccc6393e5dbc04c9b5716b7453477353af2429199386c25d88d41655d2c", "transaction_count": 1, "confirmed": true }, { - "block_index": 189, - "block_hash": "0fc8aabb62aabd549bddf7c7b53943e2152520c9e1bf3e24ab8aac1977208f47", - "block_time": 1727172996, - "previous_block_hash": "4a56fb7af76004d2f0d9e697200b176b68422435a6c64d80053a15e2d76b9bbb", + "block_index": 190, + "block_hash": "0033c741fc5613728a96e2ae19f264cc8678daa5777b8c77ee8ae758f1fe49e8", + "block_time": 1727197917, + "previous_block_hash": "5e52af4ac2e545ee9b2f874c6e6b5906d2705730d220f92fdcf1c0660e9b93cb", "difficulty": 545259519, - "ledger_hash": "8de4e9ba279dcf9d61fe03dd631ac235f92b565f6f5c5b787273ca791ed092a4", - "txlist_hash": "2d26a9f871599f84b034aec8fbe8ec79d1e34902055e7a40c8517899e9b69ca3", - "messages_hash": "071c88ddb360523caf0a6070d8c9955a2749d7afee700bc45d0e7185f8b65d3a", + "ledger_hash": "6b01ff1925c48a6193a47beff2795790910c846d74e2158ba5198c52eced339e", + "txlist_hash": "07bfc2fae7438d22af5ca3ab15d012058a50878d9320712da2476c6904747dde", + "messages_hash": "1f296eb34f29f041f13eac8f6d242af1203389ba36e46aa60938d5cfc6ef5e23", "transaction_count": 1, "confirmed": true } ], - "next_cursor": 188, - "result_count": 93 + "next_cursor": 189, + "result_count": 94 } ``` @@ -1561,7 +1560,7 @@ Return the information of the last block Return the information of a block + Parameters - + block_index: `193` (int, required) - The index of the block to return + + block_index: `194` (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 +1571,14 @@ Return the information of a block ``` { "result": { - "block_index": 193, - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_time": 1727173013, - "previous_block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", + "block_index": 194, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_time": 1727197944, + "previous_block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", "difficulty": 545259519, - "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", - "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", - "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", + "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", + "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", + "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1590,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240` (str, required) - The index of the block to return + + block_hash: `209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364` (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 +1601,14 @@ Return the information of a block ``` { "result": { - "block_index": 193, - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_time": 1727173013, - "previous_block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", + "block_index": 194, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_time": 1727197944, + "previous_block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", "difficulty": 545259519, - "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", - "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", - "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", + "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", + "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", + "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", "transaction_count": 1, "confirmed": true } @@ -1621,8 +1620,8 @@ Return the information of a block Returns the transactions of a block + Parameters - + block_index: `193` (int, required) - The index of the block to return - + cursor: `59` (str, optional) - The last transaction index to return + + block_index: `194` (int, required) - The index of the block to return + + cursor: `60` (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 +1638,18 @@ Returns the transactions of a block { "result": [ { - "tx_index": 59, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_time": 1727173013, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 60, + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_time": 1727197944, + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", + "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1682,10 +1681,10 @@ Returns the transactions of a block Returns the events of a block + Parameters - + block_index: `192` (int, required) - The index of the block to return + + block_index: `193` (int, required) - The index of the block to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `535` (str, optional) - The last event index to return + + cursor: `542` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -1702,60 +1701,60 @@ Returns the events of a block { "result": [ { - "event_index": 529, + "event_index": 536, "event": "BLOCK_PARSED", "params": { - "block_index": 192, - "ledger_hash": "7c5a10c60e0adda273a820ac0f140981f23ec027153fdaf5863e9fbb1950b507", - "messages_hash": "469a73b1b8afe332b56deab233991be89b015331b31aa3cc7daa11de356308f7", + "block_index": 193, + "ledger_hash": "8ebf0ff459fa8641d33b886fc35228153c63004c1b6d68a64ff566e9cb4de0e3", + "messages_hash": "55b40ca33d6b637a0b2410ab1e90bade3f809597ed4a502535846e0b388bc84b", "transaction_count": 1, - "txlist_hash": "10113b203d2e9b08f332a14a1a7b1e357fe1b95667c66460e14365341f37e508", - "block_time": 1727173009 + "txlist_hash": "506c4191b8f52510ebd356fd01ac1b9bedff7b578efd0bc5a3bd85b08251a1a8", + "block_time": 1727197940 }, "tx_hash": null }, { - "event_index": 528, + "event_index": 535, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59 }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" }, { - "event_index": 527, + "event_index": 534, "event": "SWEEP", "params": { - "block_index": 192, - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 193, + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "status": "valid", - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, - "block_time": 1727173009, + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, + "block_time": 1727197940, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" }, { - "event_index": 526, + "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -1765,22 +1764,22 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" }, { - "event_index": 525, + "event_index": 532, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "XCP", - "block_index": 192, - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "block_index": 193, + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -1790,10 +1789,10 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" } ], - "next_cursor": 524, + "next_cursor": 531, "result_count": 12 } ``` @@ -1803,7 +1802,7 @@ Returns the events of a block Returns the event counts of a block + Parameters - + block_index: `193` (int, required) - The index of the block to return + + block_index: `194` (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 @@ -1851,7 +1850,7 @@ Returns the event counts of a block Returns the events of a block filtered by event + Parameters - + block_index: `192` (int, required) - The index of the block to return + + block_index: `193` (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` @@ -1870,19 +1869,19 @@ Returns the events of a block filtered by event { "result": [ { - "event_index": 526, + "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -1892,57 +1891,57 @@ Returns the events of a block filtered by event }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" }, { - "event_index": 524, + "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 10, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" }, { - "event_index": 522, + "event_index": 529, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "FAIRMINTA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 500000000, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" } ], "next_cursor": null, @@ -1955,7 +1954,7 @@ Returns the events of a block filtered by event Returns the credits of a block + Parameters - + block_index: `192` (int, required) - The index of the block to return + + block_index: `193` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2004,17 +2003,17 @@ Returns the credits of a block { "result": [ { - "block_index": 192, - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 193, + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -2025,42 +2024,42 @@ Returns the credits of a block "quantity_normalized": "744.99388000" }, { - "block_index": 192, - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 193, + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, { - "block_index": 192, - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 193, + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -2077,7 +2076,7 @@ Returns the credits of a block Returns the debits of a block + Parameters - + block_index: `193` (int, required) - The index of the block to return + + block_index: `194` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2115,17 +2114,17 @@ Returns the debits of a block { "result": [ { - "block_index": 193, - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 194, + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "tx_index": 59, + "event": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -2146,7 +2145,7 @@ Returns the debits of a block Returns the expirations of a block + Parameters - + block_index: `182` (int, required) - The index of the block to return + + block_index: `183` (int, required) - The index of the block to return + cursor (str, optional) - The last index of the expirations to return + Default: `None` + limit: `5` (int, optional) - The maximum number of expirations to return @@ -2165,24 +2164,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "block_index": 182, + "object_id": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "block_index": 183, "confirmed": true, - "block_time": 1727172888 + "block_time": 1727197823 }, { "type": "order", - "object_id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", - "block_index": 182, + "object_id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "block_index": 183, "confirmed": true, - "block_time": 1727172888 + "block_time": 1727197823 }, { "type": "order_match", - "object_id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "block_index": 182, + "object_id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "block_index": 183, "confirmed": true, - "block_time": 1727172888 + "block_time": 1727197823 } ], "next_cursor": null, @@ -2195,7 +2194,7 @@ Returns the expirations of a block Returns the cancels of a block + Parameters - + block_index: `190` (int, required) - The index of the block to return + + block_index: `191` (int, required) - The index of the block to return + cursor (str, optional) - The last index of the cancels to return + Default: `None` + limit: `5` (int, optional) - The maximum number of cancels to return @@ -2213,14 +2212,14 @@ Returns the cancels of a block { "result": [ { - "tx_index": 56, - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "block_index": 190, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "tx_index": 57, + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "block_index": 191, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", "status": "valid", "confirmed": true, - "block_time": 1727173001 + "block_time": 1727197921 } ], "next_cursor": null, @@ -2233,7 +2232,7 @@ Returns the cancels of a block Returns the destructions of a block + Parameters - + block_index: `193` (int, required) - The index of the block to return + + block_index: `194` (int, required) - The index of the block to return + cursor (str, optional) - The last index of the destructions to return + Default: `None` + limit: `5` (int, optional) - The maximum number of destructions to return @@ -2251,16 +2250,16 @@ Returns the destructions of a block { "result": [ { - "tx_index": 59, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 60, + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -2281,7 +2280,7 @@ Returns the destructions of a block Returns the issuances of a block + Parameters - + block_index: `159` (int, required) - The index of the block to return + + block_index: `160` (int, required) - The index of the block 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 @@ -2299,15 +2298,15 @@ Returns the issuances of a block { "result": [ { - "tx_index": 46, - "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", + "tx_index": 47, + "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", "msg_index": 0, - "block_index": 159, + "block_index": 160, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -2322,7 +2321,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172872, + "block_time": 1727197808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2337,7 +2336,7 @@ Returns the issuances of a block Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + block_index: `188` (int, required) - The index of the block to return + + block_index: `189` (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 @@ -2355,11 +2354,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2367,7 +2366,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "divisible": true, "asset_longname": null, @@ -2379,11 +2378,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2391,11 +2390,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -2403,11 +2402,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2415,11 +2414,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -2437,7 +2436,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + block_index: `146` (int, required) - The index of the block to return + + block_index: `147` (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 @@ -2455,29 +2454,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 33, + "tx_index": 34, "dispense_index": 0, - "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", - "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", + "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", + "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", "btc_amount": 10000, "confirmed": true, "dispenser": { - "tx_index": 32, - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "tx_index": 33, + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "last_status_tx_hash": null, - "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2492,7 +2491,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727172806, + "block_time": 1727197754, "asset_info": { "divisible": true, "asset_longname": null, @@ -2514,7 +2513,7 @@ Returns the dispenses of a block Returns the sweeps of a block + Parameters - + block_index: `192` (int, required) - The index of the block to return + + block_index: `193` (int, required) - The index of the block 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 @@ -2532,17 +2531,17 @@ Returns the sweeps of a block { "result": [ { - "tx_index": 58, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 59, + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "fee_paid_normalized": "0.00600000" } ], @@ -2576,17 +2575,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f", + "tx_hash": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a", "block_index": 138, - "block_hash": "016501740eb2e2bbe5dbf3cc03bfc157c53bbab3308053b5dd16a698f2c43386", - "block_time": 1727172762, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "block_hash": "0f48254c4df0c5d1ed0f2e3ab66847fb82d706f14d765325f5cc700c99f20298", + "block_time": 1727197705, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f:1", + "utxos_info": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2610,26 +2609,26 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 51, - "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", - "block_index": 185, - "block_hash": "1d6980459044b891166b8b08040dbfaf7f1e6bf6b4eabe8b4847304731354204", - "block_time": 1727172969, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 52, + "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "block_index": 186, + "block_hash": "23715f413c2b5dfaacd98fbc7d09da3269edd75cb02570c248e4fb573680aa6f", + "block_time": 1727197901, + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "btc_amount": 2000, "fee": 10000, - "data": "0b592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "data": "0b272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", "supported": true, - "utxos_info": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52:0", + "utxos_info": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", "status": "valid" } }, @@ -2643,24 +2642,24 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 56, - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "block_index": 190, - "block_hash": "02f6700fcf36370ae093a8b30af0f487ddbd03c2c43ad683a4ba98deb4c51323", - "block_time": 1727173001, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 57, + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "block_index": 191, + "block_hash": "0ba357e822a1ad9f1ee40b954ad363862e0d3afdb30fc3a5d88c175a18c38bd7", + "block_time": 1727197921, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4607b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "data": "466ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", "supported": true, - "utxos_info": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17:1", + "utxos_info": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", "status": "valid" } }, @@ -2674,18 +2673,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 59, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_time": 1727173013, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 60, + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_time": 1727197944, + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", + "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2714,18 +2713,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 32, - "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", - "block_index": 145, - "block_hash": "3f2649d7462b851aad641625387bbaaebdca0732229f48ff37f55b631752a272", - "block_time": 1727172802, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "tx_index": 33, + "tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "block_index": 146, + "block_hash": "5299ea203573879ed196eb5ff786b358150ae1bd89dffbae1ae232900e4ed5df", + "block_time": 1727197749, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c000000000000000100000000000000010000000000002710000000000000000100802a7de4784b2a5ac19d0f38d5234d48473a9330bf", + "data": "0c0000000000000001000000000000000100000000000027100000000000000001008007af16c44d1cb1d2280aae2cd75ba4d1b373fdcd", "supported": true, - "utxos_info": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0:1", + "utxos_info": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2737,7 +2736,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "status": "valid", "asset_info": { "divisible": true, @@ -2760,18 +2759,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 33, - "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "block_index": 146, - "block_hash": "326eafa2366f787138a43075c3502bcb5cc7bb9e23f33a2e9bd6e5edea5e367c", - "block_time": 1727172806, - "source": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", - "destination": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "tx_index": 34, + "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "block_index": 147, + "block_hash": "7721a2b857d2ec36261c17260af7d37a772e66b562375d53d8cf48d7c50088c4", + "block_time": 1727197754, + "source": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", + "destination": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "btc_amount": 10000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9:0", + "utxos_info": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2790,18 +2789,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 40, - "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", - "block_index": 153, - "block_hash": "2cdf300ab7a5282d725bc408eca397e49d623f369f6faff1f334f61d814502c5", - "block_time": 1727172836, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 41, + "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "block_index": 154, + "block_hash": "43fef80a7ca26a574e27a52b50ae7749bd5e62fc9ba05b1493fe73196d95122d", + "block_time": 1727197783, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609:1", + "utxos_info": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2814,7 +2813,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -2838,18 +2837,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 46, - "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", - "block_index": 159, - "block_hash": "40243aa85a9d52a8adda4577f1065f05c1b76ceec3fd366c260bdcfd5ccdde75", - "block_time": 1727172872, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 47, + "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "block_index": 160, + "block_hash": "5d5e8261118767d94ca39548996035726c76616ccf81f607d075c1691291abab", + "block_time": 1727197808, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79:1", + "utxos_info": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2880,18 +2879,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 57, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "block_index": 191, - "block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", - "block_time": 1727173005, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 58, + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "block_index": 192, + "block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", + "block_time": 1727197936, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1", + "utxos_info": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2933,18 +2932,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 53, - "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5", - "block_index": 187, - "block_hash": "65667de29f3b10d45fc48c6f8eab77893250ac756b243425a6dabdea3c7ed133", - "block_time": 1727172988, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "tx_index": 54, + "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0", + "block_index": 188, + "block_hash": "23fdd89d049f7f7c1a8eaccd1f8da84d09ff094adb7410c555601d5780279009", + "block_time": 1727197909, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080d429e837a5671380d2470256f79bfb7e09709e7f", + "data": "020000000000000001000000000000271080be3be0105284b008bb9cde97ec522d4b83e99694", "supported": true, - "utxos_info": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5:1", + "utxos_info": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2952,7 +2951,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "memo": null, "asset_info": { "divisible": true, @@ -2974,18 +2973,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "block_hash": "4a56fb7af76004d2f0d9e697200b176b68422435a6c64d80053a15e2d76b9bbb", - "block_time": 1727172992, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "block_hash": "5e52af4ac2e545ee9b2f874c6e6b5906d2705730d220f92fdcf1c0660e9b93cb", + "block_time": 1727197914, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380532aac116f3cb07b11be377d648899a80753971d80ae5b876a7593a9bc79de22969203c476ffdfd3db80d429e837a5671380d2470256f79bfb7e09709e7f400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d780d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a580be3be0105284b008bb9cde97ec522d4b83e99694400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444:0", + "utxos_info": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2993,14 +2992,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -3008,7 +3007,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3033,24 +3032,24 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 58, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", - "block_time": 1727173009, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "tx_index": 59, + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", + "block_time": 1727197940, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480d429e837a5671380d2470256f79bfb7e09709e7f017377656570206d7920617373657473", + "data": "0480be3be0105284b008bb9cde97ec522d4b83e99694017377656570206d7920617373657473", "supported": true, - "utxos_info": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5:1", + "utxos_info": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "flags": 1, "memo": "sweep my assets" } @@ -3065,7 +3064,7 @@ Here is sample API output for each of these transactions: Returns the list of the last ten transactions + Parameters - + cursor: `59` (str, optional) - The index of the most recent transactions to return + + cursor: `60` (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` @@ -3082,18 +3081,18 @@ Returns the list of the last ten transactions { "result": [ { - "tx_index": 59, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_time": 1727173013, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 60, + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_time": 1727197944, + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", + "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3115,24 +3114,24 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00000000" }, { - "tx_index": 58, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", - "block_time": 1727173009, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "tx_index": 59, + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", + "block_time": 1727197940, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480d429e837a5671380d2470256f79bfb7e09709e7f017377656570206d7920617373657473", + "data": "0480be3be0105284b008bb9cde97ec522d4b83e99694017377656570206d7920617373657473", "supported": true, - "utxos_info": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5:1", + "utxos_info": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "flags": 1, "memo": "sweep my assets" } @@ -3140,8 +3139,8 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 57, - "result_count": 60 + "next_cursor": 58, + "result_count": 61 } ``` @@ -3150,7 +3149,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000101737477f765c6c08ac99fe1a9a5f2370d6234a789d06d95e6af11b9b1f2ea022d0000000000ffffffff020000000000000000356a335dc759e5c2bd07e4533e2597e39bacdc8e5df787d31f3ff513ffd149c3bb44c18977e802847bff14e37a2ec579d6417837f7c0f0ca052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad0247304402202ff34c46adcf93288c974036e0eb7d4b6ebfc890b5eded0da2177fa4947e181302203f334aed60f6f2326335192f9dfe906a2c4fb66cda9266a6e20cc3bda6fc2e4c012102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94000000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000101acdfc8ed80a83c50a27cdd2f09ccf3945c47ad134e4b2b1c41fa67d5426958a30000000000ffffffff020000000000000000356a3340c01f32e5138051a2f1c506acfb548df8a06bf7a1751910bafef1d98b422d6352a91ad9336067b25b29d909a1d242de2582acf0ca052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea90247304402201e8b0de0d9012512e0b8ad2fe0e384d4e671a610f4289e8c3cb541937f4177db022020ac176092284b07ed1f700a4183ef186172b8ccbfff4f44b93cb4189e07a03e01210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f00000000` (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. @@ -3163,7 +3162,7 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, @@ -3174,7 +3173,7 @@ Returns Counterparty information from a raw transaction in hex format. "coinbase": false, "vin": [ { - "hash": "737477f765c6c08ac99fe1a9a5f2370d6234a789d06d95e6af11b9b1f2ea022d", + "hash": "acdfc8ed80a83c50a27cdd2f09ccf3945c47ad134e4b2b1c41fa67d5426958a3", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3184,20 +3183,20 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a335dc759e5c2bd07e4533e2597e39bacdc8e5df787d31f3ff513ffd149c3bb44c18977e802847bff14e37a2ec579d6417837f7c0" + "script_pub_key": "6a3340c01f32e5138051a2f1c506acfb548df8a06bf7a1751910bafef1d98b422d6352a91ad9336067b25b29d909a1d242de2582ac" }, { "value": 4999990000, - "script_pub_key": "00145599316be7057562b9146e3d03cc6ea42923b1ad" + "script_pub_key": "00147fe57e1fa9d634b73d344e77a53d74837f310ea9" } ], "vtxinwit": [ - "304402202ff34c46adcf93288c974036e0eb7d4b6ebfc890b5eded0da2177fa4947e181302203f334aed60f6f2326335192f9dfe906a2c4fb66cda9266a6e20cc3bda6fc2e4c01", - "02bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b940" + "304402201e8b0de0d9012512e0b8ad2fe0e384d4e671a610f4289e8c3cb541937f4177db022020ac176092284b07ed1f700a4183ef186172b8ccbfff4f44b93cb4189e07a03e01", + "0281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f" ], "lock_time": 0, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "tx_id": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9" + "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_id": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b" }, "unpacked_data": { "message_type": "order", @@ -3239,7 +3238,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e` (str, required) - Transaction hash + + tx_hash: `c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1` (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. @@ -3250,18 +3249,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080ae5b876a7593a9bc79de22969203c476ffdfd3db", + "data": "020000000000000001000000000000271080d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a5", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "303babb3f33ba5da113c0f5926f9e0b6fb0fab29be8815b676687637e1bf6193", + "hash": "fa3682e8cbbffbbaaebf0f6b7a0120c87e84b22955aac5b13fb68063a0c6b80a", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3271,20 +3270,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e22e7a1d4fa666ac96161f86a86ec54ea0b3c211b73145a133a00111c728c8ff509252af0e1f8f0c20d7b94a92994" + "script_pub_key": "6a2e7652ca5c019dea838c31a7526be39a0fb1ec044af1e5b36fe45c8b528a8b324cdc6bca3691b9a2d10243786323c5" }, { "value": 4999955000, - "script_pub_key": "0014d429e837a5671380d2470256f79bfb7e09709e7f" + "script_pub_key": "0014be3be0105284b008bb9cde97ec522d4b83e99694" } ], "vtxinwit": [ - "304402203561f9ba0ae46ad26f8daa4aa16c4fc6d8048a02b9eb18086adbd408a6a7fd9102206a9343c49504c18b0b1135b202c28cbee146645af2f653bb4510361c9bb0fd3a01", - "028f281d89d24d92d61488bbd143cc93dd9c65b12631e2f3e98eab7fbc800e92e6" + "304402203022c08ac43105804d47bbf435909c214ce3221d00a256c1b5c2da0a0487a54e02204afe95b5b3516129151270b327dd409f4af9be9b3fe17f7e7b7d790a87be698601", + "02fe9567defb89c4a13984578115e212f8baf547436155a46ddd5d36d934768815" ], "lock_time": 0, - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", - "tx_id": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e" + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_id": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3292,7 +3291,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "memo": null, "asset_info": { "divisible": true, @@ -3341,7 +3340,7 @@ Unpacks Counterparty data in hex format and returns the message type and data. Returns a transaction by its index. + Parameters - + tx_index: `59` (int, required) - The index of the transaction + + tx_index: `60` (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. @@ -3352,18 +3351,18 @@ Returns a transaction by its index. ``` { "result": { - "tx_index": 59, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_time": 1727173013, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 60, + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_time": 1727197944, + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", + "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3392,7 +3391,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526` (str, required) - The hash of the transaction + + tx_hash: `dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d` (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. @@ -3403,18 +3402,18 @@ Returns a transaction by its hash. ``` { "result": { - "tx_index": 59, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_time": 1727173013, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 60, + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_time": 1727197944, + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", + "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3443,7 +3442,7 @@ Returns a transaction by its hash. Returns the events of a transaction + Parameters - + tx_index: `58` (int, required) - The index of the transaction to return + + tx_index: `59` (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 @@ -3463,51 +3462,51 @@ Returns the events of a transaction { "result": [ { - "event_index": 528, + "event_index": 535, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59 }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 527, + "event_index": 534, "event": "SWEEP", "params": { - "block_index": 192, - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 193, + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "status": "valid", - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, - "block_time": 1727173009, + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, + "block_time": 1727197940, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 526, + "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -3517,24 +3516,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 525, + "event_index": 532, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "XCP", - "block_index": 192, - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "block_index": 193, + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -3544,39 +3543,39 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 524, + "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 10, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 } ], - "next_cursor": 523, + "next_cursor": 530, "result_count": 10 } ``` @@ -3586,10 +3585,10 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5` (str, required) - The hash of the transaction to return + + tx_hash: `e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `535` (str, optional) - The last event index to return + + cursor: `542` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -3606,51 +3605,51 @@ Returns the events of a transaction { "result": [ { - "event_index": 528, + "event_index": 535, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59 }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 527, + "event_index": 534, "event": "SWEEP", "params": { - "block_index": 192, - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 193, + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "status": "valid", - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, - "block_time": 1727173009, + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, + "block_time": 1727197940, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 526, + "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -3660,24 +3659,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 525, + "event_index": 532, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "XCP", - "block_index": 192, - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "block_index": 193, + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -3687,39 +3686,39 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 524, + "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 10, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 } ], - "next_cursor": 523, + "next_cursor": 530, "result_count": 10 } ``` @@ -3729,7 +3728,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444` (str, required) - The hash of the transaction to return + + tx_hash: `5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152` (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 @@ -3747,11 +3746,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -3759,7 +3758,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "divisible": true, "asset_longname": null, @@ -3771,11 +3770,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3783,11 +3782,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -3795,11 +3794,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3807,11 +3806,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -3829,7 +3828,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9` (str, required) - The hash of the transaction to return + + tx_hash: `928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c` (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 @@ -3847,29 +3846,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 33, + "tx_index": 34, "dispense_index": 0, - "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", - "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", + "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", + "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", "btc_amount": 10000, "confirmed": true, "dispenser": { - "tx_index": 32, - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "tx_index": 33, + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "last_status_tx_hash": null, - "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3884,7 +3883,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727172806, + "block_time": 1727197754, "asset_info": { "divisible": true, "asset_longname": null, @@ -3906,9 +3905,9 @@ Returns the dispenses of a block Returns the events of a transaction + Parameters - + tx_index: `58` (int, required) - The index of the transaction to return + + tx_index: `59` (int, required) - The index of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `535` (str, optional) - The last event index to return + + cursor: `542` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -3925,19 +3924,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 526, + "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -3947,63 +3946,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 524, + "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 10, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 522, + "event_index": 529, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "FAIRMINTA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 500000000, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 } ], "next_cursor": null, @@ -4016,9 +4015,9 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5` (str, required) - The hash of the transaction to return + + tx_hash: `e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `535` (str, optional) - The last event index to return + + cursor: `542` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4035,19 +4034,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 526, + "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -4057,63 +4056,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 524, + "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 10, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 522, + "event_index": 529, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "FAIRMINTA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 500000000, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 } ], "next_cursor": null, @@ -4128,7 +4127,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql,bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj,bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (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 @@ -4152,7 +4151,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4162,7 +4161,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -4173,7 +4172,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4183,7 +4182,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -4194,7 +4193,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4204,7 +4203,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -4215,7 +4214,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4225,7 +4224,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -4236,7 +4235,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4246,7 +4245,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -4263,8 +4262,8 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql,bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (str, required) - Comma separated list of addresses to return - + cursor: `59` (str, optional) - The last transaction index to return + + addresses: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj,bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (str, required) - Comma separated list of addresses to return + + cursor: `60` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `100` @@ -4281,18 +4280,18 @@ Returns the transactions of a list of addresses { "result": [ { - "tx_index": 57, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "block_index": 191, - "block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", - "block_time": 1727173005, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 58, + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "block_index": 192, + "block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", + "block_time": 1727197936, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1", + "utxos_info": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4327,42 +4326,42 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" }, { - "tx_index": 56, - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "block_index": 190, - "block_hash": "02f6700fcf36370ae093a8b30af0f487ddbd03c2c43ad683a4ba98deb4c51323", - "block_time": 1727173001, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 57, + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "block_index": 191, + "block_hash": "0ba357e822a1ad9f1ee40b954ad363862e0d3afdb30fc3a5d88c175a18c38bd7", + "block_time": 1727197921, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4607b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "data": "466ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", "supported": true, - "utxos_info": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17:1", + "utxos_info": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", "status": "valid" } }, "btc_amount_normalized": "0.00000000" }, { - "tx_index": 55, - "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "block_index": 189, - "block_hash": "0fc8aabb62aabd549bddf7c7b53943e2152520c9e1bf3e24ab8aac1977208f47", - "block_time": 1727172996, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 56, + "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "block_index": 190, + "block_hash": "0033c741fc5613728a96e2ae19f264cc8678daa5777b8c77ee8ae758f1fe49e8", + "block_time": 1727197917, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06:1", + "utxos_info": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4397,18 +4396,18 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "block_hash": "4a56fb7af76004d2f0d9e697200b176b68422435a6c64d80053a15e2d76b9bbb", - "block_time": 1727172992, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "block_hash": "5e52af4ac2e545ee9b2f874c6e6b5906d2705730d220f92fdcf1c0660e9b93cb", + "block_time": 1727197914, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380532aac116f3cb07b11be377d648899a80753971d80ae5b876a7593a9bc79de22969203c476ffdfd3db80d429e837a5671380d2470256f79bfb7e09709e7f400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d780d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a580be3be0105284b008bb9cde97ec522d4b83e99694400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444:0", + "utxos_info": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4416,14 +4415,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -4431,7 +4430,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4449,34 +4448,34 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" }, { - "tx_index": 51, - "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", - "block_index": 185, - "block_hash": "1d6980459044b891166b8b08040dbfaf7f1e6bf6b4eabe8b4847304731354204", - "block_time": 1727172969, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 52, + "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "block_index": 186, + "block_hash": "23715f413c2b5dfaacd98fbc7d09da3269edd75cb02570c248e4fb573680aa6f", + "block_time": 1727197901, + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "btc_amount": 2000, "fee": 10000, - "data": "0b592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "data": "0b272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", "supported": true, - "utxos_info": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52:0", + "utxos_info": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", "status": "valid" } }, "btc_amount_normalized": "0.00002000" } ], - "next_cursor": 50, - "result_count": 35 + "next_cursor": 51, + "result_count": 36 } ``` @@ -4485,10 +4484,10 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql,bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj,bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `535` (str, optional) - The last event index to return + + cursor: `542` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4505,12 +4504,12 @@ Returns the events of a list of addresses { "result": [ { - "event_index": 515, + "event_index": 522, "event": "OPEN_ORDER", "params": { - "block_index": 191, + "block_index": 192, "expiration": 21, - "expire_index": 212, + "expire_index": 213, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -4521,11 +4520,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "status": "open", - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "tx_index": 57, - "block_time": 1727173005, + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_index": 58, + "block_time": 1727197936, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4549,24 +4548,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "block_index": 191, - "block_time": 1727173005 + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "block_index": 192, + "block_time": 1727197936 }, { - "event_index": 514, + "event_index": 521, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", - "block_index": 191, - "event": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", + "block_index": 192, + "event": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", "quantity": 1000, - "tx_index": 57, + "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727173005, + "block_time": 1727197936, "asset_info": { "divisible": true, "asset_longname": null, @@ -4576,25 +4575,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "block_index": 191, - "block_time": 1727173005 + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "block_index": 192, + "block_time": 1727197936 }, { - "event_index": 513, + "event_index": 520, "event": "NEW_TRANSACTION", "params": { - "block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", - "block_index": 191, - "block_time": 1727173005, + "block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", + "block_index": 192, + "block_time": 1727197936, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "tx_index": 57, - "utxos_info": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_index": 58, + "utxos_info": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4626,40 +4625,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "block_index": 191, - "block_time": 1727173005 + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "block_index": 192, + "block_time": 1727197936 }, { - "event_index": 509, + "event_index": 516, "event": "CANCEL_ORDER", "params": { - "block_index": 190, - "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 191, + "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "status": "valid", - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "tx_index": 56, - "block_time": 1727173001 + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_index": 57, + "block_time": 1727197921 }, - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "block_index": 190, - "block_time": 1727173001 + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "block_index": 191, + "block_time": 1727197921 }, { - "event_index": 508, + "event_index": 515, "event": "CREDIT", "params": { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", - "block_index": 190, + "block_index": 191, "calling_function": "cancel order", - "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", "quantity": 1000, - "tx_index": 56, + "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727173001, + "block_time": 1727197921, "asset_info": { "divisible": true, "asset_longname": null, @@ -4669,13 +4668,13 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "block_index": 190, - "block_time": 1727173001 + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "block_index": 191, + "block_time": 1727197921 } ], - "next_cursor": 506, - "result_count": 163 + "next_cursor": 513, + "result_count": 165 } ``` @@ -4684,7 +4683,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu,bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde,bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2` (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 @@ -4700,18 +4699,18 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "memo": null, "quantity": 10000, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "status": "valid", - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", - "tx_index": 60, + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_index": 61, "asset_info": { "divisible": true, "asset_longname": null, @@ -4723,19 +4722,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "CREDIT", "params": { - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "XCP", - "block_index": 193, + "block_index": 194, "calling_function": "send", - "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "quantity": 10000, - "tx_index": 60, + "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -4747,19 +4746,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 193, - "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "block_index": 194, + "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "quantity": 10000, - "tx_index": 60, + "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -4771,27 +4770,27 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727173018.087438, + "block_time": 1727197948.7673035, "btc_amount": 0, - "data": "020000000000000001000000000000271080ae5b876a7593a9bc79de22969203c476ffdfd3db", + "data": "020000000000000001000000000000271080d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a5", "destination": "", "fee": 10000, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", - "tx_index": 60, - "utxos_info": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e:1", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_index": 61, + "utxos_info": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "memo": null, "asset_info": { "divisible": true, @@ -4817,7 +4816,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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 @@ -4837,7 +4836,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4845,14 +4844,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4860,16 +4859,16 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", - "quantity": 82699937176, + "quantity": 82699937196, "utxo": null, "utxo_address": null, "asset_info": { @@ -4882,7 +4881,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4890,7 +4889,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -4907,7 +4906,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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` @@ -4919,9 +4918,9 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", - "quantity": 82699937176, + "quantity": 82699937196, "utxo": null, "utxo_address": null, "asset_info": { @@ -4941,7 +4940,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4990,17 +4989,17 @@ Returns the credits of an address { "result": [ { - "block_index": 190, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 191, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "tx_index": 56, + "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173001, + "block_time": 1727197921, "asset_info": { "divisible": true, "asset_longname": null, @@ -5011,17 +5010,17 @@ Returns the credits of an address "quantity_normalized": "0.00001000" }, { - "block_index": 182, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 183, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", + "event": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172888, + "block_time": 1727197823, "asset_info": { "divisible": true, "asset_longname": null, @@ -5032,71 +5031,71 @@ Returns the credits of an address "quantity_normalized": "0.00001000" }, { - "block_index": 159, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 160, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", - "tx_index": 46, + "event": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "tx_index": 47, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172872, + "block_time": 1727197808, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "block_index": 156, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 157, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "3049d82ac4929aca6ab12d1284724095e241e923efa6738a54018abaee035899", - "tx_index": 43, + "event": "a4e645fc06d32b7988f633b99547ea5edd3803374c8cb442482d4f0511c34d93", + "tx_index": 44, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172849, + "block_time": 1727197795, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "100.00000000" }, { - "block_index": 151, + "block_index": 152, "address": null, "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", - "tx_index": 38, - "utxo": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796:1", - "utxo_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "event": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "tx_index": 39, + "utxo": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f:1", + "utxo_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "confirmed": true, - "block_time": 1727172827, + "block_time": 1727197774, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000" } ], - "next_cursor": 42, - "result_count": 14 + "next_cursor": 44, + "result_count": 15 } ``` @@ -5105,7 +5104,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5143,17 +5142,17 @@ Returns the debits of an address { "result": [ { - "block_index": 191, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 192, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "tx_index": 57, + "event": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173005, + "block_time": 1727197936, "asset_info": { "divisible": true, "asset_longname": null, @@ -5164,17 +5163,17 @@ Returns the debits of an address "quantity_normalized": "0.00001000" }, { - "block_index": 189, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 190, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "tx_index": 55, + "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172996, + "block_time": 1727197917, "asset_info": { "divisible": true, "asset_longname": null, @@ -5185,17 +5184,17 @@ Returns the debits of an address "quantity_normalized": "0.00001000" }, { - "block_index": 188, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 189, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "tx_index": 54, + "event": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "divisible": true, "asset_longname": null, @@ -5206,38 +5205,38 @@ Returns the debits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 188, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 189, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "tx_index": 54, + "event": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000020" }, { - "block_index": 183, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 184, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx_index": 49, + "event": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx_index": 50, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172962, + "block_time": 1727197892, "asset_info": { "divisible": true, "asset_longname": null, @@ -5258,7 +5257,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address of the feed + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5293,7 +5292,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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 @@ -5312,9 +5311,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "2dc115c4e276c363bdb2380e969b9707cf2c501926261d057ce4279b372ab4d5", + "tx_hash": "c1af0d1895e7e32748751e45ad78af2d4b67c387c3ed9683a08452e211a39e38", "block_index": 137, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5322,7 +5321,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727172759, + "block_time": 1727197701, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5336,7 +5335,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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 @@ -5355,14 +5354,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "8fe853c4e1b892ff7e5ad25d4e0262d0c3fc67bec76c41b8bf204d69675165e1", + "tx_hash": "9721c7e67962e05364698fc838185e054fa5bb344c1586873c8e243211fee30a", "block_index": 112, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1727172657, + "block_time": 1727197598, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5377,7 +5376,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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 @@ -5395,11 +5394,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address { "result": [ { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5407,7 +5406,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "divisible": true, "asset_longname": null, @@ -5419,11 +5418,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5431,11 +5430,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -5443,11 +5442,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5455,11 +5454,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -5467,11 +5466,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 38, - "tx_hash": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", - "block_index": 151, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796:1", + "tx_index": 39, + "tx_hash": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "block_index": 152, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5479,11 +5478,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172827, + "block_time": 1727197774, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -5491,11 +5490,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 35, - "tx_hash": "66763167dcd1976908a582536231a19199ce97450e535a6346c0eb5c1b9d7f57", - "block_index": 148, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "2aedfe80e416a241471b340a13f770bc621e74af48504b4329591367c64ade01:1", + "tx_index": 36, + "tx_hash": "d6e7f9a2b0a750c7151cf12baf036c37393c4156a14410db9ff311c440329ff8", + "block_index": 149, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "b206c25c0bc100ebc583dc2f65b41a4bfd7733288f93306ac4a8c5ff87f91dfc:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5503,11 +5502,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172815, + "block_time": 1727197761, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -5525,7 +5524,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u` (str, required) - The address to return + + address: `bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p` (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 @@ -5543,11 +5542,11 @@ Returns the receives of an address { "result": [ { - "tx_index": 37, - "tx_hash": "88ce36f56bec0bde16401bf8d29fc724911d18c4b2e04c5381143b345405c019", - "block_index": 150, - "source": "21b3e83b0b0df662cf0bd787cf0aa89d24f2ff8a271d6fc2859150e567f2d8af:0", - "destination": "bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u", + "tx_index": 38, + "tx_hash": "4e5e668a3cc76166427fea322ae7c0f5deefad71340af9a2f004c1b19bd4167d", + "block_index": 151, + "source": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18:0", + "destination": "bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5555,11 +5554,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172823, + "block_time": 1727197770, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -5577,7 +5576,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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` @@ -5596,11 +5595,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset { "result": [ { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5608,11 +5607,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -5620,11 +5619,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5632,11 +5631,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -5644,11 +5643,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 38, - "tx_hash": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", - "block_index": 151, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796:1", + "tx_index": 39, + "tx_hash": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "block_index": 152, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5656,11 +5655,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172827, + "block_time": 1727197774, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -5668,11 +5667,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 35, - "tx_hash": "66763167dcd1976908a582536231a19199ce97450e535a6346c0eb5c1b9d7f57", - "block_index": 148, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "2aedfe80e416a241471b340a13f770bc621e74af48504b4329591367c64ade01:1", + "tx_index": 36, + "tx_hash": "d6e7f9a2b0a750c7151cf12baf036c37393c4156a14410db9ff311c440329ff8", + "block_index": 149, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "b206c25c0bc100ebc583dc2f65b41a4bfd7733288f93306ac4a8c5ff87f91dfc:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5680,11 +5679,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172815, + "block_time": 1727197761, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -5702,7 +5701,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u` (str, required) - The address to return + + address: `bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p` (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` @@ -5721,11 +5720,11 @@ Returns the receives of an address and asset { "result": [ { - "tx_index": 37, - "tx_hash": "88ce36f56bec0bde16401bf8d29fc724911d18c4b2e04c5381143b345405c019", - "block_index": 150, - "source": "21b3e83b0b0df662cf0bd787cf0aa89d24f2ff8a271d6fc2859150e567f2d8af:0", - "destination": "bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u", + "tx_index": 38, + "tx_hash": "4e5e668a3cc76166427fea322ae7c0f5deefad71340af9a2f004c1b19bd4167d", + "block_index": 151, + "source": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18:0", + "destination": "bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5733,11 +5732,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172823, + "block_time": 1727197770, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -5755,7 +5754,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5784,9 +5783,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5795,7 +5794,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5805,7 +5804,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -5818,47 +5817,10 @@ Returns the dispensers of an address "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 30, - "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", - "block_index": 144, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10, - "satoshirate": 1, - "status": 0, - "give_remaining": 20, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "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": 1727172798, - "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.00000020", - "escrow_quantity_normalized": "0.00000010", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" } ], "next_cursor": null, - "result_count": 2 + "result_count": 1 } ``` @@ -5867,7 +5829,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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` @@ -5879,20 +5841,20 @@ Returns the dispenser of an address and an asset ``` { "result": { - "tx_index": 30, - "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", - "block_index": 144, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 26, + "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "block_index": 141, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "give_quantity": 1, - "escrow_quantity": 10, + "escrow_quantity": 10000, "satoshirate": 1, - "status": 0, - "give_remaining": 20, + "status": 10, + "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "dispense_count": 0, + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, "confirmed": true, @@ -5901,7 +5863,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727172798, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -5910,8 +5872,8 @@ Returns the dispenser of an address and an asset "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000020", - "escrow_quantity_normalized": "0.00000010", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" } @@ -5923,7 +5885,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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 @@ -5943,19 +5905,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", + "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5963,7 +5925,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5978,7 +5940,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -5992,19 +5954,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", + "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", "block_index": 140, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6012,7 +5974,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6027,7 +5989,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172770, + "block_time": 1727197714, "asset_info": { "divisible": true, "asset_longname": null, @@ -6049,7 +6011,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (str, required) - The address to return + + address: `bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (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 @@ -6069,19 +6031,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", + "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6089,7 +6051,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6104,7 +6066,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -6118,19 +6080,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", + "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", "block_index": 140, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6138,7 +6100,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6153,7 +6115,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172770, + "block_time": 1727197714, "asset_info": { "divisible": true, "asset_longname": null, @@ -6175,7 +6137,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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` @@ -6196,19 +6158,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", + "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6216,7 +6178,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6231,7 +6193,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -6245,19 +6207,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", + "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", "block_index": 140, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6265,7 +6227,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6280,7 +6242,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172770, + "block_time": 1727197714, "asset_info": { "divisible": true, "asset_longname": null, @@ -6302,7 +6264,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (str, required) - The address to return + + address: `bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (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` @@ -6323,19 +6285,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", + "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6343,7 +6305,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6358,7 +6320,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -6372,19 +6334,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", + "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", "block_index": 140, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6392,7 +6354,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6407,7 +6369,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172770, + "block_time": 1727197714, "asset_info": { "divisible": true, "asset_longname": null, @@ -6429,7 +6391,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu` (str, required) - The address to return + + address: `bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde` (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 @@ -6447,17 +6409,17 @@ Returns the sweeps of an address { "result": [ { - "tx_index": 58, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 59, + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "fee_paid_normalized": "0.00600000" } ], @@ -6471,7 +6433,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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 @@ -6489,15 +6451,15 @@ Returns the issuances of an address { "result": [ { - "tx_index": 46, - "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", + "tx_index": 47, + "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", "msg_index": 0, - "block_index": 159, + "block_index": 160, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -6512,20 +6474,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172872, + "block_time": 1727197808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 45, - "tx_hash": "a5f2456ffc60bddd11a2187be2545ed9673ef35e6a0875df3c290bd24ebc8710", + "tx_index": 46, + "tx_hash": "fd639c3216214bfc566ce6bff85523d1f912ae2ea06663639e0c84c52baf380b", "msg_index": 0, - "block_index": 158, + "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -6540,20 +6502,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727172868, + "block_time": 1727197803, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 44, - "tx_hash": "5e797f98d87c1d82f48855c68cbc2145fa7d10b690e61df3912aa5816a3b0fd0", + "tx_index": 45, + "tx_hash": "417d8004a24a08dbe43e8fa95a96c26e6cef20b05e59a0c4fc594f801d9e4be5", "msg_index": 0, - "block_index": 157, + "block_index": 158, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -6568,20 +6530,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172853, + "block_time": 1727197799, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 43, - "tx_hash": "3049d82ac4929aca6ab12d1284724095e241e923efa6738a54018abaee035899", + "tx_index": 44, + "tx_hash": "a4e645fc06d32b7988f633b99547ea5edd3803374c8cb442482d4f0511c34d93", "msg_index": 0, - "block_index": 156, + "block_index": 157, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -6596,20 +6558,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172849, + "block_time": 1727197795, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 34, - "tx_hash": "b96874fd1a0fdbfc5bb12fb920c61bac293b0b0ae4f4be876b3eae4f2a1bdeb0", + "tx_index": 35, + "tx_hash": "554b0dada3ac6339b552fd88655f0ccc64c43721ddcb47b66aec43240ca19ea3", "msg_index": 0, - "block_index": 147, + "block_index": 148, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -6624,7 +6586,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172810, + "block_time": 1727197757, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -6639,7 +6601,7 @@ Returns the issuances of an address Returns the valid assets of an issuer + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The issuer to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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 @@ -6662,42 +6624,42 @@ Returns the valid assets of an issuer "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 156, - "last_issuance_block_index": 158, + "first_issuance_block_index": 157, + "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1727172849, - "last_issuance_block_time": 1727172868, + "first_issuance_block_time": 1727197795, + "last_issuance_block_time": 1727197803, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset A", - "first_issuance_block_index": 147, - "last_issuance_block_index": 147, + "first_issuance_block_index": 148, + "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1727172810, - "last_issuance_block_time": 1727172810, + "first_issuance_block_time": 1727197757, + "last_issuance_block_time": 1727197757, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 40, @@ -6705,16 +6667,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727172750, - "last_issuance_block_time": 1727172754, + "first_issuance_block_time": 1727197692, + "last_issuance_block_time": 1727197697, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 19, @@ -6722,16 +6684,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727172733, - "last_issuance_block_time": 1727172746, + "first_issuance_block_time": 1727197675, + "last_issuance_block_time": 1727197688, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 0, @@ -6739,8 +6701,8 @@ Returns the valid assets of an issuer "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1727172712, - "last_issuance_block_time": 1727172729, + "first_issuance_block_time": 1727197655, + "last_issuance_block_time": 1727197672, "supply_normalized": "0.00000000" } ], @@ -6754,8 +6716,8 @@ Returns the valid assets of an issuer Returns the transactions of an address + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return - + cursor: `59` (str, optional) - The last transaction index to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + + cursor: `60` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -6772,18 +6734,18 @@ Returns the transactions of an address { "result": [ { - "tx_index": 57, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "block_index": 191, - "block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", - "block_time": 1727173005, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 58, + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "block_index": 192, + "block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", + "block_time": 1727197936, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1", + "utxos_info": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6818,42 +6780,42 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" }, { - "tx_index": 56, - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "block_index": 190, - "block_hash": "02f6700fcf36370ae093a8b30af0f487ddbd03c2c43ad683a4ba98deb4c51323", - "block_time": 1727173001, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 57, + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "block_index": 191, + "block_hash": "0ba357e822a1ad9f1ee40b954ad363862e0d3afdb30fc3a5d88c175a18c38bd7", + "block_time": 1727197921, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4607b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "data": "466ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", "supported": true, - "utxos_info": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17:1", + "utxos_info": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", "status": "valid" } }, "btc_amount_normalized": "0.00000000" }, { - "tx_index": 55, - "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "block_index": 189, - "block_hash": "0fc8aabb62aabd549bddf7c7b53943e2152520c9e1bf3e24ab8aac1977208f47", - "block_time": 1727172996, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 56, + "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "block_index": 190, + "block_hash": "0033c741fc5613728a96e2ae19f264cc8678daa5777b8c77ee8ae758f1fe49e8", + "block_time": 1727197917, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06:1", + "utxos_info": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6888,18 +6850,18 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "block_hash": "4a56fb7af76004d2f0d9e697200b176b68422435a6c64d80053a15e2d76b9bbb", - "block_time": 1727172992, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "block_hash": "5e52af4ac2e545ee9b2f874c6e6b5906d2705730d220f92fdcf1c0660e9b93cb", + "block_time": 1727197914, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380532aac116f3cb07b11be377d648899a80753971d80ae5b876a7593a9bc79de22969203c476ffdfd3db80d429e837a5671380d2470256f79bfb7e09709e7f400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d780d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a580be3be0105284b008bb9cde97ec522d4b83e99694400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444:0", + "utxos_info": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -6907,14 +6869,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -6922,7 +6884,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -6940,18 +6902,18 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" }, { - "tx_index": 49, - "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "block_index": 183, - "block_hash": "04fd73239f17e0cea1b251ec4ee8954da7be64cc416654baa2deddde1a5f7dec", - "block_time": 1727172962, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 50, + "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "block_index": 184, + "block_hash": "4be7779026bad707f1ccc317970e4f35c829ddbb1bbf157bc1a711a8307c9783", + "block_time": 1727197892, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8:1", + "utxos_info": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6986,8 +6948,8 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 47, - "result_count": 23 + "next_cursor": 48, + "result_count": 24 } ``` @@ -6996,7 +6958,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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 @@ -7014,21 +6976,21 @@ Returns the dividends distributed by an address { "result": [ { - "tx_index": 40, - "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", - "block_index": 153, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 41, + "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "block_index": 154, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727172836, + "block_time": 1727197783, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -7053,7 +7015,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7081,10 +7043,10 @@ Returns the orders of an address { "result": [ { - "tx_index": 47, - "tx_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", - "block_index": 182, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 48, + "tx_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "block_index": 183, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7092,14 +7054,14 @@ Returns the orders of an address "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 181, + "expire_index": 182, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727172888, + "block_time": 1727197823, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7124,10 +7086,10 @@ Returns the orders of an address "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 49, - "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "block_index": 186, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 50, + "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "block_index": 187, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7135,14 +7097,14 @@ Returns the orders of an address "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 204, + "expire_index": 205, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727172973, + "block_time": 1727197905, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7167,10 +7129,10 @@ Returns the orders of an address "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 55, - "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "block_index": 190, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 56, + "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "block_index": 191, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7178,14 +7140,14 @@ Returns the orders of an address "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 210, + "expire_index": 211, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727173001, + "block_time": 1727197921, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7210,10 +7172,10 @@ Returns the orders of an address "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "block_index": 191, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 58, + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "block_index": 192, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7221,14 +7183,14 @@ Returns the orders of an address "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 212, + "expire_index": 213, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727173005, + "block_time": 1727197936, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7263,7 +7225,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The source of the fairminter to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7281,10 +7243,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", + "tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7309,13 +7271,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727172750 + "block_time": 1727197692 }, { - "tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", + "tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7340,13 +7302,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727172733 + "block_time": 1727197675 }, { - "tx_hash": "c768c790db646fe20b33e0828c0042c6705ee66248d68fde588e91455ea70222", + "tx_hash": "ed54030f74b75858f08f505f277c85ca7c83e98e45fa2466d05fa442687341c8", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7371,13 +7333,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727172729 + "block_time": 1727197672 }, { - "tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7402,7 +7364,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727172708 + "block_time": 1727197651 } ], "next_cursor": null, @@ -7415,7 +7377,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (str, required) - The address of the mints to return + + address: `bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7433,127 +7395,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "7f69a52eaeb924d936bb756185de09623ce5fc4623732debde3ceb5f2c01dcb1", + "tx_hash": "201f88f9894c716c618457972af68ef54a92b3eeb8876fb18286c0ea68a88c25", "tx_index": 23, "block_index": 136, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "fairminter_tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "fairminter_tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172754, + "block_time": 1727197697, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } }, { - "tx_hash": "720c78644e95b750e5e89458ccba3ac499218259786b4d705dc9c52e45645434", + "tx_hash": "4dd0822867ce57e0debd8e7464ee186fab8ec830972499614e36115f7a28ce96", "tx_index": 21, "block_index": 134, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "fairminter_tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "fairminter_tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172746, + "block_time": 1727197688, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } }, { - "tx_hash": "f2f695801cc23d5fda9c3c04391153803dc91a18c9d7c5ad415a606b0a94299e", + "tx_hash": "8f602bc0c0f1aee82c9ff237dab02cd79e9427a1ef180d934a66f635ab2d157d", "tx_index": 20, "block_index": 133, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "fairminter_tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "fairminter_tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172742, + "block_time": 1727197684, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } }, { - "tx_hash": "6a7d3fe4b60626f6bc00da9990c5bdcfb41decb4b0a8ee2e09bdb23821d767a8", + "tx_hash": "473a44e1aecb813abb8a440fdd471137b378f8ef89de19e541a716f804223923", "tx_index": 19, "block_index": 132, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "fairminter_tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "fairminter_tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172737, + "block_time": 1727197680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } }, { - "tx_hash": "06cc86ee9d16e7b4176cce6b793d383387d5d47b51999ee9b53aea4497473deb", + "tx_hash": "ffc57ac3c2c8b668f8eccc823f0ce3908f1b2a6bfde666240e0ba65ddbc84d28", "tx_index": 15, "block_index": 127, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "fairminter_tx_hash": "c768c790db646fe20b33e0828c0042c6705ee66248d68fde588e91455ea70222", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "fairminter_tx_hash": "ed54030f74b75858f08f505f277c85ca7c83e98e45fa2466d05fa442687341c8", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172716, + "block_time": 1727197660, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } }, { - "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", + "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172700, + "block_time": 1727197643, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } @@ -7569,7 +7531,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (str, required) - The address of the mints to return + + address: `bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (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` @@ -7588,22 +7550,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", + "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172700, + "block_time": 1727197643, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } @@ -7642,8 +7604,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: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address that will make the bet - + feed_address: `bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address that will make the bet + + feed_address: `bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (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) @@ -7711,7 +7673,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: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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) @@ -7767,7 +7729,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7777,9 +7739,9 @@ Composes a transaction to broadcast textual and numerical information to the net "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999983419, - "btc_fee": 16581, - "rawtransaction": "02000000000101af33d0d8f9d98165a3da059f96c1af823cbb4cc220da66af9ca7820fdea70915000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff0200000000000000002b6a292e0958b1a601ea9d60f71d51d49062154b9cc6a43b77217cd07044731ba022e0e6a006dca21d479bc23bb1052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999985819, + "btc_fee": 14181, + "rawtransaction": "020000000001018f56d30d835c642e86f276b990e06e3b9a6abeaf03f93236216af03a30094931000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0200000000000000002b6a29920fa68d26f28458b61863fc5614eb07c65c393dc7709b643e11e7bb532588d0d627ffcc9f3d95beae9bba052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7796,8 +7758,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: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address that will be sending the payment - + order_match_id: `592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f` (str, required) - The ID of the order match to pay for + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address that will be sending the payment + + order_match_id: `272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7` (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) @@ -7849,16 +7811,16 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f" + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7" }, "name": "btcpay", - "data": "434e5452505254590b592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d85808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", + "data": "434e5452505254590b272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", "btc_in": 5000000000, "btc_out": 3000, - "btc_change": 4999975897, - "btc_fee": 21103, - "rawtransaction": "0200000000010163dac5ee4013e42cb89a5ec4ef18cea55496b8d98b3daa3cd931ebaf61e7c52c000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff03b80b0000000000001600145599316be7057562b9146e3d03cc6ea42923b1ad00000000000000004b6a495f939fc66ad4c4b808a244e70c8f9487760b1ab7362a37f7841c56041c3375d1ad367af6939046080bd40f6cc16b8b7c93975712c3ed79e175f3d930e92848dc6c26f0c6c0a77ded45d993052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999978951, + "btc_fee": 18049, + "rawtransaction": "02000000000101f709d5b950e8a3abfe20a997f6eb16352d31de27d0eaa7f7b03c0599d1a3becf000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff03b80b0000000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea900000000000000004b6a49b0b9e5d550a6257597dc4b6fbd5763c168762e8e50735fc6d1cc8a0654192824019b21b84b3bed0613fbf93a4865ef8344cf3ba8cd93ffcbbc6e0e91a031d7e39b16f534b9d9a46b14c79f052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7875,7 +7837,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: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address with the BTC to burn + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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` @@ -7930,7 +7892,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "quantity": 1000, "overburn": false }, @@ -7938,9 +7900,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": 4999983584, - "btc_fee": 15416, - "rawtransaction": "0200000000010174fc5ee9d502fe1b41269a653d8f5dab6622bc7d7c7ec05369d3f052fe5f33a2000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000" + "btc_change": 4999985815, + "btc_fee": 13185, + "rawtransaction": "020000000001016c4dbf5a98070ab47d6161ae7dc07a992458bcf424d9252912d30d03f13e02bb000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000" } } ``` @@ -7950,8 +7912,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: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac` (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) @@ -8003,16 +7965,16 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "offer_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9" + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "offer_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac" }, "name": "cancel", - "data": "434e545250525459461d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", + "data": "434e5452505254594657dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999983419, - "btc_fee": 16581, - "rawtransaction": "02000000000101e4361b0c596d859603d49e99d8632c55d50447899d3984fbe31070c4b200e42e000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff0200000000000000002b6a29a2fe08d4e271b515e930cf3749bfa7e8531426f6b727c59ef8e511af5f690c7bf93ff598a7c21cdff83bb1052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999985819, + "btc_fee": 14181, + "rawtransaction": "02000000000101a87d20b812ea217934f4e78ef1e22058f450bc013226ce5dd87bcaa19e256a5f000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0200000000000000002b6a290746bb7437bb3bd04b5b60d8877b0be5cb5425b6f17071133fd7fc24f562fca5b4ee5a4e802c1d3c959bba052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8029,7 +7991,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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 @@ -8084,7 +8046,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8101,9 +8063,9 @@ Composes a transaction to destroy a quantity of an asset. "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999984036, - "btc_fee": 15964, - "rawtransaction": "0200000000010129b2d6399f693ac888d531fbbc2164a572f5b2eaf3f0018c98a206ca27ecc030000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000226a20f3bae5a23d489e414499b16b6a729f07a42e929f1be203ede83a10049ad80220a4b3052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999986346, + "btc_fee": 13654, + "rawtransaction": "020000000001013794d3e4ed865cbf70a08b52755a1c117c53bdb16c49db5b211889493c322856000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000226a2020f69fb7a307fe410f8f891b14534cb5ac8a8e743c3542ffe7744f253be93180aabc052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8120,7 +8082,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: `bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85` (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) @@ -8181,7 +8143,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", + "source": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8203,9 +8165,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": 4949953351, - "btc_fee": 16649, - "rawtransaction": "02000000000101a9ea80a3ad8fe7e0dea389ed4e802d920cf9a7f5ee1b9dba3aacd3dabdfdfac002000000160014c2219b0461c00c84849c64009a4a3dcad6d47741ffffffff0200000000000000002c6a2abea145d0731b63994ac94646399aff7fb33e31388520dc68e6a97bca58077bd9ea53dcfe69800440d3d6474b0a2701000000160014c2219b0461c00c84849c64009a4a3dcad6d4774102000000000000", + "btc_change": 4949955760, + "btc_fee": 14240, + "rawtransaction": "020000000001010cfd0fef929421661d755664e7f00ba4902a1fa2344282efc44fa3a714e88a920200000016001474c82b3f5125f89d5240f988d013fceee0b57d63ffffffff0200000000000000002c6a2ab51f1be2884f0b894627997a38394933112ac5a45ac07a77e149a9239db1e52ef4310a8e27636b3b4d39b0540a270100000016001474c82b3f5125f89d5240f988d013fceee0b57d6302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8222,7 +8184,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: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (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: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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 @@ -8277,14 +8239,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -8301,9 +8263,9 @@ Composes a transaction to issue a dividend to holders of a given asset. "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999983968, - "btc_fee": 16032, - "rawtransaction": "0200000000010167449216ab4e6619bf0f98e541ebd1a851a05202441fb5f3e56bad445efec8e9000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000236a21eb8e7c4b955a188e89255f343edde246588ea2a3fa296c5fc886c639c8a58698f560b3052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999986287, + "btc_fee": 13713, + "rawtransaction": "020000000001014c168b88c4c3c5e11003fd3a35cb2cc00fbea5bb600b20dcf3820f3a7fcedd0b000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000236a21bd76b78c8f155cb5190523a44a5207a65c40afa8d27957d5fbcac7011467d0c3876fbc052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8320,10 +8282,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: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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` @@ -8384,10 +8346,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "transfer_destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "lock": false, "reset": false, @@ -8398,9 +8360,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": 4999981092, - "btc_fee": 18362, - "rawtransaction": "02000000000101199607f896a2f31801606f5fd7abf71412922759c071ad98481ed0a6c340784a000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff0322020000000000001600145599316be7057562b9146e3d03cc6ea42923b1ad0000000000000000236a21f863b50b8432cad457c32ed600f3d68155964c65b7ff1174207312984a5fcfa96a24a8052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999983749, + "btc_fee": 15705, + "rawtransaction": "0200000000010171538e6094681859ec2f2a5d516d3b2c79ad0c909d3fe89ac2c080b496f94cbe000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0322020000000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea90000000000000000236a2175cc31285956fe1bdb5fae7a84b5153c943354ad6544ef536ccce3a07d027bc2df85b2052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8417,9 +8379,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: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql,bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj,bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (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` @@ -8476,16 +8438,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", 1 ], [ "MYASSETA", - "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", 2 ] ], @@ -8493,12 +8455,12 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e545250525459030002805599316be7057562b9146e3d03cc6ea42923b1ad80532aac116f3cb07b11be377d648899a80753971d8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e545250525459030002807fe57e1fa9d634b73d344e77a53d74837f310ea9808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d78f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, - "btc_change": 19999936609, - "btc_fee": 61391, - "rawtransaction": "02000000000104ccdb1eae0a96b64e00444775d7e7668add22ff3d2f824f54efe88177b8a7d8da000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff7526f54f5b77068cd36a98f8d5ae2a9d8b12930f17a6cb7555a35aefda2ab8e8000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff123e063c7807662d9c0b60b684ee0f381f0707fefb4c5fc00c166e2d0be5b65d000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff5832ead26b4ebe2833817f3b1ff238931ec296f2c5f2be5e969e2d34a82ebf2f000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff03e80300000000000069512103f874fafd07a3d16cd378132e1588914d0c9f7bd914f4c67633bf836e34910eda21025ad7d920a9ebb2956228c2716af4b56be83a74cd43b6a7533e20c27e59e47a412102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053aee80300000000000069512102f774fafd07a3d16cd35b6443e7b16c5d45f87eac7a584993b99c4f0090b82d5c2102eb7a11738347a3fa5e98b160d4c3c80f60a3deca1021badc1c68a712358b56f82102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053ae61d016a8040000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000002000002000002000000000000", + "btc_change": 19999945492, + "btc_fee": 52508, + "rawtransaction": "02000000000104759b202733af314415433b8eeb0144a8980f76d0663e42bafd1add31aada7931000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff5d0396c457f6d5e92b6ac6e0f4aaf390dd56586a8bd569d4f18d223bf1d53311000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff588e6788e1e4f85ba7322f2c42d48525145e97cb36f782fdac05846382c5bc01000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff36659424a3e3c25d1d05344f8b6c24dd8cadf93a35bde932c32ae9e4d627f5b9000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff03e80300000000000069512103265ab5424ded6864ec6280703fd8146d223c23368563f5b4a32314e135b1ef602102cbe4331b305e7fe16281cc7aec6c2ccf3fafa46cbe06e1257c4a4c0337e0d97b210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53aee80300000000000069512103295ab5424ded6864ec41f71dcdcb95321f15f5023e4b5a7163a62995b6cedec92103c54dfb9403e7d48ec62bebdf90d4a1a1df07295354e136aa5e02296f5b8ff5be210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53ae14f316a8040000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8515,7 +8477,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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 @@ -8573,7 +8535,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8590,7 +8552,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -8602,9 +8564,9 @@ Composes a transaction to place an order on the distributed exchange. "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999982734, - "btc_fee": 17266, - "rawtransaction": "020000000001010e6d8cd850f4eaadc7cdee81783eca6693e9f3e83fff2e6afee9d45b3f8d8cfa000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000356a332b3117d5e90fe257c0a5f5203547fd01fe65d953da9c8cd282ae5ea93466f2b9f68d1c61d92d3c7196f0056f71e447fa1f26198eae052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999985233, + "btc_fee": 14767, + "rawtransaction": "0200000000010114aeaf6fda9632c891dad98eb9547fa9726966c2b9b189e9a6199dcce5fd85fb000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000356a33c2e285f0210de7ceff2bf8d0dcb0cc44e2857ad478938c3b87cade72feb5d781a3bcbcb38b607463df2abd1b462f59e55ea2c051b8052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8621,8 +8583,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: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (str, required) - The address that will be receiving the asset + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (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 @@ -8682,8 +8644,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8699,12 +8661,12 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880532aac116f3cb07b11be377d648899a80753971d", + "data": "434e54525052545902000000000000000100000000000003e8808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d7", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999983077, - "btc_fee": 16923, - "rawtransaction": "02000000000101e83a100b7448574562d89c192966d72f92315d9294eebe6c04eb5a0d4ae95a24000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000306a2eacc042d5926ad0fa8e9f92acc6b4d354dbde14c4b114a8239148ce044f2d8777d2707cfa7d3b315d2b7c1cc1fe6ae5af052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999985526, + "btc_fee": 14474, + "rawtransaction": "0200000000010168425b8209dc387a633d2892c5d733042c5f96bb44cfd9af384b8a71ae220ea9000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000306a2e8420b498ca686dbdd4e07a91262ff3c95f8bdb569d9d10e65e5228c5a42036d27432cb6971497668d2bb4eabda0c76b9052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8721,8 +8683,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: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address that will be sending - + destination: `bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address that will be sending + + destination: `bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (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 @@ -8776,18 +8738,18 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480532aac116f3cb07b11be377d648899a80753971d07ffff", + "data": "434e54525052545904808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d707ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999983968, - "btc_fee": 16032, - "rawtransaction": "02000000000101f9d65187386f8dbded15ef13b18f58bea74c65f34d6ce63338214e8e3bbf79d6000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000236a21629b15563737c408657c595345ae6ed93030db8fda271bffb89408e45aa1c0387b60b3052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999986287, + "btc_fee": 13713, + "rawtransaction": "020000000001014800bb74929acebd48b93ebe35151b21a44b51523cb315a2e786ac6c445fd16c000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000236a210055d9cb70cb68be90eba1a75b00f15e9844fe2d396cbef79a453b09ec7706350a6fbc052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8804,8 +8766,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: `bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2` (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` @@ -8858,17 +8820,17 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "quantity": 1000 }, "name": "dispense", "data": "434e5452505254590d00", "btc_in": 4949868000, "btc_out": 1000, - "btc_change": 4949850214, - "btc_fee": 16786, - "rawtransaction": "02000000000101520b2f2fc3321caa95322c7979a6307502ea4808332b326290a07cc816dcfc0402000000160014532aac116f3cb07b11be377d648899a80753971dffffffff03e803000000000000160014d429e837a5671380d2470256f79bfb7e09709e7f00000000000000000c6a0ade90a904cccc5ac72d7c66b8082701000000160014532aac116f3cb07b11be377d648899a80753971d02000000000000", + "btc_change": 4949852643, + "btc_fee": 14357, + "rawtransaction": "0200000000010135ed38f305623dd31dde5516b9a1095cc33b00726e5711cc3d105d2e2a9df5bd020000001600148f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d7ffffffff03e803000000000000160014be3be0105284b008bb9cde97ec522d4b83e9969400000000000000000c6a0a29b024a4c0537e5c399de3c10827010000001600148f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d702000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8885,7 +8847,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address that will be issuing the asset + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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: `` @@ -8970,7 +8932,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -8993,9 +8955,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999983008, - "btc_fee": 16992, - "rawtransaction": "020000000001014d786e5f0a5b51bf4adb3bd3b916e2f701e6a3187789decc113124d60c4d9d74000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000316a2f5c690cfaa2c14b48ee14eaabefc2388a814775ef7336a0b61ee0c3ae0bf93a875c7a25d490cd443326495cb6c862aca0af052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999985467, + "btc_fee": 14533, + "rawtransaction": "02000000000101ee82110473a8641082a4f6b132246728c35a248e9fdc35ea7d00d4221d0093d0000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000316a2f7c9ecc12272a0cda2e36def9fe779d4bb8e0aa5071d30d88d0aa02adcbf4a199e1320401232050a4f78cf2c9b4b2503bb9052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9012,7 +8974,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: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address that will be minting the asset + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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` @@ -9067,13 +9029,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -9083,9 +9045,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": 4999984858, - "btc_fee": 15142, - "rawtransaction": "020000000001015c396740f5887c718e263d3760fb658b943adc75ab8fb5db018685122e4f5434000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000166a14b451f024663bf86f83f2d985f1df34edb43d4934dab6052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999987049, + "btc_fee": 12951, + "rawtransaction": "0200000000010140174ad7390a91d0f9752e27945d580ad6dc6e64f4bddf4f54c147c69608c606000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000166a14de8113840bf65e62d9080c55899510c5695a98db69bf052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9102,10 +9064,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: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address from which the assets are attached + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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: `1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1` (str, optional) - The utxo to attach the assets to + + destination: `6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9158,8 +9120,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9172,12 +9134,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171326b766e7a366c387134366b3977673564633773386e72773573356a3876646467733470716c7c316439623961393935316438323032376361343332633830343363393239653837643766363866363838643036303063616463396132303632376134616664393a317c5843507c31303030", + "data": "434e54525052545964626372743171306c6a6875386166366336747730663566656d363230743573646c6e7a7234666e733563636a7c366563626139633265313735396663336663313437333139383836646364396232386166333164326238346434306332313861323332633936643136356639623a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, - "btc_change": 29999905256, - "btc_fee": 91744, - "rawtransaction": "02000000000106f8218679e74b551d77b8e082747a9ef8766d8768d166f17506d431cf53bae90e000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffffa67567318e89ab8dde23f50c4b33b7a460fe8fcca6c9b2f826f9872bd08bfd73000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffffb489150449da2b610fc751903848a033271c3490e7aba6d057d9e66fe7515aee000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff3df59728427c5fd0fb19c90369cd1d19d859659f1e12f17e807b1e2bc3a6f10c000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffffbb610b5457889662f9c2b57140d693ea81ba99dcd97606875a5d1672a6acd73e000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffffe5394c1b875fc8ee43c265eeb9db212205519ba3a3fcac85151519726303880a000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff04e803000000000000695121031ef305f702a88a3e3ca11a0866662be994b32ea6712721e4156ebe57b304a1ff2103add0c30606601de4e736a90e3933f42f66202d1bb35cceeeb5c0afd48ec877662102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053aee803000000000000695121031ef305f702a88a3e3cfc4d5a702a28a894ef3ba93f227fbf5c6abc0fe94af4fd2103a1d19806116f15a0a865ec036b6fb27d32773d4ea74e9bf3b694a08480c87a6f2102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053aee8030000000000006951210234f305f702a88a3e3ca41e0f2d282be4fe9b08b43a217dec645a883c8a73c642210298b4a031755873969003da3b530b824b02475e2fc32da29284a496b6b7a94eaa2102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053aee83922fc060000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000002000002000002000002000002000000000000", + "btc_change": 29999918531, + "btc_fee": 78469, + "rawtransaction": "020000000001065fe24b79cbd3f100b8b747f4a5932fd5a1295c78514a5893ae491cb67e98ecfe000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff10dbcd66558041d0a5b3075e96132cbffb8427bec9338d3fc0052f03cf0e56d5000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9fffffffff77d6a3a3b1c721a72c507bdd9c42a21501fc39e6a2ee275f8b27d4e59d22a34000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0640e0bdc052378fc75d58b4e3627797e00ccd110e4a8bf212e6e405c0a5852d000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffffd3937b5c9ed9c0afe7250e51046c2c559978cea3d6211aaf2d5d6ec3de4394d9000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0dde6586f071138cd64a219aee58d7c2c26ef09b1726d78448113184f44f7224000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff04e8030000000000006951210207e62a3be617d98553bf02c6445badff80fc1b14edb7b8b1254521e111990b9321034ceae8d3b577a872dff198b06d919e9c70f123f66789b066b2ffec473ab122a7210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53aee8030000000000006951210207e62a3be617d98553e90594011aa5e8d3a3171fa9bbeee4221f2fad50cd0ebb21021db5ef8cbb24fe35dbe6cebe3bdf889c26fc62f23c8be829b6f9b6133fb977b8210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53aee803000000000000695121032de62a3be617d98553ee069c5415adf2e8d32100a9bfe9e71326179566a96dba2102798c8dbe83459806ea82fcdc03ebeca8169f50c304eada1a849a8f255b8841d4210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53aec36d22fc060000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9194,8 +9156,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: `01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800:1` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to detach the assets to + + utxo: `9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8:1` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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 @@ -9249,8 +9211,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800:1", - "destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8:1", + "destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9263,12 +9225,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964303165623165353238306339353962353632623232386430303436386438653062393931356337343531666361623132316533346636393633626131383830303a317c626372743171326b766e7a366c387134366b3977673564633773386e72773573356a3876646467733470716c7c5843507c31303030", + "data": "434e54525052545964396363373963303765386330323530323339383365653637613463366433643666633934666135313864336331353437623537636630373162386339313866383a317c626372743171306c6a6875386166366336747730663566656d363230743573646c6e7a7234666e733563636a7c5843507c31303030", "btc_in": 4949874900, "btc_out": 3000, - "btc_change": 4949842164, - "btc_fee": 29736, - "rawtransaction": "020000000001010088a13b96f6341e12abfc51745c91b9e0d86804d028b262b559c980521eeb010100000016001472e6693bf8a47cff7fa322286a03432d00c03826ffffffff04e80300000000000069512102f0391dd0aaab3ba977ac87a9523cbdc3ddcfd9543c8d9028cfb769863202bd292103b860b59fb41791a856bec4f6412905e9f515968a4778335a0a176ed998f2c58b21032b1dff0d6591da3ff998b1d12adf6162e7716c5ff519896a2fc1053c2aa1c55f53aee80300000000000069512103f0391dd0aaab3ba977ae81a1016deec7d9c5d9546f8e946dcfe12dc06141bdbb2103eb72ebd5b64d91bd5aed9fad0f7701b8f515d187186c270e1b1336d08ba5951721032b1dff0d6591da3ff998b1d12adf6162e7716c5ff519896a2fc1053c2aa1c55f53aee80300000000000069512103da391dd0aaab3ba977afc4ac472fe0dab0beb1186e849521ad825fb450308ff12102800485af8021a9cc6edbf494781034dc9622a2bf761e503b68265ce8fdc1f18b21032b1dff0d6591da3ff998b1d12adf6162e7716c5ff519896a2fc1053c2aa1c55f53aef49808270100000016001472e6693bf8a47cff7fa322286a03432d00c0382602000000000000", + "btc_change": 4949846467, + "btc_fee": 25433, + "rawtransaction": "02000000000101f818c9b871f07cb547153c8d51fa94fcd6d3c6a467ee83390225c0e8079cc79c01000000160014338d7fb117242eb4ef93a7317ac319fb8778a488ffffffff04e80300000000000069512103ef3e3113c1cc0018b532a49727fe7d22641ab2b26693e28460b652ca4cf5d535210282e024724d1fa596f4cecec830ca6c1ad8bf9bb03046310e4f806668507deb742103f413b7debdf8216ec2698972b6a7993790f6ab9b2698a217c89f1074047a301853aee80300000000000069512103ef3e3113c1cc0018b530adc375ab7c226d1cefec3d99e1cd32e7138745b780c621028bbc7b66411df5c4a49c8cd963956d1adce79cba6401674c1ed83f70177eee6e2103f413b7debdf8216ec2698972b6a7993790f6ab9b2698a217c89f1074047a301853aee80300000000000069512103c53e3113c1cc0018b538eec127aa2e3d0c6e87f63493e081508461f374c6b01e2102e7d61313797c93f2c7aaf8ae53f3587cb98aaa885475523f7ab4510a654a88652103f413b7debdf8216ec2698972b6a7993790f6ab9b2698a217c89f1074047a301853aec3a9082701000000160014338d7fb117242eb4ef93a7317ac319fb8778a48802000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9323,59 +9285,59 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 156, - "last_issuance_block_index": 158, + "first_issuance_block_index": 157, + "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1727172849, - "last_issuance_block_time": 1727172868, + "first_issuance_block_time": 1727197795, + "last_issuance_block_time": 1727197803, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", - "owner": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", + "issuer": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", + "owner": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 155, - "last_issuance_block_index": 155, + "first_issuance_block_index": 156, + "last_issuance_block_index": 156, "confirmed": true, - "first_issuance_block_time": 1727172845, - "last_issuance_block_time": 1727172845, + "first_issuance_block_time": 1727197791, + "last_issuance_block_time": 1727197791, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset A", - "first_issuance_block_index": 147, - "last_issuance_block_index": 147, + "first_issuance_block_index": 148, + "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1727172810, - "last_issuance_block_time": 1727172810, + "first_issuance_block_time": 1727197757, + "last_issuance_block_time": 1727197757, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 40, @@ -9383,16 +9345,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727172750, - "last_issuance_block_time": 1727172754, + "first_issuance_block_time": 1727197692, + "last_issuance_block_time": 1727197697, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 19, @@ -9400,8 +9362,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727172733, - "last_issuance_block_time": 1727172746, + "first_issuance_block_time": 1727197675, + "last_issuance_block_time": 1727197688, "supply_normalized": "0.00000019" } ], @@ -9429,8 +9391,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 10000000000, @@ -9438,8 +9400,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1727172696, - "last_issuance_block_time": 1727172708, + "first_issuance_block_time": 1727197638, + "last_issuance_block_time": 1727197651, "supply_normalized": "100.00000000" } } @@ -9470,7 +9432,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9478,14 +9440,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9493,7 +9455,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -9511,7 +9473,7 @@ Returns the balance of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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. @@ -9522,9 +9484,9 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", - "quantity": 82699937176, + "quantity": 82699937196, "utxo": null, "utxo_address": null, "asset_info": { @@ -9572,10 +9534,10 @@ Returns the orders of an asset { "result": [ { - "tx_index": 47, - "tx_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", - "block_index": 182, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 48, + "tx_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "block_index": 183, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9583,14 +9545,14 @@ Returns the orders of an asset "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 181, + "expire_index": 182, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727172888, + "block_time": 1727197823, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9615,10 +9577,10 @@ Returns the orders of an asset "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 49, - "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "block_index": 186, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 50, + "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "block_index": 187, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9626,14 +9588,14 @@ Returns the orders of an asset "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 204, + "expire_index": 205, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727172973, + "block_time": 1727197905, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9658,10 +9620,10 @@ Returns the orders of an asset "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 55, - "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "block_index": 190, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 56, + "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "block_index": 191, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9669,14 +9631,14 @@ Returns the orders of an asset "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 210, + "expire_index": 211, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727173001, + "block_time": 1727197921, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9701,10 +9663,10 @@ Returns the orders of an asset "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "block_index": 191, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 58, + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "block_index": 192, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9712,14 +9674,14 @@ Returns the orders of an asset "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 212, + "expire_index": 213, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727173005, + "block_time": 1727197936, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9744,10 +9706,10 @@ Returns the orders of an asset "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 50, - "tx_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "block_index": 185, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "tx_index": 51, + "tx_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "block_index": 186, + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -9755,14 +9717,14 @@ Returns the orders of an asset "get_quantity": 2000, "get_remaining": 0, "expiration": 21, - "expire_index": 205, + "expire_index": 206, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727172969, + "block_time": 1727197901, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9787,7 +9749,7 @@ Returns the orders of an asset "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 52, + "next_cursor": 53, "result_count": 7 } ``` @@ -9824,27 +9786,27 @@ Returns the orders of an asset { "result": [ { - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "tx0_index": 49, - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 52, - "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx0_index": 50, + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 53, + "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 184, - "tx1_block_index": 186, - "block_index": 186, + "tx0_block_index": 185, + "tx1_block_index": 187, + "block_index": 187, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 206, + "match_expire_index": 207, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727172973, + "block_time": 1727197905, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9864,27 +9826,27 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "tx0_index": 49, - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 50, - "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx0_index": 50, + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 51, + "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 183, - "tx1_block_index": 184, - "block_index": 185, + "tx0_block_index": 184, + "tx1_block_index": 185, + "block_index": 186, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 204, + "match_expire_index": 205, "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727172969, + "block_time": 1727197901, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9904,27 +9866,27 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "tx0_index": 47, - "tx0_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 48, - "tx1_hash": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "tx0_index": 48, + "tx0_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 49, + "tx1_hash": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 160, - "tx1_block_index": 161, - "block_index": 182, + "tx0_block_index": 161, + "tx1_block_index": 162, + "block_index": 183, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 181, + "match_expire_index": 182, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727172888, + "block_time": 1727197823, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10003,21 +9965,21 @@ Returns the credits of an asset { "result": [ { - "block_index": 192, - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 193, + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -10025,20 +9987,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "52ebf33632f8a0fd2efc653028f1a0c05d0372d42cc8cfcc19e529d2dd45e983", + "event": "126a427f976fdfdf94d07c4794ffa1c70fe1efe20825d5a56a7512cdc80d032c", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172708, + "block_time": 1727197651, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -10046,20 +10008,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3", + "event": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172703, + "block_time": 1727197647, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -10067,20 +10029,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", + "event": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172703, + "block_time": 1727197647, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -10092,16 +10054,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3", + "event": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172703, + "block_time": 1727197647, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -10156,17 +10118,17 @@ Returns the debits of an asset { "result": [ { - "block_index": 193, - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 194, + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "tx_index": 59, + "event": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -10177,17 +10139,17 @@ Returns the debits of an asset "quantity_normalized": "0.00000001" }, { - "block_index": 192, - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "block_index": 193, + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -10198,17 +10160,17 @@ Returns the debits of an asset "quantity_normalized": "744.99388000" }, { - "block_index": 192, - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "block_index": 193, + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -10219,17 +10181,17 @@ Returns the debits of an asset "quantity_normalized": "0.00600000" }, { - "block_index": 191, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 192, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "tx_index": 57, + "event": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173005, + "block_time": 1727197936, "asset_info": { "divisible": true, "asset_longname": null, @@ -10240,17 +10202,17 @@ Returns the debits of an asset "quantity_normalized": "0.00001000" }, { - "block_index": 189, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 190, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "tx_index": 55, + "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172996, + "block_time": 1727197917, "asset_info": { "divisible": true, "asset_longname": null, @@ -10289,21 +10251,21 @@ Returns the dividends of an asset { "result": [ { - "tx_index": 40, - "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", - "block_index": 153, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 41, + "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "block_index": 154, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727172836, + "block_time": 1727197783, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -10347,14 +10309,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "52ebf33632f8a0fd2efc653028f1a0c05d0372d42cc8cfcc19e529d2dd45e983", + "tx_hash": "126a427f976fdfdf94d07c4794ffa1c70fe1efe20825d5a56a7512cdc80d032c", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -10369,20 +10331,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727172708, + "block_time": 1727197651, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3", + "tx_hash": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -10397,20 +10359,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727172703, + "block_time": 1727197647, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", + "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -10425,20 +10387,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727172700, + "block_time": 1727197643, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -10453,7 +10415,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1727172696, + "block_time": 1727197638, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10486,11 +10448,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset { "result": [ { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10498,7 +10460,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "divisible": true, "asset_longname": null, @@ -10510,11 +10472,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 53, - "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5", - "block_index": 187, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 54, + "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0", + "block_index": 188, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10522,7 +10484,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172988, + "block_time": 1727197909, "asset_info": { "divisible": true, "asset_longname": null, @@ -10534,11 +10496,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 42, - "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", - "block_index": 155, - "source": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a:0", - "destination": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800:1", + "tx_index": 43, + "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "block_index": 156, + "source": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9:0", + "destination": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10546,7 +10508,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172845, + "block_time": 1727197791, "asset_info": { "divisible": true, "asset_longname": null, @@ -10558,11 +10520,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 41, - "tx_hash": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a", - "block_index": 154, - "source": "9361bfe137766876b61588be29ab0ffbb6e0f926590f3c11daa53bf3b3ab3b30:0", - "destination": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a:0", + "tx_index": 42, + "tx_hash": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9", + "block_index": 155, + "source": "0ab8c6a06380b63fb1c5aa5529b2847ec820017a6b0fbfaebafbbfcbe88236fa:0", + "destination": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10570,7 +10532,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172840, + "block_time": 1727197787, "asset_info": { "divisible": true, "asset_longname": null, @@ -10621,9 +10583,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10632,7 +10594,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10642,7 +10604,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -10658,9 +10620,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "64572d1f3aab186a209cf522c3bc0c4608821658347a92c42b87e902808fc846", + "tx_hash": "d334afca2c925114b90133fa7b9b4d09721e2afe7f50f39c525c05e459d6f6f4", "block_index": 142, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10669,7 +10631,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "origin": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10679,7 +10641,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727172779, + "block_time": 1727197722, "asset_info": { "divisible": true, "asset_longname": null, @@ -10695,28 +10657,28 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", - "block_index": 144, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_hash": "d8c4d9743c70dc60ca111fcd9049da47ff04b408893eb8a73659046caf40e9d1", + "block_index": 150, + "source": "mmMQv1E9m8quqXXYXh9u1wxK5Yao7BFUfG", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, "satoshirate": 1, - "status": 0, - "give_remaining": 20, + "status": 10, + "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "last_status_tx_hash": "d95ff0a851d0ba16d0c432d33f48fa3a7ee893c96aa3084199fad3dfaa568c01", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 0, - "last_status_tx_source": null, - "close_block_index": null, + "last_status_tx_source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "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": 1727172798, + "block_time": 1727197765, "asset_info": { "divisible": true, "asset_longname": null, @@ -10725,25 +10687,25 @@ Returns the dispensers of an asset "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000020", + "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00000010", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 32, - "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "tx_index": 33, + "tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "last_status_tx_hash": null, - "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10753,7 +10715,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727172806, + "block_time": 1727197754, "asset_info": { "divisible": true, "asset_longname": null, @@ -10778,7 +10740,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - The address to return + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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` @@ -10790,20 +10752,20 @@ Returns the dispenser of an address and an asset ``` { "result": { - "tx_index": 30, - "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", - "block_index": 144, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 26, + "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "block_index": 141, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "give_quantity": 1, - "escrow_quantity": 10, + "escrow_quantity": 10000, "satoshirate": 1, - "status": 0, - "give_remaining": 20, + "status": 10, + "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "dispense_count": 0, + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, "confirmed": true, @@ -10812,7 +10774,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727172798, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -10821,8 +10783,8 @@ Returns the dispenser of an address and an asset "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000020", - "escrow_quantity_normalized": "0.00000010", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" } @@ -10862,7 +10824,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -10870,7 +10832,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -10879,7 +10841,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -10887,7 +10849,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -10896,7 +10858,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -10904,7 +10866,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -10913,7 +10875,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -10948,29 +10910,29 @@ Returns the dispenses of an asset { "result": [ { - "tx_index": 33, + "tx_index": 34, "dispense_index": 0, - "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", - "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", + "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", + "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", "btc_amount": 10000, "confirmed": true, "dispenser": { - "tx_index": 32, - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "tx_index": 33, + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "last_status_tx_hash": null, - "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10985,7 +10947,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727172806, + "block_time": 1727197754, "asset_info": { "divisible": true, "asset_longname": null, @@ -10999,19 +10961,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", + "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11019,7 +10981,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11034,7 +10996,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -11048,19 +11010,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", + "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", "block_index": 140, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11068,7 +11030,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11083,7 +11045,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172770, + "block_time": 1727197714, "asset_info": { "divisible": true, "asset_longname": null, @@ -11126,17 +11088,17 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 0, "description": "Test Locking Description", - "first_issuance_block_index": 157, - "last_issuance_block_index": 157, + "first_issuance_block_index": 158, + "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727172853, - "last_issuance_block_time": 1727172853, + "first_issuance_block_time": 1727197799, + "last_issuance_block_time": 1727197799, "supply_normalized": "0.00000000" } ], @@ -11168,10 +11130,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11196,7 +11158,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727172708 + "block_time": 1727197651 } ], "next_cursor": null, @@ -11227,64 +11189,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "52ebf33632f8a0fd2efc653028f1a0c05d0372d42cc8cfcc19e529d2dd45e983", + "tx_hash": "126a427f976fdfdf94d07c4794ffa1c70fe1efe20825d5a56a7512cdc80d032c", "tx_index": 13, "block_index": 125, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", - "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172708, + "block_time": 1727197651, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } }, { - "tx_hash": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3", + "tx_hash": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e", "tx_index": 12, "block_index": 124, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", - "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172703, + "block_time": 1727197647, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } }, { - "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", + "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172700, + "block_time": 1727197643, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } @@ -11300,7 +11262,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz` (str, required) - The address of the mints to return + + address: `bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (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` @@ -11319,22 +11281,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", + "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172700, + "block_time": 1727197643, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } @@ -11379,10 +11341,10 @@ Returns all the orders { "result": [ { - "tx_index": 47, - "tx_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", - "block_index": 182, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 48, + "tx_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "block_index": 183, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11390,14 +11352,14 @@ Returns all the orders "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 181, + "expire_index": 182, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727172888, + "block_time": 1727197823, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11422,10 +11384,10 @@ Returns all the orders "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 50, - "tx_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "block_index": 185, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "tx_index": 51, + "tx_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "block_index": 186, + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11433,14 +11395,14 @@ Returns all the orders "get_quantity": 2000, "get_remaining": 0, "expiration": 21, - "expire_index": 205, + "expire_index": 206, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727172969, + "block_time": 1727197901, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11465,10 +11427,10 @@ Returns all the orders "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 49, - "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "block_index": 186, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 50, + "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "block_index": 187, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11476,14 +11438,14 @@ Returns all the orders "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 204, + "expire_index": 205, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727172973, + "block_time": 1727197905, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11508,10 +11470,10 @@ Returns all the orders "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 52, - "tx_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "block_index": 186, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "tx_index": 53, + "tx_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "block_index": 187, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11519,14 +11481,14 @@ Returns all the orders "get_quantity": 3000, "get_remaining": 0, "expiration": 21, - "expire_index": 207, + "expire_index": 208, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727172973, + "block_time": 1727197905, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11551,10 +11513,10 @@ Returns all the orders "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 55, - "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "block_index": 190, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 56, + "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "block_index": 191, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11562,14 +11524,14 @@ Returns all the orders "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 210, + "expire_index": 211, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727173001, + "block_time": 1727197921, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11594,7 +11556,7 @@ Returns all the orders "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 57, + "next_cursor": 58, "result_count": 7 } ``` @@ -11604,7 +11566,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9` (str, required) - The hash of the transaction that created the order + + order_hash: `57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac` (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. @@ -11615,10 +11577,10 @@ Returns the information of an order ``` { "result": { - "tx_index": 57, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "block_index": 191, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 58, + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "block_index": 192, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11626,14 +11588,14 @@ Returns the information of an order "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 212, + "expire_index": 213, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727173005, + "block_time": 1727197936, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11665,7 +11627,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8` (str, required) - The hash of the transaction that created the order + + order_hash: `272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9` (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 @@ -11692,27 +11654,27 @@ Returns the order matches of an order { "result": [ { - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "tx0_index": 49, - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 52, - "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx0_index": 50, + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 53, + "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 184, - "tx1_block_index": 186, - "block_index": 186, + "tx0_block_index": 185, + "tx1_block_index": 187, + "block_index": 187, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 206, + "match_expire_index": 207, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727172973, + "block_time": 1727197905, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11732,27 +11694,27 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "tx0_index": 49, - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 50, - "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx0_index": 50, + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 51, + "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 183, - "tx1_block_index": 184, - "block_index": 185, + "tx0_block_index": 184, + "tx1_block_index": 185, + "block_index": 186, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 204, + "match_expire_index": 205, "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727172969, + "block_time": 1727197901, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11782,7 +11744,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8` (str, required) - The hash of the transaction that created the order + + order_hash: `272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9` (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 @@ -11800,16 +11762,16 @@ Returns the BTC pays of an order { "result": [ { - "tx_index": 51, - "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", - "block_index": 185, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 52, + "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "block_index": 186, + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "btc_amount": 2000, - "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", "status": "valid", "confirmed": true, - "block_time": 1727172969, + "block_time": 1727197901, "btc_amount_normalized": "0.00002000" } ], @@ -11852,10 +11814,10 @@ Returns the orders to exchange two assets { "result": [ { - "tx_index": 50, - "tx_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "block_index": 185, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "tx_index": 51, + "tx_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "block_index": 186, + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11863,7 +11825,7 @@ Returns the orders to exchange two assets "get_quantity": 2000, "get_remaining": 0, "expiration": 21, - "expire_index": 205, + "expire_index": 206, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -11873,7 +11835,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727172969, + "block_time": 1727197901, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11898,10 +11860,10 @@ Returns the orders to exchange two assets "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 52, - "tx_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "block_index": 186, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "tx_index": 53, + "tx_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "block_index": 187, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11909,7 +11871,7 @@ Returns the orders to exchange two assets "get_quantity": 3000, "get_remaining": 0, "expiration": 21, - "expire_index": 207, + "expire_index": 208, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -11919,7 +11881,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727172973, + "block_time": 1727197905, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11944,10 +11906,10 @@ Returns the orders to exchange two assets "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 47, - "tx_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", - "block_index": 182, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 48, + "tx_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "block_index": 183, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11955,7 +11917,7 @@ Returns the orders to exchange two assets "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 181, + "expire_index": 182, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -11965,7 +11927,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727172888, + "block_time": 1727197823, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11990,10 +11952,10 @@ Returns the orders to exchange two assets "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 49, - "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "block_index": 186, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 50, + "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "block_index": 187, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12001,7 +11963,7 @@ Returns the orders to exchange two assets "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 204, + "expire_index": 205, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12011,7 +11973,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727172973, + "block_time": 1727197905, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12036,10 +11998,10 @@ Returns the orders to exchange two assets "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 55, - "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "block_index": 190, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 56, + "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "block_index": 191, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12047,7 +12009,7 @@ Returns the orders to exchange two assets "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 210, + "expire_index": 211, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12057,7 +12019,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727173001, + "block_time": 1727197921, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12082,7 +12044,7 @@ Returns the orders to exchange two assets "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 57, + "next_cursor": 58, "result_count": 7 } ``` @@ -12120,30 +12082,30 @@ Returns the orders to exchange two assets { "result": [ { - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "tx0_index": 49, - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 52, - "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx0_index": 50, + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 53, + "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 184, - "tx1_block_index": 186, - "block_index": 186, + "tx0_block_index": 185, + "tx1_block_index": 187, + "block_index": 187, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 206, + "match_expire_index": 207, "fee_paid": 0, "status": "pending", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727172973, + "block_time": 1727197905, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12163,30 +12125,30 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "tx0_index": 49, - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 50, - "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx0_index": 50, + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 51, + "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 183, - "tx1_block_index": 184, - "block_index": 185, + "tx0_block_index": 184, + "tx1_block_index": 185, + "block_index": 186, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 204, + "match_expire_index": 205, "fee_paid": 0, "status": "completed", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727172969, + "block_time": 1727197901, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12206,30 +12168,30 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "tx0_index": 47, - "tx0_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 48, - "tx1_hash": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "tx0_index": 48, + "tx0_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 49, + "tx1_hash": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 160, - "tx1_block_index": 161, - "block_index": 182, + "tx0_block_index": 161, + "tx1_block_index": 162, + "block_index": 183, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 181, + "match_expire_index": 182, "fee_paid": 0, "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727172888, + "block_time": 1727197823, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12287,27 +12249,27 @@ Returns all the order matches { "result": [ { - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "tx0_index": 49, - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 52, - "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx0_index": 50, + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 53, + "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 184, - "tx1_block_index": 186, - "block_index": 186, + "tx0_block_index": 185, + "tx1_block_index": 187, + "block_index": 187, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 206, + "match_expire_index": 207, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727172973, + "block_time": 1727197905, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12327,27 +12289,27 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "tx0_index": 49, - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 50, - "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx0_index": 50, + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 51, + "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 183, - "tx1_block_index": 184, - "block_index": 185, + "tx0_block_index": 184, + "tx1_block_index": 185, + "block_index": 186, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 204, + "match_expire_index": 205, "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727172969, + "block_time": 1727197901, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12367,27 +12329,27 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "tx0_index": 47, - "tx0_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 48, - "tx1_hash": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "tx0_index": 48, + "tx0_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 49, + "tx1_hash": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 160, - "tx1_block_index": 161, - "block_index": 182, + "tx0_block_index": 161, + "tx1_block_index": 162, + "block_index": 183, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 181, + "match_expire_index": 182, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727172888, + "block_time": 1727197823, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12555,66 +12517,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "fb670497b1b7bdfefa37ae903873231799070c083dad68feaeffa589cb749da7", + "tx_hash": "4425334c064a07609b1049b0e61f4368bf0e83b7743d8b0dfa6c08c631ca5015", "block_index": 121, - "source": "bcrt1qx8nq65mcz45h8s0zdjjssw5cx8ln5utgc6xt67", + "source": "bcrt1qyxerv7nywhqduhyezl3s8kpvw9ts8svpuu3vka", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1727172691, + "block_time": 1727197635, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "dd707604e4b68bb969dca8e244f8ff68a47b502fdeb7da2710543f49a39020a5", + "tx_hash": "0d22da1045dfdc843155acafa62e3d459f3d426c0b6dd63a90dc79bd6a834c4f", "block_index": 120, - "source": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", + "source": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1727172687, + "block_time": 1727197631, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "976cc1e602b6d8c62d548685b818ad775b6cef7eaba1f5acec676cc45cef5e1b", + "tx_hash": "cd354d7390652af33bc7bd4151f568ae0610b7bf757cbdb17758a169a909b1ab", "block_index": 119, - "source": "bcrt1qg4j653h8yfns3eql8vzs5lc64xf58d9uxma9az", + "source": "bcrt1qxv2xktsndh0qf7kxa3pkw4dcvkfa9vrq58367j", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1727172683, + "block_time": 1727197626, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "6f640affad7ea7f23de9aa778e7fa582511a03fed9628109b81b4e64eea8fb31", + "tx_hash": "a5c4ab8dcae81a685b55251b11ac83df108bc970b09e7e3ec3d0a5683c9c2c47", "block_index": 118, - "source": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", + "source": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1727172679, + "block_time": 1727197622, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "49b961c62ebdd86c0a144932cd6e248072b3d12b607a1d7f43af6721e7a0240b", + "tx_hash": "268304583613b628ceaac31f5f0d4b3ccc6557fa2c7eef037287e902c9f6e05f", "block_index": 117, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1727172675, + "block_time": 1727197618, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12658,19 +12620,19 @@ Returns all dispensers { "result": [ { - "tx_index": 32, - "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "tx_index": 33, + "tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "last_status_tx_hash": null, - "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -12680,7 +12642,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727172806, + "block_time": 1727197754, "asset_info": { "divisible": true, "asset_longname": null, @@ -12696,28 +12658,28 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", - "block_index": 144, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_hash": "d8c4d9743c70dc60ca111fcd9049da47ff04b408893eb8a73659046caf40e9d1", + "block_index": 150, + "source": "mmMQv1E9m8quqXXYXh9u1wxK5Yao7BFUfG", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, "satoshirate": 1, - "status": 0, - "give_remaining": 20, + "status": 10, + "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "last_status_tx_hash": "d95ff0a851d0ba16d0c432d33f48fa3a7ee893c96aa3084199fad3dfaa568c01", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 0, - "last_status_tx_source": null, - "close_block_index": null, + "last_status_tx_source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "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": 1727172798, + "block_time": 1727197765, "asset_info": { "divisible": true, "asset_longname": null, @@ -12726,16 +12688,16 @@ Returns all dispensers "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000020", + "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00000010", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, { "tx_index": 29, - "tx_hash": "64572d1f3aab186a209cf522c3bc0c4608821658347a92c42b87e902808fc846", + "tx_hash": "d334afca2c925114b90133fa7b9b4d09721e2afe7f50f39c525c05e459d6f6f4", "block_index": 142, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12744,7 +12706,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "origin": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -12754,7 +12716,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727172779, + "block_time": 1727197722, "asset_info": { "divisible": true, "asset_longname": null, @@ -12770,9 +12732,9 @@ Returns all dispensers }, { "tx_index": 26, - "tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12781,7 +12743,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12791,7 +12753,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -12816,7 +12778,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e` (str, required) - The hash of the dispenser to return + + dispenser_hash: `8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c` (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. @@ -12828,9 +12790,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12839,7 +12801,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12849,7 +12811,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -12871,7 +12833,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e` (str, required) - The hash of the dispenser to return + + dispenser_hash: `8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c` (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 @@ -12891,19 +12853,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", + "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12911,7 +12873,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12926,7 +12888,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -12940,19 +12902,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", + "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", "block_index": 140, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12960,7 +12922,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12975,7 +12937,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172770, + "block_time": 1727197714, "asset_info": { "divisible": true, "asset_longname": null, @@ -13016,21 +12978,21 @@ Returns all the dividends { "result": [ { - "tx_index": 40, - "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", - "block_index": 153, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 41, + "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "block_index": 154, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727172836, + "block_time": 1727197783, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -13055,7 +13017,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609` (str, required) - The hash of the dividend to return + + dividend_hash: `87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f` (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. @@ -13066,21 +13028,21 @@ Returns a dividend by its hash ``` { "result": { - "tx_index": 40, - "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", - "block_index": 153, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 41, + "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "block_index": 154, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727172836, + "block_time": 1727197783, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -13102,7 +13064,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f` (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 @@ -13120,17 +13082,17 @@ Returns a dividend distribution by its hash { "result": [ { - "block_index": 153, + "block_index": 154, "address": null, "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", - "tx_index": 40, - "utxo": "9361bfe137766876b61588be29ab0ffbb6e0f926590f3c11daa53bf3b3ab3b30:0", - "utxo_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "event": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "tx_index": 41, + "utxo": "0ab8c6a06380b63fb1c5aa5529b2847ec820017a6b0fbfaebafbbfcbe88236fa:0", + "utxo_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "confirmed": true, - "block_time": 1727172836, + "block_time": 1727197783, "asset_info": { "divisible": true, "asset_longname": null, @@ -13141,17 +13103,17 @@ Returns a dividend distribution by its hash "quantity_normalized": "15.00000000" }, { - "block_index": 153, - "address": "bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u", + "block_index": 154, + "address": "bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", - "tx_index": 40, + "event": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172836, + "block_time": 1727197783, "asset_info": { "divisible": true, "asset_longname": null, @@ -13176,7 +13138,7 @@ Returns all events + Parameters + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `535` (str, optional) - The last event index to return + + cursor: `542` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -13193,45 +13155,45 @@ Returns all events { "result": [ { - "event_index": 535, + "event_index": 542, "event": "BLOCK_PARSED", "params": { - "block_index": 193, - "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", - "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", + "block_index": 194, + "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", + "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", "transaction_count": 1, - "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", - "block_time": 1727173013 + "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", + "block_time": 1727197944 }, "tx_hash": null, - "block_index": 193, - "block_time": 1727173013 + "block_index": 194, + "block_time": 1727197944 }, { - "event_index": 534, + "event_index": 541, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "tx_index": 59 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_index": 60 }, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_time": 1727173013 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_time": 1727197944 }, { - "event_index": 533, + "event_index": 540, "event": "ASSET_DESTRUCTION", "params": { "asset": "XCP", - "block_index": 193, + "block_index": 194, "quantity": 1, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "status": "valid", "tag": "64657374726f79", - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "tx_index": 59, - "block_time": 1727173013, + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_index": 60, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -13241,24 +13203,24 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_time": 1727173013 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_time": 1727197944 }, { - "event_index": 532, + "event_index": 539, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 193, - "event": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", + "block_index": 194, + "event": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", "quantity": 1, - "tx_index": 59, + "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -13268,25 +13230,25 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_time": 1727173013 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_time": 1727197944 }, { - "event_index": 531, + "event_index": 538, "event": "NEW_TRANSACTION", "params": { - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_index": 193, - "block_time": 1727173013, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_index": 194, + "block_time": 1727197944, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "tx_index": 59, - "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_index": 60, + "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -13306,13 +13268,13 @@ Returns all events }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_time": 1727173013 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_time": 1727197944 } ], - "next_cursor": 530, - "result_count": 536 + "next_cursor": 537, + "result_count": 543 } ``` @@ -13321,7 +13283,7 @@ Returns all events Returns the event of an index + Parameters - + event_index: `535` (int, required) - The index of the event to return + + event_index: `542` (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. @@ -13332,19 +13294,19 @@ Returns the event of an index ``` { "result": { - "event_index": 535, + "event_index": 542, "event": "BLOCK_PARSED", "params": { - "block_index": 193, - "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", - "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", + "block_index": 194, + "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", + "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", "transaction_count": 1, - "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", - "block_time": 1727173013 + "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", + "block_time": 1727197944 }, "tx_hash": null, - "block_index": 193, - "block_time": 1727173013 + "block_index": 194, + "block_time": 1727197944 } } ``` @@ -13376,7 +13338,7 @@ Returns the event counts of all blocks }, { "event": "TRANSACTION_PARSED", - "event_count": 47 + "event_count": 48 }, { "event": "SWEEP", @@ -13402,7 +13364,7 @@ Returns the events filtered by event name + Parameters + event: `CREDIT` (str, required) - The event to return - + cursor: `535` (str, optional) - The last event index to return + + cursor: `542` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -13419,19 +13381,19 @@ Returns the events filtered by event name { "result": [ { - "event_index": 526, + "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -13441,78 +13403,78 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 524, + "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 10, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 522, + "event_index": 529, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "FAIRMINTA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 500000000, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 508, + "event_index": 515, "event": "CREDIT", "params": { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", - "block_index": 190, + "block_index": 191, "calling_function": "cancel order", - "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", "quantity": 1000, - "tx_index": 56, + "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727173001, + "block_time": 1727197921, "asset_info": { "divisible": true, "asset_longname": null, @@ -13522,24 +13484,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "block_index": 190, - "block_time": 1727173001 + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "block_index": 191, + "block_time": 1727197921 }, { - "event_index": 491, + "event_index": 498, "event": "CREDIT", "params": { - "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", - "block_index": 188, + "block_index": 189, "calling_function": "mpma send", - "event": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", + "event": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", "quantity": 10, - "tx_index": 54, + "tx_index": 55, "utxo": null, "utxo_address": null, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "divisible": true, "asset_longname": null, @@ -13549,13 +13511,13 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "block_time": 1727172992 + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "block_time": 1727197914 } ], - "next_cursor": 490, - "result_count": 67 + "next_cursor": 497, + "result_count": 68 } ``` @@ -13576,7 +13538,7 @@ Returns the number of events { "result": { "event": "CREDIT", - "event_count": 67 + "event_count": 68 } } ``` @@ -13605,29 +13567,29 @@ Returns all the dispenses { "result": [ { - "tx_index": 33, + "tx_index": 34, "dispense_index": 0, - "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", - "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", + "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", + "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", "btc_amount": 10000, "confirmed": true, "dispenser": { - "tx_index": 32, - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "tx_index": 33, + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "last_status_tx_hash": null, - "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13642,7 +13604,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727172806, + "block_time": 1727197754, "asset_info": { "divisible": true, "asset_longname": null, @@ -13656,19 +13618,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", + "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13676,7 +13638,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13691,7 +13653,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -13705,19 +13667,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", + "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", "block_index": 140, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13725,7 +13687,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13740,7 +13702,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172770, + "block_time": 1727197714, "asset_info": { "divisible": true, "asset_longname": null, @@ -13781,11 +13743,11 @@ Returns all the sends include Enhanced and MPMA sends { "result": [ { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -13793,7 +13755,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "divisible": true, "asset_longname": null, @@ -13805,11 +13767,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13817,11 +13779,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -13829,11 +13791,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13841,11 +13803,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -13853,11 +13815,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 53, - "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5", - "block_index": 187, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 54, + "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0", + "block_index": 188, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -13865,7 +13827,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172988, + "block_time": 1727197909, "asset_info": { "divisible": true, "asset_longname": null, @@ -13877,11 +13839,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 42, - "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", - "block_index": 155, - "source": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a:0", - "destination": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800:1", + "tx_index": 43, + "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "block_index": 156, + "source": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9:0", + "destination": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -13889,7 +13851,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172845, + "block_time": 1727197791, "asset_info": { "divisible": true, "asset_longname": null, @@ -13930,15 +13892,15 @@ Returns all the issuances { "result": [ { - "tx_index": 46, - "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", + "tx_index": 47, + "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", "msg_index": 0, - "block_index": 159, + "block_index": 160, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -13953,20 +13915,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172872, + "block_time": 1727197808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 45, - "tx_hash": "a5f2456ffc60bddd11a2187be2545ed9673ef35e6a0875df3c290bd24ebc8710", + "tx_index": 46, + "tx_hash": "fd639c3216214bfc566ce6bff85523d1f912ae2ea06663639e0c84c52baf380b", "msg_index": 0, - "block_index": 158, + "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -13981,20 +13943,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727172868, + "block_time": 1727197803, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 44, - "tx_hash": "5e797f98d87c1d82f48855c68cbc2145fa7d10b690e61df3912aa5816a3b0fd0", + "tx_index": 45, + "tx_hash": "417d8004a24a08dbe43e8fa95a96c26e6cef20b05e59a0c4fc594f801d9e4be5", "msg_index": 0, - "block_index": 157, + "block_index": 158, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -14009,20 +13971,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172853, + "block_time": 1727197799, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 43, - "tx_hash": "3049d82ac4929aca6ab12d1284724095e241e923efa6738a54018abaee035899", + "tx_index": 44, + "tx_hash": "a4e645fc06d32b7988f633b99547ea5edd3803374c8cb442482d4f0511c34d93", "msg_index": 0, - "block_index": 156, + "block_index": 157, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -14037,20 +13999,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172849, + "block_time": 1727197795, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 42, - "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", + "tx_index": 43, + "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", "msg_index": 0, - "block_index": 155, + "block_index": 156, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", - "issuer": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", + "source": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", + "issuer": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", "transfer": false, "callable": false, "call_date": 0, @@ -14065,7 +14027,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172845, + "block_time": 1727197791, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -14080,7 +14042,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79` (str, required) - The hash of the transaction to return + + tx_hash: `47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f` (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. @@ -14091,15 +14053,15 @@ Returns the issuances of a block ``` { "result": { - "tx_index": 46, - "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", + "tx_index": 47, + "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", "msg_index": 0, - "block_index": 159, + "block_index": 160, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -14114,7 +14076,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172872, + "block_time": 1727197808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14145,17 +14107,17 @@ Returns all sweeps { "result": [ { - "tx_index": 58, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 59, + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "fee_paid_normalized": "0.00600000" } ], @@ -14169,7 +14131,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5` (str, required) - The hash of the transaction to return + + tx_hash: `e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e` (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. @@ -14181,17 +14143,17 @@ Returns the sweeps of a transaction { "result": [ { - "tx_index": 58, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 59, + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "fee_paid_normalized": "0.00600000" } ], @@ -14225,9 +14187,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f", + "tx_hash": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a", "block_index": 138, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14235,14 +14197,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727172762, + "block_time": 1727197705, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "2dc115c4e276c363bdb2380e969b9707cf2c501926261d057ce4279b372ab4d5", + "tx_hash": "c1af0d1895e7e32748751e45ad78af2d4b67c387c3ed9683a08452e211a39e38", "block_index": 137, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14250,7 +14212,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727172759, + "block_time": 1727197701, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14264,7 +14226,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f` (str, required) - The hash of the transaction to return + + tx_hash: `0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a` (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. @@ -14276,9 +14238,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f", + "tx_hash": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a", "block_index": 138, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14286,7 +14248,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727172762, + "block_time": 1727197705, "fee_fraction_int_normalized": "0.00000000" } } @@ -14316,10 +14278,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", + "tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14344,13 +14306,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727172750 + "block_time": 1727197692 }, { - "tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", + "tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14375,13 +14337,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727172733 + "block_time": 1727197675 }, { - "tx_hash": "c768c790db646fe20b33e0828c0042c6705ee66248d68fde588e91455ea70222", + "tx_hash": "ed54030f74b75858f08f505f277c85ca7c83e98e45fa2466d05fa442687341c8", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14406,13 +14368,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727172729 + "block_time": 1727197672 }, { - "tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14437,7 +14399,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727172708 + "block_time": 1727197651 } ], "next_cursor": null, @@ -14480,7 +14442,7 @@ Returns the mints by fairminter Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e,bcrt1qg4j653h8yfns3eql8vzs5lc64xf58d9uxma9az` (str, required) - The addresses to search for + + addresses: `bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85,bcrt1qxv2xktsndh0qf7kxa3pkw4dcvkfa9vrq58367j` (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. @@ -14495,21 +14457,21 @@ Returns a list of unspent outputs for a list of addresses "result": [ { "vout": 2, - "height": 146, + "height": 147, "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "address": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e" + "txid": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "address": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85" }, { "vout": 2, - "height": 155, + "height": 156, "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", - "address": "bcrt1qg4j653h8yfns3eql8vzs5lc64xf58d9uxma9az" + "txid": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "address": "bcrt1qxv2xktsndh0qf7kxa3pkw4dcvkfa9vrq58367j" } ], "next_cursor": null, @@ -14522,7 +14484,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu` (str, required) - The address to search for + + address: `bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde` (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 @@ -14538,28 +14500,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "2aedfe80e416a241471b340a13f770bc621e74af48504b4329591367c64ade01" + "tx_hash": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18" }, { - "tx_hash": "edd6f686828415f585bd42c3ca4864ff84e1b5c2e75517b94fe17e3639d4da0d" + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" }, { - "tx_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f" + "tx_hash": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e" }, { - "tx_hash": "3bdb824385af75abbfdef877ede3f5683d21db19386acac7124de3685f5a3e65" + "tx_hash": "843d7cbeb9b210125b38b597d2ed41917fb22acd6436c121783609b58b9c537d" }, { - "tx_hash": "21b3e83b0b0df662cf0bd787cf0aa89d24f2ff8a271d6fc2859150e567f2d8af" + "tx_hash": "a1c5d79bf44808c8e24f848b3f4d7a846e2593e2578163675c2fea77878f8595" }, { - "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5" + "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0" }, { - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" + "tx_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7" }, { - "tx_hash": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3" + "tx_hash": "b206c25c0bc100ebc583dc2f65b41a4bfd7733288f93306ac4a8c5ff87f91dfc" } ], "next_cursor": null, @@ -14572,7 +14534,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds` (str, required) - The address to search for. + + address: `bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp` (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. @@ -14585,8 +14547,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 6, - "tx_hash": "ff2e8295fd7ab1a1e12dccdb1e0cb26c7a2c9647fea68820fcb31e775bfb06c9" + "block_index": 3, + "tx_hash": "903cbc8965e6acb6b2ea3ef8ece17abe2c2b64fc1aa3afb5210c6e2c60b3878d" } } ``` @@ -14596,7 +14558,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e` (str, required) - The address to search for + + address: `bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85` (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 @@ -14613,11 +14575,11 @@ Returns a list of unspent outputs for a specific address "result": [ { "vout": 2, - "height": 146, + "height": 147, "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9" + "txid": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c" } ], "next_cursor": null, @@ -14630,7 +14592,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql` (str, required) - Address to get pubkey for. + + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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. @@ -14642,7 +14604,7 @@ Get pubkey for an address. ``` { - "result": "02bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b940" + "result": "0281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f" } ``` @@ -14651,7 +14613,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526` (str, required) - The transaction hash + + tx_hash: `dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d` (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. @@ -14663,7 +14625,7 @@ Get a transaction from the blockchain ``` { - "result": "0200000000010119c00554343b1481534ce0b2c4181d9124c79fd2f81b4016de0bec6bf536ce880300000000ffffffff020000000000000000226a20689b27632757bf127305d82613cfb2a7af5b4764dfd522033f8dc72dcfcea81b680b0a2701000000160014d429e837a5671380d2470256f79bfb7e09709e7f02473044022006b7bd3381e0c96a3555827d1910233f84217ad197a9d1e64a6a3d42b1f1ad7a02202423e2658233424ba4fd5d7776e6a8d2c49d86aecc9d9b053af38c35d94709b00121028f281d89d24d92d61488bbd143cc93dd9c65b12631e2f3e98eab7fbc800e92e600000000" + "result": "020000000001017d16d49bb1c104f0a2f90a3471adefdef5c0e72a32ea7f426661c73c8a665e4e0300000000ffffffff020000000000000000226a20db1122b15c221f4eef3e201c33c1968a3a8b0bdcb78e7419fe31dec159fb8b16680b0a2701000000160014be3be0105284b008bb9cde97ec522d4b83e996940247304402202c38a782cd9d3d68111d7a3a2464e4bcd4863d926543fb78e69d6331f23e463602201bcd55ae851de5cec23db0867d3bd0fbf2f7e1f7f4f35536ce55c2c280779092012102fe9567defb89c4a13984578115e212f8baf547436155a46ddd5d36d93476881500000000" } ``` @@ -14685,7 +14647,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 68517 + "result": 58603 } ``` @@ -14756,27 +14718,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", - "tx_index": 60 + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_index": 61 } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "memo": null, "quantity": 10000, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "status": "valid", - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", - "tx_index": 60, + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_index": 61, "asset_info": { "divisible": true, "asset_longname": null, @@ -14788,19 +14750,19 @@ Returns all mempool events } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "CREDIT", "params": { - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "XCP", - "block_index": 193, + "block_index": 194, "calling_function": "send", - "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "quantity": 10000, - "tx_index": 60, + "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -14812,19 +14774,19 @@ Returns all mempool events } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 193, - "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "block_index": 194, + "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "quantity": 10000, - "tx_index": 60, + "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -14836,27 +14798,27 @@ Returns all mempool events } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727173018.087438, + "block_time": 1727197948.7673035, "btc_amount": 0, - "data": "020000000000000001000000000000271080ae5b876a7593a9bc79de22969203c476ffdfd3db", + "data": "020000000000000001000000000000271080d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a5", "destination": "", "fee": 10000, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", - "tx_index": 60, - "utxos_info": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e:1", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_index": 61, + "utxos_info": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "memo": null, "asset_info": { "divisible": true, @@ -14900,19 +14862,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "CREDIT", "params": { - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "XCP", - "block_index": 193, + "block_index": 194, "calling_function": "send", - "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "quantity": 10000, - "tx_index": 60, + "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -14934,7 +14896,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e` (str, required) - The hash of the transaction to return + + tx_hash: `c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1` (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 @@ -14954,27 +14916,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", - "tx_index": 60 + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_index": 61 } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "memo": null, "quantity": 10000, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "status": "valid", - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", - "tx_index": 60, + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_index": 61, "asset_info": { "divisible": true, "asset_longname": null, @@ -14986,19 +14948,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "CREDIT", "params": { - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "XCP", - "block_index": 193, + "block_index": 194, "calling_function": "send", - "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "quantity": 10000, - "tx_index": 60, + "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -15010,19 +14972,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 193, - "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "block_index": 194, + "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "quantity": 10000, - "tx_index": 60, + "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -15034,27 +14996,27 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727173018.087438, + "block_time": 1727197948.7673035, "btc_amount": 0, - "data": "020000000000000001000000000000271080ae5b876a7593a9bc79de22969203c476ffdfd3db", + "data": "020000000000000001000000000000271080d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a5", "destination": "", "fee": 10000, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", - "tx_index": 60, - "utxos_info": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e:1", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_index": 61, + "utxos_info": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "memo": null, "asset_info": { "divisible": true, diff --git a/counterparty-core/counterpartycore/lib/messages/dispenser.py b/counterparty-core/counterpartycore/lib/messages/dispenser.py index 59ca8593f8..69c4810931 100644 --- a/counterparty-core/counterpartycore/lib/messages/dispenser.py +++ b/counterparty-core/counterpartycore/lib/messages/dispenser.py @@ -708,7 +708,12 @@ def parse(db, tx, message): existing[0]["rowid"], set_data, { - "source": tx["source"], + "source": tx["source"] + if not util.enabled( + "dispenser_origin_permission_extended", + tx["block_index"], + ) + else action_address, "asset": asset, "status": STATUS_OPEN, "tx_hash": existing[0]["tx_hash"], diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index e4545e50cb..5853ebee31 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": 193, - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_time": 1727173013, - "previous_block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", + "block_index": 194, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_time": 1727197944, + "previous_block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", "difficulty": 545259519, - "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", - "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", - "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", + "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", + "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", + "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", "transaction_count": 1, "confirmed": true }, { - "block_index": 192, - "block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", - "block_time": 1727173009, - "previous_block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", + "block_index": 193, + "block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", + "block_time": 1727197940, + "previous_block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", "difficulty": 545259519, - "ledger_hash": "7c5a10c60e0adda273a820ac0f140981f23ec027153fdaf5863e9fbb1950b507", - "txlist_hash": "10113b203d2e9b08f332a14a1a7b1e357fe1b95667c66460e14365341f37e508", - "messages_hash": "469a73b1b8afe332b56deab233991be89b015331b31aa3cc7daa11de356308f7", + "ledger_hash": "8ebf0ff459fa8641d33b886fc35228153c63004c1b6d68a64ff566e9cb4de0e3", + "txlist_hash": "506c4191b8f52510ebd356fd01ac1b9bedff7b578efd0bc5a3bd85b08251a1a8", + "messages_hash": "55b40ca33d6b637a0b2410ab1e90bade3f809597ed4a502535846e0b388bc84b", "transaction_count": 1, "confirmed": true }, { - "block_index": 191, - "block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", - "block_time": 1727173005, - "previous_block_hash": "02f6700fcf36370ae093a8b30af0f487ddbd03c2c43ad683a4ba98deb4c51323", + "block_index": 192, + "block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", + "block_time": 1727197936, + "previous_block_hash": "0ba357e822a1ad9f1ee40b954ad363862e0d3afdb30fc3a5d88c175a18c38bd7", "difficulty": 545259519, - "ledger_hash": "46e56e1c4701cacad891239b4357cdbe904d35306f95f374e48651661bd28119", - "txlist_hash": "74aadb7ca23cc44a9d5530bab8d1037e502d28f47c1bdaa139c4a792ea767333", - "messages_hash": "a9eaf5c9f4f1f092d273b6e208fca477dcbcf9f65e7245e4b371514b7299ebf9", + "ledger_hash": "ed2663e807abed358c370631c393de19d2a31d71fa358bbf242406c52d095df2", + "txlist_hash": "4f8e1381f981afd674cfc8e4809c2409298d7d9c5b7c0a249c1185b179f0bfa3", + "messages_hash": "26277faaf7ebbfead3cfb663fecb912b47ae85e99f0e2711bf04cc195eeffcde", "transaction_count": 1, "confirmed": true }, { - "block_index": 190, - "block_hash": "02f6700fcf36370ae093a8b30af0f487ddbd03c2c43ad683a4ba98deb4c51323", - "block_time": 1727173001, - "previous_block_hash": "0fc8aabb62aabd549bddf7c7b53943e2152520c9e1bf3e24ab8aac1977208f47", + "block_index": 191, + "block_hash": "0ba357e822a1ad9f1ee40b954ad363862e0d3afdb30fc3a5d88c175a18c38bd7", + "block_time": 1727197921, + "previous_block_hash": "0033c741fc5613728a96e2ae19f264cc8678daa5777b8c77ee8ae758f1fe49e8", "difficulty": 545259519, - "ledger_hash": "fd99cd30b4b6ceb23579445adeb2ff01abb843af3232ccf152f83b8da6fc6088", - "txlist_hash": "b85a789a31429c13b3e556a4f0665a31733ea0ca06d5026a81333e5708b27b20", - "messages_hash": "0265d415f94f48d43cd18b77e5033b2d22270632f66d4eda2a07ea4ad26f6371", + "ledger_hash": "155de78e77691fa4852cea37b3db40e304bef521b3f2171fcb32b62a818971c0", + "txlist_hash": "624b1a10e023bf054ec39c1414b51f63aac8f1f5ffffa026d9203d72d86b302e", + "messages_hash": "123f9ccc6393e5dbc04c9b5716b7453477353af2429199386c25d88d41655d2c", "transaction_count": 1, "confirmed": true }, { - "block_index": 189, - "block_hash": "0fc8aabb62aabd549bddf7c7b53943e2152520c9e1bf3e24ab8aac1977208f47", - "block_time": 1727172996, - "previous_block_hash": "4a56fb7af76004d2f0d9e697200b176b68422435a6c64d80053a15e2d76b9bbb", + "block_index": 190, + "block_hash": "0033c741fc5613728a96e2ae19f264cc8678daa5777b8c77ee8ae758f1fe49e8", + "block_time": 1727197917, + "previous_block_hash": "5e52af4ac2e545ee9b2f874c6e6b5906d2705730d220f92fdcf1c0660e9b93cb", "difficulty": 545259519, - "ledger_hash": "8de4e9ba279dcf9d61fe03dd631ac235f92b565f6f5c5b787273ca791ed092a4", - "txlist_hash": "2d26a9f871599f84b034aec8fbe8ec79d1e34902055e7a40c8517899e9b69ca3", - "messages_hash": "071c88ddb360523caf0a6070d8c9955a2749d7afee700bc45d0e7185f8b65d3a", + "ledger_hash": "6b01ff1925c48a6193a47beff2795790910c846d74e2158ba5198c52eced339e", + "txlist_hash": "07bfc2fae7438d22af5ca3ab15d012058a50878d9320712da2476c6904747dde", + "messages_hash": "1f296eb34f29f041f13eac8f6d242af1203389ba36e46aa60938d5cfc6ef5e23", "transaction_count": 1, "confirmed": true } ], - "next_cursor": 188, - "result_count": 93 + "next_cursor": 189, + "result_count": 94 }, "/v2/blocks/": { "result": { - "block_index": 193, - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_time": 1727173013, - "previous_block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", + "block_index": 194, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_time": 1727197944, + "previous_block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", "difficulty": 545259519, - "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", - "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", - "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", + "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", + "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", + "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", "transaction_count": 1, "confirmed": true } }, "/v2/blocks/": { "result": { - "block_index": 193, - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_time": 1727173013, - "previous_block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", + "block_index": 194, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_time": 1727197944, + "previous_block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", "difficulty": 545259519, - "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", - "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", - "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", + "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", + "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", + "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", "transaction_count": 1, "confirmed": true } @@ -96,18 +96,18 @@ "/v2/blocks//transactions": { "result": [ { - "tx_index": 59, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_time": 1727173013, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 60, + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_time": 1727197944, + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", + "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -135,60 +135,60 @@ "/v2/blocks//events": { "result": [ { - "event_index": 529, + "event_index": 536, "event": "BLOCK_PARSED", "params": { - "block_index": 192, - "ledger_hash": "7c5a10c60e0adda273a820ac0f140981f23ec027153fdaf5863e9fbb1950b507", - "messages_hash": "469a73b1b8afe332b56deab233991be89b015331b31aa3cc7daa11de356308f7", + "block_index": 193, + "ledger_hash": "8ebf0ff459fa8641d33b886fc35228153c63004c1b6d68a64ff566e9cb4de0e3", + "messages_hash": "55b40ca33d6b637a0b2410ab1e90bade3f809597ed4a502535846e0b388bc84b", "transaction_count": 1, - "txlist_hash": "10113b203d2e9b08f332a14a1a7b1e357fe1b95667c66460e14365341f37e508", - "block_time": 1727173009 + "txlist_hash": "506c4191b8f52510ebd356fd01ac1b9bedff7b578efd0bc5a3bd85b08251a1a8", + "block_time": 1727197940 }, "tx_hash": null }, { - "event_index": 528, + "event_index": 535, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59 }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" }, { - "event_index": 527, + "event_index": 534, "event": "SWEEP", "params": { - "block_index": 192, - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 193, + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "status": "valid", - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, - "block_time": 1727173009, + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, + "block_time": 1727197940, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" }, { - "event_index": 526, + "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -198,22 +198,22 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" }, { - "event_index": 525, + "event_index": 532, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "XCP", - "block_index": 192, - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "block_index": 193, + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -223,10 +223,10 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" } ], - "next_cursor": 524, + "next_cursor": 531, "result_count": 12 }, "/v2/blocks//events/counts": { @@ -258,19 +258,19 @@ "/v2/blocks//events/": { "result": [ { - "event_index": 526, + "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -280,57 +280,57 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" }, { - "event_index": 524, + "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 10, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" }, { - "event_index": 522, + "event_index": 529, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "FAIRMINTA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 500000000, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" } ], "next_cursor": null, @@ -339,17 +339,17 @@ "/v2/blocks//credits": { "result": [ { - "block_index": 192, - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 193, + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,42 +360,42 @@ "quantity_normalized": "744.99388000" }, { - "block_index": 192, - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 193, + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, { - "block_index": 192, - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 193, + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -408,17 +408,17 @@ "/v2/blocks//debits": { "result": [ { - "block_index": 193, - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 194, + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "tx_index": 59, + "event": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -436,24 +436,24 @@ "result": [ { "type": "order", - "object_id": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "block_index": 182, + "object_id": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "block_index": 183, "confirmed": true, - "block_time": 1727172888 + "block_time": 1727197823 }, { "type": "order", - "object_id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", - "block_index": 182, + "object_id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "block_index": 183, "confirmed": true, - "block_time": 1727172888 + "block_time": 1727197823 }, { "type": "order_match", - "object_id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "block_index": 182, + "object_id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "block_index": 183, "confirmed": true, - "block_time": 1727172888 + "block_time": 1727197823 } ], "next_cursor": null, @@ -462,14 +462,14 @@ "/v2/blocks//cancels": { "result": [ { - "tx_index": 56, - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "block_index": 190, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "tx_index": 57, + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "block_index": 191, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", "status": "valid", "confirmed": true, - "block_time": 1727173001 + "block_time": 1727197921 } ], "next_cursor": null, @@ -478,16 +478,16 @@ "/v2/blocks//destructions": { "result": [ { - "tx_index": 59, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 60, + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -504,15 +504,15 @@ "/v2/blocks//issuances": { "result": [ { - "tx_index": 46, - "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", + "tx_index": 47, + "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", "msg_index": 0, - "block_index": 159, + "block_index": 160, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -527,7 +527,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172872, + "block_time": 1727197808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -538,11 +538,11 @@ "/v2/blocks//sends": { "result": [ { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -550,7 +550,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "divisible": true, "asset_longname": null, @@ -562,11 +562,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -574,11 +574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -586,11 +586,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -598,11 +598,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -616,29 +616,29 @@ "/v2/blocks//dispenses": { "result": [ { - "tx_index": 33, + "tx_index": 34, "dispense_index": 0, - "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", - "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", + "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", + "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", "btc_amount": 10000, "confirmed": true, "dispenser": { - "tx_index": 32, - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "tx_index": 33, + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "last_status_tx_hash": null, - "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -653,7 +653,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727172806, + "block_time": 1727197754, "asset_info": { "divisible": true, "asset_longname": null, @@ -671,17 +671,17 @@ "/v2/blocks//sweeps": { "result": [ { - "tx_index": 58, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 59, + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "fee_paid_normalized": "0.00600000" } ], @@ -691,18 +691,18 @@ "/v2/transactions": { "result": [ { - "tx_index": 59, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_time": 1727173013, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 60, + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_time": 1727197944, + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", + "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -724,24 +724,24 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 58, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20", - "block_time": 1727173009, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "tx_index": 59, + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", + "block_time": 1727197940, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480d429e837a5671380d2470256f79bfb7e09709e7f017377656570206d7920617373657473", + "data": "0480be3be0105284b008bb9cde97ec522d4b83e99694017377656570206d7920617373657473", "supported": true, - "utxos_info": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5:1", + "utxos_info": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "flags": 1, "memo": "sweep my assets" } @@ -749,12 +749,12 @@ "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 57, - "result_count": 60 + "next_cursor": 58, + "result_count": 61 }, "/v2/transactions/info": { "result": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, @@ -765,7 +765,7 @@ "coinbase": false, "vin": [ { - "hash": "737477f765c6c08ac99fe1a9a5f2370d6234a789d06d95e6af11b9b1f2ea022d", + "hash": "acdfc8ed80a83c50a27cdd2f09ccf3945c47ad134e4b2b1c41fa67d5426958a3", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -775,20 +775,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a335dc759e5c2bd07e4533e2597e39bacdc8e5df787d31f3ff513ffd149c3bb44c18977e802847bff14e37a2ec579d6417837f7c0" + "script_pub_key": "6a3340c01f32e5138051a2f1c506acfb548df8a06bf7a1751910bafef1d98b422d6352a91ad9336067b25b29d909a1d242de2582ac" }, { "value": 4999990000, - "script_pub_key": "00145599316be7057562b9146e3d03cc6ea42923b1ad" + "script_pub_key": "00147fe57e1fa9d634b73d344e77a53d74837f310ea9" } ], "vtxinwit": [ - "304402202ff34c46adcf93288c974036e0eb7d4b6ebfc890b5eded0da2177fa4947e181302203f334aed60f6f2326335192f9dfe906a2c4fb66cda9266a6e20cc3bda6fc2e4c01", - "02bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b940" + "304402201e8b0de0d9012512e0b8ad2fe0e384d4e671a610f4289e8c3cb541937f4177db022020ac176092284b07ed1f700a4183ef186172b8ccbfff4f44b93cb4189e07a03e01", + "0281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f" ], "lock_time": 0, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "tx_id": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9" + "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_id": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b" }, "unpacked_data": { "message_type": "order", @@ -825,18 +825,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080ae5b876a7593a9bc79de22969203c476ffdfd3db", + "data": "020000000000000001000000000000271080d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a5", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "303babb3f33ba5da113c0f5926f9e0b6fb0fab29be8815b676687637e1bf6193", + "hash": "fa3682e8cbbffbbaaebf0f6b7a0120c87e84b22955aac5b13fb68063a0c6b80a", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -846,20 +846,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e22e7a1d4fa666ac96161f86a86ec54ea0b3c211b73145a133a00111c728c8ff509252af0e1f8f0c20d7b94a92994" + "script_pub_key": "6a2e7652ca5c019dea838c31a7526be39a0fb1ec044af1e5b36fe45c8b528a8b324cdc6bca3691b9a2d10243786323c5" }, { "value": 4999955000, - "script_pub_key": "0014d429e837a5671380d2470256f79bfb7e09709e7f" + "script_pub_key": "0014be3be0105284b008bb9cde97ec522d4b83e99694" } ], "vtxinwit": [ - "304402203561f9ba0ae46ad26f8daa4aa16c4fc6d8048a02b9eb18086adbd408a6a7fd9102206a9343c49504c18b0b1135b202c28cbee146645af2f653bb4510361c9bb0fd3a01", - "028f281d89d24d92d61488bbd143cc93dd9c65b12631e2f3e98eab7fbc800e92e6" + "304402203022c08ac43105804d47bbf435909c214ce3221d00a256c1b5c2da0a0487a54e02204afe95b5b3516129151270b327dd409f4af9be9b3fe17f7e7b7d790a87be698601", + "02fe9567defb89c4a13984578115e212f8baf547436155a46ddd5d36d934768815" ], "lock_time": 0, - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", - "tx_id": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e" + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_id": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1" }, "unpacked_data": { "message_type": "enhanced_send", @@ -867,7 +867,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "memo": null, "asset_info": { "divisible": true, @@ -893,18 +893,18 @@ }, "/v2/transactions/": { "result": { - "tx_index": 59, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_time": 1727173013, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 60, + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_time": 1727197944, + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", + "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -928,18 +928,18 @@ }, "/v2/transactions/": { "result": { - "tx_index": 59, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_time": 1727173013, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 60, + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_time": 1727197944, + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", + "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -964,51 +964,51 @@ "/v2/transactions//events": { "result": [ { - "event_index": 528, + "event_index": 535, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59 }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 527, + "event_index": 534, "event": "SWEEP", "params": { - "block_index": 192, - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 193, + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "status": "valid", - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, - "block_time": 1727173009, + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, + "block_time": 1727197940, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 526, + "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -1018,24 +1018,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 525, + "event_index": 532, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "XCP", - "block_index": 192, - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "block_index": 193, + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,89 +1045,89 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 524, + "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 10, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 } ], - "next_cursor": 523, + "next_cursor": 530, "result_count": 10 }, "/v2/transactions//events": { "result": [ { - "event_index": 528, + "event_index": 535, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59 }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 527, + "event_index": 534, "event": "SWEEP", "params": { - "block_index": 192, - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 193, + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "status": "valid", - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, - "block_time": 1727173009, + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, + "block_time": 1727197940, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 526, + "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -1137,24 +1137,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 525, + "event_index": 532, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "XCP", - "block_index": 192, - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "block_index": 193, + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -1164,49 +1164,49 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 524, + "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 10, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 } ], - "next_cursor": 523, + "next_cursor": 530, "result_count": 10 }, "/v2/transactions//sends": { "result": [ { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -1214,7 +1214,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "divisible": true, "asset_longname": null, @@ -1226,11 +1226,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1238,11 +1238,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -1250,11 +1250,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1262,11 +1262,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -1280,29 +1280,29 @@ "/v2/transactions//dispenses": { "result": [ { - "tx_index": 33, + "tx_index": 34, "dispense_index": 0, - "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", - "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", + "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", + "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", "btc_amount": 10000, "confirmed": true, "dispenser": { - "tx_index": 32, - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "tx_index": 33, + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "last_status_tx_hash": null, - "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -1317,7 +1317,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727172806, + "block_time": 1727197754, "asset_info": { "divisible": true, "asset_longname": null, @@ -1335,19 +1335,19 @@ "/v2/transactions//events/": { "result": [ { - "event_index": 526, + "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -1357,63 +1357,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 524, + "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 10, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 522, + "event_index": 529, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "FAIRMINTA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 500000000, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 } ], "next_cursor": null, @@ -1422,19 +1422,19 @@ "/v2/transactions//events/": { "result": [ { - "event_index": 526, + "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -1444,63 +1444,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 524, + "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 10, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 522, + "event_index": 529, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "FAIRMINTA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 500000000, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 } ], "next_cursor": null, @@ -1513,7 +1513,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1523,7 +1523,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -1534,7 +1534,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1544,7 +1544,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -1555,7 +1555,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1565,7 +1565,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -1576,7 +1576,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1586,7 +1586,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -1597,7 +1597,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1607,7 +1607,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -1620,18 +1620,18 @@ "/v2/addresses/transactions": { "result": [ { - "tx_index": 57, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "block_index": 191, - "block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", - "block_time": 1727173005, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 58, + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "block_index": 192, + "block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", + "block_time": 1727197936, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1", + "utxos_info": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1666,42 +1666,42 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 56, - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "block_index": 190, - "block_hash": "02f6700fcf36370ae093a8b30af0f487ddbd03c2c43ad683a4ba98deb4c51323", - "block_time": 1727173001, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 57, + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "block_index": 191, + "block_hash": "0ba357e822a1ad9f1ee40b954ad363862e0d3afdb30fc3a5d88c175a18c38bd7", + "block_time": 1727197921, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4607b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "data": "466ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", "supported": true, - "utxos_info": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17:1", + "utxos_info": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", "status": "valid" } }, "btc_amount_normalized": "0.00000000" }, { - "tx_index": 55, - "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "block_index": 189, - "block_hash": "0fc8aabb62aabd549bddf7c7b53943e2152520c9e1bf3e24ab8aac1977208f47", - "block_time": 1727172996, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 56, + "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "block_index": 190, + "block_hash": "0033c741fc5613728a96e2ae19f264cc8678daa5777b8c77ee8ae758f1fe49e8", + "block_time": 1727197917, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06:1", + "utxos_info": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1736,18 +1736,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "block_hash": "4a56fb7af76004d2f0d9e697200b176b68422435a6c64d80053a15e2d76b9bbb", - "block_time": 1727172992, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "block_hash": "5e52af4ac2e545ee9b2f874c6e6b5906d2705730d220f92fdcf1c0660e9b93cb", + "block_time": 1727197914, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380532aac116f3cb07b11be377d648899a80753971d80ae5b876a7593a9bc79de22969203c476ffdfd3db80d429e837a5671380d2470256f79bfb7e09709e7f400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d780d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a580be3be0105284b008bb9cde97ec522d4b83e99694400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444:0", + "utxos_info": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1755,14 +1755,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -1770,7 +1770,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1788,44 +1788,44 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 51, - "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", - "block_index": 185, - "block_hash": "1d6980459044b891166b8b08040dbfaf7f1e6bf6b4eabe8b4847304731354204", - "block_time": 1727172969, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 52, + "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "block_index": 186, + "block_hash": "23715f413c2b5dfaacd98fbc7d09da3269edd75cb02570c248e4fb573680aa6f", + "block_time": 1727197901, + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "btc_amount": 2000, "fee": 10000, - "data": "0b592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "data": "0b272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", "supported": true, - "utxos_info": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52:0", + "utxos_info": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", "status": "valid" } }, "btc_amount_normalized": "0.00002000" } ], - "next_cursor": 50, - "result_count": 35 + "next_cursor": 51, + "result_count": 36 }, "/v2/addresses/events": { "result": [ { - "event_index": 515, + "event_index": 522, "event": "OPEN_ORDER", "params": { - "block_index": 191, + "block_index": 192, "expiration": 21, - "expire_index": 212, + "expire_index": 213, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -1836,11 +1836,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "status": "open", - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "tx_index": 57, - "block_time": 1727173005, + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_index": 58, + "block_time": 1727197936, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1864,24 +1864,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "block_index": 191, - "block_time": 1727173005 + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "block_index": 192, + "block_time": 1727197936 }, { - "event_index": 514, + "event_index": 521, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", - "block_index": 191, - "event": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", + "block_index": 192, + "event": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", "quantity": 1000, - "tx_index": 57, + "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727173005, + "block_time": 1727197936, "asset_info": { "divisible": true, "asset_longname": null, @@ -1891,25 +1891,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "block_index": 191, - "block_time": 1727173005 + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "block_index": 192, + "block_time": 1727197936 }, { - "event_index": 513, + "event_index": 520, "event": "NEW_TRANSACTION", "params": { - "block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", - "block_index": 191, - "block_time": 1727173005, + "block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", + "block_index": 192, + "block_time": 1727197936, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "tx_index": 57, - "utxos_info": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_index": 58, + "utxos_info": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1941,40 +1941,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "block_index": 191, - "block_time": 1727173005 + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "block_index": 192, + "block_time": 1727197936 }, { - "event_index": 509, + "event_index": 516, "event": "CANCEL_ORDER", "params": { - "block_index": 190, - "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 191, + "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "status": "valid", - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "tx_index": 56, - "block_time": 1727173001 + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_index": 57, + "block_time": 1727197921 }, - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "block_index": 190, - "block_time": 1727173001 + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "block_index": 191, + "block_time": 1727197921 }, { - "event_index": 508, + "event_index": 515, "event": "CREDIT", "params": { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", - "block_index": 190, + "block_index": 191, "calling_function": "cancel order", - "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", "quantity": 1000, - "tx_index": 56, + "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727173001, + "block_time": 1727197921, "asset_info": { "divisible": true, "asset_longname": null, @@ -1984,29 +1984,29 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "block_index": 190, - "block_time": 1727173001 + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "block_index": 191, + "block_time": 1727197921 } ], - "next_cursor": 506, - "result_count": 163 + "next_cursor": 513, + "result_count": 165 }, "/v2/addresses/mempool": { "result": [ { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "memo": null, "quantity": 10000, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "status": "valid", - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", - "tx_index": 60, + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_index": 61, "asset_info": { "divisible": true, "asset_longname": null, @@ -2018,19 +2018,19 @@ } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "CREDIT", "params": { - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "XCP", - "block_index": 193, + "block_index": 194, "calling_function": "send", - "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "quantity": 10000, - "tx_index": 60, + "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -2042,19 +2042,19 @@ } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 193, - "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "block_index": 194, + "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "quantity": 10000, - "tx_index": 60, + "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -2066,27 +2066,27 @@ } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727173018.087438, + "block_time": 1727197948.7673035, "btc_amount": 0, - "data": "020000000000000001000000000000271080ae5b876a7593a9bc79de22969203c476ffdfd3db", + "data": "020000000000000001000000000000271080d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a5", "destination": "", "fee": 10000, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", - "tx_index": 60, - "utxos_info": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e:1", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_index": 61, + "utxos_info": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "memo": null, "asset_info": { "divisible": true, @@ -2108,7 +2108,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2116,14 +2116,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2131,16 +2131,16 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", - "quantity": 82699937176, + "quantity": 82699937196, "utxo": null, "utxo_address": null, "asset_info": { @@ -2153,7 +2153,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2161,7 +2161,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -2173,9 +2173,9 @@ }, "/v2/addresses/
/balances/": { "result": { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", - "quantity": 82699937176, + "quantity": 82699937196, "utxo": null, "utxo_address": null, "asset_info": { @@ -2191,17 +2191,17 @@ "/v2/addresses/
/credits": { "result": [ { - "block_index": 190, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 191, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "tx_index": 56, + "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173001, + "block_time": 1727197921, "asset_info": { "divisible": true, "asset_longname": null, @@ -2212,17 +2212,17 @@ "quantity_normalized": "0.00001000" }, { - "block_index": 182, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 183, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", + "event": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172888, + "block_time": 1727197823, "asset_info": { "divisible": true, "asset_longname": null, @@ -2233,86 +2233,86 @@ "quantity_normalized": "0.00001000" }, { - "block_index": 159, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 160, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", - "tx_index": 46, + "event": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "tx_index": 47, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172872, + "block_time": 1727197808, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "block_index": 156, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 157, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "3049d82ac4929aca6ab12d1284724095e241e923efa6738a54018abaee035899", - "tx_index": 43, + "event": "a4e645fc06d32b7988f633b99547ea5edd3803374c8cb442482d4f0511c34d93", + "tx_index": 44, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172849, + "block_time": 1727197795, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "100.00000000" }, { - "block_index": 151, + "block_index": 152, "address": null, "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", - "tx_index": 38, - "utxo": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796:1", - "utxo_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "event": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "tx_index": 39, + "utxo": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f:1", + "utxo_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "confirmed": true, - "block_time": 1727172827, + "block_time": 1727197774, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000" } ], - "next_cursor": 42, - "result_count": 14 + "next_cursor": 44, + "result_count": 15 }, "/v2/addresses/
/debits": { "result": [ { - "block_index": 191, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 192, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "tx_index": 57, + "event": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173005, + "block_time": 1727197936, "asset_info": { "divisible": true, "asset_longname": null, @@ -2323,17 +2323,17 @@ "quantity_normalized": "0.00001000" }, { - "block_index": 189, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 190, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "tx_index": 55, + "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172996, + "block_time": 1727197917, "asset_info": { "divisible": true, "asset_longname": null, @@ -2344,17 +2344,17 @@ "quantity_normalized": "0.00001000" }, { - "block_index": 188, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 189, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "tx_index": 54, + "event": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "divisible": true, "asset_longname": null, @@ -2365,38 +2365,38 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 188, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 189, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "tx_index": 54, + "event": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000020" }, { - "block_index": 183, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 184, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx_index": 49, + "event": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx_index": 50, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172962, + "block_time": 1727197892, "asset_info": { "divisible": true, "asset_longname": null, @@ -2419,9 +2419,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "2dc115c4e276c363bdb2380e969b9707cf2c501926261d057ce4279b372ab4d5", + "tx_hash": "c1af0d1895e7e32748751e45ad78af2d4b67c387c3ed9683a08452e211a39e38", "block_index": 137, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2429,7 +2429,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727172759, + "block_time": 1727197701, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2440,14 +2440,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "8fe853c4e1b892ff7e5ad25d4e0262d0c3fc67bec76c41b8bf204d69675165e1", + "tx_hash": "9721c7e67962e05364698fc838185e054fa5bb344c1586873c8e243211fee30a", "block_index": 112, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1727172657, + "block_time": 1727197598, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2458,11 +2458,11 @@ "/v2/addresses/
/sends": { "result": [ { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2470,7 +2470,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "divisible": true, "asset_longname": null, @@ -2482,11 +2482,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2494,11 +2494,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -2506,11 +2506,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2518,11 +2518,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -2530,11 +2530,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 38, - "tx_hash": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", - "block_index": 151, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796:1", + "tx_index": 39, + "tx_hash": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "block_index": 152, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2542,11 +2542,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172827, + "block_time": 1727197774, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -2554,11 +2554,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 35, - "tx_hash": "66763167dcd1976908a582536231a19199ce97450e535a6346c0eb5c1b9d7f57", - "block_index": 148, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "2aedfe80e416a241471b340a13f770bc621e74af48504b4329591367c64ade01:1", + "tx_index": 36, + "tx_hash": "d6e7f9a2b0a750c7151cf12baf036c37393c4156a14410db9ff311c440329ff8", + "block_index": 149, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "b206c25c0bc100ebc583dc2f65b41a4bfd7733288f93306ac4a8c5ff87f91dfc:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2566,11 +2566,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172815, + "block_time": 1727197761, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -2584,11 +2584,11 @@ "/v2/addresses/
/receives": { "result": [ { - "tx_index": 37, - "tx_hash": "88ce36f56bec0bde16401bf8d29fc724911d18c4b2e04c5381143b345405c019", - "block_index": 150, - "source": "21b3e83b0b0df662cf0bd787cf0aa89d24f2ff8a271d6fc2859150e567f2d8af:0", - "destination": "bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u", + "tx_index": 38, + "tx_hash": "4e5e668a3cc76166427fea322ae7c0f5deefad71340af9a2f004c1b19bd4167d", + "block_index": 151, + "source": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18:0", + "destination": "bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2596,11 +2596,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172823, + "block_time": 1727197770, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -2614,11 +2614,11 @@ "/v2/addresses/
/sends/": { "result": [ { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2626,11 +2626,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -2638,11 +2638,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2650,11 +2650,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -2662,11 +2662,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 38, - "tx_hash": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", - "block_index": 151, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796:1", + "tx_index": 39, + "tx_hash": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "block_index": 152, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2674,11 +2674,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172827, + "block_time": 1727197774, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -2686,11 +2686,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 35, - "tx_hash": "66763167dcd1976908a582536231a19199ce97450e535a6346c0eb5c1b9d7f57", - "block_index": 148, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "2aedfe80e416a241471b340a13f770bc621e74af48504b4329591367c64ade01:1", + "tx_index": 36, + "tx_hash": "d6e7f9a2b0a750c7151cf12baf036c37393c4156a14410db9ff311c440329ff8", + "block_index": 149, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "b206c25c0bc100ebc583dc2f65b41a4bfd7733288f93306ac4a8c5ff87f91dfc:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2698,11 +2698,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172815, + "block_time": 1727197761, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -2716,11 +2716,11 @@ "/v2/addresses/
/receives/": { "result": [ { - "tx_index": 37, - "tx_hash": "88ce36f56bec0bde16401bf8d29fc724911d18c4b2e04c5381143b345405c019", - "block_index": 150, - "source": "21b3e83b0b0df662cf0bd787cf0aa89d24f2ff8a271d6fc2859150e567f2d8af:0", - "destination": "bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u", + "tx_index": 38, + "tx_hash": "4e5e668a3cc76166427fea322ae7c0f5deefad71340af9a2f004c1b19bd4167d", + "block_index": 151, + "source": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18:0", + "destination": "bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2728,11 +2728,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172823, + "block_time": 1727197770, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -2747,9 +2747,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2758,7 +2758,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2768,7 +2768,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -2781,64 +2781,27 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 30, - "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", - "block_index": 144, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10, - "satoshirate": 1, - "status": 0, - "give_remaining": 20, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "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": 1727172798, - "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.00000020", - "escrow_quantity_normalized": "0.00000010", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" } ], "next_cursor": null, - "result_count": 2 + "result_count": 1 }, "/v2/addresses/
/dispensers/": { "result": { - "tx_index": 30, - "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", - "block_index": 144, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 26, + "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "block_index": 141, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "give_quantity": 1, - "escrow_quantity": 10, + "escrow_quantity": 10000, "satoshirate": 1, - "status": 0, - "give_remaining": 20, + "status": 10, + "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "dispense_count": 0, + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, "confirmed": true, @@ -2847,7 +2810,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727172798, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -2856,8 +2819,8 @@ "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000020", - "escrow_quantity_normalized": "0.00000010", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" } @@ -2867,19 +2830,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", + "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2887,7 +2850,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2902,7 +2865,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -2916,19 +2879,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", + "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", "block_index": 140, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2936,7 +2899,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2951,7 +2914,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172770, + "block_time": 1727197714, "asset_info": { "divisible": true, "asset_longname": null, @@ -2971,19 +2934,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", + "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2991,7 +2954,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3006,7 +2969,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -3020,19 +2983,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", + "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", "block_index": 140, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3040,7 +3003,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3055,7 +3018,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172770, + "block_time": 1727197714, "asset_info": { "divisible": true, "asset_longname": null, @@ -3075,19 +3038,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", + "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3095,7 +3058,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3110,7 +3073,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -3124,19 +3087,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", + "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", "block_index": 140, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3144,7 +3107,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3159,7 +3122,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172770, + "block_time": 1727197714, "asset_info": { "divisible": true, "asset_longname": null, @@ -3179,19 +3142,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", + "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3199,7 +3162,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3214,7 +3177,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -3228,19 +3191,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", + "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", "block_index": 140, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3248,7 +3211,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3263,7 +3226,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172770, + "block_time": 1727197714, "asset_info": { "divisible": true, "asset_longname": null, @@ -3281,17 +3244,17 @@ "/v2/addresses/
/sweeps": { "result": [ { - "tx_index": 58, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 59, + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "fee_paid_normalized": "0.00600000" } ], @@ -3301,15 +3264,15 @@ "/v2/addresses/
/issuances": { "result": [ { - "tx_index": 46, - "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", + "tx_index": 47, + "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", "msg_index": 0, - "block_index": 159, + "block_index": 160, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -3324,20 +3287,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172872, + "block_time": 1727197808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 45, - "tx_hash": "a5f2456ffc60bddd11a2187be2545ed9673ef35e6a0875df3c290bd24ebc8710", + "tx_index": 46, + "tx_hash": "fd639c3216214bfc566ce6bff85523d1f912ae2ea06663639e0c84c52baf380b", "msg_index": 0, - "block_index": 158, + "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -3352,20 +3315,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727172868, + "block_time": 1727197803, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 44, - "tx_hash": "5e797f98d87c1d82f48855c68cbc2145fa7d10b690e61df3912aa5816a3b0fd0", + "tx_index": 45, + "tx_hash": "417d8004a24a08dbe43e8fa95a96c26e6cef20b05e59a0c4fc594f801d9e4be5", "msg_index": 0, - "block_index": 157, + "block_index": 158, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -3380,20 +3343,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172853, + "block_time": 1727197799, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 43, - "tx_hash": "3049d82ac4929aca6ab12d1284724095e241e923efa6738a54018abaee035899", + "tx_index": 44, + "tx_hash": "a4e645fc06d32b7988f633b99547ea5edd3803374c8cb442482d4f0511c34d93", "msg_index": 0, - "block_index": 156, + "block_index": 157, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -3408,20 +3371,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172849, + "block_time": 1727197795, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 34, - "tx_hash": "b96874fd1a0fdbfc5bb12fb920c61bac293b0b0ae4f4be876b3eae4f2a1bdeb0", + "tx_index": 35, + "tx_hash": "554b0dada3ac6339b552fd88655f0ccc64c43721ddcb47b66aec43240ca19ea3", "msg_index": 0, - "block_index": 147, + "block_index": 148, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -3436,7 +3399,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172810, + "block_time": 1727197757, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -3450,42 +3413,42 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 156, - "last_issuance_block_index": 158, + "first_issuance_block_index": 157, + "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1727172849, - "last_issuance_block_time": 1727172868, + "first_issuance_block_time": 1727197795, + "last_issuance_block_time": 1727197803, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset A", - "first_issuance_block_index": 147, - "last_issuance_block_index": 147, + "first_issuance_block_index": 148, + "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1727172810, - "last_issuance_block_time": 1727172810, + "first_issuance_block_time": 1727197757, + "last_issuance_block_time": 1727197757, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 40, @@ -3493,16 +3456,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727172750, - "last_issuance_block_time": 1727172754, + "first_issuance_block_time": 1727197692, + "last_issuance_block_time": 1727197697, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 19, @@ -3510,16 +3473,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727172733, - "last_issuance_block_time": 1727172746, + "first_issuance_block_time": 1727197675, + "last_issuance_block_time": 1727197688, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 0, @@ -3527,8 +3490,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1727172712, - "last_issuance_block_time": 1727172729, + "first_issuance_block_time": 1727197655, + "last_issuance_block_time": 1727197672, "supply_normalized": "0.00000000" } ], @@ -3538,18 +3501,18 @@ "/v2/addresses/
/transactions": { "result": [ { - "tx_index": 57, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "block_index": 191, - "block_hash": "15c6ddc3e967df59e4ab93e09af645abb0470b883b1c0b1544742c7b898f8ada", - "block_time": 1727173005, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 58, + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "block_index": 192, + "block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", + "block_time": 1727197936, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1", + "utxos_info": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3584,42 +3547,42 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 56, - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "block_index": 190, - "block_hash": "02f6700fcf36370ae093a8b30af0f487ddbd03c2c43ad683a4ba98deb4c51323", - "block_time": 1727173001, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 57, + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "block_index": 191, + "block_hash": "0ba357e822a1ad9f1ee40b954ad363862e0d3afdb30fc3a5d88c175a18c38bd7", + "block_time": 1727197921, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4607b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "data": "466ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", "supported": true, - "utxos_info": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17:1", + "utxos_info": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", "status": "valid" } }, "btc_amount_normalized": "0.00000000" }, { - "tx_index": 55, - "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "block_index": 189, - "block_hash": "0fc8aabb62aabd549bddf7c7b53943e2152520c9e1bf3e24ab8aac1977208f47", - "block_time": 1727172996, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 56, + "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "block_index": 190, + "block_hash": "0033c741fc5613728a96e2ae19f264cc8678daa5777b8c77ee8ae758f1fe49e8", + "block_time": 1727197917, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06:1", + "utxos_info": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3654,18 +3617,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "block_hash": "4a56fb7af76004d2f0d9e697200b176b68422435a6c64d80053a15e2d76b9bbb", - "block_time": 1727172992, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "block_hash": "5e52af4ac2e545ee9b2f874c6e6b5906d2705730d220f92fdcf1c0660e9b93cb", + "block_time": 1727197914, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380532aac116f3cb07b11be377d648899a80753971d80ae5b876a7593a9bc79de22969203c476ffdfd3db80d429e837a5671380d2470256f79bfb7e09709e7f400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d780d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a580be3be0105284b008bb9cde97ec522d4b83e99694400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444:0", + "utxos_info": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3673,14 +3636,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -3688,7 +3651,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3706,18 +3669,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 49, - "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "block_index": 183, - "block_hash": "04fd73239f17e0cea1b251ec4ee8954da7be64cc416654baa2deddde1a5f7dec", - "block_time": 1727172962, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 50, + "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "block_index": 184, + "block_hash": "4be7779026bad707f1ccc317970e4f35c829ddbb1bbf157bc1a711a8307c9783", + "block_time": 1727197892, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8:1", + "utxos_info": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3752,27 +3715,27 @@ "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 47, - "result_count": 23 + "next_cursor": 48, + "result_count": 24 }, "/v2/addresses/
/dividends": { "result": [ { - "tx_index": 40, - "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", - "block_index": 153, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 41, + "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "block_index": 154, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727172836, + "block_time": 1727197783, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -3793,10 +3756,10 @@ "/v2/addresses/
/orders": { "result": [ { - "tx_index": 47, - "tx_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", - "block_index": 182, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 48, + "tx_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "block_index": 183, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3804,14 +3767,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 181, + "expire_index": 182, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727172888, + "block_time": 1727197823, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3836,10 +3799,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 49, - "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "block_index": 186, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 50, + "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "block_index": 187, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3847,14 +3810,14 @@ "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 204, + "expire_index": 205, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727172973, + "block_time": 1727197905, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3879,10 +3842,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 55, - "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "block_index": 190, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 56, + "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "block_index": 191, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3890,14 +3853,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 210, + "expire_index": 211, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727173001, + "block_time": 1727197921, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3922,10 +3885,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "block_index": 191, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 58, + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "block_index": 192, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3933,14 +3896,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 212, + "expire_index": 213, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727173005, + "block_time": 1727197936, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3971,10 +3934,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", + "tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -3999,13 +3962,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727172750 + "block_time": 1727197692 }, { - "tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", + "tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4030,13 +3993,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727172733 + "block_time": 1727197675 }, { - "tx_hash": "c768c790db646fe20b33e0828c0042c6705ee66248d68fde588e91455ea70222", + "tx_hash": "ed54030f74b75858f08f505f277c85ca7c83e98e45fa2466d05fa442687341c8", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4061,13 +4024,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727172729 + "block_time": 1727197672 }, { - "tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4092,7 +4055,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727172708 + "block_time": 1727197651 } ], "next_cursor": null, @@ -4101,127 +4064,127 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "7f69a52eaeb924d936bb756185de09623ce5fc4623732debde3ceb5f2c01dcb1", + "tx_hash": "201f88f9894c716c618457972af68ef54a92b3eeb8876fb18286c0ea68a88c25", "tx_index": 23, "block_index": 136, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "fairminter_tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "fairminter_tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172754, + "block_time": 1727197697, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } }, { - "tx_hash": "720c78644e95b750e5e89458ccba3ac499218259786b4d705dc9c52e45645434", + "tx_hash": "4dd0822867ce57e0debd8e7464ee186fab8ec830972499614e36115f7a28ce96", "tx_index": 21, "block_index": 134, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "fairminter_tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "fairminter_tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172746, + "block_time": 1727197688, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } }, { - "tx_hash": "f2f695801cc23d5fda9c3c04391153803dc91a18c9d7c5ad415a606b0a94299e", + "tx_hash": "8f602bc0c0f1aee82c9ff237dab02cd79e9427a1ef180d934a66f635ab2d157d", "tx_index": 20, "block_index": 133, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "fairminter_tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "fairminter_tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172742, + "block_time": 1727197684, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } }, { - "tx_hash": "6a7d3fe4b60626f6bc00da9990c5bdcfb41decb4b0a8ee2e09bdb23821d767a8", + "tx_hash": "473a44e1aecb813abb8a440fdd471137b378f8ef89de19e541a716f804223923", "tx_index": 19, "block_index": 132, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "fairminter_tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "fairminter_tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172737, + "block_time": 1727197680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } }, { - "tx_hash": "06cc86ee9d16e7b4176cce6b793d383387d5d47b51999ee9b53aea4497473deb", + "tx_hash": "ffc57ac3c2c8b668f8eccc823f0ce3908f1b2a6bfde666240e0ba65ddbc84d28", "tx_index": 15, "block_index": 127, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "fairminter_tx_hash": "c768c790db646fe20b33e0828c0042c6705ee66248d68fde588e91455ea70222", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "fairminter_tx_hash": "ed54030f74b75858f08f505f277c85ca7c83e98e45fa2466d05fa442687341c8", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172716, + "block_time": 1727197660, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } }, { - "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", + "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172700, + "block_time": 1727197643, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } @@ -4233,22 +4196,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", + "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172700, + "block_time": 1727197643, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } @@ -4263,7 +4226,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4273,9 +4236,9 @@ "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999983419, - "btc_fee": 16581, - "rawtransaction": "02000000000101af33d0d8f9d98165a3da059f96c1af823cbb4cc220da66af9ca7820fdea70915000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff0200000000000000002b6a292e0958b1a601ea9d60f71d51d49062154b9cc6a43b77217cd07044731ba022e0e6a006dca21d479bc23bb1052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999985819, + "btc_fee": 14181, + "rawtransaction": "020000000001018f56d30d835c642e86f276b990e06e3b9a6abeaf03f93236216af03a30094931000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0200000000000000002b6a29920fa68d26f28458b61863fc5614eb07c65c393dc7709b643e11e7bb532588d0d627ffcc9f3d95beae9bba052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4288,16 +4251,16 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f" + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7" }, "name": "btcpay", - "data": "434e5452505254590b592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d85808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", + "data": "434e5452505254590b272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", "btc_in": 5000000000, "btc_out": 3000, - "btc_change": 4999975897, - "btc_fee": 21103, - "rawtransaction": "0200000000010163dac5ee4013e42cb89a5ec4ef18cea55496b8d98b3daa3cd931ebaf61e7c52c000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff03b80b0000000000001600145599316be7057562b9146e3d03cc6ea42923b1ad00000000000000004b6a495f939fc66ad4c4b808a244e70c8f9487760b1ab7362a37f7841c56041c3375d1ad367af6939046080bd40f6cc16b8b7c93975712c3ed79e175f3d930e92848dc6c26f0c6c0a77ded45d993052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999978951, + "btc_fee": 18049, + "rawtransaction": "02000000000101f709d5b950e8a3abfe20a997f6eb16352d31de27d0eaa7f7b03c0599d1a3becf000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff03b80b0000000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea900000000000000004b6a49b0b9e5d550a6257597dc4b6fbd5763c168762e8e50735fc6d1cc8a0654192824019b21b84b3bed0613fbf93a4865ef8344cf3ba8cd93ffcbbc6e0e91a031d7e39b16f534b9d9a46b14c79f052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4310,7 +4273,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "quantity": 1000, "overburn": false }, @@ -4318,24 +4281,24 @@ "data": null, "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999983584, - "btc_fee": 15416, - "rawtransaction": "0200000000010174fc5ee9d502fe1b41269a653d8f5dab6622bc7d7c7ec05369d3f052fe5f33a2000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ace0b1052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000" + "btc_change": 4999985815, + "btc_fee": 13185, + "rawtransaction": "020000000001016c4dbf5a98070ab47d6161ae7dc07a992458bcf424d9252912d30d03f13e02bb000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "offer_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9" + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "offer_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac" }, "name": "cancel", - "data": "434e545250525459461d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", + "data": "434e5452505254594657dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999983419, - "btc_fee": 16581, - "rawtransaction": "02000000000101e4361b0c596d859603d49e99d8632c55d50447899d3984fbe31070c4b200e42e000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff0200000000000000002b6a29a2fe08d4e271b515e930cf3749bfa7e8531426f6b727c59ef8e511af5f690c7bf93ff598a7c21cdff83bb1052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999985819, + "btc_fee": 14181, + "rawtransaction": "02000000000101a87d20b812ea217934f4e78ef1e22058f450bc013226ce5dd87bcaa19e256a5f000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0200000000000000002b6a290746bb7437bb3bd04b5b60d8877b0be5cb5425b6f17071133fd7fc24f562fca5b4ee5a4e802c1d3c959bba052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4348,7 +4311,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4365,9 +4328,9 @@ "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999984036, - "btc_fee": 15964, - "rawtransaction": "0200000000010129b2d6399f693ac888d531fbbc2164a572f5b2eaf3f0018c98a206ca27ecc030000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000226a20f3bae5a23d489e414499b16b6a729f07a42e929f1be203ede83a10049ad80220a4b3052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999986346, + "btc_fee": 13654, + "rawtransaction": "020000000001013794d3e4ed865cbf70a08b52755a1c117c53bdb16c49db5b211889493c322856000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000226a2020f69fb7a307fe410f8f891b14534cb5ac8a8e743c3542ffe7744f253be93180aabc052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4380,7 +4343,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", + "source": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4402,9 +4365,9 @@ "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949970000, "btc_out": 0, - "btc_change": 4949953351, - "btc_fee": 16649, - "rawtransaction": "02000000000101a9ea80a3ad8fe7e0dea389ed4e802d920cf9a7f5ee1b9dba3aacd3dabdfdfac002000000160014c2219b0461c00c84849c64009a4a3dcad6d47741ffffffff0200000000000000002c6a2abea145d0731b63994ac94646399aff7fb33e31388520dc68e6a97bca58077bd9ea53dcfe69800440d3d6474b0a2701000000160014c2219b0461c00c84849c64009a4a3dcad6d4774102000000000000", + "btc_change": 4949955760, + "btc_fee": 14240, + "rawtransaction": "020000000001010cfd0fef929421661d755664e7f00ba4902a1fa2344282efc44fa3a714e88a920200000016001474c82b3f5125f89d5240f988d013fceee0b57d63ffffffff0200000000000000002c6a2ab51f1be2884f0b894627997a38394933112ac5a45ac07a77e149a9239db1e52ef4310a8e27636b3b4d39b0540a270100000016001474c82b3f5125f89d5240f988d013fceee0b57d6302000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4417,14 +4380,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -4441,9 +4404,9 @@ "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999983968, - "btc_fee": 16032, - "rawtransaction": "0200000000010167449216ab4e6619bf0f98e541ebd1a851a05202441fb5f3e56bad445efec8e9000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000236a21eb8e7c4b955a188e89255f343edde246588ea2a3fa296c5fc886c639c8a58698f560b3052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999986287, + "btc_fee": 13713, + "rawtransaction": "020000000001014c168b88c4c3c5e11003fd3a35cb2cc00fbea5bb600b20dcf3820f3a7fcedd0b000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000236a21bd76b78c8f155cb5190523a44a5207a65c40afa8d27957d5fbcac7011467d0c3876fbc052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4456,10 +4419,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "transfer_destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "lock": false, "reset": false, @@ -4470,9 +4433,9 @@ "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999981092, - "btc_fee": 18362, - "rawtransaction": "02000000000101199607f896a2f31801606f5fd7abf71412922759c071ad98481ed0a6c340784a000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff0322020000000000001600145599316be7057562b9146e3d03cc6ea42923b1ad0000000000000000236a21f863b50b8432cad457c32ed600f3d68155964c65b7ff1174207312984a5fcfa96a24a8052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999983749, + "btc_fee": 15705, + "rawtransaction": "0200000000010171538e6094681859ec2f2a5d516d3b2c79ad0c909d3fe89ac2c080b496f94cbe000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0322020000000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea90000000000000000236a2175cc31285956fe1bdb5fae7a84b5153c943354ad6544ef536ccce3a07d027bc2df85b2052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4485,16 +4448,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", 1 ], [ "MYASSETA", - "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", 2 ] ], @@ -4502,12 +4465,12 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e545250525459030002805599316be7057562b9146e3d03cc6ea42923b1ad80532aac116f3cb07b11be377d648899a80753971d8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e545250525459030002807fe57e1fa9d634b73d344e77a53d74837f310ea9808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d78f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, - "btc_change": 19999936609, - "btc_fee": 61391, - "rawtransaction": "02000000000104ccdb1eae0a96b64e00444775d7e7668add22ff3d2f824f54efe88177b8a7d8da000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff7526f54f5b77068cd36a98f8d5ae2a9d8b12930f17a6cb7555a35aefda2ab8e8000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff123e063c7807662d9c0b60b684ee0f381f0707fefb4c5fc00c166e2d0be5b65d000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff5832ead26b4ebe2833817f3b1ff238931ec296f2c5f2be5e969e2d34a82ebf2f000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff03e80300000000000069512103f874fafd07a3d16cd378132e1588914d0c9f7bd914f4c67633bf836e34910eda21025ad7d920a9ebb2956228c2716af4b56be83a74cd43b6a7533e20c27e59e47a412102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053aee80300000000000069512102f774fafd07a3d16cd35b6443e7b16c5d45f87eac7a584993b99c4f0090b82d5c2102eb7a11738347a3fa5e98b160d4c3c80f60a3deca1021badc1c68a712358b56f82102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053ae61d016a8040000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000002000002000002000000000000", + "btc_change": 19999945492, + "btc_fee": 52508, + "rawtransaction": "02000000000104759b202733af314415433b8eeb0144a8980f76d0663e42bafd1add31aada7931000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff5d0396c457f6d5e92b6ac6e0f4aaf390dd56586a8bd569d4f18d223bf1d53311000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff588e6788e1e4f85ba7322f2c42d48525145e97cb36f782fdac05846382c5bc01000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff36659424a3e3c25d1d05344f8b6c24dd8cadf93a35bde932c32ae9e4d627f5b9000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff03e80300000000000069512103265ab5424ded6864ec6280703fd8146d223c23368563f5b4a32314e135b1ef602102cbe4331b305e7fe16281cc7aec6c2ccf3fafa46cbe06e1257c4a4c0337e0d97b210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53aee80300000000000069512103295ab5424ded6864ec41f71dcdcb95321f15f5023e4b5a7163a62995b6cedec92103c54dfb9403e7d48ec62bebdf90d4a1a1df07295354e136aa5e02296f5b8ff5be210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53ae14f316a8040000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4520,7 +4483,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4537,7 +4500,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -4549,9 +4512,9 @@ "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999982734, - "btc_fee": 17266, - "rawtransaction": "020000000001010e6d8cd850f4eaadc7cdee81783eca6693e9f3e83fff2e6afee9d45b3f8d8cfa000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000356a332b3117d5e90fe257c0a5f5203547fd01fe65d953da9c8cd282ae5ea93466f2b9f68d1c61d92d3c7196f0056f71e447fa1f26198eae052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999985233, + "btc_fee": 14767, + "rawtransaction": "0200000000010114aeaf6fda9632c891dad98eb9547fa9726966c2b9b189e9a6199dcce5fd85fb000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000356a33c2e285f0210de7ceff2bf8d0dcb0cc44e2857ad478938c3b87cade72feb5d781a3bcbcb38b607463df2abd1b462f59e55ea2c051b8052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4564,8 +4527,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4581,12 +4544,12 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880532aac116f3cb07b11be377d648899a80753971d", + "data": "434e54525052545902000000000000000100000000000003e8808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d7", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999983077, - "btc_fee": 16923, - "rawtransaction": "02000000000101e83a100b7448574562d89c192966d72f92315d9294eebe6c04eb5a0d4ae95a24000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000306a2eacc042d5926ad0fa8e9f92acc6b4d354dbde14c4b114a8239148ce044f2d8777d2707cfa7d3b315d2b7c1cc1fe6ae5af052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999985526, + "btc_fee": 14474, + "rawtransaction": "0200000000010168425b8209dc387a633d2892c5d733042c5f96bb44cfd9af384b8a71ae220ea9000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000306a2e8420b498ca686dbdd4e07a91262ff3c95f8bdb569d9d10e65e5228c5a42036d27432cb6971497668d2bb4eabda0c76b9052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4599,18 +4562,18 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480532aac116f3cb07b11be377d648899a80753971d07ffff", + "data": "434e54525052545904808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d707ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999983968, - "btc_fee": 16032, - "rawtransaction": "02000000000101f9d65187386f8dbded15ef13b18f58bea74c65f34d6ce63338214e8e3bbf79d6000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000236a21629b15563737c408657c595345ae6ed93030db8fda271bffb89408e45aa1c0387b60b3052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999986287, + "btc_fee": 13713, + "rawtransaction": "020000000001014800bb74929acebd48b93ebe35151b21a44b51523cb315a2e786ac6c445fd16c000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000236a210055d9cb70cb68be90eba1a75b00f15e9844fe2d396cbef79a453b09ec7706350a6fbc052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4623,17 +4586,17 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "quantity": 1000 }, "name": "dispense", "data": "434e5452505254590d00", "btc_in": 4949868000, "btc_out": 1000, - "btc_change": 4949850214, - "btc_fee": 16786, - "rawtransaction": "02000000000101520b2f2fc3321caa95322c7979a6307502ea4808332b326290a07cc816dcfc0402000000160014532aac116f3cb07b11be377d648899a80753971dffffffff03e803000000000000160014d429e837a5671380d2470256f79bfb7e09709e7f00000000000000000c6a0ade90a904cccc5ac72d7c66b8082701000000160014532aac116f3cb07b11be377d648899a80753971d02000000000000", + "btc_change": 4949852643, + "btc_fee": 14357, + "rawtransaction": "0200000000010135ed38f305623dd31dde5516b9a1095cc33b00726e5711cc3d105d2e2a9df5bd020000001600148f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d7ffffffff03e803000000000000160014be3be0105284b008bb9cde97ec522d4b83e9969400000000000000000c6a0a29b024a4c0537e5c399de3c10827010000001600148f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d702000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4646,7 +4609,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4669,9 +4632,9 @@ "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999983008, - "btc_fee": 16992, - "rawtransaction": "020000000001014d786e5f0a5b51bf4adb3bd3b916e2f701e6a3187789decc113124d60c4d9d74000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000316a2f5c690cfaa2c14b48ee14eaabefc2388a814775ef7336a0b61ee0c3ae0bf93a875c7a25d490cd443326495cb6c862aca0af052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999985467, + "btc_fee": 14533, + "rawtransaction": "02000000000101ee82110473a8641082a4f6b132246728c35a248e9fdc35ea7d00d4221d0093d0000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000316a2f7c9ecc12272a0cda2e36def9fe779d4bb8e0aa5071d30d88d0aa02adcbf4a199e1320401232050a4f78cf2c9b4b2503bb9052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4684,13 +4647,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -4700,9 +4663,9 @@ "data": "434e5452505254595b464149524d494e54437c31", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999984858, - "btc_fee": 15142, - "rawtransaction": "020000000001015c396740f5887c718e263d3760fb658b943adc75ab8fb5db018685122e4f5434000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff020000000000000000166a14b451f024663bf86f83f2d985f1df34edb43d4934dab6052a010000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000000000000", + "btc_change": 4999987049, + "btc_fee": 12951, + "rawtransaction": "0200000000010140174ad7390a91d0f9752e27945d580ad6dc6e64f4bddf4f54c147c69608c606000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000166a14de8113840bf65e62d9080c55899510c5695a98db69bf052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4715,8 +4678,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9:1", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4729,12 +4692,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171326b766e7a366c387134366b3977673564633773386e72773573356a3876646467733470716c7c316439623961393935316438323032376361343332633830343363393239653837643766363866363838643036303063616463396132303632376134616664393a317c5843507c31303030", + "data": "434e54525052545964626372743171306c6a6875386166366336747730663566656d363230743573646c6e7a7234666e733563636a7c366563626139633265313735396663336663313437333139383836646364396232386166333164326238346434306332313861323332633936643136356639623a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, - "btc_change": 29999905256, - "btc_fee": 91744, - "rawtransaction": "02000000000106f8218679e74b551d77b8e082747a9ef8766d8768d166f17506d431cf53bae90e000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffffa67567318e89ab8dde23f50c4b33b7a460fe8fcca6c9b2f826f9872bd08bfd73000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffffb489150449da2b610fc751903848a033271c3490e7aba6d057d9e66fe7515aee000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff3df59728427c5fd0fb19c90369cd1d19d859659f1e12f17e807b1e2bc3a6f10c000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffffbb610b5457889662f9c2b57140d693ea81ba99dcd97606875a5d1672a6acd73e000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffffe5394c1b875fc8ee43c265eeb9db212205519ba3a3fcac85151519726303880a000000001600145599316be7057562b9146e3d03cc6ea42923b1adffffffff04e803000000000000695121031ef305f702a88a3e3ca11a0866662be994b32ea6712721e4156ebe57b304a1ff2103add0c30606601de4e736a90e3933f42f66202d1bb35cceeeb5c0afd48ec877662102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053aee803000000000000695121031ef305f702a88a3e3cfc4d5a702a28a894ef3ba93f227fbf5c6abc0fe94af4fd2103a1d19806116f15a0a865ec036b6fb27d32773d4ea74e9bf3b694a08480c87a6f2102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053aee8030000000000006951210234f305f702a88a3e3ca41e0f2d282be4fe9b08b43a217dec645a883c8a73c642210298b4a031755873969003da3b530b824b02475e2fc32da29284a496b6b7a94eaa2102bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b94053aee83922fc060000001600145599316be7057562b9146e3d03cc6ea42923b1ad02000002000002000002000002000002000000000000", + "btc_change": 29999918531, + "btc_fee": 78469, + "rawtransaction": "020000000001065fe24b79cbd3f100b8b747f4a5932fd5a1295c78514a5893ae491cb67e98ecfe000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff10dbcd66558041d0a5b3075e96132cbffb8427bec9338d3fc0052f03cf0e56d5000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9fffffffff77d6a3a3b1c721a72c507bdd9c42a21501fc39e6a2ee275f8b27d4e59d22a34000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0640e0bdc052378fc75d58b4e3627797e00ccd110e4a8bf212e6e405c0a5852d000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffffd3937b5c9ed9c0afe7250e51046c2c559978cea3d6211aaf2d5d6ec3de4394d9000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0dde6586f071138cd64a219aee58d7c2c26ef09b1726d78448113184f44f7224000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff04e8030000000000006951210207e62a3be617d98553bf02c6445badff80fc1b14edb7b8b1254521e111990b9321034ceae8d3b577a872dff198b06d919e9c70f123f66789b066b2ffec473ab122a7210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53aee8030000000000006951210207e62a3be617d98553e90594011aa5e8d3a3171fa9bbeee4221f2fad50cd0ebb21021db5ef8cbb24fe35dbe6cebe3bdf889c26fc62f23c8be829b6f9b6133fb977b8210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53aee803000000000000695121032de62a3be617d98553ee069c5415adf2e8d32100a9bfe9e71326179566a96dba2102798c8dbe83459806ea82fcdc03ebeca8169f50c304eada1a849a8f255b8841d4210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53aec36d22fc060000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4747,8 +4710,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800:1", - "destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8:1", + "destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4761,12 +4724,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964303165623165353238306339353962353632623232386430303436386438653062393931356337343531666361623132316533346636393633626131383830303a317c626372743171326b766e7a366c387134366b3977673564633773386e72773573356a3876646467733470716c7c5843507c31303030", + "data": "434e54525052545964396363373963303765386330323530323339383365653637613463366433643666633934666135313864336331353437623537636630373162386339313866383a317c626372743171306c6a6875386166366336747730663566656d363230743573646c6e7a7234666e733563636a7c5843507c31303030", "btc_in": 4949874900, "btc_out": 3000, - "btc_change": 4949842164, - "btc_fee": 29736, - "rawtransaction": "020000000001010088a13b96f6341e12abfc51745c91b9e0d86804d028b262b559c980521eeb010100000016001472e6693bf8a47cff7fa322286a03432d00c03826ffffffff04e80300000000000069512102f0391dd0aaab3ba977ac87a9523cbdc3ddcfd9543c8d9028cfb769863202bd292103b860b59fb41791a856bec4f6412905e9f515968a4778335a0a176ed998f2c58b21032b1dff0d6591da3ff998b1d12adf6162e7716c5ff519896a2fc1053c2aa1c55f53aee80300000000000069512103f0391dd0aaab3ba977ae81a1016deec7d9c5d9546f8e946dcfe12dc06141bdbb2103eb72ebd5b64d91bd5aed9fad0f7701b8f515d187186c270e1b1336d08ba5951721032b1dff0d6591da3ff998b1d12adf6162e7716c5ff519896a2fc1053c2aa1c55f53aee80300000000000069512103da391dd0aaab3ba977afc4ac472fe0dab0beb1186e849521ad825fb450308ff12102800485af8021a9cc6edbf494781034dc9622a2bf761e503b68265ce8fdc1f18b21032b1dff0d6591da3ff998b1d12adf6162e7716c5ff519896a2fc1053c2aa1c55f53aef49808270100000016001472e6693bf8a47cff7fa322286a03432d00c0382602000000000000", + "btc_change": 4949846467, + "btc_fee": 25433, + "rawtransaction": "02000000000101f818c9b871f07cb547153c8d51fa94fcd6d3c6a467ee83390225c0e8079cc79c01000000160014338d7fb117242eb4ef93a7317ac319fb8778a488ffffffff04e80300000000000069512103ef3e3113c1cc0018b532a49727fe7d22641ab2b26693e28460b652ca4cf5d535210282e024724d1fa596f4cecec830ca6c1ad8bf9bb03046310e4f806668507deb742103f413b7debdf8216ec2698972b6a7993790f6ab9b2698a217c89f1074047a301853aee80300000000000069512103ef3e3113c1cc0018b530adc375ab7c226d1cefec3d99e1cd32e7138745b780c621028bbc7b66411df5c4a49c8cd963956d1adce79cba6401674c1ed83f70177eee6e2103f413b7debdf8216ec2698972b6a7993790f6ab9b2698a217c89f1074047a301853aee80300000000000069512103c53e3113c1cc0018b538eec127aa2e3d0c6e87f63493e081508461f374c6b01e2102e7d61313797c93f2c7aaf8ae53f3587cb98aaa885475523f7ab4510a654a88652103f413b7debdf8216ec2698972b6a7993790f6ab9b2698a217c89f1074047a301853aec3a9082701000000160014338d7fb117242eb4ef93a7317ac319fb8778a48802000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4782,59 +4745,59 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 156, - "last_issuance_block_index": 158, + "first_issuance_block_index": 157, + "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1727172849, - "last_issuance_block_time": 1727172868, + "first_issuance_block_time": 1727197795, + "last_issuance_block_time": 1727197803, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", - "owner": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", + "issuer": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", + "owner": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 155, - "last_issuance_block_index": 155, + "first_issuance_block_index": 156, + "last_issuance_block_index": 156, "confirmed": true, - "first_issuance_block_time": 1727172845, - "last_issuance_block_time": 1727172845, + "first_issuance_block_time": 1727197791, + "last_issuance_block_time": 1727197791, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset A", - "first_issuance_block_index": 147, - "last_issuance_block_index": 147, + "first_issuance_block_index": 148, + "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1727172810, - "last_issuance_block_time": 1727172810, + "first_issuance_block_time": 1727197757, + "last_issuance_block_time": 1727197757, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 40, @@ -4842,16 +4805,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727172750, - "last_issuance_block_time": 1727172754, + "first_issuance_block_time": 1727197692, + "last_issuance_block_time": 1727197697, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 19, @@ -4859,8 +4822,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727172733, - "last_issuance_block_time": 1727172746, + "first_issuance_block_time": 1727197675, + "last_issuance_block_time": 1727197688, "supply_normalized": "0.00000019" } ], @@ -4872,8 +4835,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 10000000000, @@ -4881,15 +4844,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1727172696, - "last_issuance_block_time": 1727172708, + "first_issuance_block_time": 1727197638, + "last_issuance_block_time": 1727197651, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4897,14 +4860,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4912,7 +4875,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -4924,9 +4887,9 @@ }, "/v2/assets//balances/
": { "result": { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", - "quantity": 82699937176, + "quantity": 82699937196, "utxo": null, "utxo_address": null, "asset_info": { @@ -4942,10 +4905,10 @@ "/v2/assets//orders": { "result": [ { - "tx_index": 47, - "tx_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", - "block_index": 182, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 48, + "tx_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "block_index": 183, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4953,14 +4916,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 181, + "expire_index": 182, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727172888, + "block_time": 1727197823, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4985,10 +4948,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 49, - "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "block_index": 186, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 50, + "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "block_index": 187, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4996,14 +4959,14 @@ "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 204, + "expire_index": 205, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727172973, + "block_time": 1727197905, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5028,10 +4991,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 55, - "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "block_index": 190, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 56, + "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "block_index": 191, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5039,14 +5002,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 210, + "expire_index": 211, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727173001, + "block_time": 1727197921, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5071,10 +5034,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "block_index": 191, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 58, + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "block_index": 192, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5082,14 +5045,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 212, + "expire_index": 213, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727173005, + "block_time": 1727197936, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5114,10 +5077,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 50, - "tx_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "block_index": 185, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "tx_index": 51, + "tx_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "block_index": 186, + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5125,14 +5088,14 @@ "get_quantity": 2000, "get_remaining": 0, "expiration": 21, - "expire_index": 205, + "expire_index": 206, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727172969, + "block_time": 1727197901, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5157,33 +5120,33 @@ "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 52, + "next_cursor": 53, "result_count": 7 }, "/v2/assets//matches": { "result": [ { - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "tx0_index": 49, - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 52, - "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx0_index": 50, + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 53, + "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 184, - "tx1_block_index": 186, - "block_index": 186, + "tx0_block_index": 185, + "tx1_block_index": 187, + "block_index": 187, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 206, + "match_expire_index": 207, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727172973, + "block_time": 1727197905, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5203,27 +5166,27 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "tx0_index": 49, - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 50, - "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx0_index": 50, + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 51, + "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 183, - "tx1_block_index": 184, - "block_index": 185, + "tx0_block_index": 184, + "tx1_block_index": 185, + "block_index": 186, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 204, + "match_expire_index": 205, "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727172969, + "block_time": 1727197901, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5243,27 +5206,27 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "tx0_index": 47, - "tx0_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 48, - "tx1_hash": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "tx0_index": 48, + "tx0_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 49, + "tx1_hash": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 160, - "tx1_block_index": 161, - "block_index": 182, + "tx0_block_index": 161, + "tx1_block_index": 162, + "block_index": 183, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 181, + "match_expire_index": 182, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727172888, + "block_time": 1727197823, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5289,21 +5252,21 @@ "/v2/assets//credits": { "result": [ { - "block_index": 192, - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 193, + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -5311,20 +5274,20 @@ }, { "block_index": 125, - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "52ebf33632f8a0fd2efc653028f1a0c05d0372d42cc8cfcc19e529d2dd45e983", + "event": "126a427f976fdfdf94d07c4794ffa1c70fe1efe20825d5a56a7512cdc80d032c", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172708, + "block_time": 1727197651, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -5332,20 +5295,20 @@ }, { "block_index": 124, - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3", + "event": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172703, + "block_time": 1727197647, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -5353,20 +5316,20 @@ }, { "block_index": 124, - "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", + "event": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172703, + "block_time": 1727197647, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -5378,16 +5341,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3", + "event": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172703, + "block_time": 1727197647, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -5400,17 +5363,17 @@ "/v2/assets//debits": { "result": [ { - "block_index": 193, - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 194, + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "tx_index": 59, + "event": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -5421,17 +5384,17 @@ "quantity_normalized": "0.00000001" }, { - "block_index": 192, - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "block_index": 193, + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -5442,17 +5405,17 @@ "quantity_normalized": "744.99388000" }, { - "block_index": 192, - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "block_index": 193, + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -5463,17 +5426,17 @@ "quantity_normalized": "0.00600000" }, { - "block_index": 191, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 192, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "tx_index": 57, + "event": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727173005, + "block_time": 1727197936, "asset_info": { "divisible": true, "asset_longname": null, @@ -5484,17 +5447,17 @@ "quantity_normalized": "0.00001000" }, { - "block_index": 189, - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 190, + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "tx_index": 55, + "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172996, + "block_time": 1727197917, "asset_info": { "divisible": true, "asset_longname": null, @@ -5511,21 +5474,21 @@ "/v2/assets//dividends": { "result": [ { - "tx_index": 40, - "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", - "block_index": 153, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 41, + "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "block_index": 154, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727172836, + "block_time": 1727197783, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -5547,14 +5510,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "52ebf33632f8a0fd2efc653028f1a0c05d0372d42cc8cfcc19e529d2dd45e983", + "tx_hash": "126a427f976fdfdf94d07c4794ffa1c70fe1efe20825d5a56a7512cdc80d032c", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -5569,20 +5532,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727172708, + "block_time": 1727197651, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3", + "tx_hash": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -5597,20 +5560,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727172703, + "block_time": 1727197647, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", + "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -5625,20 +5588,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727172700, + "block_time": 1727197643, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -5653,7 +5616,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1727172696, + "block_time": 1727197638, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5664,11 +5627,11 @@ "/v2/assets//sends": { "result": [ { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5676,7 +5639,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "divisible": true, "asset_longname": null, @@ -5688,11 +5651,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 53, - "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5", - "block_index": 187, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 54, + "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0", + "block_index": 188, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5700,7 +5663,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172988, + "block_time": 1727197909, "asset_info": { "divisible": true, "asset_longname": null, @@ -5712,11 +5675,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 42, - "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", - "block_index": 155, - "source": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a:0", - "destination": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800:1", + "tx_index": 43, + "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "block_index": 156, + "source": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9:0", + "destination": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5724,7 +5687,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172845, + "block_time": 1727197791, "asset_info": { "divisible": true, "asset_longname": null, @@ -5736,11 +5699,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 41, - "tx_hash": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a", - "block_index": 154, - "source": "9361bfe137766876b61588be29ab0ffbb6e0f926590f3c11daa53bf3b3ab3b30:0", - "destination": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a:0", + "tx_index": 42, + "tx_hash": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9", + "block_index": 155, + "source": "0ab8c6a06380b63fb1c5aa5529b2847ec820017a6b0fbfaebafbbfcbe88236fa:0", + "destination": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5748,7 +5711,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172840, + "block_time": 1727197787, "asset_info": { "divisible": true, "asset_longname": null, @@ -5767,9 +5730,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5778,7 +5741,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5788,7 +5751,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -5804,9 +5767,9 @@ }, { "tx_index": 29, - "tx_hash": "64572d1f3aab186a209cf522c3bc0c4608821658347a92c42b87e902808fc846", + "tx_hash": "d334afca2c925114b90133fa7b9b4d09721e2afe7f50f39c525c05e459d6f6f4", "block_index": 142, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5815,7 +5778,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "origin": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5825,7 +5788,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727172779, + "block_time": 1727197722, "asset_info": { "divisible": true, "asset_longname": null, @@ -5841,28 +5804,28 @@ }, { "tx_index": 30, - "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", - "block_index": 144, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_hash": "d8c4d9743c70dc60ca111fcd9049da47ff04b408893eb8a73659046caf40e9d1", + "block_index": 150, + "source": "mmMQv1E9m8quqXXYXh9u1wxK5Yao7BFUfG", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, "satoshirate": 1, - "status": 0, - "give_remaining": 20, + "status": 10, + "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "last_status_tx_hash": "d95ff0a851d0ba16d0c432d33f48fa3a7ee893c96aa3084199fad3dfaa568c01", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 0, - "last_status_tx_source": null, - "close_block_index": null, + "last_status_tx_source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "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": 1727172798, + "block_time": 1727197765, "asset_info": { "divisible": true, "asset_longname": null, @@ -5871,25 +5834,25 @@ "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000020", + "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00000010", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 32, - "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "tx_index": 33, + "tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "last_status_tx_hash": null, - "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5899,7 +5862,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727172806, + "block_time": 1727197754, "asset_info": { "divisible": true, "asset_longname": null, @@ -5919,20 +5882,20 @@ }, "/v2/assets//dispensers/
": { "result": { - "tx_index": 30, - "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", - "block_index": 144, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 26, + "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "block_index": 141, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "give_quantity": 1, - "escrow_quantity": 10, + "escrow_quantity": 10000, "satoshirate": 1, - "status": 0, - "give_remaining": 20, + "status": 10, + "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "dispense_count": 0, + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, "confirmed": true, @@ -5941,7 +5904,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727172798, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -5950,8 +5913,8 @@ "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000020", - "escrow_quantity_normalized": "0.00000010", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" } @@ -5969,7 +5932,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -5977,7 +5940,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -5986,7 +5949,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -5994,7 +5957,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6003,7 +5966,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -6011,7 +5974,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6020,7 +5983,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -6033,29 +5996,29 @@ "/v2/assets//dispenses": { "result": [ { - "tx_index": 33, + "tx_index": 34, "dispense_index": 0, - "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", - "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", + "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", + "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", "btc_amount": 10000, "confirmed": true, "dispenser": { - "tx_index": 32, - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "tx_index": 33, + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "last_status_tx_hash": null, - "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6070,7 +6033,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727172806, + "block_time": 1727197754, "asset_info": { "divisible": true, "asset_longname": null, @@ -6084,19 +6047,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", + "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6104,7 +6067,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6119,7 +6082,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -6133,19 +6096,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", + "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", "block_index": 140, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6153,7 +6116,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6168,7 +6131,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172770, + "block_time": 1727197714, "asset_info": { "divisible": true, "asset_longname": null, @@ -6189,17 +6152,17 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "owner": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false, "supply": 0, "description": "Test Locking Description", - "first_issuance_block_index": 157, - "last_issuance_block_index": 157, + "first_issuance_block_index": 158, + "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727172853, - "last_issuance_block_time": 1727172853, + "first_issuance_block_time": 1727197799, + "last_issuance_block_time": 1727197799, "supply_normalized": "0.00000000" } ], @@ -6209,10 +6172,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6237,7 +6200,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727172708 + "block_time": 1727197651 } ], "next_cursor": null, @@ -6246,64 +6209,64 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "52ebf33632f8a0fd2efc653028f1a0c05d0372d42cc8cfcc19e529d2dd45e983", + "tx_hash": "126a427f976fdfdf94d07c4794ffa1c70fe1efe20825d5a56a7512cdc80d032c", "tx_index": 13, "block_index": 125, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", - "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172708, + "block_time": 1727197651, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } }, { - "tx_hash": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3", + "tx_hash": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e", "tx_index": 12, "block_index": 124, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", - "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172703, + "block_time": 1727197647, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } }, { - "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", + "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172700, + "block_time": 1727197643, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } @@ -6315,22 +6278,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "73499944387dd0391994df8d6e790b180692feeff219c738943f8c8578e581fa", + "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "fairminter_tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727172700, + "block_time": 1727197643, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } @@ -6342,10 +6305,10 @@ "/v2/orders": { "result": [ { - "tx_index": 47, - "tx_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", - "block_index": 182, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 48, + "tx_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "block_index": 183, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6353,14 +6316,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 181, + "expire_index": 182, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727172888, + "block_time": 1727197823, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6385,10 +6348,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 50, - "tx_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "block_index": 185, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "tx_index": 51, + "tx_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "block_index": 186, + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6396,14 +6359,14 @@ "get_quantity": 2000, "get_remaining": 0, "expiration": 21, - "expire_index": 205, + "expire_index": 206, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727172969, + "block_time": 1727197901, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6428,10 +6391,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 49, - "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "block_index": 186, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 50, + "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "block_index": 187, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6439,14 +6402,14 @@ "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 204, + "expire_index": 205, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727172973, + "block_time": 1727197905, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6471,10 +6434,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 52, - "tx_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "block_index": 186, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "tx_index": 53, + "tx_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "block_index": 187, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6482,14 +6445,14 @@ "get_quantity": 3000, "get_remaining": 0, "expiration": 21, - "expire_index": 207, + "expire_index": 208, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727172973, + "block_time": 1727197905, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6514,10 +6477,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 55, - "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "block_index": 190, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 56, + "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "block_index": 191, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6525,14 +6488,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 210, + "expire_index": 211, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727173001, + "block_time": 1727197921, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6557,15 +6520,15 @@ "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 57, + "next_cursor": 58, "result_count": 7 }, "/v2/orders/": { "result": { - "tx_index": 57, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "block_index": 191, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 58, + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "block_index": 192, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6573,14 +6536,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 212, + "expire_index": 213, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727173005, + "block_time": 1727197936, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6608,27 +6571,27 @@ "/v2/orders//matches": { "result": [ { - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "tx0_index": 49, - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 52, - "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx0_index": 50, + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 53, + "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 184, - "tx1_block_index": 186, - "block_index": 186, + "tx0_block_index": 185, + "tx1_block_index": 187, + "block_index": 187, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 206, + "match_expire_index": 207, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727172973, + "block_time": 1727197905, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6648,27 +6611,27 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "tx0_index": 49, - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 50, - "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx0_index": 50, + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 51, + "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 183, - "tx1_block_index": 184, - "block_index": 185, + "tx0_block_index": 184, + "tx1_block_index": 185, + "block_index": 186, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 204, + "match_expire_index": 205, "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727172969, + "block_time": 1727197901, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6694,16 +6657,16 @@ "/v2/orders//btcpays": { "result": [ { - "tx_index": 51, - "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", - "block_index": 185, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 52, + "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "block_index": 186, + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "btc_amount": 2000, - "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", "status": "valid", "confirmed": true, - "block_time": 1727172969, + "block_time": 1727197901, "btc_amount_normalized": "0.00002000" } ], @@ -6713,10 +6676,10 @@ "/v2/orders//": { "result": [ { - "tx_index": 50, - "tx_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "block_index": 185, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "tx_index": 51, + "tx_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "block_index": 186, + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6724,7 +6687,7 @@ "get_quantity": 2000, "get_remaining": 0, "expiration": 21, - "expire_index": 205, + "expire_index": 206, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -6734,7 +6697,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727172969, + "block_time": 1727197901, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6759,10 +6722,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 52, - "tx_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "block_index": 186, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "tx_index": 53, + "tx_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "block_index": 187, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6770,7 +6733,7 @@ "get_quantity": 3000, "get_remaining": 0, "expiration": 21, - "expire_index": 207, + "expire_index": 208, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -6780,7 +6743,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727172973, + "block_time": 1727197905, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6805,10 +6768,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 47, - "tx_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", - "block_index": 182, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 48, + "tx_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "block_index": 183, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6816,7 +6779,7 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 181, + "expire_index": 182, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -6826,7 +6789,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727172888, + "block_time": 1727197823, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6851,10 +6814,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 49, - "tx_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "block_index": 186, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 50, + "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "block_index": 187, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6862,7 +6825,7 @@ "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 204, + "expire_index": 205, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -6872,7 +6835,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727172973, + "block_time": 1727197905, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6897,10 +6860,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 55, - "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "block_index": 190, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 56, + "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "block_index": 191, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6908,7 +6871,7 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 210, + "expire_index": 211, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -6918,7 +6881,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727173001, + "block_time": 1727197921, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6943,36 +6906,36 @@ "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 57, + "next_cursor": 58, "result_count": 7 }, "/v2/orders///matches": { "result": [ { - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "tx0_index": 49, - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 52, - "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx0_index": 50, + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 53, + "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 184, - "tx1_block_index": 186, - "block_index": 186, + "tx0_block_index": 185, + "tx1_block_index": 187, + "block_index": 187, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 206, + "match_expire_index": 207, "fee_paid": 0, "status": "pending", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727172973, + "block_time": 1727197905, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6992,30 +6955,30 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "tx0_index": 49, - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 50, - "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx0_index": 50, + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 51, + "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 183, - "tx1_block_index": 184, - "block_index": 185, + "tx0_block_index": 184, + "tx1_block_index": 185, + "block_index": 186, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 204, + "match_expire_index": 205, "fee_paid": 0, "status": "completed", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727172969, + "block_time": 1727197901, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7035,30 +6998,30 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "tx0_index": 47, - "tx0_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 48, - "tx1_hash": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "tx0_index": 48, + "tx0_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 49, + "tx1_hash": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 160, - "tx1_block_index": 161, - "block_index": 182, + "tx0_block_index": 161, + "tx1_block_index": 162, + "block_index": 183, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 181, + "match_expire_index": 182, "fee_paid": 0, "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727172888, + "block_time": 1727197823, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7084,27 +7047,27 @@ "/v2/order_matches": { "result": [ { - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "tx0_index": 49, - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 52, - "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx0_index": 50, + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 53, + "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 184, - "tx1_block_index": 186, - "block_index": 186, + "tx0_block_index": 185, + "tx1_block_index": 187, + "block_index": 187, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 206, + "match_expire_index": 207, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727172973, + "block_time": 1727197905, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7124,27 +7087,27 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "tx0_index": 49, - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 50, - "tx1_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx0_index": 50, + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 51, + "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 183, - "tx1_block_index": 184, - "block_index": 185, + "tx0_block_index": 184, + "tx1_block_index": 185, + "block_index": 186, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 204, + "match_expire_index": 205, "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727172969, + "block_time": 1727197901, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7164,27 +7127,27 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "tx0_index": 47, - "tx0_hash": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_index": 48, - "tx1_hash": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "tx0_index": 48, + "tx0_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_index": 49, + "tx1_hash": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 160, - "tx1_block_index": 161, - "block_index": 182, + "tx0_block_index": 161, + "tx1_block_index": 162, + "block_index": 183, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 181, + "match_expire_index": 182, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727172888, + "block_time": 1727197823, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7229,66 +7192,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "fb670497b1b7bdfefa37ae903873231799070c083dad68feaeffa589cb749da7", + "tx_hash": "4425334c064a07609b1049b0e61f4368bf0e83b7743d8b0dfa6c08c631ca5015", "block_index": 121, - "source": "bcrt1qx8nq65mcz45h8s0zdjjssw5cx8ln5utgc6xt67", + "source": "bcrt1qyxerv7nywhqduhyezl3s8kpvw9ts8svpuu3vka", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1727172691, + "block_time": 1727197635, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "dd707604e4b68bb969dca8e244f8ff68a47b502fdeb7da2710543f49a39020a5", + "tx_hash": "0d22da1045dfdc843155acafa62e3d459f3d426c0b6dd63a90dc79bd6a834c4f", "block_index": 120, - "source": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", + "source": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1727172687, + "block_time": 1727197631, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "976cc1e602b6d8c62d548685b818ad775b6cef7eaba1f5acec676cc45cef5e1b", + "tx_hash": "cd354d7390652af33bc7bd4151f568ae0610b7bf757cbdb17758a169a909b1ab", "block_index": 119, - "source": "bcrt1qg4j653h8yfns3eql8vzs5lc64xf58d9uxma9az", + "source": "bcrt1qxv2xktsndh0qf7kxa3pkw4dcvkfa9vrq58367j", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1727172683, + "block_time": 1727197626, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "6f640affad7ea7f23de9aa778e7fa582511a03fed9628109b81b4e64eea8fb31", + "tx_hash": "a5c4ab8dcae81a685b55251b11ac83df108bc970b09e7e3ec3d0a5683c9c2c47", "block_index": 118, - "source": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", + "source": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1727172679, + "block_time": 1727197622, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "49b961c62ebdd86c0a144932cd6e248072b3d12b607a1d7f43af6721e7a0240b", + "tx_hash": "268304583613b628ceaac31f5f0d4b3ccc6557fa2c7eef037287e902c9f6e05f", "block_index": 117, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1727172675, + "block_time": 1727197618, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7299,19 +7262,19 @@ "/v2/dispensers": { "result": [ { - "tx_index": 32, - "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "tx_index": 33, + "tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "last_status_tx_hash": null, - "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7321,7 +7284,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727172806, + "block_time": 1727197754, "asset_info": { "divisible": true, "asset_longname": null, @@ -7337,28 +7300,28 @@ }, { "tx_index": 30, - "tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", - "block_index": 144, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_hash": "d8c4d9743c70dc60ca111fcd9049da47ff04b408893eb8a73659046caf40e9d1", + "block_index": 150, + "source": "mmMQv1E9m8quqXXYXh9u1wxK5Yao7BFUfG", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, "satoshirate": 1, - "status": 0, - "give_remaining": 20, + "status": 10, + "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "last_status_tx_hash": "d95ff0a851d0ba16d0c432d33f48fa3a7ee893c96aa3084199fad3dfaa568c01", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 0, - "last_status_tx_source": null, - "close_block_index": null, + "last_status_tx_source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "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": 1727172798, + "block_time": 1727197765, "asset_info": { "divisible": true, "asset_longname": null, @@ -7367,16 +7330,16 @@ "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000020", + "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00000010", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, { "tx_index": 29, - "tx_hash": "64572d1f3aab186a209cf522c3bc0c4608821658347a92c42b87e902808fc846", + "tx_hash": "d334afca2c925114b90133fa7b9b4d09721e2afe7f50f39c525c05e459d6f6f4", "block_index": 142, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7385,7 +7348,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "origin": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7395,7 +7358,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727172779, + "block_time": 1727197722, "asset_info": { "divisible": true, "asset_longname": null, @@ -7411,9 +7374,9 @@ }, { "tx_index": 26, - "tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7422,7 +7385,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7432,7 +7395,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -7453,9 +7416,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7464,7 +7427,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7474,7 +7437,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -7494,19 +7457,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", + "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7514,7 +7477,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7529,7 +7492,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -7543,19 +7506,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", + "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", "block_index": 140, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7563,7 +7526,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7578,7 +7541,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172770, + "block_time": 1727197714, "asset_info": { "divisible": true, "asset_longname": null, @@ -7596,21 +7559,21 @@ "/v2/dividends": { "result": [ { - "tx_index": 40, - "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", - "block_index": 153, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 41, + "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "block_index": 154, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727172836, + "block_time": 1727197783, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -7630,21 +7593,21 @@ }, "/v2/dividends/": { "result": { - "tx_index": 40, - "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", - "block_index": 153, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "tx_index": 41, + "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "block_index": 154, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727172836, + "block_time": 1727197783, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -7662,17 +7625,17 @@ "/v2/dividends//credits": { "result": [ { - "block_index": 153, + "block_index": 154, "address": null, "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", - "tx_index": 40, - "utxo": "9361bfe137766876b61588be29ab0ffbb6e0f926590f3c11daa53bf3b3ab3b30:0", - "utxo_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "event": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "tx_index": 41, + "utxo": "0ab8c6a06380b63fb1c5aa5529b2847ec820017a6b0fbfaebafbbfcbe88236fa:0", + "utxo_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "confirmed": true, - "block_time": 1727172836, + "block_time": 1727197783, "asset_info": { "divisible": true, "asset_longname": null, @@ -7683,17 +7646,17 @@ "quantity_normalized": "15.00000000" }, { - "block_index": 153, - "address": "bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u", + "block_index": 154, + "address": "bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", - "tx_index": 40, + "event": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727172836, + "block_time": 1727197783, "asset_info": { "divisible": true, "asset_longname": null, @@ -7710,45 +7673,45 @@ "/v2/events": { "result": [ { - "event_index": 535, + "event_index": 542, "event": "BLOCK_PARSED", "params": { - "block_index": 193, - "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", - "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", + "block_index": 194, + "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", + "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", "transaction_count": 1, - "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", - "block_time": 1727173013 + "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", + "block_time": 1727197944 }, "tx_hash": null, - "block_index": 193, - "block_time": 1727173013 + "block_index": 194, + "block_time": 1727197944 }, { - "event_index": 534, + "event_index": 541, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "tx_index": 59 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_index": 60 }, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_time": 1727173013 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_time": 1727197944 }, { - "event_index": 533, + "event_index": 540, "event": "ASSET_DESTRUCTION", "params": { "asset": "XCP", - "block_index": 193, + "block_index": 194, "quantity": 1, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "status": "valid", "tag": "64657374726f79", - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "tx_index": 59, - "block_time": 1727173013, + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_index": 60, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -7758,24 +7721,24 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_time": 1727173013 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_time": 1727197944 }, { - "event_index": 532, + "event_index": 539, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 193, - "event": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", + "block_index": 194, + "event": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", "quantity": 1, - "tx_index": 59, + "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -7785,25 +7748,25 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_time": 1727173013 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_time": 1727197944 }, { - "event_index": 531, + "event_index": 538, "event": "NEW_TRANSACTION", "params": { - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_index": 193, - "block_time": 1727173013, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_index": 194, + "block_time": 1727197944, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "tx_index": 59, - "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_index": 60, + "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -7823,29 +7786,29 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_time": 1727173013 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_time": 1727197944 } ], - "next_cursor": 530, - "result_count": 536 + "next_cursor": 537, + "result_count": 543 }, "/v2/events/": { "result": { - "event_index": 535, + "event_index": 542, "event": "BLOCK_PARSED", "params": { - "block_index": 193, - "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", - "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", + "block_index": 194, + "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", + "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", "transaction_count": 1, - "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", - "block_time": 1727173013 + "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", + "block_time": 1727197944 }, "tx_hash": null, - "block_index": 193, - "block_time": 1727173013 + "block_index": 194, + "block_time": 1727197944 } }, "/v2/events/counts": { @@ -7856,7 +7819,7 @@ }, { "event": "TRANSACTION_PARSED", - "event_count": 47 + "event_count": 48 }, { "event": "SWEEP", @@ -7877,19 +7840,19 @@ "/v2/events/": { "result": [ { - "event_index": 526, + "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -7899,78 +7862,78 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 524, + "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 10, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 522, + "event_index": 529, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "FAIRMINTA", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 500000000, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 }, { - "event_index": 508, + "event_index": 515, "event": "CREDIT", "params": { - "address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "XCP", - "block_index": 190, + "block_index": 191, "calling_function": "cancel order", - "event": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", + "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", "quantity": 1000, - "tx_index": 56, + "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727173001, + "block_time": 1727197921, "asset_info": { "divisible": true, "asset_longname": null, @@ -7980,24 +7943,24 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "block_index": 190, - "block_time": 1727173001 + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "block_index": 191, + "block_time": 1727197921 }, { - "event_index": 491, + "event_index": 498, "event": "CREDIT", "params": { - "address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", - "block_index": 188, + "block_index": 189, "calling_function": "mpma send", - "event": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", + "event": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", "quantity": 10, - "tx_index": 54, + "tx_index": 55, "utxo": null, "utxo_address": null, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "divisible": true, "asset_longname": null, @@ -8007,46 +7970,46 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "block_time": 1727172992 + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "block_time": 1727197914 } ], - "next_cursor": 490, - "result_count": 67 + "next_cursor": 497, + "result_count": 68 }, "/v2/events//count": { "result": { "event": "CREDIT", - "event_count": 67 + "event_count": 68 } }, "/v2/dispenses": { "result": [ { - "tx_index": 33, + "tx_index": 34, "dispense_index": 0, - "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", - "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", + "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", + "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", "btc_amount": 10000, "confirmed": true, "dispenser": { - "tx_index": 32, - "block_index": 146, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "tx_index": 33, + "block_index": 147, + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "last_status_tx_hash": null, - "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8061,7 +8024,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727172806, + "block_time": 1727197754, "asset_info": { "divisible": true, "asset_longname": null, @@ -8075,19 +8038,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "01e10423926bebcc4deef032b5d2096198936fe49d36cee486a99052783aaf08", + "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8095,7 +8058,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8110,7 +8073,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172775, + "block_time": 1727197718, "asset_info": { "divisible": true, "asset_longname": null, @@ -8124,19 +8087,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3a295799c5eae990dd38587b369a68dfcdd7d46fd2a83e633bd2b87b99b06c3c", + "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", "block_index": 140, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b2013f1798126c7ebe83566e3eafe19904e75c023e939452f5098255b846ea9e", + "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8144,7 +8107,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8159,7 +8122,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727172770, + "block_time": 1727197714, "asset_info": { "divisible": true, "asset_longname": null, @@ -8177,11 +8140,11 @@ "/v2/sends": { "result": [ { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8189,7 +8152,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "divisible": true, "asset_longname": null, @@ -8201,11 +8164,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8213,11 +8176,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -8225,11 +8188,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 54, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "tx_index": 55, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8237,11 +8200,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172992, + "block_time": 1727197914, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -8249,11 +8212,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 53, - "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5", - "block_index": 187, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 54, + "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0", + "block_index": 188, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -8261,7 +8224,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172988, + "block_time": 1727197909, "asset_info": { "divisible": true, "asset_longname": null, @@ -8273,11 +8236,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 42, - "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", - "block_index": 155, - "source": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a:0", - "destination": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800:1", + "tx_index": 43, + "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "block_index": 156, + "source": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9:0", + "destination": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8285,7 +8248,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727172845, + "block_time": 1727197791, "asset_info": { "divisible": true, "asset_longname": null, @@ -8303,15 +8266,15 @@ "/v2/issuances": { "result": [ { - "tx_index": 46, - "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", + "tx_index": 47, + "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", "msg_index": 0, - "block_index": 159, + "block_index": 160, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -8326,20 +8289,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172872, + "block_time": 1727197808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 45, - "tx_hash": "a5f2456ffc60bddd11a2187be2545ed9673ef35e6a0875df3c290bd24ebc8710", + "tx_index": 46, + "tx_hash": "fd639c3216214bfc566ce6bff85523d1f912ae2ea06663639e0c84c52baf380b", "msg_index": 0, - "block_index": 158, + "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -8354,20 +8317,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727172868, + "block_time": 1727197803, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 44, - "tx_hash": "5e797f98d87c1d82f48855c68cbc2145fa7d10b690e61df3912aa5816a3b0fd0", + "tx_index": 45, + "tx_hash": "417d8004a24a08dbe43e8fa95a96c26e6cef20b05e59a0c4fc594f801d9e4be5", "msg_index": 0, - "block_index": 157, + "block_index": 158, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -8382,20 +8345,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172853, + "block_time": 1727197799, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 43, - "tx_hash": "3049d82ac4929aca6ab12d1284724095e241e923efa6738a54018abaee035899", + "tx_index": 44, + "tx_hash": "a4e645fc06d32b7988f633b99547ea5edd3803374c8cb442482d4f0511c34d93", "msg_index": 0, - "block_index": 156, + "block_index": 157, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -8410,20 +8373,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172849, + "block_time": 1727197795, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 42, - "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", + "tx_index": 43, + "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", "msg_index": 0, - "block_index": 155, + "block_index": 156, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", - "issuer": "bcrt1qwtnxjwlc53707laryg5x5q6r95qvqwpxmmeyds", + "source": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", + "issuer": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", "transfer": false, "callable": false, "call_date": 0, @@ -8438,7 +8401,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172845, + "block_time": 1727197791, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8448,15 +8411,15 @@ }, "/v2/issuances/": { "result": { - "tx_index": 46, - "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", + "tx_index": 47, + "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", "msg_index": 0, - "block_index": 159, + "block_index": 160, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "transfer": false, "callable": false, "call_date": 0, @@ -8471,7 +8434,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727172872, + "block_time": 1727197808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8479,17 +8442,17 @@ "/v2/sweeps": { "result": [ { - "tx_index": 58, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 59, + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "fee_paid_normalized": "0.00600000" } ], @@ -8499,17 +8462,17 @@ "/v2/sweeps/": { "result": [ { - "tx_index": 58, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "tx_index": 59, + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727173009, + "block_time": 1727197940, "fee_paid_normalized": "0.00600000" } ], @@ -8520,9 +8483,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f", + "tx_hash": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a", "block_index": 138, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8530,14 +8493,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727172762, + "block_time": 1727197705, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "2dc115c4e276c363bdb2380e969b9707cf2c501926261d057ce4279b372ab4d5", + "tx_hash": "c1af0d1895e7e32748751e45ad78af2d4b67c387c3ed9683a08452e211a39e38", "block_index": 137, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8545,7 +8508,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727172759, + "block_time": 1727197701, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8555,9 +8518,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f", + "tx_hash": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a", "block_index": 138, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8565,17 +8528,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727172762, + "block_time": 1727197705, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", + "tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8600,13 +8563,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727172750 + "block_time": 1727197692 }, { - "tx_hash": "21067a327942b0f6048517cfd393c93395321e75bb768e09bd564fc8569e3a8c", + "tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8631,13 +8594,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727172733 + "block_time": 1727197675 }, { - "tx_hash": "c768c790db646fe20b33e0828c0042c6705ee66248d68fde588e91455ea70222", + "tx_hash": "ed54030f74b75858f08f505f277c85ca7c83e98e45fa2466d05fa442687341c8", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8662,13 +8625,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727172729 + "block_time": 1727197672 }, { - "tx_hash": "534da62ebe569ffc89253db99c4e1679ccd9b6d4c2dbc7665a87332e366c99fc", + "tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8693,7 +8656,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727172708 + "block_time": 1727197651 } ], "next_cursor": null, @@ -8703,21 +8666,21 @@ "result": [ { "vout": 2, - "height": 146, + "height": 147, "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "address": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e" + "txid": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "address": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85" }, { "vout": 2, - "height": 155, + "height": 156, "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", - "address": "bcrt1qg4j653h8yfns3eql8vzs5lc64xf58d9uxma9az" + "txid": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "address": "bcrt1qxv2xktsndh0qf7kxa3pkw4dcvkfa9vrq58367j" } ], "next_cursor": null, @@ -8726,28 +8689,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "2aedfe80e416a241471b340a13f770bc621e74af48504b4329591367c64ade01" + "tx_hash": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18" }, { - "tx_hash": "edd6f686828415f585bd42c3ca4864ff84e1b5c2e75517b94fe17e3639d4da0d" + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" }, { - "tx_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f" + "tx_hash": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e" }, { - "tx_hash": "3bdb824385af75abbfdef877ede3f5683d21db19386acac7124de3685f5a3e65" + "tx_hash": "843d7cbeb9b210125b38b597d2ed41917fb22acd6436c121783609b58b9c537d" }, { - "tx_hash": "21b3e83b0b0df662cf0bd787cf0aa89d24f2ff8a271d6fc2859150e567f2d8af" + "tx_hash": "a1c5d79bf44808c8e24f848b3f4d7a846e2593e2578163675c2fea77878f8595" }, { - "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5" + "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0" }, { - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5" + "tx_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7" }, { - "tx_hash": "19599fadaad9840f5e7bb6465c54166ed713cd883ef70ec50099516e9f25e2e3" + "tx_hash": "b206c25c0bc100ebc583dc2f65b41a4bfd7733288f93306ac4a8c5ff87f91dfc" } ], "next_cursor": null, @@ -8755,32 +8718,32 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 6, - "tx_hash": "ff2e8295fd7ab1a1e12dccdb1e0cb26c7a2c9647fea68820fcb31e775bfb06c9" + "block_index": 3, + "tx_hash": "903cbc8965e6acb6b2ea3ef8ece17abe2c2b64fc1aa3afb5210c6e2c60b3878d" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ { "vout": 2, - "height": 146, + "height": 147, "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9" + "txid": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "02bb8559ea94609b1520fcf56725a2100fc3460e2ee9bb11401591eeaa7358b940" + "result": "0281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f" }, "/v2/bitcoin/transactions/": { - "result": "0200000000010119c00554343b1481534ce0b2c4181d9124c79fd2f81b4016de0bec6bf536ce880300000000ffffffff020000000000000000226a20689b27632757bf127305d82613cfb2a7af5b4764dfd522033f8dc72dcfcea81b680b0a2701000000160014d429e837a5671380d2470256f79bfb7e09709e7f02473044022006b7bd3381e0c96a3555827d1910233f84217ad197a9d1e64a6a3d42b1f1ad7a02202423e2658233424ba4fd5d7776e6a8d2c49d86aecc9d9b053af38c35d94709b00121028f281d89d24d92d61488bbd143cc93dd9c65b12631e2f3e98eab7fbc800e92e600000000" + "result": "020000000001017d16d49bb1c104f0a2f90a3471adefdef5c0e72a32ea7f426661c73c8a665e4e0300000000ffffffff020000000000000000226a20db1122b15c221f4eef3e201c33c1968a3a8b0bdcb78e7419fe31dec159fb8b16680b0a2701000000160014be3be0105284b008bb9cde97ec522d4b83e996940247304402202c38a782cd9d3d68111d7a3a2464e4bcd4863d926543fb78e69d6331f23e463602201bcd55ae851de5cec23db0867d3bd0fbf2f7e1f7f4f35536ce55c2c280779092012102fe9567defb89c4a13984578115e212f8baf547436155a46ddd5d36d93476881500000000" }, "/v2/bitcoin/estimatesmartfee": { - "result": 68517 + "result": 58603 }, "/v2/bitcoin/getmempoolinfo": { "result": { @@ -8800,27 +8763,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", - "tx_index": 60 + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_index": 61 } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "memo": null, "quantity": 10000, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "status": "valid", - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", - "tx_index": 60, + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_index": 61, "asset_info": { "divisible": true, "asset_longname": null, @@ -8832,19 +8795,19 @@ } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "CREDIT", "params": { - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "XCP", - "block_index": 193, + "block_index": 194, "calling_function": "send", - "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "quantity": 10000, - "tx_index": 60, + "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -8856,19 +8819,19 @@ } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 193, - "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "block_index": 194, + "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "quantity": 10000, - "tx_index": 60, + "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -8880,27 +8843,27 @@ } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727173018.087438, + "block_time": 1727197948.7673035, "btc_amount": 0, - "data": "020000000000000001000000000000271080ae5b876a7593a9bc79de22969203c476ffdfd3db", + "data": "020000000000000001000000000000271080d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a5", "destination": "", "fee": 10000, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", - "tx_index": 60, - "utxos_info": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e:1", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_index": 61, + "utxos_info": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "memo": null, "asset_info": { "divisible": true, @@ -8922,19 +8885,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "CREDIT", "params": { - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "XCP", - "block_index": 193, + "block_index": 194, "calling_function": "send", - "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "quantity": 10000, - "tx_index": 60, + "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -8952,27 +8915,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", - "tx_index": 60 + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_index": 61 } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "memo": null, "quantity": 10000, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "status": "valid", - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", - "tx_index": 60, + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_index": 61, "asset_info": { "divisible": true, "asset_longname": null, @@ -8984,19 +8947,19 @@ } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "CREDIT", "params": { - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "asset": "XCP", - "block_index": 193, + "block_index": 194, "calling_function": "send", - "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "quantity": 10000, - "tx_index": 60, + "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -9008,19 +8971,19 @@ } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 193, - "event": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "block_index": 194, + "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "quantity": 10000, - "tx_index": 60, + "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -9032,27 +8995,27 @@ } }, { - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727173018.087438, + "block_time": 1727197948.7673035, "btc_amount": 0, - "data": "020000000000000001000000000000271080ae5b876a7593a9bc79de22969203c476ffdfd3db", + "data": "020000000000000001000000000000271080d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a5", "destination": "", "fee": 10000, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", - "tx_hash": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e", - "tx_index": 60, - "utxos_info": "b331d5c3dd2afb10c0ba75a50040fed2ed2bb5ebd03fcaa3a9a99f65ae592b7e:1", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_index": 61, + "utxos_info": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "memo": null, "asset_info": { "divisible": true, @@ -9084,40 +9047,40 @@ "/v2/events/NEW_BLOCK": { "result": [ { - "event_index": 530, + "event_index": 537, "event": "NEW_BLOCK", "params": { - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_index": 193, - "block_time": 1727173013, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_index": 194, + "block_time": 1727197944, "difficulty": 545259519, - "previous_block_hash": "5220f925317bd380eb737cc229ca6937a27c36773824f8b47961e0f32bb2ac20" + "previous_block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6" }, "tx_hash": null, - "block_index": 193, - "block_time": 1727173013 + "block_index": 194, + "block_time": 1727197944 } ], - "next_cursor": 518, - "result_count": 93 + "next_cursor": 525, + "result_count": 94 }, "/v2/events/NEW_TRANSACTION": { "result": [ { - "event_index": 531, + "event_index": 538, "event": "NEW_TRANSACTION", "params": { - "block_hash": "16d3567ceffe2388df69fc2f0cf407c4d2fe4cc8ddc6169f61397a51c81ba240", - "block_index": 193, - "block_time": 1727173013, + "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_index": 194, + "block_time": 1727197944, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "tx_index": 59, - "utxos_info": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526:1", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_index": 60, + "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -9137,32 +9100,32 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_time": 1727173013 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_time": 1727197944 } ], - "next_cursor": 519, - "result_count": 60 + "next_cursor": 526, + "result_count": 61 }, "/v2/events/NEW_TRANSACTION_OUTPUT": { "result": [ { - "event_index": 272, + "event_index": 277, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 146, + "block_index": 147, "btc_amount": 10000, - "destination": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "destination": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "out_index": 0, - "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "tx_index": 33, - "block_time": 1727172806, + "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "tx_index": 34, + "block_time": 1727197754, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "block_index": 146, - "block_time": 1727172806 + "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "block_index": 147, + "block_time": 1727197754 } ], "next_cursor": 237, @@ -9171,58 +9134,58 @@ "/v2/events/BLOCK_PARSED": { "result": [ { - "event_index": 535, + "event_index": 542, "event": "BLOCK_PARSED", "params": { - "block_index": 193, - "ledger_hash": "534b4a3628caa97303e6cc1269983b4fced45884385013703dd4dc796e5b4c74", - "messages_hash": "b5d09ae5cbee61ab8850477703c767f527e3ef58ea87ac3c00b0219e561fe4b5", + "block_index": 194, + "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", + "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", "transaction_count": 1, - "txlist_hash": "9da6df7a15171ec8be20262b3b357947ec9c44a0ef66c23af472a4069a2602fd", - "block_time": 1727173013 + "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", + "block_time": 1727197944 }, "tx_hash": null, - "block_index": 193, - "block_time": 1727173013 + "block_index": 194, + "block_time": 1727197944 } ], - "next_cursor": 529, - "result_count": 93 + "next_cursor": 536, + "result_count": 94 }, "/v2/events/TRANSACTION_PARSED": { "result": [ { - "event_index": 534, + "event_index": 541, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "tx_index": 59 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_index": 60 }, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_time": 1727173013 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_time": 1727197944 } ], - "next_cursor": 528, - "result_count": 47 + "next_cursor": 535, + "result_count": 48 }, "/v2/events/DEBIT": { "result": [ { - "event_index": 532, + "event_index": 539, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 193, - "event": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", + "block_index": 194, + "event": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", "quantity": 1, - "tx_index": 59, + "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727173013, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -9232,30 +9195,30 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_time": 1727173013 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_time": 1727197944 } ], - "next_cursor": 525, + "next_cursor": 532, "result_count": 54 }, "/v2/events/CREDIT": { "result": [ { - "event_index": 526, + "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "asset": "XCP", - "block_index": 192, + "block_index": 193, "calling_function": "sweep", - "event": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", + "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", "quantity": 74499387833, - "tx_index": 58, + "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727173009, + "block_time": 1727197940, "asset_info": { "divisible": true, "asset_longname": null, @@ -9265,30 +9228,30 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 } ], - "next_cursor": 524, - "result_count": 67 + "next_cursor": 531, + "result_count": 68 }, "/v2/events/ENHANCED_SEND": { "result": [ { - "event_index": 484, + "event_index": 491, "event": "ENHANCED_SEND", "params": { "asset": "XCP", - "block_index": 187, - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 188, + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "memo": null, "quantity": 10000, - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "status": "valid", - "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5", - "tx_index": 53, - "block_time": 1727172988, + "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0", + "tx_index": 54, + "block_time": 1727197909, "asset_info": { "divisible": true, "asset_longname": null, @@ -9298,9 +9261,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "138f078f0aa7b5d446536e9bbb71971f50472dd926b5f661abe015aa693d36d5", - "block_index": 187, - "block_time": 1727172988 + "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0", + "block_index": 188, + "block_time": 1727197909 } ], "next_cursor": null, @@ -9309,20 +9272,20 @@ "/v2/events/MPMA_SEND": { "result": [ { - "event_index": 496, + "event_index": 503, "event": "MPMA_SEND", "params": { "asset": "XCP", - "block_index": 188, - "destination": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "block_index": 189, + "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "status": "valid", - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "tx_index": 54, - "block_time": 1727172992, + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_index": 55, + "block_time": 1727197914, "asset_info": { "divisible": true, "asset_longname": null, @@ -9332,12 +9295,12 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "01cfe478cf54eafbd50cc362f71a7d15bdfc2e1ced01310242aeffa61f103444", - "block_index": 188, - "block_time": 1727172992 + "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "block_index": 189, + "block_time": 1727197914 } ], - "next_cursor": 495, + "next_cursor": 502, "result_count": 3 }, "/v2/events/SEND": { @@ -9353,24 +9316,24 @@ "/v2/events/SWEEP": { "result": [ { - "event_index": 527, + "event_index": 534, "event": "SWEEP", "params": { - "block_index": 192, - "destination": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "block_index": 193, + "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", + "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", "status": "valid", - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "tx_index": 58, - "block_time": 1727173009, + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_index": 59, + "block_time": 1727197940, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "81268d5be436732c2dd8fd04b397957427db17311e26a1b409bf777ce12df4d5", - "block_index": 192, - "block_time": 1727173009 + "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "block_index": 193, + "block_time": 1727197940 } ], "next_cursor": null, @@ -9379,23 +9342,23 @@ "/v2/events/ASSET_DIVIDEND": { "result": [ { - "event_index": 330, + "event_index": 337, "event": "ASSET_DIVIDEND", "params": { "asset": "MYASSETA", - "block_index": 153, + "block_index": 154, "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "status": "valid", - "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", - "tx_index": 40, - "block_time": 1727172836, + "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "tx_index": 41, + "block_time": 1727197783, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, @@ -9409,9 +9372,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "71f8562ab2707a2e93982852e21dcda5c74d04d4a5cfc062edea3fb8f9de5609", - "block_index": 153, - "block_time": 1727172836 + "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "block_index": 154, + "block_time": 1727197783 } ], "next_cursor": null, @@ -9425,33 +9388,33 @@ "/v2/events/ASSET_CREATION": { "result": [ { - "event_index": 380, + "event_index": 387, "event": "ASSET_CREATION", "params": { "asset_id": "95428956980101314", "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", - "block_index": 159, - "block_time": 1727172872 + "block_index": 160, + "block_time": 1727197808 }, - "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", - "block_index": 159, - "block_time": 1727172872 + "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "block_index": 160, + "block_time": 1727197808 } ], - "next_cursor": 367, + "next_cursor": 374, "result_count": 9 }, "/v2/events/ASSET_ISSUANCE": { "result": [ { - "event_index": 381, + "event_index": 388, "event": "ASSET_ISSUANCE", "params": { "asset": "A95428956980101314", "asset_events": "creation", "asset_longname": "A95428959745315388.SUBNUMERIC", - "block_index": 159, + "block_index": 160, "call_date": 0, "call_price": 0.0, "callable": false, @@ -9459,42 +9422,42 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "status": "valid", "transfer": false, - "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", - "tx_index": 46, - "block_time": 1727172872, + "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "tx_index": 47, + "block_time": 1727197808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "67a59ad859450731f87d3604b29ac38783b33f4887738be6dfb25dfc59e21e79", - "block_index": 159, - "block_time": 1727172872 + "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "block_index": 160, + "block_time": 1727197808 } ], - "next_cursor": 374, + "next_cursor": 381, "result_count": 21 }, "/v2/events/ASSET_DESTRUCTION": { "result": [ { - "event_index": 533, + "event_index": 540, "event": "ASSET_DESTRUCTION", "params": { "asset": "XCP", - "block_index": 193, + "block_index": 194, "quantity": 1, - "source": "bcrt1q6s57sda9vufcp5j8qft00xlm0cyhp8nlyckkhn", + "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", "status": "valid", "tag": "64657374726f79", - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "tx_index": 59, - "block_time": 1727173013, + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_index": 60, + "block_time": 1727197944, "asset_info": { "divisible": true, "asset_longname": null, @@ -9504,9 +9467,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "37a42cc0f04a0659abe4dcc3d74a2fdd90f6be98998e2d7f1dd81fdf1a6b3526", - "block_index": 193, - "block_time": 1727173013 + "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "block_index": 194, + "block_time": 1727197944 } ], "next_cursor": 157, @@ -9515,12 +9478,12 @@ "/v2/events/OPEN_ORDER": { "result": [ { - "event_index": 515, + "event_index": 522, "event": "OPEN_ORDER", "params": { - "block_index": 191, + "block_index": 192, "expiration": 21, - "expire_index": 212, + "expire_index": 213, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -9531,11 +9494,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "status": "open", - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "tx_index": 57, - "block_time": 1727173005, + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_index": 58, + "block_time": 1727197936, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9559,40 +9522,40 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "1d9b9a9951d82027ca432c8043c929e87d7f68f688d0600cadc9a20627a4afd9", - "block_index": 191, - "block_time": 1727173005 + "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "block_index": 192, + "block_time": 1727197936 } ], - "next_cursor": 502, + "next_cursor": 509, "result_count": 7 }, "/v2/events/ORDER_MATCH": { "result": [ { - "event_index": 477, + "event_index": 484, "event": "ORDER_MATCH", "params": { "backward_asset": "BTC", "backward_quantity": 3000, - "block_index": 186, + "block_index": 187, "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "match_expire_index": 206, + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "match_expire_index": 207, "status": "pending", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx0_block_index": 184, + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_block_index": 185, "tx0_expiration": 21, - "tx0_hash": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8", - "tx0_index": 49, - "tx1_address": "bcrt1q4edcw6n4jw5mc7w7y2tfyq7ywmlal57m92uzuu", - "tx1_block_index": 186, + "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_index": 50, + "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "tx1_block_index": 187, "tx1_expiration": 21, - "tx1_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "tx1_index": 52, - "block_time": 1727172973, + "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx1_index": 53, + "block_time": 1727197905, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9611,43 +9574,43 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5808a5d48473537ea22f7ceb26b0efdb4a56312cbbdf037522b04bd75655662f", - "block_index": 186, - "block_time": 1727172973 + "tx_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "block_index": 187, + "block_time": 1727197905 } ], - "next_cursor": 461, + "next_cursor": 468, "result_count": 3 }, "/v2/events/ORDER_UPDATE": { "result": [ { - "event_index": 507, + "event_index": 514, "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06" + "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b" }, - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "block_index": 190, - "block_time": 1727173001 + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "block_index": 191, + "block_time": 1727197921 } ], - "next_cursor": 476, + "next_cursor": 483, "result_count": 11 }, "/v2/events/ORDER_FILLED": { "result": [ { - "event_index": 468, + "event_index": 475, "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e" + "tx_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf" }, - "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", - "block_index": 185, - "block_time": 1727172969 + "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "block_index": 186, + "block_time": 1727197901 } ], "next_cursor": null, @@ -9656,41 +9619,41 @@ "/v2/events/ORDER_MATCH_UPDATE": { "result": [ { - "event_index": 467, + "event_index": 474, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", + "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", "status": "completed" }, - "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", - "block_index": 185, - "block_time": 1727172969 + "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "block_index": 186, + "block_time": 1727197901 } ], - "next_cursor": 440, + "next_cursor": 447, "result_count": 2 }, "/v2/events/BTC_PAY": { "result": [ { - "event_index": 469, + "event_index": 476, "event": "BTC_PAY", "params": { - "block_index": 185, + "block_index": 186, "btc_amount": 2000, - "destination": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "order_match_id": "592f9fcd760a18acdefdde4bdc24af049871226c2c67bbb2c2868cbe2f30f5d8_ed4b69a16480bb93f5d89ca90adc7decd26beb52baef04bb09bfd9e4092d432e", - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "status": "valid", - "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", - "tx_index": 51, - "block_time": 1727172969, + "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "tx_index": 52, + "block_time": 1727197901, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "04fcdc16c87ca09062322b330848ea027530a679792c3295aa1c32c32f2f0b52", - "block_index": 185, - "block_time": 1727172969 + "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "block_index": 186, + "block_time": 1727197901 } ], "next_cursor": null, @@ -9699,20 +9662,20 @@ "/v2/events/CANCEL_ORDER": { "result": [ { - "event_index": 509, + "event_index": 516, "event": "CANCEL_ORDER", "params": { - "block_index": 190, - "offer_hash": "07b876f551586bc8be3a7f058b357ca87c39f55ade65c934219aabc479ecee06", - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "block_index": 191, + "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "status": "valid", - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "tx_index": 56, - "block_time": 1727173001 + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_index": 57, + "block_time": 1727197921 }, - "tx_hash": "9ec5314100571438b84aaf93fcbbc733bac2276cec79498a1d61b528defc3f17", - "block_index": 190, - "block_time": 1727173001 + "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "block_index": 191, + "block_time": 1727197921 } ], "next_cursor": null, @@ -9721,37 +9684,37 @@ "/v2/events/ORDER_EXPIRATION": { "result": [ { - "event_index": 448, + "event_index": 455, "event": "ORDER_EXPIRATION", "params": { - "block_index": 182, - "order_hash": "0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "block_time": 1727172888 + "block_index": 183, + "order_hash": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "block_time": 1727197823 }, "tx_hash": null, - "block_index": 182, - "block_time": 1727172888 + "block_index": 183, + "block_time": 1727197823 } ], - "next_cursor": 446, + "next_cursor": 453, "result_count": 2 }, "/v2/events/ORDER_MATCH_EXPIRATION": { "result": [ { - "event_index": 443, + "event_index": 450, "event": "ORDER_MATCH_EXPIRATION", "params": { - "block_index": 182, - "order_match_id": "c3cfa2bb155a0d7b7fc4ff225cfebafa83c7cb7ca8a87528673f136ea2dc3785_0ffc736b04e2fb632f1d71e9406c187c2256184e85d66eeddfaeb547d2ff764e", - "tx0_address": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx1_address": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", - "block_time": 1727172888 + "block_index": 183, + "order_match_id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "block_time": 1727197823 }, "tx_hash": null, - "block_index": 182, - "block_time": 1727172888 + "block_index": 183, + "block_time": 1727197823 } ], "next_cursor": null, @@ -9760,23 +9723,23 @@ "/v2/events/OPEN_DISPENSER": { "result": [ { - "event_index": 267, + "event_index": 272, "event": "OPEN_DISPENSER", "params": { "asset": "XCP", - "block_index": 145, + "block_index": 146, "dispense_count": 0, "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", - "origin": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "satoshirate": 1, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "status": 0, - "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", - "tx_index": 32, - "block_time": 1727172802, + "tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "tx_index": 33, + "block_time": 1727197749, "asset_info": { "divisible": true, "asset_longname": null, @@ -9789,9 +9752,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", - "block_index": 145, - "block_time": 1727172802 + "tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "block_index": 146, + "block_time": 1727197749 } ], "next_cursor": 254, @@ -9800,15 +9763,14 @@ "/v2/events/DISPENSER_UPDATE": { "result": [ { - "event_index": 274, + "event_index": 302, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", - "dispense_count": 1, - "give_remaining": 9334, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", - "status": 0, - "tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", + "give_remaining": 0, + "source": "mmMQv1E9m8quqXXYXh9u1wxK5Yao7BFUfG", + "status": 10, + "tx_hash": "d8c4d9743c70dc60ca111fcd9049da47ff04b408893eb8a73659046caf40e9d1", "asset_info": { "divisible": true, "asset_longname": null, @@ -9816,15 +9778,15 @@ "locked": true, "issuer": null }, - "give_remaining_normalized": "0.00009334" + "give_remaining_normalized": "0.00000000" }, - "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "block_index": 146, - "block_time": 1727172806 + "tx_hash": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18", + "block_index": 150, + "block_time": 1727197765 } ], - "next_cursor": 260, - "result_count": 4 + "next_cursor": 279, + "result_count": 6 }, "/v2/events/REFILL_DISPENSER": { "result": [ @@ -9834,13 +9796,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mmrTk1uWkJbzqpooxUaCcr7B4jGgGg1KQv", + "destination": "mmMQv1E9m8quqXXYXh9u1wxK5Yao7BFUfG", "dispense_quantity": 10, - "dispenser_tx_hash": "6c080efcc17677b29ea701b4f2d0ecfbbcb8173ff1c335a829c26efca51058ab", - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", - "tx_hash": "d7510384be95e1cf002f98fbbcb6b4abf6a6be9ef00f5d0b38a409f15af32e6f", + "dispenser_tx_hash": "d8c4d9743c70dc60ca111fcd9049da47ff04b408893eb8a73659046caf40e9d1", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx_hash": "4ef9bf3c6b9845c8479bd4df25a1ce8dd0706f42b3d93f1e934ac6472755b20d", "tx_index": 31, - "block_time": 1727172798, + "block_time": 1727197731, "asset_info": { "divisible": true, "asset_longname": null, @@ -9850,9 +9812,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "d7510384be95e1cf002f98fbbcb6b4abf6a6be9ef00f5d0b38a409f15af32e6f", + "tx_hash": "4ef9bf3c6b9845c8479bd4df25a1ce8dd0706f42b3d93f1e934ac6472755b20d", "block_index": 144, - "block_time": 1727172798 + "block_time": 1727197731 } ], "next_cursor": null, @@ -9861,20 +9823,20 @@ "/v2/events/DISPENSE": { "result": [ { - "event_index": 275, + "event_index": 280, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 146, + "block_index": 147, "btc_amount": 10000, - "destination": "bcrt1qcgsekprpcqxgfpyuvsqf5j3aettdga6ptsv82e", + "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "2ca06fa151cc698242cdc1914c7e7b611df2de46a7b7f8fc02efbdcb246423b0", - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", - "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "tx_index": 33, - "block_time": 1727172806, + "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "tx_index": 34, + "block_time": 1727197754, "asset_info": { "divisible": true, "asset_longname": null, @@ -9885,9 +9847,9 @@ "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "c0fafdbddad3ac3aba9d1beef5a7f90c922d804eed89a3dee0e78fada380eaa9", - "block_index": 146, - "block_time": 1727172806 + "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "block_index": 147, + "block_time": 1727197754 } ], "next_cursor": 240, @@ -9902,19 +9864,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1q9f77g7zt9fdvr8g08r2jxn2gguafxv9l9zvuhl", + "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f", + "tx_hash": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a", "tx_index": 25, "value": 66600.0, - "block_time": 1727172762, + "block_time": 1727197705, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "2baf2a4360134c4b98718f3a40e08d837b5bcbdfac3ef1b65dcd857892dcc81f", + "tx_hash": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a", "block_index": 138, - "block_time": 1727172762 + "block_time": 1727197705 } ], "next_cursor": 213, @@ -9945,16 +9907,16 @@ "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "start_block": 0, "status": "open", - "tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", + "tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", "tx_index": 22, - "block_time": 1727172750 + "block_time": 1727197692 }, - "tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", + "tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", "block_index": 135, - "block_time": 1727172750 + "block_time": 1727197692 } ], "next_cursor": 161, @@ -9967,11 +9929,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "c768c790db646fe20b33e0828c0042c6705ee66248d68fde588e91455ea70222" + "tx_hash": "ed54030f74b75858f08f505f277c85ca7c83e98e45fa2466d05fa442687341c8" }, "tx_hash": null, "block_index": 130, - "block_time": 1727172729 + "block_time": 1727197672 } ], "next_cursor": 110, @@ -9987,24 +9949,24 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "0eeeca68a04415f262edac7040876f250b76aa12324afcc6bf364ed72de7db0b", + "fairminter_tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", "paid_quantity": 34, - "source": "bcrt1q2v42cyt08jc8kyd7xa7kfzye4qr489caumf2nz", + "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", "status": "valid", - "tx_hash": "7f69a52eaeb924d936bb756185de09623ce5fc4623732debde3ceb5f2c01dcb1", + "tx_hash": "201f88f9894c716c618457972af68ef54a92b3eeb8876fb18286c0ea68a88c25", "tx_index": 23, - "block_time": 1727172754, + "block_time": 1727197697, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false } }, - "tx_hash": "7f69a52eaeb924d936bb756185de09623ce5fc4623732debde3ceb5f2c01dcb1", + "tx_hash": "201f88f9894c716c618457972af68ef54a92b3eeb8876fb18286c0ea68a88c25", "block_index": 136, - "block_time": 1727172754 + "block_time": 1727197697 } ], "next_cursor": 190, @@ -10013,68 +9975,68 @@ "/v2/events/ATTACH_TO_UTXO": { "result": [ { - "event_index": 312, + "event_index": 319, "event": "ATTACH_TO_UTXO", "params": { "asset": "MYASSETA", - "block_index": 151, - "destination": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796:1", + "block_index": 152, + "destination": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "status": "valid", - "tx_hash": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", - "tx_index": 38, - "block_time": 1727172827, + "tx_hash": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "tx_index": 39, + "block_time": 1727197774, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "8d54d321dbda9fa60c42f9f457a7c32e55a9c1b3c702eb29cea34e37a2e11796", - "block_index": 151, - "block_time": 1727172827 + "tx_hash": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "block_index": 152, + "block_time": 1727197774 } ], - "next_cursor": 291, + "next_cursor": 296, "result_count": 2 }, "/v2/events/DETACH_FROM_UTXO": { "result": [ { - "event_index": 304, + "event_index": 311, "event": "DETACH_FROM_UTXO", "params": { "asset": "MYASSETA", - "block_index": 150, - "destination": "bcrt1q933vzu0xczduymfwzrzjk49rgn4jdvafylvf6u", + "block_index": 151, + "destination": "bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "21b3e83b0b0df662cf0bd787cf0aa89d24f2ff8a271d6fc2859150e567f2d8af:0", + "source": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18:0", "status": "valid", - "tx_hash": "88ce36f56bec0bde16401bf8d29fc724911d18c4b2e04c5381143b345405c019", - "tx_index": 37, - "block_time": 1727172823, + "tx_hash": "4e5e668a3cc76166427fea322ae7c0f5deefad71340af9a2f004c1b19bd4167d", + "tx_index": 38, + "block_time": 1727197770, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2kvnz6l8q46k9wg5dc7s8nrw5s5j8vddgs4pql", + "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "88ce36f56bec0bde16401bf8d29fc724911d18c4b2e04c5381143b345405c019", - "block_index": 150, - "block_time": 1727172823 + "tx_hash": "4e5e668a3cc76166427fea322ae7c0f5deefad71340af9a2f004c1b19bd4167d", + "block_index": 151, + "block_time": 1727197770 } ], "next_cursor": null, @@ -10083,19 +10045,19 @@ "/v2/events/UTXO_MOVE": { "result": [ { - "event_index": 349, + "event_index": 356, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 155, - "destination": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800:1", + "block_index": 156, + "destination": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8:1", "msg_index": 1, "quantity": 1500000000, - "source": "8cba24adc20d74ea2be59a63ec96cc5b12cbed62b116a70e5c15f9ce68a1120a:0", + "source": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9:0", "status": "valid", - "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", - "tx_index": 42, - "block_time": 1727172845, + "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "tx_index": 43, + "block_time": 1727197791, "asset_info": { "divisible": true, "asset_longname": null, @@ -10105,12 +10067,12 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "01eb1e5280c959b562b228d00468d8e0b9915c7451fcab121e34f6963ba18800", - "block_index": 155, - "block_time": 1727172845 + "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "block_index": 156, + "block_time": 1727197791 } ], - "next_cursor": 346, + "next_cursor": 353, "result_count": 7 }, "/v2/events/BURN": { @@ -10122,17 +10084,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qx8nq65mcz45h8s0zdjjssw5cx8ln5utgc6xt67", + "source": "bcrt1qyxerv7nywhqduhyezl3s8kpvw9ts8svpuu3vka", "status": "valid", - "tx_hash": "fb670497b1b7bdfefa37ae903873231799070c083dad68feaeffa589cb749da7", + "tx_hash": "4425334c064a07609b1049b0e61f4368bf0e83b7743d8b0dfa6c08c631ca5015", "tx_index": 9, - "block_time": 1727172691, + "block_time": 1727197635, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "fb670497b1b7bdfefa37ae903873231799070c083dad68feaeffa589cb749da7", + "tx_hash": "4425334c064a07609b1049b0e61f4368bf0e83b7743d8b0dfa6c08c631ca5015", "block_index": 121, - "block_time": 1727172691 + "block_time": 1727197635 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_6_dispenser.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_6_dispenser.py index 212bd689d2..d17a82d5bb 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_6_dispenser.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_6_dispenser.py @@ -187,7 +187,7 @@ "asset": "XCP", "dispense_count": 0, "give_remaining": 20, - "source": "$ADDRESS_1", + "source": "$ADDRESS_11", "status": 0, "tx_hash": "$DISPENSER_4_TX_HASH", }, @@ -213,6 +213,43 @@ }, ], }, + { + "title": "Close Dispenser 4 with different source", + "transaction": "dispenser", + "source": "$ADDRESS_1", + "params": { + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10, + "mainchainrate": 1, # 1 BTC for 1 XCP + "status": 10, + "open_address": "$ADDRESS_11", + }, + "set_variables": { + "DISPENSER_4_CLOSE_TX_HASH": "$TX_HASH", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=DISPENSER_UPDATE", + "result": [ + { + "event": "DISPENSER_UPDATE", + "event_index": 266, + "params": { + "asset": "XCP", + "close_block_index": 150, + "last_status_tx_hash": "$TX_HASH", + "last_status_tx_source": "$ADDRESS_1", + "source": "$ADDRESS_1", + "status": 11, + "tx_hash": "$DISPENSER_4_TX_HASH", + }, + "tx_hash": "$TX_HASH", + } + ], + }, + ], + }, { "title": "Create Dispenser 5 with oracle address", "transaction": "dispenser", 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 1bf5984bac..6a1af52a1c 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py @@ -175,11 +175,11 @@ }, "controls": [ { - "url": "blocks/$BLOCK_INDEX/events?event_name=UTXO_MOVE,CREDIT,DEBIT,NEW_TRANSACTION", + "url": "blocks/$BLOCK_INDEX/events?event_name=UTXO_MOVE,CREDIT,DEBIT,DISPENSER_UPDATE,NEW_TRANSACTION", "result": [ { "event": "UTXO_MOVE", - "event_index": "$EVENT_INDEX_5", + "event_index": "$EVENT_INDEX_7", "params": { "asset": "MYASSETA", "block_index": "$BLOCK_INDEX", @@ -195,7 +195,7 @@ }, { "event": "CREDIT", - "event_index": "$EVENT_INDEX_4", + "event_index": "$EVENT_INDEX_6", "params": { "address": None, "asset": "MYASSETA", @@ -211,7 +211,7 @@ }, { "event": "DEBIT", - "event_index": "$EVENT_INDEX_3", + "event_index": "$EVENT_INDEX_5", "params": { "action": "utxo move", "address": None, @@ -225,6 +225,34 @@ }, "tx_hash": "$TX_HASH", }, + { + "event": "DISPENSER_UPDATE", + "event_index": "$EVENT_INDEX_4", + "params": { + "asset": "XCP", + "give_remaining": 0, + "source": "$ADDRESS_11", + "status": 10, + "tx_hash": "$DISPENSER_4_TX_HASH", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_3", + "params": { + "address": "$ADDRESS_1", + "asset": "XCP", + "block_index": 150, + "calling_function": "close dispenser", + "event": "$DISPENSER_4_CLOSE_TX_HASH", + "quantity": 20, + "tx_index": 0, + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, { "event": "NEW_TRANSACTION", "event_index": "$EVENT_INDEX_2", @@ -599,7 +627,7 @@ "addresses": [ { "address": "$ADDRESS_1", - "quantity": 84749988186, + "quantity": 84749988206, "utxo": None, "utxo_address": None, }, @@ -617,7 +645,7 @@ }, ], "asset": "XCP", - "total": 234749973019, + "total": 234749973039, }, ], }, From b02b3e01e272a91ff9cca4b20c0a55da6d61ab50 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 24 Sep 2024 17:51:28 +0000 Subject: [PATCH 36/46] update release notes --- release-notes/release-notes-v10.4.1.md | 1 + 1 file changed, 1 insertion(+) diff --git a/release-notes/release-notes-v10.4.1.md b/release-notes/release-notes-v10.4.1.md index 144eda7561..867bece111 100644 --- a/release-notes/release-notes-v10.4.1.md +++ b/release-notes/release-notes-v10.4.1.md @@ -14,6 +14,7 @@ * Fix division by zero in `api.util.divide()` * Catch invalid raw transaction in `/v2/transactions/info` endpoint * Fix duplicate command in `xcpcli.py` +* Fix `source` field when refilling a dispenser created by a different source ## Codebase From 233e299dfdf9e218a649a3ebc88f77e97a7bfeee Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 24 Sep 2024 17:55:30 +0000 Subject: [PATCH 37/46] update release notes --- release-notes/release-notes-v10.4.1.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/release-notes/release-notes-v10.4.1.md b/release-notes/release-notes-v10.4.1.md index 867bece111..ce544d0d1d 100644 --- a/release-notes/release-notes-v10.4.1.md +++ b/release-notes/release-notes-v10.4.1.md @@ -1,8 +1,11 @@ # Release Notes - Counterparty Core v10.4.1 (2024-??-??) +This release is a minor update with some bugfixes. # Upgrading +This release is not a protocol change and does not require any reparsing. + # ChangeLog ## Protocol Changes From 8047d7b0c9c229731ac87c45e42116d533e6991d Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 24 Sep 2024 18:14:22 +0000 Subject: [PATCH 38/46] add block_index as sortable field --- apiary.apib | 3537 +++++++++-------- .../counterpartycore/lib/api/queries.py | 21 +- .../test/regtest/apidoc/apicache.json | 3203 +++++++-------- 3 files changed, 3447 insertions(+), 3314 deletions(-) diff --git a/apiary.apib b/apiary.apib index 05fbded423..0c0cb76198 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-09-24 17:12:40.453783. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-09-24 18:03:51.493332. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -179,15 +179,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 537, "event": "NEW_BLOCK", "params": { - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", "block_index": 194, - "block_time": 1727197944, + "block_time": 1727201016, "difficulty": 545259519, - "previous_block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6" + "previous_block_hash": "72aff9bcfbc6a9f61cd1c192dc2322be91c061a847e81cc3b45854c9af31a6d5" }, "tx_hash": null, "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 } ], "next_cursor": 525, @@ -204,17 +204,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 538, "event": "NEW_TRANSACTION", "params": { - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", "block_index": 194, - "block_time": 1727197944, + "block_time": 1727201016, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "tx_index": 60, - "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", + "utxos_info": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -234,9 +234,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 } ], "next_cursor": 526, @@ -255,16 +255,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 147, "btc_amount": 10000, - "destination": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "destination": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "out_index": 0, - "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "tx_hash": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12", "tx_index": 34, - "block_time": 1727197754, + "block_time": 1727200827, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "tx_hash": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12", "block_index": 147, - "block_time": 1727197754 + "block_time": 1727200827 } ], "next_cursor": 237, @@ -282,15 +282,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 194, - "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", - "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", + "ledger_hash": "d16329e826a589a6af06767a820f5914ee69e22398c8612ed0c73909a1ab9b1f", + "messages_hash": "1bc8906db34e5bf45f47eca127e2b4cc60e46bbc8cf4301617e02c6f29b32301", "transaction_count": 1, - "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", - "block_time": 1727197944 + "txlist_hash": "555a7b8103a776f23b649ec297d2177fe885443dc976750a259547be47cd26e7", + "block_time": 1727201016 }, "tx_hash": null, "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 } ], "next_cursor": 536, @@ -308,12 +308,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "tx_index": 60 }, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 } ], "next_cursor": 535, @@ -333,15 +333,15 @@ Here is a list of events classified by theme and for each an example response: "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 194, - "event": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "event": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "quantity": 1, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -351,9 +351,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 } ], "next_cursor": 532, @@ -370,16 +370,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -389,9 +389,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 } ], "next_cursor": 531, @@ -410,14 +410,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "memo": null, "quantity": 10000, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "status": "valid", - "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0", + "tx_hash": "e7989369eefaec09cec5770c6128eb548023225e666d57bbed74b3d03240e9c3", "tx_index": 54, - "block_time": 1727197909, + "block_time": 1727200991, "asset_info": { "divisible": true, "asset_longname": null, @@ -427,9 +427,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0", + "tx_hash": "e7989369eefaec09cec5770c6128eb548023225e666d57bbed74b3d03240e9c3", "block_index": 188, - "block_time": 1727197909 + "block_time": 1727200991 } ], "next_cursor": null, @@ -448,15 +448,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 189, - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "status": "valid", - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "tx_index": 55, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "divisible": true, "asset_longname": null, @@ -466,9 +466,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "block_time": 1727197914 + "block_time": 1727200995 } ], "next_cursor": 502, @@ -506,20 +506,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 193, - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "status": "valid", - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, - "block_time": 1727197940, + "block_time": 1727201012, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 } ], "next_cursor": null, @@ -541,15 +541,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": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "status": "valid", - "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "tx_hash": "1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4", "tx_index": 41, - "block_time": 1727197783, + "block_time": 1727200857, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -563,9 +563,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": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "tx_hash": "1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4", "block_index": 154, - "block_time": 1727197783 + "block_time": 1727200857 } ], "next_cursor": null, @@ -598,11 +598,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": 160, - "block_time": 1727197808 + "block_time": 1727200884 }, - "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "tx_hash": "efd20bb15eb6a7ce22645a0fb33b1873d00dc0cdeb9533d37037e0fd6a63f512", "block_index": 160, - "block_time": 1727197808 + "block_time": 1727200884 } ], "next_cursor": 374, @@ -630,22 +630,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": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "status": "valid", "transfer": false, - "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "tx_hash": "efd20bb15eb6a7ce22645a0fb33b1873d00dc0cdeb9533d37037e0fd6a63f512", "tx_index": 47, - "block_time": 1727197808, + "block_time": 1727200884, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "tx_hash": "efd20bb15eb6a7ce22645a0fb33b1873d00dc0cdeb9533d37037e0fd6a63f512", "block_index": 160, - "block_time": 1727197808 + "block_time": 1727200884 } ], "next_cursor": 381, @@ -665,12 +665,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 194, "quantity": 1, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "status": "valid", "tag": "64657374726f79", - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "tx_index": 60, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -680,9 +680,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 } ], "next_cursor": 157, @@ -714,11 +714,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": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "status": "open", - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "tx_index": 58, - "block_time": 1727197936, + "block_time": 1727201008, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -742,9 +742,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": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "block_index": 192, - "block_time": 1727197936 + "block_time": 1727201008 } ], "next_cursor": 509, @@ -767,20 +767,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": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "match_expire_index": 207, "status": "pending", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx0_block_index": 185, "tx0_expiration": 21, - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", "tx0_index": 50, - "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "tx1_address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "tx1_block_index": 187, "tx1_expiration": 21, - "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx1_hash": "467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "tx1_index": 53, - "block_time": 1727197905, + "block_time": 1727200986, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -799,9 +799,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": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx_hash": "467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "block_index": 187, - "block_time": 1727197905 + "block_time": 1727200986 } ], "next_cursor": 468, @@ -819,11 +819,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b" + "tx_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57" }, - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "block_index": 191, - "block_time": 1727197921 + "block_time": 1727201003 } ], "next_cursor": 483, @@ -841,11 +841,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf" + "tx_hash": "e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63" }, - "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "tx_hash": "c78a916b13975e32514ea6fac0324481adfcc972f1db2cbabb96677db4d026cb", "block_index": 186, - "block_time": 1727197901 + "block_time": 1727200982 } ], "next_cursor": null, @@ -862,13 +862,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 474, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", - "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", + "order_match_id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "status": "completed" }, - "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "tx_hash": "c78a916b13975e32514ea6fac0324481adfcc972f1db2cbabb96677db4d026cb", "block_index": 186, - "block_time": 1727197901 + "block_time": 1727200982 } ], "next_cursor": 447, @@ -887,18 +887,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 186, "btc_amount": 2000, - "destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "destination": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "order_match_id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "status": "valid", - "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "tx_hash": "c78a916b13975e32514ea6fac0324481adfcc972f1db2cbabb96677db4d026cb", "tx_index": 52, - "block_time": 1727197901, + "block_time": 1727200982, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "tx_hash": "c78a916b13975e32514ea6fac0324481adfcc972f1db2cbabb96677db4d026cb", "block_index": 186, - "block_time": 1727197901 + "block_time": 1727200982 } ], "next_cursor": null, @@ -916,16 +916,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 191, - "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "offer_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "status": "valid", - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "tx_index": 57, - "block_time": 1727197921 + "block_time": 1727201003 }, - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "block_index": 191, - "block_time": 1727197921 + "block_time": 1727201003 } ], "next_cursor": null, @@ -943,13 +943,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 183, - "order_hash": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "block_time": 1727197823 + "order_hash": "3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "block_time": 1727200899 }, "tx_hash": null, "block_index": 183, - "block_time": 1727197823 + "block_time": 1727200899 } ], "next_cursor": 453, @@ -967,14 +967,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 183, - "order_match_id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "block_time": 1727197823 + "order_match_id": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926_3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "tx1_address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "block_time": 1727200899 }, "tx_hash": null, "block_index": 183, - "block_time": 1727197823 + "block_time": 1727200899 } ], "next_cursor": null, @@ -999,14 +999,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": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", - "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "oracle_address": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", + "origin": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "satoshirate": 1, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "status": 0, - "tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "tx_hash": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea", "tx_index": 33, - "block_time": 1727197749, + "block_time": 1727200823, "asset_info": { "divisible": true, "asset_longname": null, @@ -1019,9 +1019,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": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "tx_hash": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea", "block_index": 146, - "block_time": 1727197749 + "block_time": 1727200823 } ], "next_cursor": 254, @@ -1040,9 +1040,9 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "give_remaining": 0, - "source": "mmMQv1E9m8quqXXYXh9u1wxK5Yao7BFUfG", + "source": "mtFzzdWHLZqWVVMGKENQscisyMTejQamk6", "status": 10, - "tx_hash": "d8c4d9743c70dc60ca111fcd9049da47ff04b408893eb8a73659046caf40e9d1", + "tx_hash": "e6a18e565cab14aec4ba641f48a311c8643793f8fa84b25141ced517eaefc6f9", "asset_info": { "divisible": true, "asset_longname": null, @@ -1052,9 +1052,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00000000" }, - "tx_hash": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18", + "tx_hash": "664b33a2858e0961f08c6a45f5ec6b98042d62a4f4e98faf6862f374be802724", "block_index": 150, - "block_time": 1727197765 + "block_time": 1727200840 } ], "next_cursor": 279, @@ -1073,13 +1073,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mmMQv1E9m8quqXXYXh9u1wxK5Yao7BFUfG", + "destination": "mtFzzdWHLZqWVVMGKENQscisyMTejQamk6", "dispense_quantity": 10, - "dispenser_tx_hash": "d8c4d9743c70dc60ca111fcd9049da47ff04b408893eb8a73659046caf40e9d1", - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "tx_hash": "4ef9bf3c6b9845c8479bd4df25a1ce8dd0706f42b3d93f1e934ac6472755b20d", + "dispenser_tx_hash": "e6a18e565cab14aec4ba641f48a311c8643793f8fa84b25141ced517eaefc6f9", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "tx_hash": "b1e16747a30649a1850561f22204365ba5a8721325f1509544a91cbd364ea876", "tx_index": 31, - "block_time": 1727197731, + "block_time": 1727200815, "asset_info": { "divisible": true, "asset_longname": null, @@ -1089,9 +1089,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "4ef9bf3c6b9845c8479bd4df25a1ce8dd0706f42b3d93f1e934ac6472755b20d", + "tx_hash": "b1e16747a30649a1850561f22204365ba5a8721325f1509544a91cbd364ea876", "block_index": 144, - "block_time": 1727197731 + "block_time": 1727200815 } ], "next_cursor": null, @@ -1111,14 +1111,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 147, "btc_amount": 10000, - "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", + "destination": "bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", - "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "dispenser_tx_hash": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", + "tx_hash": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12", "tx_index": 34, - "block_time": 1727197754, + "block_time": 1727200827, "asset_info": { "divisible": true, "asset_longname": null, @@ -1129,9 +1129,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "tx_hash": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12", "block_index": 147, - "block_time": 1727197754 + "block_time": 1727200827 } ], "next_cursor": 240, @@ -1153,19 +1153,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": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a", + "tx_hash": "28499c6a50363ce063ee5e7f5de4d43ea5bf86a19dc05ea650443b343c00e258", "tx_index": 25, "value": 66600.0, - "block_time": 1727197705, + "block_time": 1727200790, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a", + "tx_hash": "28499c6a50363ce063ee5e7f5de4d43ea5bf86a19dc05ea650443b343c00e258", "block_index": 138, - "block_time": 1727197705 + "block_time": 1727200790 } ], "next_cursor": 213, @@ -1203,16 +1203,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "start_block": 0, "status": "open", - "tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", + "tx_hash": "5f1bb112a42ace59fa09d6a6fc1916eec2a940d44682b160c97bbae14494b127", "tx_index": 22, - "block_time": 1727197692 + "block_time": 1727200777 }, - "tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", + "tx_hash": "5f1bb112a42ace59fa09d6a6fc1916eec2a940d44682b160c97bbae14494b127", "block_index": 135, - "block_time": 1727197692 + "block_time": 1727200777 } ], "next_cursor": 161, @@ -1230,11 +1230,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "ed54030f74b75858f08f505f277c85ca7c83e98e45fa2466d05fa442687341c8" + "tx_hash": "ef8994a7c4750636583ff8d92fe09ac8c38d280813f2e2e923e07c9b9a3d9cda" }, "tx_hash": null, "block_index": 130, - "block_time": 1727197672 + "block_time": 1727200756 } ], "next_cursor": 110, @@ -1255,24 +1255,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", + "fairminter_tx_hash": "5f1bb112a42ace59fa09d6a6fc1916eec2a940d44682b160c97bbae14494b127", "paid_quantity": 34, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "status": "valid", - "tx_hash": "201f88f9894c716c618457972af68ef54a92b3eeb8876fb18286c0ea68a88c25", + "tx_hash": "bccbb42deef048209e07d9fb0f7340bb2b1e8f10c5e54f1cfa55accb8ac66283", "tx_index": 23, - "block_time": 1727197697, + "block_time": 1727200781, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } }, - "tx_hash": "201f88f9894c716c618457972af68ef54a92b3eeb8876fb18286c0ea68a88c25", + "tx_hash": "bccbb42deef048209e07d9fb0f7340bb2b1e8f10c5e54f1cfa55accb8ac66283", "block_index": 136, - "block_time": 1727197697 + "block_time": 1727200781 } ], "next_cursor": 190, @@ -1293,28 +1293,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f:1", + "destination": "10c98431b6929b14e27a040b17f2d22aafc7813478587e2bbaca26c1c6197538:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "status": "valid", - "tx_hash": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "tx_hash": "10c98431b6929b14e27a040b17f2d22aafc7813478587e2bbaca26c1c6197538", "tx_index": 39, - "block_time": 1727197774, + "block_time": 1727200849, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "tx_hash": "10c98431b6929b14e27a040b17f2d22aafc7813478587e2bbaca26c1c6197538", "block_index": 152, - "block_time": 1727197774 + "block_time": 1727200849 } ], "next_cursor": 296, @@ -1333,28 +1333,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p", + "destination": "bcrt1qe4v63z8qa2kvy5yzt4ssr8zhwxgqw84j8nmhvg", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18:0", + "source": "664b33a2858e0961f08c6a45f5ec6b98042d62a4f4e98faf6862f374be802724:0", "status": "valid", - "tx_hash": "4e5e668a3cc76166427fea322ae7c0f5deefad71340af9a2f004c1b19bd4167d", + "tx_hash": "f409e618a14bf7943a7027f7f66f55aaf0604d8c0cafc7c0062f5c6bdf82d7b6", "tx_index": 38, - "block_time": 1727197770, + "block_time": 1727200844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "4e5e668a3cc76166427fea322ae7c0f5deefad71340af9a2f004c1b19bd4167d", + "tx_hash": "f409e618a14bf7943a7027f7f66f55aaf0604d8c0cafc7c0062f5c6bdf82d7b6", "block_index": 151, - "block_time": 1727197770 + "block_time": 1727200844 } ], "next_cursor": null, @@ -1373,14 +1373,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 156, - "destination": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8:1", + "destination": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739:1", "msg_index": 1, "quantity": 1500000000, - "source": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9:0", + "source": "9d347b5453e8bf2608768d2b109367ce3aaf5a12d4bc63526fa6fb59eab1901d:0", "status": "valid", - "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "tx_hash": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739", "tx_index": 43, - "block_time": 1727197791, + "block_time": 1727200867, "asset_info": { "divisible": true, "asset_longname": null, @@ -1390,9 +1390,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "tx_hash": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739", "block_index": 156, - "block_time": 1727197791 + "block_time": 1727200867 } ], "next_cursor": 353, @@ -1414,17 +1414,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qyxerv7nywhqduhyezl3s8kpvw9ts8svpuu3vka", + "source": "bcrt1quygvuzd7gsxym55nf7w85agucgajyp9p5jduqp", "status": "valid", - "tx_hash": "4425334c064a07609b1049b0e61f4368bf0e83b7743d8b0dfa6c08c631ca5015", + "tx_hash": "bb35e686d434cae9951da80cf904917280d38b8251f1626625123d1a058d4a6d", "tx_index": 9, - "block_time": 1727197635, + "block_time": 1727200719, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "4425334c064a07609b1049b0e61f4368bf0e83b7743d8b0dfa6c08c631ca5015", + "tx_hash": "bb35e686d434cae9951da80cf904917280d38b8251f1626625123d1a058d4a6d", "block_index": 121, - "block_time": 1727197635 + "block_time": 1727200719 } ], "next_cursor": 65, @@ -1481,61 +1481,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 194, - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", - "block_time": 1727197944, - "previous_block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", + "block_time": 1727201016, + "previous_block_hash": "72aff9bcfbc6a9f61cd1c192dc2322be91c061a847e81cc3b45854c9af31a6d5", "difficulty": 545259519, - "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", - "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", - "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", + "ledger_hash": "d16329e826a589a6af06767a820f5914ee69e22398c8612ed0c73909a1ab9b1f", + "txlist_hash": "555a7b8103a776f23b649ec297d2177fe885443dc976750a259547be47cd26e7", + "messages_hash": "1bc8906db34e5bf45f47eca127e2b4cc60e46bbc8cf4301617e02c6f29b32301", "transaction_count": 1, "confirmed": true }, { "block_index": 193, - "block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", - "block_time": 1727197940, - "previous_block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", + "block_hash": "72aff9bcfbc6a9f61cd1c192dc2322be91c061a847e81cc3b45854c9af31a6d5", + "block_time": 1727201012, + "previous_block_hash": "7aa8cd7d46e84e234d53f8c14736afd98d1d5b8441f4f425fe8c6a52c3f33c87", "difficulty": 545259519, - "ledger_hash": "8ebf0ff459fa8641d33b886fc35228153c63004c1b6d68a64ff566e9cb4de0e3", - "txlist_hash": "506c4191b8f52510ebd356fd01ac1b9bedff7b578efd0bc5a3bd85b08251a1a8", - "messages_hash": "55b40ca33d6b637a0b2410ab1e90bade3f809597ed4a502535846e0b388bc84b", + "ledger_hash": "fe72f9a183bbe8818f70ff6fff77b10468c2dc87a83499c4efa91349405a7d67", + "txlist_hash": "aba2669687ed43d3c307f90145085717cceb79038c715445f52cb587817ca510", + "messages_hash": "2d72a21fa2540f29a91bb2530c0078d445e984faccd9deb0b88d92a542a6c1bb", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", - "block_time": 1727197936, - "previous_block_hash": "0ba357e822a1ad9f1ee40b954ad363862e0d3afdb30fc3a5d88c175a18c38bd7", + "block_hash": "7aa8cd7d46e84e234d53f8c14736afd98d1d5b8441f4f425fe8c6a52c3f33c87", + "block_time": 1727201008, + "previous_block_hash": "6df0e71250aea0de3e29c053f2ca49cc02c029f911a25356f455303c447d0a63", "difficulty": 545259519, - "ledger_hash": "ed2663e807abed358c370631c393de19d2a31d71fa358bbf242406c52d095df2", - "txlist_hash": "4f8e1381f981afd674cfc8e4809c2409298d7d9c5b7c0a249c1185b179f0bfa3", - "messages_hash": "26277faaf7ebbfead3cfb663fecb912b47ae85e99f0e2711bf04cc195eeffcde", + "ledger_hash": "b628adecb3a2aaf9e34fdd69db9d8deca8cd034cc5003533e94931ea8e2b3eb9", + "txlist_hash": "7907f570d25dd6ee1b06021b8124df870185e5dff3ed08257498d094cd0986b2", + "messages_hash": "fbc2a23c6dbea37463fe9e7b83b6f116bcdc875ab356c17de0eed630e0ca9998", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "0ba357e822a1ad9f1ee40b954ad363862e0d3afdb30fc3a5d88c175a18c38bd7", - "block_time": 1727197921, - "previous_block_hash": "0033c741fc5613728a96e2ae19f264cc8678daa5777b8c77ee8ae758f1fe49e8", + "block_hash": "6df0e71250aea0de3e29c053f2ca49cc02c029f911a25356f455303c447d0a63", + "block_time": 1727201003, + "previous_block_hash": "0878eceac6ded73fd8e873772ed9f93c488a46bdde659e59451e65eb9a3ee390", "difficulty": 545259519, - "ledger_hash": "155de78e77691fa4852cea37b3db40e304bef521b3f2171fcb32b62a818971c0", - "txlist_hash": "624b1a10e023bf054ec39c1414b51f63aac8f1f5ffffa026d9203d72d86b302e", - "messages_hash": "123f9ccc6393e5dbc04c9b5716b7453477353af2429199386c25d88d41655d2c", + "ledger_hash": "ca55ff06d6da636d78ab4e2f239b3e1f55fba257aad9da3ba207987ddef60d4f", + "txlist_hash": "15073748e67fe9f89a59617d6f98dd6825510a84aa9a81c8a71ab8e0d78371cb", + "messages_hash": "794947a3274da460c59e4e508e48909c67ed76799d6d25c045d0f2ae92fd60e9", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "0033c741fc5613728a96e2ae19f264cc8678daa5777b8c77ee8ae758f1fe49e8", - "block_time": 1727197917, - "previous_block_hash": "5e52af4ac2e545ee9b2f874c6e6b5906d2705730d220f92fdcf1c0660e9b93cb", + "block_hash": "0878eceac6ded73fd8e873772ed9f93c488a46bdde659e59451e65eb9a3ee390", + "block_time": 1727200999, + "previous_block_hash": "73be93be2c91012204c8a1e8321475345c6c634627235302e1e7abe56fcb5755", "difficulty": 545259519, - "ledger_hash": "6b01ff1925c48a6193a47beff2795790910c846d74e2158ba5198c52eced339e", - "txlist_hash": "07bfc2fae7438d22af5ca3ab15d012058a50878d9320712da2476c6904747dde", - "messages_hash": "1f296eb34f29f041f13eac8f6d242af1203389ba36e46aa60938d5cfc6ef5e23", + "ledger_hash": "c242b73b2ee5c7a4cb1a18658d3d1c025310777e321d11722eff7c218b55df48", + "txlist_hash": "d647e554d1cfd1e9685fb03b192d224c788e4e30b2e0aad469691108c00abd60", + "messages_hash": "ed415b2226b65db4bdc25bfb21ecca24635074bfa76649c0f9e9458187b5da57", "transaction_count": 1, "confirmed": true } @@ -1572,13 +1572,13 @@ Return the information of a block { "result": { "block_index": 194, - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", - "block_time": 1727197944, - "previous_block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", + "block_time": 1727201016, + "previous_block_hash": "72aff9bcfbc6a9f61cd1c192dc2322be91c061a847e81cc3b45854c9af31a6d5", "difficulty": 545259519, - "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", - "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", - "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", + "ledger_hash": "d16329e826a589a6af06767a820f5914ee69e22398c8612ed0c73909a1ab9b1f", + "txlist_hash": "555a7b8103a776f23b649ec297d2177fe885443dc976750a259547be47cd26e7", + "messages_hash": "1bc8906db34e5bf45f47eca127e2b4cc60e46bbc8cf4301617e02c6f29b32301", "transaction_count": 1, "confirmed": true } @@ -1590,7 +1590,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364` (str, required) - The index of the block to return + + block_hash: `52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93` (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,13 +1602,13 @@ Return the information of a block { "result": { "block_index": 194, - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", - "block_time": 1727197944, - "previous_block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", + "block_time": 1727201016, + "previous_block_hash": "72aff9bcfbc6a9f61cd1c192dc2322be91c061a847e81cc3b45854c9af31a6d5", "difficulty": 545259519, - "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", - "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", - "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", + "ledger_hash": "d16329e826a589a6af06767a820f5914ee69e22398c8612ed0c73909a1ab9b1f", + "txlist_hash": "555a7b8103a776f23b649ec297d2177fe885443dc976750a259547be47cd26e7", + "messages_hash": "1bc8906db34e5bf45f47eca127e2b4cc60e46bbc8cf4301617e02c6f29b32301", "transaction_count": 1, "confirmed": true } @@ -1639,17 +1639,17 @@ Returns the transactions of a block "result": [ { "tx_index": 60, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", - "block_time": 1727197944, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", + "block_time": 1727201016, + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", + "utxos_info": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -1705,11 +1705,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "8ebf0ff459fa8641d33b886fc35228153c63004c1b6d68a64ff566e9cb4de0e3", - "messages_hash": "55b40ca33d6b637a0b2410ab1e90bade3f809597ed4a502535846e0b388bc84b", + "ledger_hash": "fe72f9a183bbe8818f70ff6fff77b10468c2dc87a83499c4efa91349405a7d67", + "messages_hash": "2d72a21fa2540f29a91bb2530c0078d445e984faccd9deb0b88d92a542a6c1bb", "transaction_count": 1, - "txlist_hash": "506c4191b8f52510ebd356fd01ac1b9bedff7b578efd0bc5a3bd85b08251a1a8", - "block_time": 1727197940 + "txlist_hash": "aba2669687ed43d3c307f90145085717cceb79038c715445f52cb587817ca510", + "block_time": 1727201012 }, "tx_hash": null }, @@ -1718,43 +1718,43 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59 }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774" }, { "event_index": 534, "event": "SWEEP", "params": { "block_index": 193, - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "status": "valid", - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, - "block_time": 1727197940, + "block_time": 1727201012, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774" }, { "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -1764,22 +1764,22 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774" }, { "event_index": 532, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "XCP", "block_index": 193, - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -1789,7 +1789,7 @@ Returns the events of a block }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774" } ], "next_cursor": 531, @@ -1872,16 +1872,16 @@ Returns the events of a block filtered by event "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -1891,57 +1891,57 @@ Returns the events of a block filtered by event }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774" }, { "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 10, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774" }, { "event_index": 529, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "FAIRMINTA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 500000000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774" } ], "next_cursor": null, @@ -2004,16 +2004,16 @@ Returns the credits of a block "result": [ { "block_index": 193, - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -2025,20 +2025,20 @@ Returns the credits of a block }, { "block_index": 193, - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2046,20 +2046,20 @@ Returns the credits of a block }, { "block_index": 193, - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2115,16 +2115,16 @@ Returns the debits of a block "result": [ { "block_index": 194, - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "event": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -2164,24 +2164,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "object_id": "3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", "block_index": 183, "confirmed": true, - "block_time": 1727197823 + "block_time": 1727200899 }, { "type": "order", - "object_id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "object_id": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926", "block_index": 183, "confirmed": true, - "block_time": 1727197823 + "block_time": 1727200899 }, { "type": "order_match", - "object_id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "object_id": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926_3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", "block_index": 183, "confirmed": true, - "block_time": 1727197823 + "block_time": 1727200899 } ], "next_cursor": null, @@ -2213,13 +2213,13 @@ Returns the cancels of a block "result": [ { "tx_index": 57, - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "block_index": 191, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "offer_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "status": "valid", "confirmed": true, - "block_time": 1727197921 + "block_time": 1727201003 } ], "next_cursor": null, @@ -2251,15 +2251,15 @@ Returns the destructions of a block "result": [ { "tx_index": 60, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -2299,14 +2299,14 @@ Returns the issuances of a block "result": [ { "tx_index": 47, - "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "tx_hash": "efd20bb15eb6a7ce22645a0fb33b1873d00dc0cdeb9533d37037e0fd6a63f512", "msg_index": 0, "block_index": 160, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -2321,7 +2321,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197808, + "block_time": 1727200884, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2355,10 +2355,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2366,7 +2366,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "divisible": true, "asset_longname": null, @@ -2379,10 +2379,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2390,11 +2390,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2403,10 +2403,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2414,11 +2414,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2456,27 +2456,27 @@ Returns the dispenses of a block { "tx_index": 34, "dispense_index": 0, - "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "tx_hash": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12", "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", - "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", + "destination": "bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "dispenser_tx_hash": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "oracle_address": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "last_status_tx_hash": null, - "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "origin": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2491,7 +2491,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727197754, + "block_time": 1727200827, "asset_info": { "divisible": true, "asset_longname": null, @@ -2532,16 +2532,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 59, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "fee_paid_normalized": "0.00600000" } ], @@ -2575,17 +2575,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a", + "tx_hash": "28499c6a50363ce063ee5e7f5de4d43ea5bf86a19dc05ea650443b343c00e258", "block_index": 138, - "block_hash": "0f48254c4df0c5d1ed0f2e3ab66847fb82d706f14d765325f5cc700c99f20298", - "block_time": 1727197705, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "block_hash": "52b94d96284b74f21a236b814dc80c27bd7526673be9e9f5f03132ffe82ec736", + "block_time": 1727200790, + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a:1", + "utxos_info": "28499c6a50363ce063ee5e7f5de4d43ea5bf86a19dc05ea650443b343c00e258:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2610,25 +2610,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 52, - "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "tx_hash": "c78a916b13975e32514ea6fac0324481adfcc972f1db2cbabb96677db4d026cb", "block_index": 186, - "block_hash": "23715f413c2b5dfaacd98fbc7d09da3269edd75cb02570c248e4fb573680aa6f", - "block_time": 1727197901, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "68d8ed672f554db585e5508b660624d769c3a49fe8bfc118cf4109c241833983", + "block_time": 1727200982, + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "destination": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "btc_amount": 2000, "fee": 10000, - "data": "0b272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "data": "0b4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "supported": true, - "utxos_info": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35:0", + "utxos_info": "c78a916b13975e32514ea6fac0324481adfcc972f1db2cbabb96677db4d026cb:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", - "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", - "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", + "tx1_hash": "e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", + "order_match_id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "status": "valid" } }, @@ -2643,23 +2643,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "block_index": 191, - "block_hash": "0ba357e822a1ad9f1ee40b954ad363862e0d3afdb30fc3a5d88c175a18c38bd7", - "block_time": 1727197921, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "6df0e71250aea0de3e29c053f2ca49cc02c029f911a25356f455303c447d0a63", + "block_time": 1727201003, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "466ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "data": "4683919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "supported": true, - "utxos_info": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43:1", + "utxos_info": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "offer_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "status": "valid" } }, @@ -2674,17 +2674,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", - "block_time": 1727197944, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", + "block_time": 1727201016, + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", + "utxos_info": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2714,17 +2714,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "tx_hash": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea", "block_index": 146, - "block_hash": "5299ea203573879ed196eb5ff786b358150ae1bd89dffbae1ae232900e4ed5df", - "block_time": 1727197749, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "block_hash": "215f39f41a87d5f6354042ac92070b24c411fc9bbb411f2c1764a69a9b49f415", + "block_time": 1727200823, + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c0000000000000001000000000000000100000000000027100000000000000001008007af16c44d1cb1d2280aae2cd75ba4d1b373fdcd", + "data": "0c00000000000000010000000000000001000000000000271000000000000000010080cc2e38633a610c78c64a09e9dcc2667f64581a4b", "supported": true, - "utxos_info": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b:1", + "utxos_info": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2736,7 +2736,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "oracle_address": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "status": "valid", "asset_info": { "divisible": true, @@ -2760,17 +2760,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 34, - "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "tx_hash": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12", "block_index": 147, - "block_hash": "7721a2b857d2ec36261c17260af7d37a772e66b562375d53d8cf48d7c50088c4", - "block_time": 1727197754, - "source": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", - "destination": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "block_hash": "4b369e0db5f19121d207f0d2d84fd61e32d377921941ee8f24f922a7707f3929", + "block_time": 1727200827, + "source": "bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p", + "destination": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "btc_amount": 10000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c:0", + "utxos_info": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2790,17 +2790,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "tx_hash": "1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4", "block_index": 154, - "block_hash": "43fef80a7ca26a574e27a52b50ae7749bd5e62fc9ba05b1493fe73196d95122d", - "block_time": 1727197783, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "57e37c492b79206924ab8071e1d0686daf1d8a37ede6747cf3cd7ce3de8b0998", + "block_time": 1727200857, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f:1", + "utxos_info": "1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2813,7 +2813,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2838,17 +2838,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 47, - "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "tx_hash": "efd20bb15eb6a7ce22645a0fb33b1873d00dc0cdeb9533d37037e0fd6a63f512", "block_index": 160, - "block_hash": "5d5e8261118767d94ca39548996035726c76616ccf81f607d075c1691291abab", - "block_time": 1727197808, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "1c1775c804631e7bfa62aadcb237feb569971eda60cf7194e1061f1e210fcced", + "block_time": 1727200884, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f:1", + "utxos_info": "efd20bb15eb6a7ce22645a0fb33b1873d00dc0cdeb9533d37037e0fd6a63f512:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2880,17 +2880,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "block_index": 192, - "block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", - "block_time": 1727197936, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "7aa8cd7d46e84e234d53f8c14736afd98d1d5b8441f4f425fe8c6a52c3f33c87", + "block_time": 1727201008, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac:1", + "utxos_info": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2933,17 +2933,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0", + "tx_hash": "e7989369eefaec09cec5770c6128eb548023225e666d57bbed74b3d03240e9c3", "block_index": 188, - "block_hash": "23fdd89d049f7f7c1a8eaccd1f8da84d09ff094adb7410c555601d5780279009", - "block_time": 1727197909, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "block_hash": "5a0746e19a06039da3fef72fef1b1421c66007f6d63a0685078d4bdba95c873e", + "block_time": 1727200991, + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080be3be0105284b008bb9cde97ec522d4b83e99694", + "data": "0200000000000000010000000000002710806c45b04730370dc7e778ed200c19f22a08c064a9", "supported": true, - "utxos_info": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0:1", + "utxos_info": "e7989369eefaec09cec5770c6128eb548023225e666d57bbed74b3d03240e9c3:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2951,7 +2951,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "memo": null, "asset_info": { "divisible": true, @@ -2974,17 +2974,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "block_hash": "5e52af4ac2e545ee9b2f874c6e6b5906d2705730d220f92fdcf1c0660e9b93cb", - "block_time": 1727197914, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "73be93be2c91012204c8a1e8321475345c6c634627235302e1e7abe56fcb5755", + "block_time": 1727200995, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d780d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a580be3be0105284b008bb9cde97ec522d4b83e99694400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "0300038054c1ba334a1912f96353f110938927c645ff9064802e12acb6aeb47c0265e777c21744bff0466743dd806c45b04730370dc7e778ed200c19f22a08c064a9400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152:0", + "utxos_info": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2992,14 +2992,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -3007,7 +3007,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3033,23 +3033,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", - "block_time": 1727197940, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "block_hash": "72aff9bcfbc6a9f61cd1c192dc2322be91c061a847e81cc3b45854c9af31a6d5", + "block_time": 1727201012, + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480be3be0105284b008bb9cde97ec522d4b83e99694017377656570206d7920617373657473", + "data": "04806c45b04730370dc7e778ed200c19f22a08c064a9017377656570206d7920617373657473", "supported": true, - "utxos_info": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e:1", + "utxos_info": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "flags": 1, "memo": "sweep my assets" } @@ -3082,17 +3082,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 60, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", - "block_time": 1727197944, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", + "block_time": 1727201016, + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", + "utxos_info": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3115,23 +3115,23 @@ Returns the list of the last ten transactions }, { "tx_index": 59, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", - "block_time": 1727197940, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "block_hash": "72aff9bcfbc6a9f61cd1c192dc2322be91c061a847e81cc3b45854c9af31a6d5", + "block_time": 1727201012, + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480be3be0105284b008bb9cde97ec522d4b83e99694017377656570206d7920617373657473", + "data": "04806c45b04730370dc7e778ed200c19f22a08c064a9017377656570206d7920617373657473", "supported": true, - "utxos_info": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e:1", + "utxos_info": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "flags": 1, "memo": "sweep my assets" } @@ -3149,7 +3149,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000101acdfc8ed80a83c50a27cdd2f09ccf3945c47ad134e4b2b1c41fa67d5426958a30000000000ffffffff020000000000000000356a3340c01f32e5138051a2f1c506acfb548df8a06bf7a1751910bafef1d98b422d6352a91ad9336067b25b29d909a1d242de2582acf0ca052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea90247304402201e8b0de0d9012512e0b8ad2fe0e384d4e671a610f4289e8c3cb541937f4177db022020ac176092284b07ed1f700a4183ef186172b8ccbfff4f44b93cb4189e07a03e01210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f00000000` (str, required) - Raw transaction in hex format + + rawtransaction: `0200000000010614f083b09bb6febdb3c81016ad99dad6ce853dfb3c91f251c0c0c4672d63ad620000000000ffffffff0df09d9a242b435b364ab264836c57de89b876833215f596a8f6f8de93f683900000000000ffffffff3154fc48442d953119650689580360b7bf92316dd8931e26a4316e941c995ffe0000000000ffffffff809160fa9715547fcfe74787eec783669aff6a57da49f262a225ebed0f08f56d0000000000ffffffffe20fa5033fab96ae3b54e859d7d9ecd42ee0bdd68542b55422b4ec5ff97aca9d0000000000ffffffff29b30fbffa10b0a8c0e33030fb2dab887284d64b90a496fd205e5fbfe3217d000000000000ffffffff04e80300000000000069512103891f35fe17a00335c7118e56ee2b6368073ae54657b2361249e48365594522552102e6bfdd833bb23fcdda57f332d9c3ce8b9a7f148904fee72524f4ac7bca49824b2103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9753aee80300000000000069512103891f35fe17a00335c7d5692d835faecbc65af494ca7825e35971008f5adb4930210276db5dad291e894a6e2bf1573eb40c99fec0e4cf63bd3aa568b11c3cfa7e8fb32103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9753aee80300000000000069512103bf1f35fe17a00335c7129a556e7fa2d23470fc54aed165e359770a429f00dd25210376db5dad291e89636e2bf1573eb40c9cdec0e4cf63bd3aa548b11c3cfa7e8fdd2103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9753ae387923fc060000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02473044022063be76625e8f989777e509375b68761cde61e90c730377f4ae9a963fbbd1ea810220099087fd49f101fb577597503304cff40c3ed518d732cb114e31625dbd8411c8012103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9702473044022047195342c7f93646a9f52027eebee760e7a587b73aa1af4cf3409fa12ada28f302206904bd6c03783bba0c3c5db79a936015192d8d2ec9a75e268b855cd63c8e7412012103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec970247304402204d0d8f141eeabaf284be3385c9a884e125d944f9349e796fc37afd8cbf97917102202b6fb1b039705f72ee8c5e885fc7054c0ae49bd645fa08f801cbbf307bdca2f6012103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec970247304402200730ee1653a76aa7b97a3ae5b0de69f3a4c2cb3b7b60cdc7e98008d81f38714602203fb41b3edefbf12d90b73656572e6bf7acdcab6456cc63196ccf3d03d41d04ab012103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9702473044022051d0d555b9a1b3e39c44095140403e81ad6fe13c5bca36d75c0794c5e3f6786102202434ff051d31cd22b6b854930f66f52b28a3db6cffe017ff68798aa1cd843694012103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec970247304402203122b69adf43edab2670f1a5c95004d71c4d1a6c970b854ba4d0a186245686d902207d1bc7dd75c3c081ed74b7164c0f3d858b518542ad3f2637c5296961e8e35a33012103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9700000000` (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. @@ -3162,18 +3162,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "0300038054c1ba334a1912f96353f110938927c645ff9064802e12acb6aeb47c0265e777c21744bff0466743dd806c45b04730370dc7e778ed200c19f22a08c064a9400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "acdfc8ed80a83c50a27cdd2f09ccf3945c47ad134e4b2b1c41fa67d5426958a3", + "hash": "14f083b09bb6febdb3c81016ad99dad6ce853dfb3c91f251c0c0c4672d63ad62", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "0df09d9a242b435b364ab264836c57de89b876833215f596a8f6f8de93f68390", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "3154fc48442d953119650689580360b7bf92316dd8931e26a4316e941c995ffe", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "809160fa9715547fcfe74787eec783669aff6a57da49f262a225ebed0f08f56d", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "e20fa5033fab96ae3b54e859d7d9ecd42ee0bdd68542b55422b4ec5ff97aca9d", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "29b30fbffa10b0a8c0e33030fb2dab887284d64b90a496fd205e5fbfe3217d00", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3182,51 +3217,75 @@ Returns Counterparty information from a raw transaction in hex format. ], "vout": [ { - "value": 0, - "script_pub_key": "6a3340c01f32e5138051a2f1c506acfb548df8a06bf7a1751910bafef1d98b422d6352a91ad9336067b25b29d909a1d242de2582ac" + "value": 1000, + "script_pub_key": "512103891f35fe17a00335c7118e56ee2b6368073ae54657b2361249e48365594522552102e6bfdd833bb23fcdda57f332d9c3ce8b9a7f148904fee72524f4ac7bca49824b2103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9753ae" + }, + { + "value": 1000, + "script_pub_key": "512103891f35fe17a00335c7d5692d835faecbc65af494ca7825e35971008f5adb4930210276db5dad291e894a6e2bf1573eb40c99fec0e4cf63bd3aa568b11c3cfa7e8fb32103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9753ae" + }, + { + "value": 1000, + "script_pub_key": "512103bf1f35fe17a00335c7129a556e7fa2d23470fc54aed165e359770a429f00dd25210376db5dad291e89636e2bf1573eb40c9cdec0e4cf63bd3aa548b11c3cfa7e8fdd2103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9753ae" }, { - "value": 4999990000, - "script_pub_key": "00147fe57e1fa9d634b73d344e77a53d74837f310ea9" + "value": 29999987000, + "script_pub_key": "00147d93ff5e96d2aa8302b09d3661285dec7e9d27ab" } ], "vtxinwit": [ - "304402201e8b0de0d9012512e0b8ad2fe0e384d4e671a610f4289e8c3cb541937f4177db022020ac176092284b07ed1f700a4183ef186172b8ccbfff4f44b93cb4189e07a03e01", - "0281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f" + "3044022063be76625e8f989777e509375b68761cde61e90c730377f4ae9a963fbbd1ea810220099087fd49f101fb577597503304cff40c3ed518d732cb114e31625dbd8411c801", + "03e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec97", + "3044022047195342c7f93646a9f52027eebee760e7a587b73aa1af4cf3409fa12ada28f302206904bd6c03783bba0c3c5db79a936015192d8d2ec9a75e268b855cd63c8e741201", + "03e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec97", + "304402204d0d8f141eeabaf284be3385c9a884e125d944f9349e796fc37afd8cbf97917102202b6fb1b039705f72ee8c5e885fc7054c0ae49bd645fa08f801cbbf307bdca2f601", + "03e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec97", + "304402200730ee1653a76aa7b97a3ae5b0de69f3a4c2cb3b7b60cdc7e98008d81f38714602203fb41b3edefbf12d90b73656572e6bf7acdcab6456cc63196ccf3d03d41d04ab01", + "03e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec97", + "3044022051d0d555b9a1b3e39c44095140403e81ad6fe13c5bca36d75c0794c5e3f6786102202434ff051d31cd22b6b854930f66f52b28a3db6cffe017ff68798aa1cd84369401", + "03e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec97", + "304402203122b69adf43edab2670f1a5c95004d71c4d1a6c970b854ba4d0a186245686d902207d1bc7dd75c3c081ed74b7164c0f3d858b518542ad3f2637c5296961e8e35a3301", + "03e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec97" ], "lock_time": 0, - "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", - "tx_id": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b" + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", + "tx_id": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055" }, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MYASSETA", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", + "quantity": 10, + "memo": null, + "memo_is_hex": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } + { + "asset": "XCP", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "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" } @@ -3238,7 +3297,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1` (str, required) - Transaction hash + + tx_hash: `044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a` (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. @@ -3249,18 +3308,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a5", + "data": "0200000000000000010000000000002710802e12acb6aeb47c0265e777c21744bff0466743dd", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "fa3682e8cbbffbbaaebf0f6b7a0120c87e84b22955aac5b13fb68063a0c6b80a", + "hash": "d8bd35840ef462d4d8ffb6ffcc1987a2d498d242b5e85de32a26d502b84dac99", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3270,20 +3329,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e7652ca5c019dea838c31a7526be39a0fb1ec044af1e5b36fe45c8b528a8b324cdc6bca3691b9a2d10243786323c5" + "script_pub_key": "6a2eac5cd552e0d9ff14fb9826f766e91d711f9aa0abece8791ca82905ca10e0a891f3e35ab723de58639c1b773ad606" }, { "value": 4999955000, - "script_pub_key": "0014be3be0105284b008bb9cde97ec522d4b83e99694" + "script_pub_key": "00146c45b04730370dc7e778ed200c19f22a08c064a9" } ], "vtxinwit": [ - "304402203022c08ac43105804d47bbf435909c214ce3221d00a256c1b5c2da0a0487a54e02204afe95b5b3516129151270b327dd409f4af9be9b3fe17f7e7b7d790a87be698601", - "02fe9567defb89c4a13984578115e212f8baf547436155a46ddd5d36d934768815" + "304402206dfd3dfa3a68eec239ebd85d1f37fb2b2f0d5d5f2d430a4fc1ed186aded3a46602203b2e4f6abe92d26849955a89d6f2c180cdb55802755da5f8447f0c03f578347501", + "03b5e165703c3ef7b3eb8feb32c82da0679166b81eae0830c1d0d0803fe78048b0" ], "lock_time": 0, - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", - "tx_id": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1" + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", + "tx_id": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3291,7 +3350,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "memo": null, "asset_info": { "divisible": true, @@ -3352,17 +3411,17 @@ Returns a transaction by its index. { "result": { "tx_index": 60, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", - "block_time": 1727197944, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", + "block_time": 1727201016, + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", + "utxos_info": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3391,7 +3450,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d` (str, required) - The hash of the transaction + + tx_hash: `da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb` (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. @@ -3403,17 +3462,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 60, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", - "block_time": 1727197944, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", + "block_time": 1727201016, + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", + "utxos_info": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3466,47 +3525,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59 }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 534, "event": "SWEEP", "params": { "block_index": 193, - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "status": "valid", - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, - "block_time": 1727197940, + "block_time": 1727201012, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -3516,24 +3575,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "XCP", "block_index": 193, - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -3543,36 +3602,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 10, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 } ], "next_cursor": 530, @@ -3585,7 +3644,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e` (str, required) - The hash of the transaction to return + + tx_hash: `ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `542` (str, optional) - The last event index to return @@ -3609,47 +3668,47 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59 }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 534, "event": "SWEEP", "params": { "block_index": 193, - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "status": "valid", - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, - "block_time": 1727197940, + "block_time": 1727201012, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -3659,24 +3718,24 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "XCP", "block_index": 193, - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -3686,36 +3745,36 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 10, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 } ], "next_cursor": 530, @@ -3728,7 +3787,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152` (str, required) - The hash of the transaction to return + + tx_hash: `4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055` (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 @@ -3747,10 +3806,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -3758,7 +3817,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "divisible": true, "asset_longname": null, @@ -3771,10 +3830,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3782,11 +3841,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -3795,10 +3854,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -3806,11 +3865,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -3828,7 +3887,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c` (str, required) - The hash of the transaction to return + + tx_hash: `6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12` (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 @@ -3848,27 +3907,27 @@ Returns the dispenses of a block { "tx_index": 34, "dispense_index": 0, - "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "tx_hash": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12", "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", - "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", + "destination": "bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "dispenser_tx_hash": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "oracle_address": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "last_status_tx_hash": null, - "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "origin": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3883,7 +3942,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727197754, + "block_time": 1727200827, "asset_info": { "divisible": true, "asset_longname": null, @@ -3927,16 +3986,16 @@ Returns the events of a transaction "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -3946,63 +4005,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 10, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 529, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "FAIRMINTA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 500000000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 } ], "next_cursor": null, @@ -4015,7 +4074,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e` (str, required) - The hash of the transaction to return + + tx_hash: `ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `542` (str, optional) - The last event index to return + Default: `None` @@ -4037,16 +4096,16 @@ Returns the events of a transaction "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -4056,63 +4115,63 @@ Returns the events of a transaction }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 10, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 529, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "FAIRMINTA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 500000000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 } ], "next_cursor": null, @@ -4127,7 +4186,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj,bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs,bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9` (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 @@ -4151,7 +4210,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4161,7 +4220,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -4172,7 +4231,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4182,7 +4241,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -4193,7 +4252,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4203,7 +4262,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -4214,7 +4273,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4224,7 +4283,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -4235,7 +4294,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4245,7 +4304,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -4262,7 +4321,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj,bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs,bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9` (str, required) - Comma separated list of addresses to return + cursor: `60` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4281,17 +4340,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 58, - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "block_index": 192, - "block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", - "block_time": 1727197936, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "7aa8cd7d46e84e234d53f8c14736afd98d1d5b8441f4f425fe8c6a52c3f33c87", + "block_time": 1727201008, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac:1", + "utxos_info": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4327,23 +4386,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 57, - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "block_index": 191, - "block_hash": "0ba357e822a1ad9f1ee40b954ad363862e0d3afdb30fc3a5d88c175a18c38bd7", - "block_time": 1727197921, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "6df0e71250aea0de3e29c053f2ca49cc02c029f911a25356f455303c447d0a63", + "block_time": 1727201003, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "466ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "data": "4683919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "supported": true, - "utxos_info": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43:1", + "utxos_info": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "offer_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "status": "valid" } }, @@ -4351,17 +4410,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "block_index": 190, - "block_hash": "0033c741fc5613728a96e2ae19f264cc8678daa5777b8c77ee8ae758f1fe49e8", - "block_time": 1727197917, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "0878eceac6ded73fd8e873772ed9f93c488a46bdde659e59451e65eb9a3ee390", + "block_time": 1727200999, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b:1", + "utxos_info": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4397,17 +4456,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "block_hash": "5e52af4ac2e545ee9b2f874c6e6b5906d2705730d220f92fdcf1c0660e9b93cb", - "block_time": 1727197914, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "73be93be2c91012204c8a1e8321475345c6c634627235302e1e7abe56fcb5755", + "block_time": 1727200995, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d780d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a580be3be0105284b008bb9cde97ec522d4b83e99694400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "0300038054c1ba334a1912f96353f110938927c645ff9064802e12acb6aeb47c0265e777c21744bff0466743dd806c45b04730370dc7e778ed200c19f22a08c064a9400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152:0", + "utxos_info": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4415,14 +4474,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -4430,7 +4489,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4449,25 +4508,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 52, - "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "tx_hash": "c78a916b13975e32514ea6fac0324481adfcc972f1db2cbabb96677db4d026cb", "block_index": 186, - "block_hash": "23715f413c2b5dfaacd98fbc7d09da3269edd75cb02570c248e4fb573680aa6f", - "block_time": 1727197901, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "68d8ed672f554db585e5508b660624d769c3a49fe8bfc118cf4109c241833983", + "block_time": 1727200982, + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "destination": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "btc_amount": 2000, "fee": 10000, - "data": "0b272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "data": "0b4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "supported": true, - "utxos_info": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35:0", + "utxos_info": "c78a916b13975e32514ea6fac0324481adfcc972f1db2cbabb96677db4d026cb:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", - "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", - "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", + "tx1_hash": "e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", + "order_match_id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "status": "valid" } }, @@ -4484,7 +4543,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj,bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs,bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `542` (str, optional) - The last event index to return @@ -4520,11 +4579,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "status": "open", - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "tx_index": 58, - "block_time": 1727197936, + "block_time": 1727201008, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4548,24 +4607,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "block_index": 192, - "block_time": 1727197936 + "block_time": 1727201008 }, { "event_index": 521, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "block_index": 192, - "event": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "event": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "quantity": 1000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727197936, + "block_time": 1727201008, "asset_info": { "divisible": true, "asset_longname": null, @@ -4575,25 +4634,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "block_index": 192, - "block_time": 1727197936 + "block_time": 1727201008 }, { "event_index": 520, "event": "NEW_TRANSACTION", "params": { - "block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", + "block_hash": "7aa8cd7d46e84e234d53f8c14736afd98d1d5b8441f4f425fe8c6a52c3f33c87", "block_index": 192, - "block_time": 1727197936, + "block_time": 1727201008, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "tx_index": 58, - "utxos_info": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac:1", + "utxos_info": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4625,40 +4684,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "block_index": 192, - "block_time": 1727197936 + "block_time": 1727201008 }, { "event_index": 516, "event": "CANCEL_ORDER", "params": { "block_index": 191, - "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "offer_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "status": "valid", - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "tx_index": 57, - "block_time": 1727197921 + "block_time": 1727201003 }, - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "block_index": 191, - "block_time": 1727197921 + "block_time": 1727201003 }, { "event_index": 515, "event": "CREDIT", "params": { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "block_index": 191, "calling_function": "cancel order", - "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "event": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727197921, + "block_time": 1727201003, "asset_info": { "divisible": true, "asset_longname": null, @@ -4668,9 +4727,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "block_index": 191, - "block_time": 1727197921 + "block_time": 1727201003 } ], "next_cursor": 513, @@ -4683,7 +4742,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde,bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk,bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct` (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 @@ -4699,17 +4758,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "memo": null, "quantity": 10000, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "status": "valid", - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "tx_index": 61, "asset_info": { "divisible": true, @@ -4722,19 +4781,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "CREDIT", "params": { - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "XCP", "block_index": 194, "calling_function": "send", - "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "event": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "quantity": 10000, "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -4746,19 +4805,19 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 194, - "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "event": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "quantity": 10000, "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -4770,27 +4829,27 @@ Returns the mempool events of a list of addresses } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727197948.7673035, + "block_time": 1727201019.8965485, "btc_amount": 0, - "data": "020000000000000001000000000000271080d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a5", + "data": "0200000000000000010000000000002710802e12acb6aeb47c0265e777c21744bff0466743dd", "destination": "", "fee": 10000, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "tx_index": 61, - "utxos_info": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1:1", + "utxos_info": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "memo": null, "asset_info": { "divisible": true, @@ -4816,7 +4875,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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 @@ -4836,7 +4895,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4844,14 +4903,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4859,14 +4918,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4881,7 +4940,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4889,7 +4948,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -4906,7 +4965,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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` @@ -4918,7 +4977,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4940,7 +4999,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4990,16 +5049,16 @@ Returns the credits of an address "result": [ { "block_index": 191, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "event": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197921, + "block_time": 1727201003, "asset_info": { "divisible": true, "asset_longname": null, @@ -5011,16 +5070,16 @@ Returns the credits of an address }, { "block_index": 183, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "event": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197823, + "block_time": 1727200899, "asset_info": { "divisible": true, "asset_longname": null, @@ -5032,20 +5091,20 @@ Returns the credits of an address }, { "block_index": 160, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "event": "efd20bb15eb6a7ce22645a0fb33b1873d00dc0cdeb9533d37037e0fd6a63f512", "tx_index": 47, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197808, + "block_time": 1727200884, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5053,20 +5112,20 @@ Returns the credits of an address }, { "block_index": 157, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "a4e645fc06d32b7988f633b99547ea5edd3803374c8cb442482d4f0511c34d93", + "event": "e12a079169fa7227aca6b168eafdf85cc67738b746b00fb0efa698d2c977b8f1", "tx_index": 44, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197795, + "block_time": 1727200871, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5078,16 +5137,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "event": "10c98431b6929b14e27a040b17f2d22aafc7813478587e2bbaca26c1c6197538", "tx_index": 39, - "utxo": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f:1", - "utxo_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "utxo": "10c98431b6929b14e27a040b17f2d22aafc7813478587e2bbaca26c1c6197538:1", + "utxo_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "confirmed": true, - "block_time": 1727197774, + "block_time": 1727200849, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5104,7 +5163,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5143,16 +5202,16 @@ Returns the debits of an address "result": [ { "block_index": 192, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "event": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197936, + "block_time": 1727201008, "asset_info": { "divisible": true, "asset_longname": null, @@ -5164,16 +5223,16 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "event": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197917, + "block_time": 1727200999, "asset_info": { "divisible": true, "asset_longname": null, @@ -5185,16 +5244,16 @@ Returns the debits of an address }, { "block_index": 189, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "event": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "divisible": true, "asset_longname": null, @@ -5206,20 +5265,20 @@ Returns the debits of an address }, { "block_index": 189, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "event": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5227,16 +5286,16 @@ Returns the debits of an address }, { "block_index": 184, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "event": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", "tx_index": 50, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197892, + "block_time": 1727200964, "asset_info": { "divisible": true, "asset_longname": null, @@ -5257,7 +5316,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address of the feed + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5292,7 +5351,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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 @@ -5311,9 +5370,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "c1af0d1895e7e32748751e45ad78af2d4b67c387c3ed9683a08452e211a39e38", + "tx_hash": "929b85b0f022a54c6904a36e51da0339ca9b0583ac7d003a91cd601964f53da5", "block_index": 137, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5321,7 +5380,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727197701, + "block_time": 1727200786, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5335,7 +5394,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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 @@ -5354,14 +5413,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "9721c7e67962e05364698fc838185e054fa5bb344c1586873c8e243211fee30a", + "tx_hash": "2a4c788f6c50b44e553e7df7ca7d8f3a63168c0f829df4ba991c41dcce254947", "block_index": 112, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1727197598, + "block_time": 1727200681, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5376,7 +5435,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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 @@ -5395,10 +5454,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5406,7 +5465,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "divisible": true, "asset_longname": null, @@ -5419,10 +5478,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5430,11 +5489,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5443,10 +5502,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5454,11 +5513,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5467,10 +5526,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 39, - "tx_hash": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "tx_hash": "10c98431b6929b14e27a040b17f2d22aafc7813478587e2bbaca26c1c6197538", "block_index": 152, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f:1", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "10c98431b6929b14e27a040b17f2d22aafc7813478587e2bbaca26c1c6197538:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5478,11 +5537,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197774, + "block_time": 1727200849, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5491,10 +5550,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 36, - "tx_hash": "d6e7f9a2b0a750c7151cf12baf036c37393c4156a14410db9ff311c440329ff8", + "tx_hash": "c4e14890d5864ccbd1cd8f4359a891a6593b9025d1ae267a57c9af00626e321d", "block_index": 149, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "b206c25c0bc100ebc583dc2f65b41a4bfd7733288f93306ac4a8c5ff87f91dfc:1", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "1e3535ba7d55784565a1ebd370a14fdde23ba46de1398689d8e4dd3886a34714:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5502,11 +5561,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197761, + "block_time": 1727200836, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5524,7 +5583,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p` (str, required) - The address to return + + address: `bcrt1qe4v63z8qa2kvy5yzt4ssr8zhwxgqw84j8nmhvg` (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 @@ -5543,10 +5602,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "4e5e668a3cc76166427fea322ae7c0f5deefad71340af9a2f004c1b19bd4167d", + "tx_hash": "f409e618a14bf7943a7027f7f66f55aaf0604d8c0cafc7c0062f5c6bdf82d7b6", "block_index": 151, - "source": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18:0", - "destination": "bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p", + "source": "664b33a2858e0961f08c6a45f5ec6b98042d62a4f4e98faf6862f374be802724:0", + "destination": "bcrt1qe4v63z8qa2kvy5yzt4ssr8zhwxgqw84j8nmhvg", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5554,11 +5613,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197770, + "block_time": 1727200844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5576,7 +5635,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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` @@ -5596,10 +5655,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5607,11 +5666,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5620,10 +5679,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5631,11 +5690,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5644,10 +5703,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 39, - "tx_hash": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "tx_hash": "10c98431b6929b14e27a040b17f2d22aafc7813478587e2bbaca26c1c6197538", "block_index": 152, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f:1", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "10c98431b6929b14e27a040b17f2d22aafc7813478587e2bbaca26c1c6197538:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5655,11 +5714,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197774, + "block_time": 1727200849, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5668,10 +5727,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 36, - "tx_hash": "d6e7f9a2b0a750c7151cf12baf036c37393c4156a14410db9ff311c440329ff8", + "tx_hash": "c4e14890d5864ccbd1cd8f4359a891a6593b9025d1ae267a57c9af00626e321d", "block_index": 149, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "b206c25c0bc100ebc583dc2f65b41a4bfd7733288f93306ac4a8c5ff87f91dfc:1", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "1e3535ba7d55784565a1ebd370a14fdde23ba46de1398689d8e4dd3886a34714:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5679,11 +5738,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197761, + "block_time": 1727200836, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5701,7 +5760,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p` (str, required) - The address to return + + address: `bcrt1qe4v63z8qa2kvy5yzt4ssr8zhwxgqw84j8nmhvg` (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` @@ -5721,10 +5780,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 38, - "tx_hash": "4e5e668a3cc76166427fea322ae7c0f5deefad71340af9a2f004c1b19bd4167d", + "tx_hash": "f409e618a14bf7943a7027f7f66f55aaf0604d8c0cafc7c0062f5c6bdf82d7b6", "block_index": 151, - "source": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18:0", - "destination": "bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p", + "source": "664b33a2858e0961f08c6a45f5ec6b98042d62a4f4e98faf6862f374be802724:0", + "destination": "bcrt1qe4v63z8qa2kvy5yzt4ssr8zhwxgqw84j8nmhvg", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5732,11 +5791,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197770, + "block_time": 1727200844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5754,7 +5813,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5783,9 +5842,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5794,7 +5853,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5804,7 +5863,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -5829,7 +5888,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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` @@ -5842,9 +5901,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5853,7 +5912,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5863,7 +5922,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -5885,7 +5944,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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 @@ -5905,19 +5964,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", + "tx_hash": "6ae257db1a77e44eb808057e9944b6f6e15eebf699db2c77f3009100a550b7fa", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5925,7 +5984,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5940,7 +5999,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -5954,19 +6013,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", + "tx_hash": "2a07cfa93bced14f59b80e10872f5fe4a406622078c0b85295c5c4149820d102", "block_index": 140, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5974,7 +6033,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5989,7 +6048,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197714, + "block_time": 1727200798, "asset_info": { "divisible": true, "asset_longname": null, @@ -6011,7 +6070,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (str, required) - The address to return + + address: `bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9` (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 @@ -6031,19 +6090,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", + "tx_hash": "6ae257db1a77e44eb808057e9944b6f6e15eebf699db2c77f3009100a550b7fa", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6051,7 +6110,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6066,7 +6125,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -6080,19 +6139,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", + "tx_hash": "2a07cfa93bced14f59b80e10872f5fe4a406622078c0b85295c5c4149820d102", "block_index": 140, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6100,7 +6159,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6115,7 +6174,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197714, + "block_time": 1727200798, "asset_info": { "divisible": true, "asset_longname": null, @@ -6137,7 +6196,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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` @@ -6158,19 +6217,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", + "tx_hash": "6ae257db1a77e44eb808057e9944b6f6e15eebf699db2c77f3009100a550b7fa", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6178,7 +6237,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6193,7 +6252,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -6207,19 +6266,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", + "tx_hash": "2a07cfa93bced14f59b80e10872f5fe4a406622078c0b85295c5c4149820d102", "block_index": 140, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6227,7 +6286,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6242,7 +6301,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197714, + "block_time": 1727200798, "asset_info": { "divisible": true, "asset_longname": null, @@ -6264,7 +6323,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (str, required) - The address to return + + address: `bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9` (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` @@ -6285,19 +6344,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", + "tx_hash": "6ae257db1a77e44eb808057e9944b6f6e15eebf699db2c77f3009100a550b7fa", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6305,7 +6364,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6320,7 +6379,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -6334,19 +6393,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", + "tx_hash": "2a07cfa93bced14f59b80e10872f5fe4a406622078c0b85295c5c4149820d102", "block_index": 140, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6354,7 +6413,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6369,7 +6428,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197714, + "block_time": 1727200798, "asset_info": { "divisible": true, "asset_longname": null, @@ -6391,7 +6450,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde` (str, required) - The address to return + + address: `bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk` (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 @@ -6410,16 +6469,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 59, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "fee_paid_normalized": "0.00600000" } ], @@ -6433,7 +6492,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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 @@ -6452,14 +6511,14 @@ Returns the issuances of an address "result": [ { "tx_index": 47, - "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "tx_hash": "efd20bb15eb6a7ce22645a0fb33b1873d00dc0cdeb9533d37037e0fd6a63f512", "msg_index": 0, "block_index": 160, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -6474,20 +6533,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197808, + "block_time": 1727200884, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "fd639c3216214bfc566ce6bff85523d1f912ae2ea06663639e0c84c52baf380b", + "tx_hash": "af9f8fab45dd2130f26f25edacaa4de3e37feaa202ad6a578e5a60d0aa935b46", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -6502,20 +6561,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727197803, + "block_time": 1727200880, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "417d8004a24a08dbe43e8fa95a96c26e6cef20b05e59a0c4fc594f801d9e4be5", + "tx_hash": "54776b690fc35e38368ab8ddb01f39437d6ad2177f025473e278802b9748e23c", "msg_index": 0, "block_index": 158, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -6530,20 +6589,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197799, + "block_time": 1727200875, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "a4e645fc06d32b7988f633b99547ea5edd3803374c8cb442482d4f0511c34d93", + "tx_hash": "e12a079169fa7227aca6b168eafdf85cc67738b746b00fb0efa698d2c977b8f1", "msg_index": 0, "block_index": 157, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -6558,20 +6617,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197795, + "block_time": 1727200871, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 35, - "tx_hash": "554b0dada3ac6339b552fd88655f0ccc64c43721ddcb47b66aec43240ca19ea3", + "tx_hash": "ff6dbba06ee6d18f1d758e73eb167c0e1145b485690a071cb72aafa68a978aae", "msg_index": 0, "block_index": 148, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -6586,7 +6645,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197757, + "block_time": 1727200832, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -6601,7 +6660,7 @@ Returns the issuances of an address Returns the valid assets of an issuer + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The issuer to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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 @@ -6624,8 +6683,8 @@ Returns the valid assets of an issuer "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 10000000000, @@ -6633,16 +6692,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 157, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1727197795, - "last_issuance_block_time": 1727197803, + "first_issuance_block_time": 1727200871, + "last_issuance_block_time": 1727200880, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 100000000000, @@ -6650,16 +6709,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1727197757, - "last_issuance_block_time": 1727197757, + "first_issuance_block_time": 1727200832, + "last_issuance_block_time": 1727200832, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 40, @@ -6667,16 +6726,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727197692, - "last_issuance_block_time": 1727197697, + "first_issuance_block_time": 1727200777, + "last_issuance_block_time": 1727200781, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 19, @@ -6684,16 +6743,16 @@ Returns the valid assets of an issuer "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727197675, - "last_issuance_block_time": 1727197688, + "first_issuance_block_time": 1727200760, + "last_issuance_block_time": 1727200773, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 0, @@ -6701,8 +6760,8 @@ Returns the valid assets of an issuer "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1727197655, - "last_issuance_block_time": 1727197672, + "first_issuance_block_time": 1727200740, + "last_issuance_block_time": 1727200756, "supply_normalized": "0.00000000" } ], @@ -6716,7 +6775,7 @@ Returns the valid assets of an issuer Returns the transactions of an address + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (str, required) - The address to return + cursor: `60` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -6735,17 +6794,17 @@ Returns the transactions of an address "result": [ { "tx_index": 58, - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "block_index": 192, - "block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", - "block_time": 1727197936, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "7aa8cd7d46e84e234d53f8c14736afd98d1d5b8441f4f425fe8c6a52c3f33c87", + "block_time": 1727201008, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac:1", + "utxos_info": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6781,23 +6840,23 @@ Returns the transactions of an address }, { "tx_index": 57, - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "block_index": 191, - "block_hash": "0ba357e822a1ad9f1ee40b954ad363862e0d3afdb30fc3a5d88c175a18c38bd7", - "block_time": 1727197921, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "6df0e71250aea0de3e29c053f2ca49cc02c029f911a25356f455303c447d0a63", + "block_time": 1727201003, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "466ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "data": "4683919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "supported": true, - "utxos_info": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43:1", + "utxos_info": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "offer_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "status": "valid" } }, @@ -6805,17 +6864,17 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "block_index": 190, - "block_hash": "0033c741fc5613728a96e2ae19f264cc8678daa5777b8c77ee8ae758f1fe49e8", - "block_time": 1727197917, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "0878eceac6ded73fd8e873772ed9f93c488a46bdde659e59451e65eb9a3ee390", + "block_time": 1727200999, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b:1", + "utxos_info": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6851,17 +6910,17 @@ Returns the transactions of an address }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "block_hash": "5e52af4ac2e545ee9b2f874c6e6b5906d2705730d220f92fdcf1c0660e9b93cb", - "block_time": 1727197914, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "73be93be2c91012204c8a1e8321475345c6c634627235302e1e7abe56fcb5755", + "block_time": 1727200995, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d780d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a580be3be0105284b008bb9cde97ec522d4b83e99694400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "0300038054c1ba334a1912f96353f110938927c645ff9064802e12acb6aeb47c0265e777c21744bff0466743dd806c45b04730370dc7e778ed200c19f22a08c064a9400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152:0", + "utxos_info": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -6869,14 +6928,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -6884,7 +6943,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -6903,17 +6962,17 @@ Returns the transactions of an address }, { "tx_index": 50, - "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", "block_index": 184, - "block_hash": "4be7779026bad707f1ccc317970e4f35c829ddbb1bbf157bc1a711a8307c9783", - "block_time": 1727197892, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "61efaec54e3d3bbdff76ab9d2b2a4cf1517d3d890c37b20548b93484369b1201", + "block_time": 1727200964, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9:1", + "utxos_info": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6958,7 +7017,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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 @@ -6977,20 +7036,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "tx_hash": "1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4", "block_index": 154, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727197783, + "block_time": 1727200857, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -7015,7 +7074,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7044,9 +7103,9 @@ Returns the orders of an address "result": [ { "tx_index": 48, - "tx_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "tx_hash": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926", "block_index": 183, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7061,7 +7120,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727197823, + "block_time": 1727200899, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7087,9 +7146,9 @@ Returns the orders of an address }, { "tx_index": 50, - "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", "block_index": 187, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7104,7 +7163,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727197905, + "block_time": 1727200986, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7130,9 +7189,9 @@ Returns the orders of an address }, { "tx_index": 56, - "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "block_index": 191, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7147,7 +7206,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727197921, + "block_time": 1727201003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7173,9 +7232,9 @@ Returns the orders of an address }, { "tx_index": 58, - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "block_index": 192, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7190,7 +7249,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727197936, + "block_time": 1727201008, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7225,7 +7284,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The source of the fairminter to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7243,10 +7302,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", + "tx_hash": "5f1bb112a42ace59fa09d6a6fc1916eec2a940d44682b160c97bbae14494b127", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7271,13 +7330,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727197692 + "block_time": 1727200777 }, { - "tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", + "tx_hash": "bf4d673a1117a0391adcac895de8ac4f234e093b9257df4ce473fe1e01bebf8b", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7302,13 +7361,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727197675 + "block_time": 1727200760 }, { - "tx_hash": "ed54030f74b75858f08f505f277c85ca7c83e98e45fa2466d05fa442687341c8", + "tx_hash": "ef8994a7c4750636583ff8d92fe09ac8c38d280813f2e2e923e07c9b9a3d9cda", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7333,13 +7392,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727197672 + "block_time": 1727200756 }, { - "tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7364,7 +7423,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727197651 + "block_time": 1727200736 } ], "next_cursor": null, @@ -7377,7 +7436,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (str, required) - The address of the mints to return + + address: `bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7395,127 +7454,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "201f88f9894c716c618457972af68ef54a92b3eeb8876fb18286c0ea68a88c25", + "tx_hash": "bccbb42deef048209e07d9fb0f7340bb2b1e8f10c5e54f1cfa55accb8ac66283", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "fairminter_tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "fairminter_tx_hash": "5f1bb112a42ace59fa09d6a6fc1916eec2a940d44682b160c97bbae14494b127", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197697, + "block_time": 1727200781, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } }, { - "tx_hash": "4dd0822867ce57e0debd8e7464ee186fab8ec830972499614e36115f7a28ce96", + "tx_hash": "49b1e07978faa8eaf8d5ade692f3a64f4e80eb92bf2703f18114959d4f1e8e1c", "tx_index": 21, "block_index": 134, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "fairminter_tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "fairminter_tx_hash": "bf4d673a1117a0391adcac895de8ac4f234e093b9257df4ce473fe1e01bebf8b", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197688, + "block_time": 1727200773, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } }, { - "tx_hash": "8f602bc0c0f1aee82c9ff237dab02cd79e9427a1ef180d934a66f635ab2d157d", + "tx_hash": "0111704cc5929b8559a29cf124f00b77724015a4d2c7565f2f4aa8422983be79", "tx_index": 20, "block_index": 133, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "fairminter_tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "fairminter_tx_hash": "bf4d673a1117a0391adcac895de8ac4f234e093b9257df4ce473fe1e01bebf8b", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197684, + "block_time": 1727200769, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } }, { - "tx_hash": "473a44e1aecb813abb8a440fdd471137b378f8ef89de19e541a716f804223923", + "tx_hash": "32e316d766bcea23d558846c6d3bbccad179be94d731a8c4097b6f01aba8bacf", "tx_index": 19, "block_index": 132, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "fairminter_tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "fairminter_tx_hash": "bf4d673a1117a0391adcac895de8ac4f234e093b9257df4ce473fe1e01bebf8b", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197680, + "block_time": 1727200764, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } }, { - "tx_hash": "ffc57ac3c2c8b668f8eccc823f0ce3908f1b2a6bfde666240e0ba65ddbc84d28", + "tx_hash": "19c02328fa03dcccdd42190a3098cb6335c5a3376c729e79054deeb22a5fdec9", "tx_index": 15, "block_index": 127, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "fairminter_tx_hash": "ed54030f74b75858f08f505f277c85ca7c83e98e45fa2466d05fa442687341c8", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "fairminter_tx_hash": "ef8994a7c4750636583ff8d92fe09ac8c38d280813f2e2e923e07c9b9a3d9cda", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197660, + "block_time": 1727200744, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } }, { - "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", + "tx_hash": "5a391ff7c4ab9f62237b4734451c3765753c6424c9d0cded3325f895e75ff06f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "fairminter_tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197643, + "block_time": 1727200727, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } @@ -7531,7 +7590,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (str, required) - The address of the mints to return + + address: `bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9` (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` @@ -7550,22 +7609,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", + "tx_hash": "5a391ff7c4ab9f62237b4734451c3765753c6424c9d0cded3325f895e75ff06f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "fairminter_tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197643, + "block_time": 1727200727, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } @@ -7604,8 +7663,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: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address that will make the bet - + feed_address: `bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (str, required) - The address that will make the bet + + feed_address: `bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9` (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) @@ -7673,7 +7732,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: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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) @@ -7729,7 +7788,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7741,7 +7800,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "020000000001018f56d30d835c642e86f276b990e06e3b9a6abeaf03f93236216af03a30094931000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0200000000000000002b6a29920fa68d26f28458b61863fc5614eb07c65c393dc7709b643e11e7bb532588d0d627ffcc9f3d95beae9bba052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "02000000000101edd7a766460a4fb4601942d4c23deee15a574b25517f1f78becf8e042686490a000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff0200000000000000002b6a29c2a92573851ed8784849a69650b37d6b7bd7e2630910d62786268c5dd5e1443bf6f7587d8caa10b0319bba052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7758,8 +7817,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: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address that will be sending the payment - + order_match_id: `272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7` (str, required) - The ID of the order match to pay for + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (str, required) - The address that will be sending the payment + + order_match_id: `4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7` (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) @@ -7811,16 +7870,16 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7" + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "order_match_id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7" }, "name": "btcpay", - "data": "434e5452505254590b272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "data": "434e5452505254590b4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978951, "btc_fee": 18049, - "rawtransaction": "02000000000101f709d5b950e8a3abfe20a997f6eb16352d31de27d0eaa7f7b03c0599d1a3becf000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff03b80b0000000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea900000000000000004b6a49b0b9e5d550a6257597dc4b6fbd5763c168762e8e50735fc6d1cc8a0654192824019b21b84b3bed0613fbf93a4865ef8344cf3ba8cd93ffcbbc6e0e91a031d7e39b16f534b9d9a46b14c79f052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "02000000000101daa1d5148d900a0ac23bfc9c2ad886b063173f479672ac0069f3eb44354e2de0000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff03b80b0000000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab00000000000000004b6a49ca5c0c11f96bac48348bdc5206db0d57d0e076ed9b9bb648308f40d377a6c5702c979e70ce629af2991ed91ecfa81395dff83bc16dcbea8478623fe0b52bb16946f1a53fcb8e83d372c79f052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7837,7 +7896,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: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address with the BTC to burn + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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` @@ -7892,7 +7951,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "quantity": 1000, "overburn": false }, @@ -7902,7 +7961,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": "020000000001016c4dbf5a98070ab47d6161ae7dc07a992458bcf424d9252912d30d03f13e02bb000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000" + "rawtransaction": "02000000000101565291541ec388be91a44832cfbab02ea751d08a08cf97d781936f4bfff0f237000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000" } } ``` @@ -7912,8 +7971,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: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28` (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) @@ -7965,16 +8024,16 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "offer_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac" + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "offer_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28" }, "name": "cancel", - "data": "434e5452505254594657dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "data": "434e54525052545946132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101a87d20b812ea217934f4e78ef1e22058f450bc013226ce5dd87bcaa19e256a5f000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0200000000000000002b6a290746bb7437bb3bd04b5b60d8877b0be5cb5425b6f17071133fd7fc24f562fca5b4ee5a4e802c1d3c959bba052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "020000000001011ed1a9f4a1f0aabef3ed6428baf2baf2eb44a220b9f5af834f289b067297ef47000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff0200000000000000002b6a2911c364192ef0061bf68bc2e75fa7636b1958fab0f1abb83b5780f6e709e708a4bdeb4950c8e4a804c49bba052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -7991,7 +8050,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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 @@ -8046,7 +8105,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8065,7 +8124,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986346, "btc_fee": 13654, - "rawtransaction": "020000000001013794d3e4ed865cbf70a08b52755a1c117c53bdb16c49db5b211889493c322856000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000226a2020f69fb7a307fe410f8f891b14534cb5ac8a8e743c3542ffe7744f253be93180aabc052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "020000000001013d8440143b369a8149275d291f4e89628e992c8f4141b6ac95d6e3e840a0667c000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff020000000000000000226a20ad995647dc1f5cf1a38de32e7adf5ea0d3a71cf925f3d96ef7b859308eac7bcaaabc052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8082,7 +8141,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: `bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p` (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) @@ -8143,7 +8202,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", + "source": "bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8167,7 +8226,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": "020000000001010cfd0fef929421661d755664e7f00ba4902a1fa2344282efc44fa3a714e88a920200000016001474c82b3f5125f89d5240f988d013fceee0b57d63ffffffff0200000000000000002c6a2ab51f1be2884f0b894627997a38394933112ac5a45ac07a77e149a9239db1e52ef4310a8e27636b3b4d39b0540a270100000016001474c82b3f5125f89d5240f988d013fceee0b57d6302000000000000", + "rawtransaction": "02000000000101126cbd5704a2c2c714e745aaba2136b2a888ff2648e7d8de421d466e2e48216b020000001600144b39826f0df71f5b85becf530d99d3ec2f8df410ffffffff0200000000000000002c6a2a97cd56c5a87c919eb0d9baaa9d5db848d45f3e2013c18981e72cdbd66104494876c4423ce2eb9b853abab0540a27010000001600144b39826f0df71f5b85becf530d99d3ec2f8df41002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8184,7 +8243,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: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (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: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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 @@ -8239,14 +8298,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -8265,7 +8324,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "020000000001014c168b88c4c3c5e11003fd3a35cb2cc00fbea5bb600b20dcf3820f3a7fcedd0b000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000236a21bd76b78c8f155cb5190523a44a5207a65c40afa8d27957d5fbcac7011467d0c3876fbc052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "020000000001015f834884818898e688e85d8e85fedabc893f47e29d472d532b435f94e2c90e12000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff020000000000000000236a21721612543f59b4cea784e3ee62b4ccb72abb87cbe95875e4c52ebf21a036bb38ea6fbc052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8282,10 +8341,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: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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` @@ -8346,10 +8405,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "transfer_destination": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "lock": false, "reset": false, @@ -8362,7 +8421,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": "0200000000010171538e6094681859ec2f2a5d516d3b2c79ad0c909d3fe89ac2c080b496f94cbe000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0322020000000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea90000000000000000236a2175cc31285956fe1bdb5fae7a84b5153c943354ad6544ef536ccce3a07d027bc2df85b2052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "0200000000010132d6ed3c9fbce185a3f9b746123785033e6e2ec91849367a98d03b7888daf186000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff0322020000000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab0000000000000000236a211ec53f8ee749730ee8c3ff433c6a3665ee24516b8e066b0cc22cac68dccc73303185b2052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8379,9 +8438,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: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj,bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs,bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9` (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` @@ -8438,16 +8497,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", 1 ], [ "MYASSETA", - "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", 2 ] ], @@ -8455,12 +8514,12 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e545250525459030002807fe57e1fa9d634b73d344e77a53d74837f310ea9808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d78f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e545250525459030002807d93ff5e96d2aa8302b09d3661285dec7e9d27ab8054c1ba334a1912f96353f110938927c645ff90648f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945492, "btc_fee": 52508, - "rawtransaction": "02000000000104759b202733af314415433b8eeb0144a8980f76d0663e42bafd1add31aada7931000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff5d0396c457f6d5e92b6ac6e0f4aaf390dd56586a8bd569d4f18d223bf1d53311000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff588e6788e1e4f85ba7322f2c42d48525145e97cb36f782fdac05846382c5bc01000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff36659424a3e3c25d1d05344f8b6c24dd8cadf93a35bde932c32ae9e4d627f5b9000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff03e80300000000000069512103265ab5424ded6864ec6280703fd8146d223c23368563f5b4a32314e135b1ef602102cbe4331b305e7fe16281cc7aec6c2ccf3fafa46cbe06e1257c4a4c0337e0d97b210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53aee80300000000000069512103295ab5424ded6864ec41f71dcdcb95321f15f5023e4b5a7163a62995b6cedec92103c54dfb9403e7d48ec62bebdf90d4a1a1df07295354e136aa5e02296f5b8ff5be210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53ae14f316a8040000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000002000002000002000000000000", + "rawtransaction": "02000000000104e577e067bb983c8bf37ef7aca10b5ce04fe1cc8e1610106715e9b896aa5fe223000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abfffffffff01d1425b1446af40a30cf7f614ef968b0f0e2898bde55b78495a33052cde893000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff2abb23c81d9a008762665571fdf369475915efb7b391c56031b179c53a86251d000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffffff380c0c8c7dc0f7039e035159c41148c7f6638ee75536c0630b7204e3fd8958000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff03e803000000000000695121036e548f8fc9c509ea3d29031b77b76fdabb76c88e850afb489293efb339ca2c5c2102f0b12cd792f3cdf41c46e2f41ad7b6edfd56fc16b1963d618469e8d8a78709652103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9753aee8030000000000006951210261548f8fc9c509ea3d0a747685a69804c7601a240a1dd05e13d2c7eed5b4b1192102d71ae4835349febe055413974926a67e747138534e0659eea6218db4cbe825412103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9753ae14f316a8040000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8477,7 +8536,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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 @@ -8535,7 +8594,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8552,7 +8611,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -8566,7 +8625,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985233, "btc_fee": 14767, - "rawtransaction": "0200000000010114aeaf6fda9632c891dad98eb9547fa9726966c2b9b189e9a6199dcce5fd85fb000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000356a33c2e285f0210de7ceff2bf8d0dcb0cc44e2857ad478938c3b87cade72feb5d781a3bcbcb38b607463df2abd1b462f59e55ea2c051b8052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "02000000000101d3815d3bc637ba5c3310057f1f73518e1cd052e2575305f5f9961d481af47d0b000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff020000000000000000356a3382bca3ffdc73d3e01f1213c9355aef042d09d5b9355ef2cbcffd1cf799a68dd80bb0d4d32952c4c1754009237ece324f87b11951b8052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8583,8 +8642,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: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (str, required) - The address that will be receiving the asset + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9` (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 @@ -8644,8 +8703,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8661,12 +8720,12 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d7", + "data": "434e54525052545902000000000000000100000000000003e88054c1ba334a1912f96353f110938927c645ff9064", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985526, "btc_fee": 14474, - "rawtransaction": "0200000000010168425b8209dc387a633d2892c5d733042c5f96bb44cfd9af384b8a71ae220ea9000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000306a2e8420b498ca686dbdd4e07a91262ff3c95f8bdb569d9d10e65e5228c5a42036d27432cb6971497668d2bb4eabda0c76b9052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "020000000001010145d93fcbbca925969a36cbf8dc81b3dcce295cb1cc87c24efdb84e991257e9000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff020000000000000000306a2e3180763905ed77bd5549668783c0fde06c8ecc36077686c0e0a3cc114e7afa54cfc134a5bbfe421445475ad3cdb776b9052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8683,8 +8742,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: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address that will be sending - + destination: `bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (str, required) - The address that will be sending + + destination: `bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9` (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 @@ -8738,18 +8797,18 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d707ffff", + "data": "434e545250525459048054c1ba334a1912f96353f110938927c645ff906407ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "020000000001014800bb74929acebd48b93ebe35151b21a44b51523cb315a2e786ac6c445fd16c000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000236a210055d9cb70cb68be90eba1a75b00f15e9844fe2d396cbef79a453b09ec7706350a6fbc052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "020000000001019a797a06c4f5d3094b75b249c4ee63d25c26847734c97b81130d1fed7a4dab60000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff020000000000000000236a212049e1fbe71fc2711c0c75cc689b011397ff1e489e3421417cee9dd941136816686fbc052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8766,8 +8825,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: `bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct` (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` @@ -8820,8 +8879,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "quantity": 1000 }, "name": "dispense", @@ -8830,7 +8889,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949852643, "btc_fee": 14357, - "rawtransaction": "0200000000010135ed38f305623dd31dde5516b9a1095cc33b00726e5711cc3d105d2e2a9df5bd020000001600148f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d7ffffffff03e803000000000000160014be3be0105284b008bb9cde97ec522d4b83e9969400000000000000000c6a0a29b024a4c0537e5c399de3c10827010000001600148f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d702000000000000", + "rawtransaction": "02000000000101cb26d0b47d6796bbba2cdbf172c9fcad814432c0faa64e51325e97136b918ac70200000016001454c1ba334a1912f96353f110938927c645ff9064ffffffff03e8030000000000001600146c45b04730370dc7e778ed200c19f22a08c064a900000000000000000c6a0abd14fceefaf1824e03ade3c108270100000016001454c1ba334a1912f96353f110938927c645ff906402000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8847,7 +8906,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address that will be issuing the asset + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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: `` @@ -8932,7 +8991,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -8957,7 +9016,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985467, "btc_fee": 14533, - "rawtransaction": "02000000000101ee82110473a8641082a4f6b132246728c35a248e9fdc35ea7d00d4221d0093d0000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000316a2f7c9ecc12272a0cda2e36def9fe779d4bb8e0aa5071d30d88d0aa02adcbf4a199e1320401232050a4f78cf2c9b4b2503bb9052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "02000000000101dff5d6b9963d58ce93eda5b9e0dc3325edb92d172aee9b60ad4009740563e7f6000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff020000000000000000316a2f35fd92ae806a71d5d594a5fa28384c40c437d510b8d21b9ec688462821e8b3f6a2cd07f9420a363cff7b2921eb27e73bb9052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -8974,7 +9033,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: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address that will be minting the asset + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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` @@ -9029,13 +9088,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -9047,7 +9106,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": "0200000000010140174ad7390a91d0f9752e27945d580ad6dc6e64f4bddf4f54c147c69608c606000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000166a14de8113840bf65e62d9080c55899510c5695a98db69bf052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "02000000000101a5732f28204721cb6308ac13cab61ceeb71efd46aea6f9b66a9441ed07a1b172000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff020000000000000000166a142190e1f1b6f307755204d25dcf7c1048d1c78cb069bf052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9064,10 +9123,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: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address from which the assets are attached + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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: `6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b:1` (str, optional) - The utxo to attach the assets to + + destination: `4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055:3` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9120,8 +9179,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b:1", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055:3", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9134,12 +9193,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171306c6a6875386166366336747730663566656d363230743573646c6e7a7234666e733563636a7c366563626139633265313735396663336663313437333139383836646364396232386166333164326238346434306332313861323332633936643136356639623a317c5843507c31303030", + "data": "434e54525052545964626372743171306b666c3768356b36323467787134736e356d787a327a6161336c6636666174666e6b6668737c346364383133666165323535386538396632663934313166333864616137643463313063393461323637646161333831353563663138666234643966643035353a337c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918531, "btc_fee": 78469, - "rawtransaction": "020000000001065fe24b79cbd3f100b8b747f4a5932fd5a1295c78514a5893ae491cb67e98ecfe000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff10dbcd66558041d0a5b3075e96132cbffb8427bec9338d3fc0052f03cf0e56d5000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9fffffffff77d6a3a3b1c721a72c507bdd9c42a21501fc39e6a2ee275f8b27d4e59d22a34000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0640e0bdc052378fc75d58b4e3627797e00ccd110e4a8bf212e6e405c0a5852d000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffffd3937b5c9ed9c0afe7250e51046c2c559978cea3d6211aaf2d5d6ec3de4394d9000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0dde6586f071138cd64a219aee58d7c2c26ef09b1726d78448113184f44f7224000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff04e8030000000000006951210207e62a3be617d98553bf02c6445badff80fc1b14edb7b8b1254521e111990b9321034ceae8d3b577a872dff198b06d919e9c70f123f66789b066b2ffec473ab122a7210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53aee8030000000000006951210207e62a3be617d98553e90594011aa5e8d3a3171fa9bbeee4221f2fad50cd0ebb21021db5ef8cbb24fe35dbe6cebe3bdf889c26fc62f23c8be829b6f9b6133fb977b8210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53aee803000000000000695121032de62a3be617d98553ee069c5415adf2e8d32100a9bfe9e71326179566a96dba2102798c8dbe83459806ea82fcdc03ebeca8169f50c304eada1a849a8f255b8841d4210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53aec36d22fc060000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000002000002000002000002000002000000000000", + "rawtransaction": "020000000001067d8cb2e922d3c889515df1beafb9deef06736db65888a0178acfa3a8c88239bd000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff002eeb08adc6485da52527394aaea37ad7fa3d10b7f041474c9554c18abb3f74000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff6ff9202edc132df8446768ff0abeb2cc9c540e6d9359512adc49529f443f97b8000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff12cab7d7ed02ff3b76c2d7bf3ee826f2ff89dedabd5880fd324bf09a00f176cb000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff3adcf4e23bc1c205be1c896dec2bbd570b4a1f534b110642a390586df3e73b56000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff84df0624b3eb9db1f4b76d9d8659e08222bd29c4063bd472529a3b20c18f415f000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff04e803000000000000695121033020883d166ee0dc26744f859a957a416709c30b09f1087802d505fe497cf0e22102679d842f89fc3a82a87c17982a72f639385fa2f29a08b6a03bd5fc9c4d08b98e2103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9753aee803000000000000695121033020883d166ee0dc267148d4ddd473556f5bc35558a00922058102a1556ca51a210323978521c0b66bc1fd7c16c27b20f1397f01fdacc903a3ed37d0fa901802b93f2103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9753aee803000000000000695121021a20883d166ee0dc26741dd3dddb784c0f21f51b0fa90d2334e73199310dc446210314f3b142f18608f8c91d24f44c4490584c39cc99fc60c5dc0fb698a47c3bdfaa2103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9753aec36d22fc060000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9156,8 +9215,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: `9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8:1` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to detach the assets to + + utxo: `ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739:1` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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 @@ -9211,8 +9270,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8:1", - "destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739:1", + "destination": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9225,12 +9284,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964396363373963303765386330323530323339383365653637613463366433643666633934666135313864336331353437623537636630373162386339313866383a317c626372743171306c6a6875386166366336747730663566656d363230743573646c6e7a7234666e733563636a7c5843507c31303030", + "data": "434e54525052545964636131316138376236623039313433363236636166666662633332626536386432366434336466356661636262343861613931396365383537633161613733393a317c626372743171306b666c3768356b36323467787134736e356d787a327a6161336c6636666174666e6b6668737c5843507c31303030", "btc_in": 4949874900, "btc_out": 3000, "btc_change": 4949846467, "btc_fee": 25433, - "rawtransaction": "02000000000101f818c9b871f07cb547153c8d51fa94fcd6d3c6a467ee83390225c0e8079cc79c01000000160014338d7fb117242eb4ef93a7317ac319fb8778a488ffffffff04e80300000000000069512103ef3e3113c1cc0018b532a49727fe7d22641ab2b26693e28460b652ca4cf5d535210282e024724d1fa596f4cecec830ca6c1ad8bf9bb03046310e4f806668507deb742103f413b7debdf8216ec2698972b6a7993790f6ab9b2698a217c89f1074047a301853aee80300000000000069512103ef3e3113c1cc0018b530adc375ab7c226d1cefec3d99e1cd32e7138745b780c621028bbc7b66411df5c4a49c8cd963956d1adce79cba6401674c1ed83f70177eee6e2103f413b7debdf8216ec2698972b6a7993790f6ab9b2698a217c89f1074047a301853aee80300000000000069512103c53e3113c1cc0018b538eec127aa2e3d0c6e87f63493e081508461f374c6b01e2102e7d61313797c93f2c7aaf8ae53f3587cb98aaa885475523f7ab4510a654a88652103f413b7debdf8216ec2698972b6a7993790f6ab9b2698a217c89f1074047a301853aec3a9082701000000160014338d7fb117242eb4ef93a7317ac319fb8778a48802000000000000", + "rawtransaction": "0200000000010139a71a7c85ce19a98ab4cbfaf53dd4268de62bc3fbffca263614096b7ba811ca010000001600145b88e6da64ebeaa0be3554ef3959f4a53df33890ffffffff04e8030000000000006951210210d50c8daebda6b010603530418bc9a76f7f1e8360bc4e7c9fc05b65dec99e562103a06e744bbf2979e65a932731a4d6b2d4a2d82026289fe192ae066fadb0051a2a2102fdf9332096c9238549fc008b2487598d632d40766dc05d6b9ae7c8658e75ba9a53aee8030000000000006951210310d50c8daebda6b010673369458dcbae397c1fd269bf4e34ce951b278cd9c83a2103ad6e7a1fe42e70b55e9f247be386f589f3d36d3a7b86e291a95268faef5557552102fdf9332096c9238549fc008b2487598d632d40766dc05d6b9ae7c8658e75ba9a53aee803000000000000695121033ad50c8daebda6b01062383a16d2dbe3005e789d61b54f78acf66953bda8f8072103c60816288c1b1b836cab430392b286e7c6be154049fc83f09a3e0ecc893423e52102fdf9332096c9238549fc008b2487598d632d40766dc05d6b9ae7c8658e75ba9a53aec3a90827010000001600145b88e6da64ebeaa0be3554ef3959f4a53df3389002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -9285,8 +9344,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 10000000000, @@ -9294,16 +9353,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1727197795, - "last_issuance_block_time": 1727197803, + "first_issuance_block_time": 1727200871, + "last_issuance_block_time": 1727200880, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", - "owner": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", + "issuer": "bcrt1qtwywdknya042p0342nhnjk05557lxwysfw6vuj", + "owner": "bcrt1qtwywdknya042p0342nhnjk05557lxwysfw6vuj", "divisible": true, "locked": false, "supply": 100000000000, @@ -9311,16 +9370,16 @@ Returns the valid assets "first_issuance_block_index": 156, "last_issuance_block_index": 156, "confirmed": true, - "first_issuance_block_time": 1727197791, - "last_issuance_block_time": 1727197791, + "first_issuance_block_time": 1727200867, + "last_issuance_block_time": 1727200867, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 100000000000, @@ -9328,16 +9387,16 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1727197757, - "last_issuance_block_time": 1727197757, + "first_issuance_block_time": 1727200832, + "last_issuance_block_time": 1727200832, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 40, @@ -9345,16 +9404,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727197692, - "last_issuance_block_time": 1727197697, + "first_issuance_block_time": 1727200777, + "last_issuance_block_time": 1727200781, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 19, @@ -9362,8 +9421,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727197675, - "last_issuance_block_time": 1727197688, + "first_issuance_block_time": 1727200760, + "last_issuance_block_time": 1727200773, "supply_normalized": "0.00000019" } ], @@ -9391,8 +9450,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 10000000000, @@ -9400,8 +9459,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1727197638, - "last_issuance_block_time": 1727197651, + "first_issuance_block_time": 1727200723, + "last_issuance_block_time": 1727200736, "supply_normalized": "100.00000000" } } @@ -9432,7 +9491,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9440,14 +9499,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9455,7 +9514,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -9473,7 +9532,7 @@ Returns the balance of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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. @@ -9484,7 +9543,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -9535,9 +9594,9 @@ Returns the orders of an asset "result": [ { "tx_index": 48, - "tx_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "tx_hash": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926", "block_index": 183, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9552,7 +9611,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727197823, + "block_time": 1727200899, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9578,9 +9637,9 @@ Returns the orders of an asset }, { "tx_index": 50, - "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", "block_index": 187, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9595,7 +9654,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727197905, + "block_time": 1727200986, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9621,9 +9680,9 @@ Returns the orders of an asset }, { "tx_index": 56, - "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "block_index": 191, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9638,7 +9697,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727197921, + "block_time": 1727201003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9664,9 +9723,9 @@ Returns the orders of an asset }, { "tx_index": 58, - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "block_index": 192, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9681,7 +9740,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727197936, + "block_time": 1727201008, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9707,9 +9766,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx_hash": "e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "block_index": 186, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -9724,7 +9783,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727197901, + "block_time": 1727200982, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9786,13 +9845,13 @@ Returns the orders of an asset { "result": [ { - "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "tx0_index": 50, - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 53, - "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", - "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "tx1_hash": "467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", + "tx1_address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -9806,7 +9865,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727197905, + "block_time": 1727200986, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9826,13 +9885,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "tx0_index": 50, - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 51, - "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", - "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "tx1_hash": "e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", + "tx1_address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -9846,7 +9905,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727197901, + "block_time": 1727200982, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9866,13 +9925,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "id": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926_3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", "tx0_index": 48, - "tx0_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 49, - "tx1_hash": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", - "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "tx1_hash": "3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", + "tx1_address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -9886,7 +9945,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727197823, + "block_time": 1727200899, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9966,20 +10025,20 @@ Returns the credits of an asset "result": [ { "block_index": 193, - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -9987,20 +10046,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "126a427f976fdfdf94d07c4794ffa1c70fe1efe20825d5a56a7512cdc80d032c", + "event": "0690942f2dfd840ad6ff6b5cfd4f06d86e77dbce303980758bd99ac034e4d803", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197651, + "block_time": 1727200736, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -10008,20 +10067,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e", + "event": "c7de2f976583158832e195c5e06c91be234ea8f11f3dec44a14e41ee44e25238", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197647, + "block_time": 1727200732, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -10029,20 +10088,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", + "event": "5a391ff7c4ab9f62237b4734451c3765753c6424c9d0cded3325f895e75ff06f", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197647, + "block_time": 1727200732, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -10054,16 +10113,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e", + "event": "c7de2f976583158832e195c5e06c91be234ea8f11f3dec44a14e41ee44e25238", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197647, + "block_time": 1727200732, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -10119,16 +10178,16 @@ Returns the debits of an asset "result": [ { "block_index": 194, - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "event": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -10140,16 +10199,16 @@ Returns the debits of an asset }, { "block_index": 193, - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -10161,16 +10220,16 @@ Returns the debits of an asset }, { "block_index": 193, - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -10182,16 +10241,16 @@ Returns the debits of an asset }, { "block_index": 192, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "event": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197936, + "block_time": 1727201008, "asset_info": { "divisible": true, "asset_longname": null, @@ -10203,16 +10262,16 @@ Returns the debits of an asset }, { "block_index": 190, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "event": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197917, + "block_time": 1727200999, "asset_info": { "divisible": true, "asset_longname": null, @@ -10252,20 +10311,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 41, - "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "tx_hash": "1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4", "block_index": 154, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727197783, + "block_time": 1727200857, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -10309,14 +10368,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "126a427f976fdfdf94d07c4794ffa1c70fe1efe20825d5a56a7512cdc80d032c", + "tx_hash": "0690942f2dfd840ad6ff6b5cfd4f06d86e77dbce303980758bd99ac034e4d803", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -10331,20 +10390,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727197651, + "block_time": 1727200736, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e", + "tx_hash": "c7de2f976583158832e195c5e06c91be234ea8f11f3dec44a14e41ee44e25238", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -10359,20 +10418,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727197647, + "block_time": 1727200732, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", + "tx_hash": "5a391ff7c4ab9f62237b4734451c3765753c6424c9d0cded3325f895e75ff06f", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -10387,20 +10446,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727197643, + "block_time": 1727200727, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -10415,7 +10474,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1727197638, + "block_time": 1727200723, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10449,10 +10508,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10460,7 +10519,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "divisible": true, "asset_longname": null, @@ -10473,10 +10532,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 54, - "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0", + "tx_hash": "e7989369eefaec09cec5770c6128eb548023225e666d57bbed74b3d03240e9c3", "block_index": 188, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10484,7 +10543,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197909, + "block_time": 1727200991, "asset_info": { "divisible": true, "asset_longname": null, @@ -10497,10 +10556,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 43, - "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "tx_hash": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739", "block_index": 156, - "source": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9:0", - "destination": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8:1", + "source": "9d347b5453e8bf2608768d2b109367ce3aaf5a12d4bc63526fa6fb59eab1901d:0", + "destination": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10508,7 +10567,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197791, + "block_time": 1727200867, "asset_info": { "divisible": true, "asset_longname": null, @@ -10521,10 +10580,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 42, - "tx_hash": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9", + "tx_hash": "9d347b5453e8bf2608768d2b109367ce3aaf5a12d4bc63526fa6fb59eab1901d", "block_index": 155, - "source": "0ab8c6a06380b63fb1c5aa5529b2847ec820017a6b0fbfaebafbbfcbe88236fa:0", - "destination": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9:0", + "source": "99ac4db802d5262ae35de8b542d298d4a28719ccffb6ffd8d462f40e8435bdd8:0", + "destination": "9d347b5453e8bf2608768d2b109367ce3aaf5a12d4bc63526fa6fb59eab1901d:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10532,7 +10591,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197787, + "block_time": 1727200861, "asset_info": { "divisible": true, "asset_longname": null, @@ -10583,9 +10642,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10594,7 +10653,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10604,7 +10663,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -10620,9 +10679,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "d334afca2c925114b90133fa7b9b4d09721e2afe7f50f39c525c05e459d6f6f4", + "tx_hash": "aa785aa095076658df4575becc62c26d1e549a540599459cf332e9f44ae51019", "block_index": 142, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10631,7 +10690,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "origin": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10641,7 +10700,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727197722, + "block_time": 1727200806, "asset_info": { "divisible": true, "asset_longname": null, @@ -10657,9 +10716,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "d8c4d9743c70dc60ca111fcd9049da47ff04b408893eb8a73659046caf40e9d1", + "tx_hash": "e6a18e565cab14aec4ba641f48a311c8643793f8fa84b25141ced517eaefc6f9", "block_index": 150, - "source": "mmMQv1E9m8quqXXYXh9u1wxK5Yao7BFUfG", + "source": "mtFzzdWHLZqWVVMGKENQscisyMTejQamk6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10667,10 +10726,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "d95ff0a851d0ba16d0c432d33f48fa3a7ee893c96aa3084199fad3dfaa568c01", - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "last_status_tx_hash": "d2fb8bc72b0250cee9a35d9f657f0d4eb12286a93b930f502d166903f57fafb9", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "last_status_tx_source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "close_block_index": "150", "confirmed": true, "fiat_price": null, @@ -10678,7 +10737,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727197765, + "block_time": 1727200840, "asset_info": { "divisible": true, "asset_longname": null, @@ -10694,18 +10753,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "tx_hash": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea", "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "oracle_address": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "last_status_tx_hash": null, - "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "origin": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10715,7 +10774,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727197754, + "block_time": 1727200827, "asset_info": { "divisible": true, "asset_longname": null, @@ -10740,7 +10799,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - The address to return + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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` @@ -10753,9 +10812,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10764,7 +10823,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10774,7 +10833,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -10824,7 +10883,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -10832,7 +10891,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -10841,7 +10900,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -10849,7 +10908,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -10858,7 +10917,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -10866,7 +10925,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -10875,7 +10934,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -10912,27 +10971,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "tx_hash": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12", "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", - "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", + "destination": "bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "dispenser_tx_hash": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "oracle_address": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "last_status_tx_hash": null, - "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "origin": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -10947,7 +11006,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727197754, + "block_time": 1727200827, "asset_info": { "divisible": true, "asset_longname": null, @@ -10961,19 +11020,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", + "tx_hash": "6ae257db1a77e44eb808057e9944b6f6e15eebf699db2c77f3009100a550b7fa", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -10981,7 +11040,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10996,7 +11055,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -11010,19 +11069,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", + "tx_hash": "2a07cfa93bced14f59b80e10872f5fe4a406622078c0b85295c5c4149820d102", "block_index": 140, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11030,7 +11089,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11045,7 +11104,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197714, + "block_time": 1727200798, "asset_info": { "divisible": true, "asset_longname": null, @@ -11088,8 +11147,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 0, @@ -11097,8 +11156,8 @@ Returns asset subassets "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727197799, - "last_issuance_block_time": 1727197799, + "first_issuance_block_time": 1727200875, + "last_issuance_block_time": 1727200875, "supply_normalized": "0.00000000" } ], @@ -11130,10 +11189,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11158,7 +11217,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727197651 + "block_time": 1727200736 } ], "next_cursor": null, @@ -11189,64 +11248,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "126a427f976fdfdf94d07c4794ffa1c70fe1efe20825d5a56a7512cdc80d032c", + "tx_hash": "0690942f2dfd840ad6ff6b5cfd4f06d86e77dbce303980758bd99ac034e4d803", "tx_index": 13, "block_index": 125, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", - "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", + "fairminter_tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197651, + "block_time": 1727200736, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } }, { - "tx_hash": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e", + "tx_hash": "c7de2f976583158832e195c5e06c91be234ea8f11f3dec44a14e41ee44e25238", "tx_index": 12, "block_index": 124, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", - "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", + "fairminter_tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197647, + "block_time": 1727200732, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } }, { - "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", + "tx_hash": "5a391ff7c4ab9f62237b4734451c3765753c6424c9d0cded3325f895e75ff06f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "fairminter_tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197643, + "block_time": 1727200727, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } @@ -11262,7 +11321,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u` (str, required) - The address of the mints to return + + address: `bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9` (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` @@ -11281,22 +11340,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", + "tx_hash": "5a391ff7c4ab9f62237b4734451c3765753c6424c9d0cded3325f895e75ff06f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "fairminter_tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197643, + "block_time": 1727200727, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } @@ -11342,9 +11401,9 @@ Returns all the orders "result": [ { "tx_index": 48, - "tx_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "tx_hash": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926", "block_index": 183, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11359,7 +11418,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727197823, + "block_time": 1727200899, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11385,9 +11444,9 @@ Returns all the orders }, { "tx_index": 51, - "tx_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx_hash": "e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "block_index": 186, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11402,7 +11461,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727197901, + "block_time": 1727200982, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11428,9 +11487,9 @@ Returns all the orders }, { "tx_index": 50, - "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", "block_index": 187, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11445,7 +11504,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727197905, + "block_time": 1727200986, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11471,9 +11530,9 @@ Returns all the orders }, { "tx_index": 53, - "tx_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx_hash": "467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "block_index": 187, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11488,7 +11547,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727197905, + "block_time": 1727200986, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11514,9 +11573,9 @@ Returns all the orders }, { "tx_index": 56, - "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "block_index": 191, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11531,7 +11590,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727197921, + "block_time": 1727201003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11566,7 +11625,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac` (str, required) - The hash of the transaction that created the order + + order_hash: `132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28` (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. @@ -11578,9 +11637,9 @@ Returns the information of an order { "result": { "tx_index": 58, - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "block_index": 192, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11595,7 +11654,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727197936, + "block_time": 1727201008, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11627,7 +11686,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9` (str, required) - The hash of the transaction that created the order + + order_hash: `4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6` (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 @@ -11654,13 +11713,13 @@ Returns the order matches of an order { "result": [ { - "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "tx0_index": 50, - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 53, - "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", - "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "tx1_hash": "467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", + "tx1_address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -11674,7 +11733,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727197905, + "block_time": 1727200986, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11694,13 +11753,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "tx0_index": 50, - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 51, - "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", - "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "tx1_hash": "e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", + "tx1_address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -11714,7 +11773,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727197901, + "block_time": 1727200982, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11744,7 +11803,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9` (str, required) - The hash of the transaction that created the order + + order_hash: `4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6` (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 @@ -11763,15 +11822,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 52, - "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "tx_hash": "c78a916b13975e32514ea6fac0324481adfcc972f1db2cbabb96677db4d026cb", "block_index": 186, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "destination": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "btc_amount": 2000, - "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "order_match_id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "status": "valid", "confirmed": true, - "block_time": 1727197901, + "block_time": 1727200982, "btc_amount_normalized": "0.00002000" } ], @@ -11815,9 +11874,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 51, - "tx_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx_hash": "e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "block_index": 186, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11835,7 +11894,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727197901, + "block_time": 1727200982, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11861,9 +11920,9 @@ Returns the orders to exchange two assets }, { "tx_index": 53, - "tx_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx_hash": "467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "block_index": 187, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11881,7 +11940,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727197905, + "block_time": 1727200986, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11907,9 +11966,9 @@ Returns the orders to exchange two assets }, { "tx_index": 48, - "tx_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "tx_hash": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926", "block_index": 183, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11927,7 +11986,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727197823, + "block_time": 1727200899, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11953,9 +12012,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", "block_index": 187, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11973,7 +12032,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727197905, + "block_time": 1727200986, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11999,9 +12058,9 @@ Returns the orders to exchange two assets }, { "tx_index": 56, - "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "block_index": 191, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12019,7 +12078,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727197921, + "block_time": 1727201003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12082,13 +12141,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "tx0_index": 50, - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 53, - "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", - "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "tx1_hash": "467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", + "tx1_address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12105,7 +12164,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727197905, + "block_time": 1727200986, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12125,13 +12184,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "tx0_index": 50, - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 51, - "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", - "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "tx1_hash": "e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", + "tx1_address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12148,7 +12207,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727197901, + "block_time": 1727200982, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12168,13 +12227,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "id": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926_3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", "tx0_index": 48, - "tx0_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 49, - "tx1_hash": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", - "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "tx1_hash": "3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", + "tx1_address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12191,7 +12250,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727197823, + "block_time": 1727200899, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12249,13 +12308,13 @@ Returns all the order matches { "result": [ { - "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "tx0_index": 50, - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 53, - "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", - "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "tx1_hash": "467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", + "tx1_address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12269,7 +12328,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727197905, + "block_time": 1727200986, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12289,13 +12348,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "tx0_index": 50, - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 51, - "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", - "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "tx1_hash": "e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", + "tx1_address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12309,7 +12368,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727197901, + "block_time": 1727200982, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12329,13 +12388,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "id": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926_3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", "tx0_index": 48, - "tx0_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 49, - "tx1_hash": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", - "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "tx1_hash": "3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", + "tx1_address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12349,7 +12408,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727197823, + "block_time": 1727200899, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12517,66 +12576,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "4425334c064a07609b1049b0e61f4368bf0e83b7743d8b0dfa6c08c631ca5015", + "tx_hash": "bb35e686d434cae9951da80cf904917280d38b8251f1626625123d1a058d4a6d", "block_index": 121, - "source": "bcrt1qyxerv7nywhqduhyezl3s8kpvw9ts8svpuu3vka", + "source": "bcrt1quygvuzd7gsxym55nf7w85agucgajyp9p5jduqp", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1727197635, + "block_time": 1727200719, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "0d22da1045dfdc843155acafa62e3d459f3d426c0b6dd63a90dc79bd6a834c4f", + "tx_hash": "b51b2867cf3c155fd34050bdca7366bee0cdec885a9d99baf3528307a7e27db6", "block_index": 120, - "source": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", + "source": "bcrt1qtwywdknya042p0342nhnjk05557lxwysfw6vuj", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1727197631, + "block_time": 1727200715, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "cd354d7390652af33bc7bd4151f568ae0610b7bf757cbdb17758a169a909b1ab", + "tx_hash": "328eaf6b9d4677ede9e9e97effbd0d13104f5055317a9974961d8de95cba585c", "block_index": 119, - "source": "bcrt1qxv2xktsndh0qf7kxa3pkw4dcvkfa9vrq58367j", + "source": "bcrt1qtmd9xj5r7dlk044rn35kqqdmy62jpnf6u52x9z", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1727197626, + "block_time": 1727200710, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "a5c4ab8dcae81a685b55251b11ac83df108bc970b09e7e3ec3d0a5683c9c2c47", + "tx_hash": "3881d5577b826809c73539506d45d0ba91960069911a94563115003d1bd1427b", "block_index": 118, - "source": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", + "source": "bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1727197622, + "block_time": 1727200706, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "268304583613b628ceaac31f5f0d4b3ccc6557fa2c7eef037287e902c9f6e05f", + "tx_hash": "3a8d701d6ce7937fb5069dda57641ea7218382a8654ad0344f861e12ca6717d1", "block_index": 117, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1727197618, + "block_time": 1727200702, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12607,7 +12666,7 @@ Returns all dispensers + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) + Default: `None` - + sort: `give_quantity:desc` (str, optional) - The sort order of the dispensers to return (overrides the `cursor` parameter) + + sort: `block_index:asc` (str, optional) - The sort order of the dispensers to return (overrides the `cursor` parameter) + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -12620,29 +12679,29 @@ Returns all dispensers { "result": [ { - "tx_index": 33, - "tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", - "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "tx_index": 26, + "tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", + "block_index": 141, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, - "status": 0, - "give_remaining": 9334, - "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "status": 10, + "give_remaining": 0, + "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", - "dispense_count": 1, + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "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": 1727197754, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -12651,35 +12710,35 @@ Returns all dispensers "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009334", + "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" + "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 30, - "tx_hash": "d8c4d9743c70dc60ca111fcd9049da47ff04b408893eb8a73659046caf40e9d1", - "block_index": 150, - "source": "mmMQv1E9m8quqXXYXh9u1wxK5Yao7BFUfG", + "tx_index": 29, + "tx_hash": "aa785aa095076658df4575becc62c26d1e549a540599459cf332e9f44ae51019", + "block_index": 142, + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "give_quantity": 1, - "escrow_quantity": 10, + "escrow_quantity": 10000, "satoshirate": 1, - "status": 10, - "give_remaining": 0, + "status": 0, + "give_remaining": 10000, "oracle_address": null, - "last_status_tx_hash": "d95ff0a851d0ba16d0c432d33f48fa3a7ee893c96aa3084199fad3dfaa568c01", - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "last_status_tx_hash": null, + "origin": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "close_block_index": "150", + "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": 1727197765, + "block_time": 1727200806, "asset_info": { "divisible": true, "asset_longname": null, @@ -12688,35 +12747,35 @@ Returns all dispensers "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00000010", + "give_remaining_normalized": "0.00010000", + "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 29, - "tx_hash": "d334afca2c925114b90133fa7b9b4d09721e2afe7f50f39c525c05e459d6f6f4", - "block_index": 142, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "tx_index": 33, + "tx_hash": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea", + "block_index": 147, + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, - "give_remaining": 10000, - "oracle_address": null, + "give_remaining": 9334, + "oracle_address": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "last_status_tx_hash": null, - "origin": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", - "dispense_count": 0, + "origin": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", + "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": 1727197722, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "block_time": 1727200827, "asset_info": { "divisible": true, "asset_longname": null, @@ -12725,35 +12784,35 @@ Returns all dispensers "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00010000", + "give_remaining_normalized": "0.00009334", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000016" }, { - "tx_index": 26, - "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", - "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx_index": 30, + "tx_hash": "e6a18e565cab14aec4ba641f48a311c8643793f8fa84b25141ced517eaefc6f9", + "block_index": 150, + "source": "mtFzzdWHLZqWVVMGKENQscisyMTejQamk6", "asset": "XCP", "give_quantity": 1, - "escrow_quantity": 10000, + "escrow_quantity": 10, "satoshirate": 1, "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, + "last_status_tx_hash": "d2fb8bc72b0250cee9a35d9f657f0d4eb12286a93b930f502d166903f57fafb9", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "dispense_count": 0, + "last_status_tx_source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "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": 1727197718, + "block_time": 1727200840, "asset_info": { "divisible": true, "asset_longname": null, @@ -12763,7 +12822,7 @@ Returns all dispensers }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", + "escrow_quantity_normalized": "0.00000010", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" } @@ -12778,7 +12837,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c` (str, required) - The hash of the dispenser to return + + dispenser_hash: `3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc` (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. @@ -12790,9 +12849,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12801,7 +12860,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12811,7 +12870,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -12833,7 +12892,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c` (str, required) - The hash of the dispenser to return + + dispenser_hash: `3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc` (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 @@ -12853,19 +12912,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", + "tx_hash": "6ae257db1a77e44eb808057e9944b6f6e15eebf699db2c77f3009100a550b7fa", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12873,7 +12932,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12888,7 +12947,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -12902,19 +12961,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", + "tx_hash": "2a07cfa93bced14f59b80e10872f5fe4a406622078c0b85295c5c4149820d102", "block_index": 140, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12922,7 +12981,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12937,7 +12996,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197714, + "block_time": 1727200798, "asset_info": { "divisible": true, "asset_longname": null, @@ -12979,20 +13038,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "tx_hash": "1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4", "block_index": 154, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727197783, + "block_time": 1727200857, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -13017,7 +13076,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f` (str, required) - The hash of the dividend to return + + dividend_hash: `1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4` (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. @@ -13029,20 +13088,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "tx_hash": "1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4", "block_index": 154, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727197783, + "block_time": 1727200857, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -13064,7 +13123,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4` (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 @@ -13087,12 +13146,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "event": "1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4", "tx_index": 41, - "utxo": "0ab8c6a06380b63fb1c5aa5529b2847ec820017a6b0fbfaebafbbfcbe88236fa:0", - "utxo_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "utxo": "99ac4db802d5262ae35de8b542d298d4a28719ccffb6ffd8d462f40e8435bdd8:0", + "utxo_address": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "confirmed": true, - "block_time": 1727197783, + "block_time": 1727200857, "asset_info": { "divisible": true, "asset_longname": null, @@ -13104,16 +13163,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p", + "address": "bcrt1qe4v63z8qa2kvy5yzt4ssr8zhwxgqw84j8nmhvg", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "event": "1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197783, + "block_time": 1727200857, "asset_info": { "divisible": true, "asset_longname": null, @@ -13159,27 +13218,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 194, - "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", - "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", + "ledger_hash": "d16329e826a589a6af06767a820f5914ee69e22398c8612ed0c73909a1ab9b1f", + "messages_hash": "1bc8906db34e5bf45f47eca127e2b4cc60e46bbc8cf4301617e02c6f29b32301", "transaction_count": 1, - "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", - "block_time": 1727197944 + "txlist_hash": "555a7b8103a776f23b649ec297d2177fe885443dc976750a259547be47cd26e7", + "block_time": 1727201016 }, "tx_hash": null, "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 }, { "event_index": 541, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "tx_index": 60 }, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 }, { "event_index": 540, @@ -13188,12 +13247,12 @@ Returns all events "asset": "XCP", "block_index": 194, "quantity": 1, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "status": "valid", "tag": "64657374726f79", - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "tx_index": 60, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -13203,24 +13262,24 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 }, { "event_index": 539, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 194, - "event": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "event": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "quantity": 1, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -13230,25 +13289,25 @@ Returns all events }, "quantity_normalized": "0.00000001" }, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 }, { "event_index": 538, "event": "NEW_TRANSACTION", "params": { - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", "block_index": 194, - "block_time": 1727197944, + "block_time": 1727201016, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "tx_index": 60, - "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", + "utxos_info": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -13268,9 +13327,9 @@ Returns all events }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 } ], "next_cursor": 537, @@ -13298,15 +13357,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 194, - "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", - "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", + "ledger_hash": "d16329e826a589a6af06767a820f5914ee69e22398c8612ed0c73909a1ab9b1f", + "messages_hash": "1bc8906db34e5bf45f47eca127e2b4cc60e46bbc8cf4301617e02c6f29b32301", "transaction_count": 1, - "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", - "block_time": 1727197944 + "txlist_hash": "555a7b8103a776f23b649ec297d2177fe885443dc976750a259547be47cd26e7", + "block_time": 1727201016 }, "tx_hash": null, "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 } } ``` @@ -13384,16 +13443,16 @@ Returns the events filtered by event name "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -13403,78 +13462,78 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 10, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 529, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "FAIRMINTA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 500000000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 515, "event": "CREDIT", "params": { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "block_index": 191, "calling_function": "cancel order", - "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "event": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727197921, + "block_time": 1727201003, "asset_info": { "divisible": true, "asset_longname": null, @@ -13484,24 +13543,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "block_index": 191, - "block_time": 1727197921 + "block_time": 1727201003 }, { "event_index": 498, "event": "CREDIT", "params": { - "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "block_index": 189, "calling_function": "mpma send", - "event": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "event": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "quantity": 10, "tx_index": 55, "utxo": null, "utxo_address": null, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "divisible": true, "asset_longname": null, @@ -13511,9 +13570,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "block_time": 1727197914 + "block_time": 1727200995 } ], "next_cursor": 497, @@ -13569,27 +13628,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "tx_hash": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12", "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", - "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", + "destination": "bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "dispenser_tx_hash": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "oracle_address": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "last_status_tx_hash": null, - "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "origin": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13604,7 +13663,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727197754, + "block_time": 1727200827, "asset_info": { "divisible": true, "asset_longname": null, @@ -13618,19 +13677,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", + "tx_hash": "6ae257db1a77e44eb808057e9944b6f6e15eebf699db2c77f3009100a550b7fa", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13638,7 +13697,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13653,7 +13712,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -13667,19 +13726,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", + "tx_hash": "2a07cfa93bced14f59b80e10872f5fe4a406622078c0b85295c5c4149820d102", "block_index": 140, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13687,7 +13746,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13702,7 +13761,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197714, + "block_time": 1727200798, "asset_info": { "divisible": true, "asset_longname": null, @@ -13744,10 +13803,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -13755,7 +13814,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "divisible": true, "asset_longname": null, @@ -13768,10 +13827,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13779,11 +13838,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -13792,10 +13851,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -13803,11 +13862,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -13816,10 +13875,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 54, - "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0", + "tx_hash": "e7989369eefaec09cec5770c6128eb548023225e666d57bbed74b3d03240e9c3", "block_index": 188, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -13827,7 +13886,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197909, + "block_time": 1727200991, "asset_info": { "divisible": true, "asset_longname": null, @@ -13840,10 +13899,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 43, - "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "tx_hash": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739", "block_index": 156, - "source": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9:0", - "destination": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8:1", + "source": "9d347b5453e8bf2608768d2b109367ce3aaf5a12d4bc63526fa6fb59eab1901d:0", + "destination": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -13851,7 +13910,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197791, + "block_time": 1727200867, "asset_info": { "divisible": true, "asset_longname": null, @@ -13893,14 +13952,14 @@ Returns all the issuances "result": [ { "tx_index": 47, - "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "tx_hash": "efd20bb15eb6a7ce22645a0fb33b1873d00dc0cdeb9533d37037e0fd6a63f512", "msg_index": 0, "block_index": 160, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -13915,20 +13974,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197808, + "block_time": 1727200884, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "fd639c3216214bfc566ce6bff85523d1f912ae2ea06663639e0c84c52baf380b", + "tx_hash": "af9f8fab45dd2130f26f25edacaa4de3e37feaa202ad6a578e5a60d0aa935b46", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -13943,20 +14002,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727197803, + "block_time": 1727200880, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "417d8004a24a08dbe43e8fa95a96c26e6cef20b05e59a0c4fc594f801d9e4be5", + "tx_hash": "54776b690fc35e38368ab8ddb01f39437d6ad2177f025473e278802b9748e23c", "msg_index": 0, "block_index": 158, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -13971,20 +14030,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197799, + "block_time": 1727200875, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "a4e645fc06d32b7988f633b99547ea5edd3803374c8cb442482d4f0511c34d93", + "tx_hash": "e12a079169fa7227aca6b168eafdf85cc67738b746b00fb0efa698d2c977b8f1", "msg_index": 0, "block_index": 157, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -13999,20 +14058,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197795, + "block_time": 1727200871, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 43, - "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "tx_hash": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739", "msg_index": 0, "block_index": 156, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", - "issuer": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", + "source": "bcrt1qtwywdknya042p0342nhnjk05557lxwysfw6vuj", + "issuer": "bcrt1qtwywdknya042p0342nhnjk05557lxwysfw6vuj", "transfer": false, "callable": false, "call_date": 0, @@ -14027,7 +14086,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197791, + "block_time": 1727200867, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -14042,7 +14101,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f` (str, required) - The hash of the transaction to return + + tx_hash: `efd20bb15eb6a7ce22645a0fb33b1873d00dc0cdeb9533d37037e0fd6a63f512` (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. @@ -14054,14 +14113,14 @@ Returns the issuances of a block { "result": { "tx_index": 47, - "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "tx_hash": "efd20bb15eb6a7ce22645a0fb33b1873d00dc0cdeb9533d37037e0fd6a63f512", "msg_index": 0, "block_index": 160, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -14076,7 +14135,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197808, + "block_time": 1727200884, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14108,16 +14167,16 @@ Returns all sweeps "result": [ { "tx_index": 59, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "fee_paid_normalized": "0.00600000" } ], @@ -14131,7 +14190,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e` (str, required) - The hash of the transaction to return + + tx_hash: `ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774` (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. @@ -14144,16 +14203,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 59, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "fee_paid_normalized": "0.00600000" } ], @@ -14187,9 +14246,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a", + "tx_hash": "28499c6a50363ce063ee5e7f5de4d43ea5bf86a19dc05ea650443b343c00e258", "block_index": 138, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14197,14 +14256,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727197705, + "block_time": 1727200790, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "c1af0d1895e7e32748751e45ad78af2d4b67c387c3ed9683a08452e211a39e38", + "tx_hash": "929b85b0f022a54c6904a36e51da0339ca9b0583ac7d003a91cd601964f53da5", "block_index": 137, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14212,7 +14271,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727197701, + "block_time": 1727200786, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14226,7 +14285,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a` (str, required) - The hash of the transaction to return + + tx_hash: `28499c6a50363ce063ee5e7f5de4d43ea5bf86a19dc05ea650443b343c00e258` (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. @@ -14238,9 +14297,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a", + "tx_hash": "28499c6a50363ce063ee5e7f5de4d43ea5bf86a19dc05ea650443b343c00e258", "block_index": 138, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14248,7 +14307,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727197705, + "block_time": 1727200790, "fee_fraction_int_normalized": "0.00000000" } } @@ -14278,10 +14337,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", + "tx_hash": "5f1bb112a42ace59fa09d6a6fc1916eec2a940d44682b160c97bbae14494b127", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14306,13 +14365,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727197692 + "block_time": 1727200777 }, { - "tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", + "tx_hash": "bf4d673a1117a0391adcac895de8ac4f234e093b9257df4ce473fe1e01bebf8b", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14337,13 +14396,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727197675 + "block_time": 1727200760 }, { - "tx_hash": "ed54030f74b75858f08f505f277c85ca7c83e98e45fa2466d05fa442687341c8", + "tx_hash": "ef8994a7c4750636583ff8d92fe09ac8c38d280813f2e2e923e07c9b9a3d9cda", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14368,13 +14427,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727197672 + "block_time": 1727200756 }, { - "tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14399,7 +14458,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727197651 + "block_time": 1727200736 } ], "next_cursor": null, @@ -14442,7 +14501,7 @@ Returns the mints by fairminter Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85,bcrt1qxv2xktsndh0qf7kxa3pkw4dcvkfa9vrq58367j` (str, required) - The addresses to search for + + addresses: `bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p,bcrt1qtmd9xj5r7dlk044rn35kqqdmy62jpnf6u52x9z` (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. @@ -14461,8 +14520,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", - "address": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85" + "txid": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12", + "address": "bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p" }, { "vout": 2, @@ -14470,8 +14529,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", - "address": "bcrt1qxv2xktsndh0qf7kxa3pkw4dcvkfa9vrq58367j" + "txid": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739", + "address": "bcrt1qtmd9xj5r7dlk044rn35kqqdmy62jpnf6u52x9z" } ], "next_cursor": null, @@ -14484,7 +14543,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde` (str, required) - The address to search for + + address: `bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk` (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 @@ -14500,28 +14559,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18" + "tx_hash": "1e3535ba7d55784565a1ebd370a14fdde23ba46de1398689d8e4dd3886a34714" }, { - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" + "tx_hash": "2e8af63264d4d2130abba102b9d8a867d2b35b41e878e037f328cb46b727a415" }, { - "tx_hash": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e" + "tx_hash": "664b33a2858e0961f08c6a45f5ec6b98042d62a4f4e98faf6862f374be802724" }, { - "tx_hash": "843d7cbeb9b210125b38b597d2ed41917fb22acd6436c121783609b58b9c537d" + "tx_hash": "601d3f3304f74f8dd7dce71bd22011f57da8c83a23e9ae8bb8b30b2f9a202338" }, { - "tx_hash": "a1c5d79bf44808c8e24f848b3f4d7a846e2593e2578163675c2fea77878f8595" + "tx_hash": "c7de2f976583158832e195c5e06c91be234ea8f11f3dec44a14e41ee44e25238" }, { - "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0" + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774" }, { - "tx_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7" + "tx_hash": "467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7" }, { - "tx_hash": "b206c25c0bc100ebc583dc2f65b41a4bfd7733288f93306ac4a8c5ff87f91dfc" + "tx_hash": "e7989369eefaec09cec5770c6128eb548023225e666d57bbed74b3d03240e9c3" } ], "next_cursor": null, @@ -14534,7 +14593,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp` (str, required) - The address to search for. + + address: `bcrt1qtwywdknya042p0342nhnjk05557lxwysfw6vuj` (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. @@ -14547,8 +14606,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 3, - "tx_hash": "903cbc8965e6acb6b2ea3ef8ece17abe2c2b64fc1aa3afb5210c6e2c60b3878d" + "block_index": 2, + "tx_hash": "ef65836cc15a965615ff2edb77455cb8b91b9db8494c794f96d2652c7f1f5a21" } } ``` @@ -14558,7 +14617,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85` (str, required) - The address to search for + + address: `bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p` (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 @@ -14579,7 +14638,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c" + "txid": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12" } ], "next_cursor": null, @@ -14592,7 +14651,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj` (str, required) - Address to get pubkey for. + + address: `bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs` (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. @@ -14604,7 +14663,7 @@ Get pubkey for an address. ``` { - "result": "0281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f" + "result": "03e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec97" } ``` @@ -14613,7 +14672,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d` (str, required) - The transaction hash + + tx_hash: `da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb` (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. @@ -14625,7 +14684,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001017d16d49bb1c104f0a2f90a3471adefdef5c0e72a32ea7f426661c73c8a665e4e0300000000ffffffff020000000000000000226a20db1122b15c221f4eef3e201c33c1968a3a8b0bdcb78e7419fe31dec159fb8b16680b0a2701000000160014be3be0105284b008bb9cde97ec522d4b83e996940247304402202c38a782cd9d3d68111d7a3a2464e4bcd4863d926543fb78e69d6331f23e463602201bcd55ae851de5cec23db0867d3bd0fbf2f7e1f7f4f35536ce55c2c280779092012102fe9567defb89c4a13984578115e212f8baf547436155a46ddd5d36d93476881500000000" + "result": "02000000000101b6d782df6b5c2f06c0c7af0c8c4d60f0aa556ff6f727703a94f74ba118e609f40300000000ffffffff020000000000000000226a20bdb345b43fda7b9a18a9666a3c0969176fba41ebfa02e4533597d73786663d8e680b0a27010000001600146c45b04730370dc7e778ed200c19f22a08c064a90247304402203d873dec7dfcb9e89aa9e315200792e26864340166149cab6836a7546859a72902206bc567bc0d510087b95dbc9fc763e9058df75cad340b8deba4aab9186e73d92b012103b5e165703c3ef7b3eb8feb32c82da0679166b81eae0830c1d0d0803fe78048b000000000" } ``` @@ -14718,26 +14777,26 @@ Returns all mempool events { "result": [ { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "tx_index": 61 } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "memo": null, "quantity": 10000, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "status": "valid", - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "tx_index": 61, "asset_info": { "divisible": true, @@ -14750,19 +14809,19 @@ Returns all mempool events } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "CREDIT", "params": { - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "XCP", "block_index": 194, "calling_function": "send", - "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "event": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "quantity": 10000, "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -14774,19 +14833,19 @@ Returns all mempool events } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 194, - "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "event": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "quantity": 10000, "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -14798,27 +14857,27 @@ Returns all mempool events } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727197948.7673035, + "block_time": 1727201019.8965485, "btc_amount": 0, - "data": "020000000000000001000000000000271080d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a5", + "data": "0200000000000000010000000000002710802e12acb6aeb47c0265e777c21744bff0466743dd", "destination": "", "fee": 10000, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "tx_index": 61, - "utxos_info": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1:1", + "utxos_info": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "memo": null, "asset_info": { "divisible": true, @@ -14862,19 +14921,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "CREDIT", "params": { - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "XCP", "block_index": 194, "calling_function": "send", - "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "event": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "quantity": 10000, "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -14896,7 +14955,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1` (str, required) - The hash of the transaction to return + + tx_hash: `044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a` (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 @@ -14916,26 +14975,26 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "tx_index": 61 } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "memo": null, "quantity": 10000, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "status": "valid", - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "tx_index": 61, "asset_info": { "divisible": true, @@ -14948,19 +15007,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "CREDIT", "params": { - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "XCP", "block_index": 194, "calling_function": "send", - "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "event": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "quantity": 10000, "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -14972,19 +15031,19 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 194, - "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "event": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "quantity": 10000, "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -14996,27 +15055,27 @@ Returns the mempool events filtered by transaction hash } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727197948.7673035, + "block_time": 1727201019.8965485, "btc_amount": 0, - "data": "020000000000000001000000000000271080d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a5", + "data": "0200000000000000010000000000002710802e12acb6aeb47c0265e777c21744bff0466743dd", "destination": "", "fee": 10000, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "tx_index": 61, - "utxos_info": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1:1", + "utxos_info": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "memo": null, "asset_info": { "divisible": true, diff --git a/counterparty-core/counterpartycore/lib/api/queries.py b/counterparty-core/counterpartycore/lib/api/queries.py index c0afce9793..581fb0a333 100644 --- a/counterparty-core/counterpartycore/lib/api/queries.py +++ b/counterparty-core/counterpartycore/lib/api/queries.py @@ -74,14 +74,29 @@ SUPPORTED_SORT_FIELDS = { "balances": ["address", "asset", "quantity"], "order_matches": [ + "block_index", "forward_asset", "forward_quantity", "backward_asset", "backward_quantity", "match_expire_index", ], - "orders": ["give_asset", "give_quantity", "get_asset", "get_quantity", "expiration"], - "dispensers": ["asset", "give_quantity", "give_remaining", "dispense_count", "satoshirate"], + "orders": [ + "block_index", + "give_asset", + "give_quantity", + "get_asset", + "get_quantity", + "expiration", + ], + "dispensers": [ + "block_index", + "asset", + "give_quantity", + "give_remaining", + "dispense_count", + "satoshirate", + ], } ADDRESS_FIELDS = ["source", "address", "issuer", "destination"] @@ -1773,7 +1788,7 @@ def get_dispensers( :param str cursor: The last index of the dispensers to return :param int limit: The maximum number of dispensers 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 dispensers to return (overrides the `cursor` parameter) (e.g. give_quantity:desc) + :param str sort: The sort order of the dispensers to return (overrides the `cursor` parameter) (e.g. block_index:asc) """ return select_rows( diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 5853ebee31..6efe310f47 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": 194, - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", - "block_time": 1727197944, - "previous_block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", + "block_time": 1727201016, + "previous_block_hash": "72aff9bcfbc6a9f61cd1c192dc2322be91c061a847e81cc3b45854c9af31a6d5", "difficulty": 545259519, - "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", - "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", - "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", + "ledger_hash": "d16329e826a589a6af06767a820f5914ee69e22398c8612ed0c73909a1ab9b1f", + "txlist_hash": "555a7b8103a776f23b649ec297d2177fe885443dc976750a259547be47cd26e7", + "messages_hash": "1bc8906db34e5bf45f47eca127e2b4cc60e46bbc8cf4301617e02c6f29b32301", "transaction_count": 1, "confirmed": true }, { "block_index": 193, - "block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", - "block_time": 1727197940, - "previous_block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", + "block_hash": "72aff9bcfbc6a9f61cd1c192dc2322be91c061a847e81cc3b45854c9af31a6d5", + "block_time": 1727201012, + "previous_block_hash": "7aa8cd7d46e84e234d53f8c14736afd98d1d5b8441f4f425fe8c6a52c3f33c87", "difficulty": 545259519, - "ledger_hash": "8ebf0ff459fa8641d33b886fc35228153c63004c1b6d68a64ff566e9cb4de0e3", - "txlist_hash": "506c4191b8f52510ebd356fd01ac1b9bedff7b578efd0bc5a3bd85b08251a1a8", - "messages_hash": "55b40ca33d6b637a0b2410ab1e90bade3f809597ed4a502535846e0b388bc84b", + "ledger_hash": "fe72f9a183bbe8818f70ff6fff77b10468c2dc87a83499c4efa91349405a7d67", + "txlist_hash": "aba2669687ed43d3c307f90145085717cceb79038c715445f52cb587817ca510", + "messages_hash": "2d72a21fa2540f29a91bb2530c0078d445e984faccd9deb0b88d92a542a6c1bb", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", - "block_time": 1727197936, - "previous_block_hash": "0ba357e822a1ad9f1ee40b954ad363862e0d3afdb30fc3a5d88c175a18c38bd7", + "block_hash": "7aa8cd7d46e84e234d53f8c14736afd98d1d5b8441f4f425fe8c6a52c3f33c87", + "block_time": 1727201008, + "previous_block_hash": "6df0e71250aea0de3e29c053f2ca49cc02c029f911a25356f455303c447d0a63", "difficulty": 545259519, - "ledger_hash": "ed2663e807abed358c370631c393de19d2a31d71fa358bbf242406c52d095df2", - "txlist_hash": "4f8e1381f981afd674cfc8e4809c2409298d7d9c5b7c0a249c1185b179f0bfa3", - "messages_hash": "26277faaf7ebbfead3cfb663fecb912b47ae85e99f0e2711bf04cc195eeffcde", + "ledger_hash": "b628adecb3a2aaf9e34fdd69db9d8deca8cd034cc5003533e94931ea8e2b3eb9", + "txlist_hash": "7907f570d25dd6ee1b06021b8124df870185e5dff3ed08257498d094cd0986b2", + "messages_hash": "fbc2a23c6dbea37463fe9e7b83b6f116bcdc875ab356c17de0eed630e0ca9998", "transaction_count": 1, "confirmed": true }, { "block_index": 191, - "block_hash": "0ba357e822a1ad9f1ee40b954ad363862e0d3afdb30fc3a5d88c175a18c38bd7", - "block_time": 1727197921, - "previous_block_hash": "0033c741fc5613728a96e2ae19f264cc8678daa5777b8c77ee8ae758f1fe49e8", + "block_hash": "6df0e71250aea0de3e29c053f2ca49cc02c029f911a25356f455303c447d0a63", + "block_time": 1727201003, + "previous_block_hash": "0878eceac6ded73fd8e873772ed9f93c488a46bdde659e59451e65eb9a3ee390", "difficulty": 545259519, - "ledger_hash": "155de78e77691fa4852cea37b3db40e304bef521b3f2171fcb32b62a818971c0", - "txlist_hash": "624b1a10e023bf054ec39c1414b51f63aac8f1f5ffffa026d9203d72d86b302e", - "messages_hash": "123f9ccc6393e5dbc04c9b5716b7453477353af2429199386c25d88d41655d2c", + "ledger_hash": "ca55ff06d6da636d78ab4e2f239b3e1f55fba257aad9da3ba207987ddef60d4f", + "txlist_hash": "15073748e67fe9f89a59617d6f98dd6825510a84aa9a81c8a71ab8e0d78371cb", + "messages_hash": "794947a3274da460c59e4e508e48909c67ed76799d6d25c045d0f2ae92fd60e9", "transaction_count": 1, "confirmed": true }, { "block_index": 190, - "block_hash": "0033c741fc5613728a96e2ae19f264cc8678daa5777b8c77ee8ae758f1fe49e8", - "block_time": 1727197917, - "previous_block_hash": "5e52af4ac2e545ee9b2f874c6e6b5906d2705730d220f92fdcf1c0660e9b93cb", + "block_hash": "0878eceac6ded73fd8e873772ed9f93c488a46bdde659e59451e65eb9a3ee390", + "block_time": 1727200999, + "previous_block_hash": "73be93be2c91012204c8a1e8321475345c6c634627235302e1e7abe56fcb5755", "difficulty": 545259519, - "ledger_hash": "6b01ff1925c48a6193a47beff2795790910c846d74e2158ba5198c52eced339e", - "txlist_hash": "07bfc2fae7438d22af5ca3ab15d012058a50878d9320712da2476c6904747dde", - "messages_hash": "1f296eb34f29f041f13eac8f6d242af1203389ba36e46aa60938d5cfc6ef5e23", + "ledger_hash": "c242b73b2ee5c7a4cb1a18658d3d1c025310777e321d11722eff7c218b55df48", + "txlist_hash": "d647e554d1cfd1e9685fb03b192d224c788e4e30b2e0aad469691108c00abd60", + "messages_hash": "ed415b2226b65db4bdc25bfb21ecca24635074bfa76649c0f9e9458187b5da57", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 194, - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", - "block_time": 1727197944, - "previous_block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", + "block_time": 1727201016, + "previous_block_hash": "72aff9bcfbc6a9f61cd1c192dc2322be91c061a847e81cc3b45854c9af31a6d5", "difficulty": 545259519, - "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", - "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", - "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", + "ledger_hash": "d16329e826a589a6af06767a820f5914ee69e22398c8612ed0c73909a1ab9b1f", + "txlist_hash": "555a7b8103a776f23b649ec297d2177fe885443dc976750a259547be47cd26e7", + "messages_hash": "1bc8906db34e5bf45f47eca127e2b4cc60e46bbc8cf4301617e02c6f29b32301", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 194, - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", - "block_time": 1727197944, - "previous_block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", + "block_time": 1727201016, + "previous_block_hash": "72aff9bcfbc6a9f61cd1c192dc2322be91c061a847e81cc3b45854c9af31a6d5", "difficulty": 545259519, - "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", - "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", - "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", + "ledger_hash": "d16329e826a589a6af06767a820f5914ee69e22398c8612ed0c73909a1ab9b1f", + "txlist_hash": "555a7b8103a776f23b649ec297d2177fe885443dc976750a259547be47cd26e7", + "messages_hash": "1bc8906db34e5bf45f47eca127e2b4cc60e46bbc8cf4301617e02c6f29b32301", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 60, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", - "block_time": 1727197944, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", + "block_time": 1727201016, + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", + "utxos_info": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -139,11 +139,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 193, - "ledger_hash": "8ebf0ff459fa8641d33b886fc35228153c63004c1b6d68a64ff566e9cb4de0e3", - "messages_hash": "55b40ca33d6b637a0b2410ab1e90bade3f809597ed4a502535846e0b388bc84b", + "ledger_hash": "fe72f9a183bbe8818f70ff6fff77b10468c2dc87a83499c4efa91349405a7d67", + "messages_hash": "2d72a21fa2540f29a91bb2530c0078d445e984faccd9deb0b88d92a542a6c1bb", "transaction_count": 1, - "txlist_hash": "506c4191b8f52510ebd356fd01ac1b9bedff7b578efd0bc5a3bd85b08251a1a8", - "block_time": 1727197940 + "txlist_hash": "aba2669687ed43d3c307f90145085717cceb79038c715445f52cb587817ca510", + "block_time": 1727201012 }, "tx_hash": null }, @@ -152,43 +152,43 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59 }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774" }, { "event_index": 534, "event": "SWEEP", "params": { "block_index": 193, - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "status": "valid", - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, - "block_time": 1727197940, + "block_time": 1727201012, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774" }, { "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -198,22 +198,22 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774" }, { "event_index": 532, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "XCP", "block_index": 193, - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -223,7 +223,7 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774" } ], "next_cursor": 531, @@ -261,16 +261,16 @@ "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -280,57 +280,57 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774" }, { "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 10, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774" }, { "event_index": 529, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "FAIRMINTA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 500000000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774" } ], "next_cursor": null, @@ -340,16 +340,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "quantity": 74499387833, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -361,20 +361,20 @@ }, { "block_index": 193, - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "quantity": 10, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -382,20 +382,20 @@ }, { "block_index": 193, - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -409,16 +409,16 @@ "result": [ { "block_index": 194, - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "event": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -436,24 +436,24 @@ "result": [ { "type": "order", - "object_id": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "object_id": "3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", "block_index": 183, "confirmed": true, - "block_time": 1727197823 + "block_time": 1727200899 }, { "type": "order", - "object_id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "object_id": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926", "block_index": 183, "confirmed": true, - "block_time": 1727197823 + "block_time": 1727200899 }, { "type": "order_match", - "object_id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "object_id": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926_3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", "block_index": 183, "confirmed": true, - "block_time": 1727197823 + "block_time": 1727200899 } ], "next_cursor": null, @@ -463,13 +463,13 @@ "result": [ { "tx_index": 57, - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "block_index": 191, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "offer_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "status": "valid", "confirmed": true, - "block_time": 1727197921 + "block_time": 1727201003 } ], "next_cursor": null, @@ -479,15 +479,15 @@ "result": [ { "tx_index": 60, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -505,14 +505,14 @@ "result": [ { "tx_index": 47, - "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "tx_hash": "efd20bb15eb6a7ce22645a0fb33b1873d00dc0cdeb9533d37037e0fd6a63f512", "msg_index": 0, "block_index": 160, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -527,7 +527,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197808, + "block_time": 1727200884, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -539,10 +539,10 @@ "result": [ { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -550,7 +550,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "divisible": true, "asset_longname": null, @@ -563,10 +563,10 @@ }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -574,11 +574,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -587,10 +587,10 @@ }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -598,11 +598,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -618,27 +618,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "tx_hash": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12", "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", - "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", + "destination": "bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "dispenser_tx_hash": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "oracle_address": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "last_status_tx_hash": null, - "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "origin": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -653,7 +653,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727197754, + "block_time": 1727200827, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,16 +672,16 @@ "result": [ { "tx_index": 59, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "fee_paid_normalized": "0.00600000" } ], @@ -692,17 +692,17 @@ "result": [ { "tx_index": 60, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", - "block_time": 1727197944, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", + "block_time": 1727201016, + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", + "utxos_info": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -725,23 +725,23 @@ }, { "tx_index": 59, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6", - "block_time": 1727197940, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "block_hash": "72aff9bcfbc6a9f61cd1c192dc2322be91c061a847e81cc3b45854c9af31a6d5", + "block_time": 1727201012, + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480be3be0105284b008bb9cde97ec522d4b83e99694017377656570206d7920617373657473", + "data": "04806c45b04730370dc7e778ed200c19f22a08c064a9017377656570206d7920617373657473", "supported": true, - "utxos_info": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e:1", + "utxos_info": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "flags": 1, "memo": "sweep my assets" } @@ -754,18 +754,53 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "0300038054c1ba334a1912f96353f110938927c645ff9064802e12acb6aeb47c0265e777c21744bff0466743dd806c45b04730370dc7e778ed200c19f22a08c064a9400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "acdfc8ed80a83c50a27cdd2f09ccf3945c47ad134e4b2b1c41fa67d5426958a3", + "hash": "14f083b09bb6febdb3c81016ad99dad6ce853dfb3c91f251c0c0c4672d63ad62", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "0df09d9a242b435b364ab264836c57de89b876833215f596a8f6f8de93f68390", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "3154fc48442d953119650689580360b7bf92316dd8931e26a4316e941c995ffe", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "809160fa9715547fcfe74787eec783669aff6a57da49f262a225ebed0f08f56d", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "e20fa5033fab96ae3b54e859d7d9ecd42ee0bdd68542b55422b4ec5ff97aca9d", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "29b30fbffa10b0a8c0e33030fb2dab887284d64b90a496fd205e5fbfe3217d00", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -774,69 +809,93 @@ ], "vout": [ { - "value": 0, - "script_pub_key": "6a3340c01f32e5138051a2f1c506acfb548df8a06bf7a1751910bafef1d98b422d6352a91ad9336067b25b29d909a1d242de2582ac" + "value": 1000, + "script_pub_key": "512103891f35fe17a00335c7118e56ee2b6368073ae54657b2361249e48365594522552102e6bfdd833bb23fcdda57f332d9c3ce8b9a7f148904fee72524f4ac7bca49824b2103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9753ae" + }, + { + "value": 1000, + "script_pub_key": "512103891f35fe17a00335c7d5692d835faecbc65af494ca7825e35971008f5adb4930210276db5dad291e894a6e2bf1573eb40c99fec0e4cf63bd3aa568b11c3cfa7e8fb32103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9753ae" + }, + { + "value": 1000, + "script_pub_key": "512103bf1f35fe17a00335c7129a556e7fa2d23470fc54aed165e359770a429f00dd25210376db5dad291e89636e2bf1573eb40c9cdec0e4cf63bd3aa548b11c3cfa7e8fdd2103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9753ae" }, { - "value": 4999990000, - "script_pub_key": "00147fe57e1fa9d634b73d344e77a53d74837f310ea9" + "value": 29999987000, + "script_pub_key": "00147d93ff5e96d2aa8302b09d3661285dec7e9d27ab" } ], "vtxinwit": [ - "304402201e8b0de0d9012512e0b8ad2fe0e384d4e671a610f4289e8c3cb541937f4177db022020ac176092284b07ed1f700a4183ef186172b8ccbfff4f44b93cb4189e07a03e01", - "0281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f" + "3044022063be76625e8f989777e509375b68761cde61e90c730377f4ae9a963fbbd1ea810220099087fd49f101fb577597503304cff40c3ed518d732cb114e31625dbd8411c801", + "03e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec97", + "3044022047195342c7f93646a9f52027eebee760e7a587b73aa1af4cf3409fa12ada28f302206904bd6c03783bba0c3c5db79a936015192d8d2ec9a75e268b855cd63c8e741201", + "03e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec97", + "304402204d0d8f141eeabaf284be3385c9a884e125d944f9349e796fc37afd8cbf97917102202b6fb1b039705f72ee8c5e885fc7054c0ae49bd645fa08f801cbbf307bdca2f601", + "03e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec97", + "304402200730ee1653a76aa7b97a3ae5b0de69f3a4c2cb3b7b60cdc7e98008d81f38714602203fb41b3edefbf12d90b73656572e6bf7acdcab6456cc63196ccf3d03d41d04ab01", + "03e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec97", + "3044022051d0d555b9a1b3e39c44095140403e81ad6fe13c5bca36d75c0794c5e3f6786102202434ff051d31cd22b6b854930f66f52b28a3db6cffe017ff68798aa1cd84369401", + "03e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec97", + "304402203122b69adf43edab2670f1a5c95004d71c4d1a6c970b854ba4d0a186245686d902207d1bc7dd75c3c081ed74b7164c0f3d858b518542ad3f2637c5296961e8e35a3301", + "03e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec97" ], "lock_time": 0, - "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", - "tx_id": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b" + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", + "tx_id": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055" }, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MYASSETA", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", + "quantity": 10, + "memo": null, + "memo_is_hex": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } + { + "asset": "XCP", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "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" } }, "/v2/transactions//info": { "result": { - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a5", + "data": "0200000000000000010000000000002710802e12acb6aeb47c0265e777c21744bff0466743dd", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "fa3682e8cbbffbbaaebf0f6b7a0120c87e84b22955aac5b13fb68063a0c6b80a", + "hash": "d8bd35840ef462d4d8ffb6ffcc1987a2d498d242b5e85de32a26d502b84dac99", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -846,20 +905,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e7652ca5c019dea838c31a7526be39a0fb1ec044af1e5b36fe45c8b528a8b324cdc6bca3691b9a2d10243786323c5" + "script_pub_key": "6a2eac5cd552e0d9ff14fb9826f766e91d711f9aa0abece8791ca82905ca10e0a891f3e35ab723de58639c1b773ad606" }, { "value": 4999955000, - "script_pub_key": "0014be3be0105284b008bb9cde97ec522d4b83e99694" + "script_pub_key": "00146c45b04730370dc7e778ed200c19f22a08c064a9" } ], "vtxinwit": [ - "304402203022c08ac43105804d47bbf435909c214ce3221d00a256c1b5c2da0a0487a54e02204afe95b5b3516129151270b327dd409f4af9be9b3fe17f7e7b7d790a87be698601", - "02fe9567defb89c4a13984578115e212f8baf547436155a46ddd5d36d934768815" + "304402206dfd3dfa3a68eec239ebd85d1f37fb2b2f0d5d5f2d430a4fc1ed186aded3a46602203b2e4f6abe92d26849955a89d6f2c180cdb55802755da5f8447f0c03f578347501", + "03b5e165703c3ef7b3eb8feb32c82da0679166b81eae0830c1d0d0803fe78048b0" ], "lock_time": 0, - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", - "tx_id": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1" + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", + "tx_id": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a" }, "unpacked_data": { "message_type": "enhanced_send", @@ -867,7 +926,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "memo": null, "asset_info": { "divisible": true, @@ -894,17 +953,17 @@ "/v2/transactions/": { "result": { "tx_index": 60, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", - "block_time": 1727197944, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", + "block_time": 1727201016, + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", + "utxos_info": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -929,17 +988,17 @@ "/v2/transactions/": { "result": { "tx_index": 60, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", - "block_time": 1727197944, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", + "block_time": 1727201016, + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", + "utxos_info": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -968,47 +1027,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59 }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 534, "event": "SWEEP", "params": { "block_index": 193, - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "status": "valid", - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, - "block_time": 1727197940, + "block_time": 1727201012, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -1018,24 +1077,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "XCP", "block_index": 193, - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,36 +1104,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 10, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 } ], "next_cursor": 530, @@ -1087,47 +1146,47 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59 }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 534, "event": "SWEEP", "params": { "block_index": 193, - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "status": "valid", - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, - "block_time": 1727197940, + "block_time": 1727201012, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -1137,24 +1196,24 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 532, "event": "DEBIT", "params": { "action": "sweep", - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "XCP", "block_index": 193, - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -1164,36 +1223,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 10, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 } ], "next_cursor": 530, @@ -1203,10 +1262,10 @@ "result": [ { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -1214,7 +1273,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "divisible": true, "asset_longname": null, @@ -1227,10 +1286,10 @@ }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1238,11 +1297,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -1251,10 +1310,10 @@ }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -1262,11 +1321,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -1282,27 +1341,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "tx_hash": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12", "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", - "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", + "destination": "bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "dispenser_tx_hash": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "oracle_address": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "last_status_tx_hash": null, - "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "origin": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -1317,7 +1376,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727197754, + "block_time": 1727200827, "asset_info": { "divisible": true, "asset_longname": null, @@ -1338,16 +1397,16 @@ "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -1357,63 +1416,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 10, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 529, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "FAIRMINTA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 500000000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 } ], "next_cursor": null, @@ -1425,16 +1484,16 @@ "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -1444,63 +1503,63 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 10, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 529, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "FAIRMINTA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 500000000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 } ], "next_cursor": null, @@ -1513,7 +1572,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1523,7 +1582,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -1534,7 +1593,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1544,7 +1603,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -1555,7 +1614,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1565,7 +1624,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -1576,7 +1635,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1586,7 +1645,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -1597,7 +1656,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1607,7 +1666,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -1621,17 +1680,17 @@ "result": [ { "tx_index": 58, - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "block_index": 192, - "block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", - "block_time": 1727197936, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "7aa8cd7d46e84e234d53f8c14736afd98d1d5b8441f4f425fe8c6a52c3f33c87", + "block_time": 1727201008, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac:1", + "utxos_info": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1667,23 +1726,23 @@ }, { "tx_index": 57, - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "block_index": 191, - "block_hash": "0ba357e822a1ad9f1ee40b954ad363862e0d3afdb30fc3a5d88c175a18c38bd7", - "block_time": 1727197921, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "6df0e71250aea0de3e29c053f2ca49cc02c029f911a25356f455303c447d0a63", + "block_time": 1727201003, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "466ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "data": "4683919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "supported": true, - "utxos_info": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43:1", + "utxos_info": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "offer_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "status": "valid" } }, @@ -1691,17 +1750,17 @@ }, { "tx_index": 56, - "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "block_index": 190, - "block_hash": "0033c741fc5613728a96e2ae19f264cc8678daa5777b8c77ee8ae758f1fe49e8", - "block_time": 1727197917, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "0878eceac6ded73fd8e873772ed9f93c488a46bdde659e59451e65eb9a3ee390", + "block_time": 1727200999, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b:1", + "utxos_info": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1737,17 +1796,17 @@ }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "block_hash": "5e52af4ac2e545ee9b2f874c6e6b5906d2705730d220f92fdcf1c0660e9b93cb", - "block_time": 1727197914, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "73be93be2c91012204c8a1e8321475345c6c634627235302e1e7abe56fcb5755", + "block_time": 1727200995, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d780d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a580be3be0105284b008bb9cde97ec522d4b83e99694400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "0300038054c1ba334a1912f96353f110938927c645ff9064802e12acb6aeb47c0265e777c21744bff0466743dd806c45b04730370dc7e778ed200c19f22a08c064a9400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152:0", + "utxos_info": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1755,14 +1814,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -1770,7 +1829,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1789,25 +1848,25 @@ }, { "tx_index": 52, - "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "tx_hash": "c78a916b13975e32514ea6fac0324481adfcc972f1db2cbabb96677db4d026cb", "block_index": 186, - "block_hash": "23715f413c2b5dfaacd98fbc7d09da3269edd75cb02570c248e4fb573680aa6f", - "block_time": 1727197901, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "68d8ed672f554db585e5508b660624d769c3a49fe8bfc118cf4109c241833983", + "block_time": 1727200982, + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "destination": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "btc_amount": 2000, "fee": 10000, - "data": "0b272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "data": "0b4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "supported": true, - "utxos_info": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35:0", + "utxos_info": "c78a916b13975e32514ea6fac0324481adfcc972f1db2cbabb96677db4d026cb:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", - "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", - "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", + "tx1_hash": "e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", + "order_match_id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "status": "valid" } }, @@ -1836,11 +1895,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "status": "open", - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "tx_index": 58, - "block_time": 1727197936, + "block_time": 1727201008, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1864,24 +1923,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "block_index": 192, - "block_time": 1727197936 + "block_time": 1727201008 }, { "event_index": 521, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "block_index": 192, - "event": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "event": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "quantity": 1000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1727197936, + "block_time": 1727201008, "asset_info": { "divisible": true, "asset_longname": null, @@ -1891,25 +1950,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "block_index": 192, - "block_time": 1727197936 + "block_time": 1727201008 }, { "event_index": 520, "event": "NEW_TRANSACTION", "params": { - "block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", + "block_hash": "7aa8cd7d46e84e234d53f8c14736afd98d1d5b8441f4f425fe8c6a52c3f33c87", "block_index": 192, - "block_time": 1727197936, + "block_time": 1727201008, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "tx_index": 58, - "utxos_info": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac:1", + "utxos_info": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1941,40 +2000,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "block_index": 192, - "block_time": 1727197936 + "block_time": 1727201008 }, { "event_index": 516, "event": "CANCEL_ORDER", "params": { "block_index": 191, - "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "offer_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "status": "valid", - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "tx_index": 57, - "block_time": 1727197921 + "block_time": 1727201003 }, - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "block_index": 191, - "block_time": 1727197921 + "block_time": 1727201003 }, { "event_index": 515, "event": "CREDIT", "params": { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "block_index": 191, "calling_function": "cancel order", - "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "event": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727197921, + "block_time": 1727201003, "asset_info": { "divisible": true, "asset_longname": null, @@ -1984,9 +2043,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "block_index": 191, - "block_time": 1727197921 + "block_time": 1727201003 } ], "next_cursor": 513, @@ -1995,17 +2054,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "memo": null, "quantity": 10000, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "status": "valid", - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "tx_index": 61, "asset_info": { "divisible": true, @@ -2018,19 +2077,19 @@ } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "CREDIT", "params": { - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "XCP", "block_index": 194, "calling_function": "send", - "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "event": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "quantity": 10000, "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -2042,19 +2101,19 @@ } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 194, - "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "event": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "quantity": 10000, "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -2066,27 +2125,27 @@ } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727197948.7673035, + "block_time": 1727201019.8965485, "btc_amount": 0, - "data": "020000000000000001000000000000271080d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a5", + "data": "0200000000000000010000000000002710802e12acb6aeb47c0265e777c21744bff0466743dd", "destination": "", "fee": 10000, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "tx_index": 61, - "utxos_info": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1:1", + "utxos_info": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "memo": null, "asset_info": { "divisible": true, @@ -2108,7 +2167,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2116,14 +2175,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2131,14 +2190,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2153,7 +2212,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2161,7 +2220,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2173,7 +2232,7 @@ }, "/v2/addresses/
/balances/": { "result": { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2192,16 +2251,16 @@ "result": [ { "block_index": 191, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "event": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197921, + "block_time": 1727201003, "asset_info": { "divisible": true, "asset_longname": null, @@ -2213,16 +2272,16 @@ }, { "block_index": 183, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "event": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197823, + "block_time": 1727200899, "asset_info": { "divisible": true, "asset_longname": null, @@ -2234,20 +2293,20 @@ }, { "block_index": 160, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "event": "efd20bb15eb6a7ce22645a0fb33b1873d00dc0cdeb9533d37037e0fd6a63f512", "tx_index": 47, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197808, + "block_time": 1727200884, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2255,20 +2314,20 @@ }, { "block_index": 157, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "a4e645fc06d32b7988f633b99547ea5edd3803374c8cb442482d4f0511c34d93", + "event": "e12a079169fa7227aca6b168eafdf85cc67738b746b00fb0efa698d2c977b8f1", "tx_index": 44, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197795, + "block_time": 1727200871, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2280,16 +2339,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "event": "10c98431b6929b14e27a040b17f2d22aafc7813478587e2bbaca26c1c6197538", "tx_index": 39, - "utxo": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f:1", - "utxo_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "utxo": "10c98431b6929b14e27a040b17f2d22aafc7813478587e2bbaca26c1c6197538:1", + "utxo_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "confirmed": true, - "block_time": 1727197774, + "block_time": 1727200849, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2303,16 +2362,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "event": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197936, + "block_time": 1727201008, "asset_info": { "divisible": true, "asset_longname": null, @@ -2324,16 +2383,16 @@ }, { "block_index": 190, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "event": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197917, + "block_time": 1727200999, "asset_info": { "divisible": true, "asset_longname": null, @@ -2345,16 +2404,16 @@ }, { "block_index": 189, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "event": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "divisible": true, "asset_longname": null, @@ -2366,20 +2425,20 @@ }, { "block_index": 189, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "event": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "tx_index": 55, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2387,16 +2446,16 @@ }, { "block_index": 184, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "event": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", "tx_index": 50, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197892, + "block_time": 1727200964, "asset_info": { "divisible": true, "asset_longname": null, @@ -2419,9 +2478,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "c1af0d1895e7e32748751e45ad78af2d4b67c387c3ed9683a08452e211a39e38", + "tx_hash": "929b85b0f022a54c6904a36e51da0339ca9b0583ac7d003a91cd601964f53da5", "block_index": 137, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2429,7 +2488,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727197701, + "block_time": 1727200786, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2440,14 +2499,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "9721c7e67962e05364698fc838185e054fa5bb344c1586873c8e243211fee30a", + "tx_hash": "2a4c788f6c50b44e553e7df7ca7d8f3a63168c0f829df4ba991c41dcce254947", "block_index": 112, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1727197598, + "block_time": 1727200681, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2459,10 +2518,10 @@ "result": [ { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2470,7 +2529,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "divisible": true, "asset_longname": null, @@ -2483,10 +2542,10 @@ }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2494,11 +2553,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2507,10 +2566,10 @@ }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2518,11 +2577,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2531,10 +2590,10 @@ }, { "tx_index": 39, - "tx_hash": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "tx_hash": "10c98431b6929b14e27a040b17f2d22aafc7813478587e2bbaca26c1c6197538", "block_index": 152, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f:1", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "10c98431b6929b14e27a040b17f2d22aafc7813478587e2bbaca26c1c6197538:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2542,11 +2601,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197774, + "block_time": 1727200849, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2555,10 +2614,10 @@ }, { "tx_index": 36, - "tx_hash": "d6e7f9a2b0a750c7151cf12baf036c37393c4156a14410db9ff311c440329ff8", + "tx_hash": "c4e14890d5864ccbd1cd8f4359a891a6593b9025d1ae267a57c9af00626e321d", "block_index": 149, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "b206c25c0bc100ebc583dc2f65b41a4bfd7733288f93306ac4a8c5ff87f91dfc:1", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "1e3535ba7d55784565a1ebd370a14fdde23ba46de1398689d8e4dd3886a34714:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2566,11 +2625,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197761, + "block_time": 1727200836, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2585,10 +2644,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "4e5e668a3cc76166427fea322ae7c0f5deefad71340af9a2f004c1b19bd4167d", + "tx_hash": "f409e618a14bf7943a7027f7f66f55aaf0604d8c0cafc7c0062f5c6bdf82d7b6", "block_index": 151, - "source": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18:0", - "destination": "bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p", + "source": "664b33a2858e0961f08c6a45f5ec6b98042d62a4f4e98faf6862f374be802724:0", + "destination": "bcrt1qe4v63z8qa2kvy5yzt4ssr8zhwxgqw84j8nmhvg", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2596,11 +2655,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197770, + "block_time": 1727200844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2615,10 +2674,10 @@ "result": [ { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2626,11 +2685,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2639,10 +2698,10 @@ }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2650,11 +2709,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2663,10 +2722,10 @@ }, { "tx_index": 39, - "tx_hash": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "tx_hash": "10c98431b6929b14e27a040b17f2d22aafc7813478587e2bbaca26c1c6197538", "block_index": 152, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f:1", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "10c98431b6929b14e27a040b17f2d22aafc7813478587e2bbaca26c1c6197538:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2674,11 +2733,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197774, + "block_time": 1727200849, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2687,10 +2746,10 @@ }, { "tx_index": 36, - "tx_hash": "d6e7f9a2b0a750c7151cf12baf036c37393c4156a14410db9ff311c440329ff8", + "tx_hash": "c4e14890d5864ccbd1cd8f4359a891a6593b9025d1ae267a57c9af00626e321d", "block_index": 149, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "b206c25c0bc100ebc583dc2f65b41a4bfd7733288f93306ac4a8c5ff87f91dfc:1", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "1e3535ba7d55784565a1ebd370a14fdde23ba46de1398689d8e4dd3886a34714:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2698,11 +2757,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197761, + "block_time": 1727200836, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2717,10 +2776,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "4e5e668a3cc76166427fea322ae7c0f5deefad71340af9a2f004c1b19bd4167d", + "tx_hash": "f409e618a14bf7943a7027f7f66f55aaf0604d8c0cafc7c0062f5c6bdf82d7b6", "block_index": 151, - "source": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18:0", - "destination": "bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p", + "source": "664b33a2858e0961f08c6a45f5ec6b98042d62a4f4e98faf6862f374be802724:0", + "destination": "bcrt1qe4v63z8qa2kvy5yzt4ssr8zhwxgqw84j8nmhvg", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2728,11 +2787,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197770, + "block_time": 1727200844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -2747,9 +2806,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2758,7 +2817,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2768,7 +2827,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -2789,9 +2848,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2800,7 +2859,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2810,7 +2869,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -2830,19 +2889,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", + "tx_hash": "6ae257db1a77e44eb808057e9944b6f6e15eebf699db2c77f3009100a550b7fa", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2850,7 +2909,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2865,7 +2924,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -2879,19 +2938,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", + "tx_hash": "2a07cfa93bced14f59b80e10872f5fe4a406622078c0b85295c5c4149820d102", "block_index": 140, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2899,7 +2958,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2914,7 +2973,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197714, + "block_time": 1727200798, "asset_info": { "divisible": true, "asset_longname": null, @@ -2934,19 +2993,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", + "tx_hash": "6ae257db1a77e44eb808057e9944b6f6e15eebf699db2c77f3009100a550b7fa", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2954,7 +3013,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2969,7 +3028,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -2983,19 +3042,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", + "tx_hash": "2a07cfa93bced14f59b80e10872f5fe4a406622078c0b85295c5c4149820d102", "block_index": 140, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3003,7 +3062,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3018,7 +3077,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197714, + "block_time": 1727200798, "asset_info": { "divisible": true, "asset_longname": null, @@ -3038,19 +3097,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", + "tx_hash": "6ae257db1a77e44eb808057e9944b6f6e15eebf699db2c77f3009100a550b7fa", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3058,7 +3117,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3073,7 +3132,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -3087,19 +3146,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", + "tx_hash": "2a07cfa93bced14f59b80e10872f5fe4a406622078c0b85295c5c4149820d102", "block_index": 140, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3107,7 +3166,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3122,7 +3181,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197714, + "block_time": 1727200798, "asset_info": { "divisible": true, "asset_longname": null, @@ -3142,19 +3201,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", + "tx_hash": "6ae257db1a77e44eb808057e9944b6f6e15eebf699db2c77f3009100a550b7fa", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3162,7 +3221,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3177,7 +3236,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -3191,19 +3250,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", + "tx_hash": "2a07cfa93bced14f59b80e10872f5fe4a406622078c0b85295c5c4149820d102", "block_index": 140, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3211,7 +3270,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3226,7 +3285,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197714, + "block_time": 1727200798, "asset_info": { "divisible": true, "asset_longname": null, @@ -3245,16 +3304,16 @@ "result": [ { "tx_index": 59, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "fee_paid_normalized": "0.00600000" } ], @@ -3265,14 +3324,14 @@ "result": [ { "tx_index": 47, - "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "tx_hash": "efd20bb15eb6a7ce22645a0fb33b1873d00dc0cdeb9533d37037e0fd6a63f512", "msg_index": 0, "block_index": 160, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -3287,20 +3346,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197808, + "block_time": 1727200884, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "fd639c3216214bfc566ce6bff85523d1f912ae2ea06663639e0c84c52baf380b", + "tx_hash": "af9f8fab45dd2130f26f25edacaa4de3e37feaa202ad6a578e5a60d0aa935b46", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -3315,20 +3374,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727197803, + "block_time": 1727200880, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "417d8004a24a08dbe43e8fa95a96c26e6cef20b05e59a0c4fc594f801d9e4be5", + "tx_hash": "54776b690fc35e38368ab8ddb01f39437d6ad2177f025473e278802b9748e23c", "msg_index": 0, "block_index": 158, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -3343,20 +3402,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197799, + "block_time": 1727200875, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "a4e645fc06d32b7988f633b99547ea5edd3803374c8cb442482d4f0511c34d93", + "tx_hash": "e12a079169fa7227aca6b168eafdf85cc67738b746b00fb0efa698d2c977b8f1", "msg_index": 0, "block_index": 157, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -3371,20 +3430,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197795, + "block_time": 1727200871, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 35, - "tx_hash": "554b0dada3ac6339b552fd88655f0ccc64c43721ddcb47b66aec43240ca19ea3", + "tx_hash": "ff6dbba06ee6d18f1d758e73eb167c0e1145b485690a071cb72aafa68a978aae", "msg_index": 0, "block_index": 148, "asset": "MYASSETA", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -3399,7 +3458,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197757, + "block_time": 1727200832, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -3413,8 +3472,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 10000000000, @@ -3422,16 +3481,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1727197795, - "last_issuance_block_time": 1727197803, + "first_issuance_block_time": 1727200871, + "last_issuance_block_time": 1727200880, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 100000000000, @@ -3439,16 +3498,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1727197757, - "last_issuance_block_time": 1727197757, + "first_issuance_block_time": 1727200832, + "last_issuance_block_time": 1727200832, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 40, @@ -3456,16 +3515,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727197692, - "last_issuance_block_time": 1727197697, + "first_issuance_block_time": 1727200777, + "last_issuance_block_time": 1727200781, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 19, @@ -3473,16 +3532,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727197675, - "last_issuance_block_time": 1727197688, + "first_issuance_block_time": 1727200760, + "last_issuance_block_time": 1727200773, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 0, @@ -3490,8 +3549,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1727197655, - "last_issuance_block_time": 1727197672, + "first_issuance_block_time": 1727200740, + "last_issuance_block_time": 1727200756, "supply_normalized": "0.00000000" } ], @@ -3502,17 +3561,17 @@ "result": [ { "tx_index": 58, - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "block_index": 192, - "block_hash": "5db855c0baebf4b1be0c1b9b0885c99c81612a824ff72a82c04d92bf7c3200d0", - "block_time": 1727197936, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "7aa8cd7d46e84e234d53f8c14736afd98d1d5b8441f4f425fe8c6a52c3f33c87", + "block_time": 1727201008, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac:1", + "utxos_info": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3548,23 +3607,23 @@ }, { "tx_index": 57, - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "block_index": 191, - "block_hash": "0ba357e822a1ad9f1ee40b954ad363862e0d3afdb30fc3a5d88c175a18c38bd7", - "block_time": 1727197921, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "6df0e71250aea0de3e29c053f2ca49cc02c029f911a25356f455303c447d0a63", + "block_time": 1727201003, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "466ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "data": "4683919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "supported": true, - "utxos_info": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43:1", + "utxos_info": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "offer_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "status": "valid" } }, @@ -3572,17 +3631,17 @@ }, { "tx_index": 56, - "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "block_index": 190, - "block_hash": "0033c741fc5613728a96e2ae19f264cc8678daa5777b8c77ee8ae758f1fe49e8", - "block_time": 1727197917, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "0878eceac6ded73fd8e873772ed9f93c488a46bdde659e59451e65eb9a3ee390", + "block_time": 1727200999, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b:1", + "utxos_info": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3618,17 +3677,17 @@ }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "block_hash": "5e52af4ac2e545ee9b2f874c6e6b5906d2705730d220f92fdcf1c0660e9b93cb", - "block_time": 1727197914, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "73be93be2c91012204c8a1e8321475345c6c634627235302e1e7abe56fcb5755", + "block_time": 1727200995, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d780d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a580be3be0105284b008bb9cde97ec522d4b83e99694400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "0300038054c1ba334a1912f96353f110938927c645ff9064802e12acb6aeb47c0265e777c21744bff0466743dd806c45b04730370dc7e778ed200c19f22a08c064a9400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152:0", + "utxos_info": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3636,14 +3695,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -3651,7 +3710,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3670,17 +3729,17 @@ }, { "tx_index": 50, - "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", "block_index": 184, - "block_hash": "4be7779026bad707f1ccc317970e4f35c829ddbb1bbf157bc1a711a8307c9783", - "block_time": 1727197892, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "block_hash": "61efaec54e3d3bbdff76ab9d2b2a4cf1517d3d890c37b20548b93484369b1201", + "block_time": 1727200964, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9:1", + "utxos_info": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3722,20 +3781,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "tx_hash": "1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4", "block_index": 154, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727197783, + "block_time": 1727200857, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -3757,9 +3816,9 @@ "result": [ { "tx_index": 48, - "tx_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "tx_hash": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926", "block_index": 183, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3774,7 +3833,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727197823, + "block_time": 1727200899, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3800,9 +3859,9 @@ }, { "tx_index": 50, - "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", "block_index": 187, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3817,7 +3876,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727197905, + "block_time": 1727200986, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3843,9 +3902,9 @@ }, { "tx_index": 56, - "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "block_index": 191, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3860,7 +3919,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727197921, + "block_time": 1727201003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3886,9 +3945,9 @@ }, { "tx_index": 58, - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "block_index": 192, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3903,7 +3962,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727197936, + "block_time": 1727201008, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3934,10 +3993,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", + "tx_hash": "5f1bb112a42ace59fa09d6a6fc1916eec2a940d44682b160c97bbae14494b127", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -3962,13 +4021,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727197692 + "block_time": 1727200777 }, { - "tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", + "tx_hash": "bf4d673a1117a0391adcac895de8ac4f234e093b9257df4ce473fe1e01bebf8b", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -3993,13 +4052,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727197675 + "block_time": 1727200760 }, { - "tx_hash": "ed54030f74b75858f08f505f277c85ca7c83e98e45fa2466d05fa442687341c8", + "tx_hash": "ef8994a7c4750636583ff8d92fe09ac8c38d280813f2e2e923e07c9b9a3d9cda", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4024,13 +4083,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727197672 + "block_time": 1727200756 }, { - "tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4055,7 +4114,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727197651 + "block_time": 1727200736 } ], "next_cursor": null, @@ -4064,127 +4123,127 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "201f88f9894c716c618457972af68ef54a92b3eeb8876fb18286c0ea68a88c25", + "tx_hash": "bccbb42deef048209e07d9fb0f7340bb2b1e8f10c5e54f1cfa55accb8ac66283", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "fairminter_tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "fairminter_tx_hash": "5f1bb112a42ace59fa09d6a6fc1916eec2a940d44682b160c97bbae14494b127", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197697, + "block_time": 1727200781, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } }, { - "tx_hash": "4dd0822867ce57e0debd8e7464ee186fab8ec830972499614e36115f7a28ce96", + "tx_hash": "49b1e07978faa8eaf8d5ade692f3a64f4e80eb92bf2703f18114959d4f1e8e1c", "tx_index": 21, "block_index": 134, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "fairminter_tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "fairminter_tx_hash": "bf4d673a1117a0391adcac895de8ac4f234e093b9257df4ce473fe1e01bebf8b", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197688, + "block_time": 1727200773, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } }, { - "tx_hash": "8f602bc0c0f1aee82c9ff237dab02cd79e9427a1ef180d934a66f635ab2d157d", + "tx_hash": "0111704cc5929b8559a29cf124f00b77724015a4d2c7565f2f4aa8422983be79", "tx_index": 20, "block_index": 133, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "fairminter_tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "fairminter_tx_hash": "bf4d673a1117a0391adcac895de8ac4f234e093b9257df4ce473fe1e01bebf8b", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197684, + "block_time": 1727200769, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } }, { - "tx_hash": "473a44e1aecb813abb8a440fdd471137b378f8ef89de19e541a716f804223923", + "tx_hash": "32e316d766bcea23d558846c6d3bbccad179be94d731a8c4097b6f01aba8bacf", "tx_index": 19, "block_index": 132, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "fairminter_tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "fairminter_tx_hash": "bf4d673a1117a0391adcac895de8ac4f234e093b9257df4ce473fe1e01bebf8b", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197680, + "block_time": 1727200764, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } }, { - "tx_hash": "ffc57ac3c2c8b668f8eccc823f0ce3908f1b2a6bfde666240e0ba65ddbc84d28", + "tx_hash": "19c02328fa03dcccdd42190a3098cb6335c5a3376c729e79054deeb22a5fdec9", "tx_index": 15, "block_index": 127, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "fairminter_tx_hash": "ed54030f74b75858f08f505f277c85ca7c83e98e45fa2466d05fa442687341c8", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "fairminter_tx_hash": "ef8994a7c4750636583ff8d92fe09ac8c38d280813f2e2e923e07c9b9a3d9cda", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197660, + "block_time": 1727200744, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } }, { - "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", + "tx_hash": "5a391ff7c4ab9f62237b4734451c3765753c6424c9d0cded3325f895e75ff06f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "fairminter_tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197643, + "block_time": 1727200727, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } @@ -4196,22 +4255,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", + "tx_hash": "5a391ff7c4ab9f62237b4734451c3765753c6424c9d0cded3325f895e75ff06f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "fairminter_tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197643, + "block_time": 1727200727, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } @@ -4226,7 +4285,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4238,7 +4297,7 @@ "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "020000000001018f56d30d835c642e86f276b990e06e3b9a6abeaf03f93236216af03a30094931000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0200000000000000002b6a29920fa68d26f28458b61863fc5614eb07c65c393dc7709b643e11e7bb532588d0d627ffcc9f3d95beae9bba052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "02000000000101edd7a766460a4fb4601942d4c23deee15a574b25517f1f78becf8e042686490a000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff0200000000000000002b6a29c2a92573851ed8784849a69650b37d6b7bd7e2630910d62786268c5dd5e1443bf6f7587d8caa10b0319bba052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4251,16 +4310,16 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7" + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "order_match_id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7" }, "name": "btcpay", - "data": "434e5452505254590b272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "data": "434e5452505254590b4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978951, "btc_fee": 18049, - "rawtransaction": "02000000000101f709d5b950e8a3abfe20a997f6eb16352d31de27d0eaa7f7b03c0599d1a3becf000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff03b80b0000000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea900000000000000004b6a49b0b9e5d550a6257597dc4b6fbd5763c168762e8e50735fc6d1cc8a0654192824019b21b84b3bed0613fbf93a4865ef8344cf3ba8cd93ffcbbc6e0e91a031d7e39b16f534b9d9a46b14c79f052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "02000000000101daa1d5148d900a0ac23bfc9c2ad886b063173f479672ac0069f3eb44354e2de0000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff03b80b0000000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab00000000000000004b6a49ca5c0c11f96bac48348bdc5206db0d57d0e076ed9b9bb648308f40d377a6c5702c979e70ce629af2991ed91ecfa81395dff83bc16dcbea8478623fe0b52bb16946f1a53fcb8e83d372c79f052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4273,7 +4332,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "quantity": 1000, "overburn": false }, @@ -4283,22 +4342,22 @@ "btc_out": 1000, "btc_change": 4999985815, "btc_fee": 13185, - "rawtransaction": "020000000001016c4dbf5a98070ab47d6161ae7dc07a992458bcf424d9252912d30d03f13e02bb000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000" + "rawtransaction": "02000000000101565291541ec388be91a44832cfbab02ea751d08a08cf97d781936f4bfff0f237000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "offer_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac" + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "offer_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28" }, "name": "cancel", - "data": "434e5452505254594657dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "data": "434e54525052545946132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101a87d20b812ea217934f4e78ef1e22058f450bc013226ce5dd87bcaa19e256a5f000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0200000000000000002b6a290746bb7437bb3bd04b5b60d8877b0be5cb5425b6f17071133fd7fc24f562fca5b4ee5a4e802c1d3c959bba052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "020000000001011ed1a9f4a1f0aabef3ed6428baf2baf2eb44a220b9f5af834f289b067297ef47000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff0200000000000000002b6a2911c364192ef0061bf68bc2e75fa7636b1958fab0f1abb83b5780f6e709e708a4bdeb4950c8e4a804c49bba052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4311,7 +4370,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4330,7 +4389,7 @@ "btc_out": 0, "btc_change": 4999986346, "btc_fee": 13654, - "rawtransaction": "020000000001013794d3e4ed865cbf70a08b52755a1c117c53bdb16c49db5b211889493c322856000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000226a2020f69fb7a307fe410f8f891b14534cb5ac8a8e743c3542ffe7744f253be93180aabc052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "020000000001013d8440143b369a8149275d291f4e89628e992c8f4141b6ac95d6e3e840a0667c000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff020000000000000000226a20ad995647dc1f5cf1a38de32e7adf5ea0d3a71cf925f3d96ef7b859308eac7bcaaabc052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4343,7 +4402,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", + "source": "bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4367,7 +4426,7 @@ "btc_out": 0, "btc_change": 4949955760, "btc_fee": 14240, - "rawtransaction": "020000000001010cfd0fef929421661d755664e7f00ba4902a1fa2344282efc44fa3a714e88a920200000016001474c82b3f5125f89d5240f988d013fceee0b57d63ffffffff0200000000000000002c6a2ab51f1be2884f0b894627997a38394933112ac5a45ac07a77e149a9239db1e52ef4310a8e27636b3b4d39b0540a270100000016001474c82b3f5125f89d5240f988d013fceee0b57d6302000000000000", + "rawtransaction": "02000000000101126cbd5704a2c2c714e745aaba2136b2a888ff2648e7d8de421d466e2e48216b020000001600144b39826f0df71f5b85becf530d99d3ec2f8df410ffffffff0200000000000000002c6a2a97cd56c5a87c919eb0d9baaa9d5db848d45f3e2013c18981e72cdbd66104494876c4423ce2eb9b853abab0540a27010000001600144b39826f0df71f5b85becf530d99d3ec2f8df41002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4380,14 +4439,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -4406,7 +4465,7 @@ "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "020000000001014c168b88c4c3c5e11003fd3a35cb2cc00fbea5bb600b20dcf3820f3a7fcedd0b000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000236a21bd76b78c8f155cb5190523a44a5207a65c40afa8d27957d5fbcac7011467d0c3876fbc052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "020000000001015f834884818898e688e85d8e85fedabc893f47e29d472d532b435f94e2c90e12000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff020000000000000000236a21721612543f59b4cea784e3ee62b4ccb72abb87cbe95875e4c52ebf21a036bb38ea6fbc052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4419,10 +4478,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "transfer_destination": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "lock": false, "reset": false, @@ -4435,7 +4494,7 @@ "btc_out": 546, "btc_change": 4999983749, "btc_fee": 15705, - "rawtransaction": "0200000000010171538e6094681859ec2f2a5d516d3b2c79ad0c909d3fe89ac2c080b496f94cbe000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0322020000000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea90000000000000000236a2175cc31285956fe1bdb5fae7a84b5153c943354ad6544ef536ccce3a07d027bc2df85b2052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "0200000000010132d6ed3c9fbce185a3f9b746123785033e6e2ec91849367a98d03b7888daf186000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff0322020000000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab0000000000000000236a211ec53f8ee749730ee8c3ff433c6a3665ee24516b8e066b0cc22cac68dccc73303185b2052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4448,16 +4507,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", 1 ], [ "MYASSETA", - "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", 2 ] ], @@ -4465,12 +4524,12 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e545250525459030002807fe57e1fa9d634b73d344e77a53d74837f310ea9808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d78f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e545250525459030002807d93ff5e96d2aa8302b09d3661285dec7e9d27ab8054c1ba334a1912f96353f110938927c645ff90648f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945492, "btc_fee": 52508, - "rawtransaction": "02000000000104759b202733af314415433b8eeb0144a8980f76d0663e42bafd1add31aada7931000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff5d0396c457f6d5e92b6ac6e0f4aaf390dd56586a8bd569d4f18d223bf1d53311000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff588e6788e1e4f85ba7322f2c42d48525145e97cb36f782fdac05846382c5bc01000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff36659424a3e3c25d1d05344f8b6c24dd8cadf93a35bde932c32ae9e4d627f5b9000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff03e80300000000000069512103265ab5424ded6864ec6280703fd8146d223c23368563f5b4a32314e135b1ef602102cbe4331b305e7fe16281cc7aec6c2ccf3fafa46cbe06e1257c4a4c0337e0d97b210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53aee80300000000000069512103295ab5424ded6864ec41f71dcdcb95321f15f5023e4b5a7163a62995b6cedec92103c54dfb9403e7d48ec62bebdf90d4a1a1df07295354e136aa5e02296f5b8ff5be210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53ae14f316a8040000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000002000002000002000000000000", + "rawtransaction": "02000000000104e577e067bb983c8bf37ef7aca10b5ce04fe1cc8e1610106715e9b896aa5fe223000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abfffffffff01d1425b1446af40a30cf7f614ef968b0f0e2898bde55b78495a33052cde893000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff2abb23c81d9a008762665571fdf369475915efb7b391c56031b179c53a86251d000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffffff380c0c8c7dc0f7039e035159c41148c7f6638ee75536c0630b7204e3fd8958000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff03e803000000000000695121036e548f8fc9c509ea3d29031b77b76fdabb76c88e850afb489293efb339ca2c5c2102f0b12cd792f3cdf41c46e2f41ad7b6edfd56fc16b1963d618469e8d8a78709652103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9753aee8030000000000006951210261548f8fc9c509ea3d0a747685a69804c7601a240a1dd05e13d2c7eed5b4b1192102d71ae4835349febe055413974926a67e747138534e0659eea6218db4cbe825412103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9753ae14f316a8040000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4483,7 +4542,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4500,7 +4559,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -4514,7 +4573,7 @@ "btc_out": 0, "btc_change": 4999985233, "btc_fee": 14767, - "rawtransaction": "0200000000010114aeaf6fda9632c891dad98eb9547fa9726966c2b9b189e9a6199dcce5fd85fb000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000356a33c2e285f0210de7ceff2bf8d0dcb0cc44e2857ad478938c3b87cade72feb5d781a3bcbcb38b607463df2abd1b462f59e55ea2c051b8052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "02000000000101d3815d3bc637ba5c3310057f1f73518e1cd052e2575305f5f9961d481af47d0b000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff020000000000000000356a3382bca3ffdc73d3e01f1213c9355aef042d09d5b9355ef2cbcffd1cf799a68dd80bb0d4d32952c4c1754009237ece324f87b11951b8052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4527,8 +4586,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4544,12 +4603,12 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d7", + "data": "434e54525052545902000000000000000100000000000003e88054c1ba334a1912f96353f110938927c645ff9064", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985526, "btc_fee": 14474, - "rawtransaction": "0200000000010168425b8209dc387a633d2892c5d733042c5f96bb44cfd9af384b8a71ae220ea9000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000306a2e8420b498ca686dbdd4e07a91262ff3c95f8bdb569d9d10e65e5228c5a42036d27432cb6971497668d2bb4eabda0c76b9052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "020000000001010145d93fcbbca925969a36cbf8dc81b3dcce295cb1cc87c24efdb84e991257e9000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff020000000000000000306a2e3180763905ed77bd5549668783c0fde06c8ecc36077686c0e0a3cc114e7afa54cfc134a5bbfe421445475ad3cdb776b9052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4562,18 +4621,18 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904808f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d707ffff", + "data": "434e545250525459048054c1ba334a1912f96353f110938927c645ff906407ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "020000000001014800bb74929acebd48b93ebe35151b21a44b51523cb315a2e786ac6c445fd16c000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000236a210055d9cb70cb68be90eba1a75b00f15e9844fe2d396cbef79a453b09ec7706350a6fbc052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "020000000001019a797a06c4f5d3094b75b249c4ee63d25c26847734c97b81130d1fed7a4dab60000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff020000000000000000236a212049e1fbe71fc2711c0c75cc689b011397ff1e489e3421417cee9dd941136816686fbc052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4586,8 +4645,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "quantity": 1000 }, "name": "dispense", @@ -4596,7 +4655,7 @@ "btc_out": 1000, "btc_change": 4949852643, "btc_fee": 14357, - "rawtransaction": "0200000000010135ed38f305623dd31dde5516b9a1095cc33b00726e5711cc3d105d2e2a9df5bd020000001600148f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d7ffffffff03e803000000000000160014be3be0105284b008bb9cde97ec522d4b83e9969400000000000000000c6a0a29b024a4c0537e5c399de3c10827010000001600148f33b9ab6fa4aa2fa57cb88d6ee0a88f3feae7d702000000000000", + "rawtransaction": "02000000000101cb26d0b47d6796bbba2cdbf172c9fcad814432c0faa64e51325e97136b918ac70200000016001454c1ba334a1912f96353f110938927c645ff9064ffffffff03e8030000000000001600146c45b04730370dc7e778ed200c19f22a08c064a900000000000000000c6a0abd14fceefaf1824e03ade3c108270100000016001454c1ba334a1912f96353f110938927c645ff906402000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4609,7 +4668,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4634,7 +4693,7 @@ "btc_out": 0, "btc_change": 4999985467, "btc_fee": 14533, - "rawtransaction": "02000000000101ee82110473a8641082a4f6b132246728c35a248e9fdc35ea7d00d4221d0093d0000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000316a2f7c9ecc12272a0cda2e36def9fe779d4bb8e0aa5071d30d88d0aa02adcbf4a199e1320401232050a4f78cf2c9b4b2503bb9052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "02000000000101dff5d6b9963d58ce93eda5b9e0dc3325edb92d172aee9b60ad4009740563e7f6000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff020000000000000000316a2f35fd92ae806a71d5d594a5fa28384c40c437d510b8d21b9ec688462821e8b3f6a2cd07f9420a363cff7b2921eb27e73bb9052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4647,13 +4706,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -4665,7 +4724,7 @@ "btc_out": 0, "btc_change": 4999987049, "btc_fee": 12951, - "rawtransaction": "0200000000010140174ad7390a91d0f9752e27945d580ad6dc6e64f4bddf4f54c147c69608c606000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff020000000000000000166a14de8113840bf65e62d9080c55899510c5695a98db69bf052a010000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000000000000", + "rawtransaction": "02000000000101a5732f28204721cb6308ac13cab61ceeb71efd46aea6f9b66a9441ed07a1b172000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff020000000000000000166a142190e1f1b6f307755204d25dcf7c1048d1c78cb069bf052a010000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4678,8 +4737,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b:1", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055:3", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4692,12 +4751,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171306c6a6875386166366336747730663566656d363230743573646c6e7a7234666e733563636a7c366563626139633265313735396663336663313437333139383836646364396232386166333164326238346434306332313861323332633936643136356639623a317c5843507c31303030", + "data": "434e54525052545964626372743171306b666c3768356b36323467787134736e356d787a327a6161336c6636666174666e6b6668737c346364383133666165323535386538396632663934313166333864616137643463313063393461323637646161333831353563663138666234643966643035353a337c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918531, "btc_fee": 78469, - "rawtransaction": "020000000001065fe24b79cbd3f100b8b747f4a5932fd5a1295c78514a5893ae491cb67e98ecfe000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff10dbcd66558041d0a5b3075e96132cbffb8427bec9338d3fc0052f03cf0e56d5000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9fffffffff77d6a3a3b1c721a72c507bdd9c42a21501fc39e6a2ee275f8b27d4e59d22a34000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0640e0bdc052378fc75d58b4e3627797e00ccd110e4a8bf212e6e405c0a5852d000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffffd3937b5c9ed9c0afe7250e51046c2c559978cea3d6211aaf2d5d6ec3de4394d9000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff0dde6586f071138cd64a219aee58d7c2c26ef09b1726d78448113184f44f7224000000001600147fe57e1fa9d634b73d344e77a53d74837f310ea9ffffffff04e8030000000000006951210207e62a3be617d98553bf02c6445badff80fc1b14edb7b8b1254521e111990b9321034ceae8d3b577a872dff198b06d919e9c70f123f66789b066b2ffec473ab122a7210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53aee8030000000000006951210207e62a3be617d98553e90594011aa5e8d3a3171fa9bbeee4221f2fad50cd0ebb21021db5ef8cbb24fe35dbe6cebe3bdf889c26fc62f23c8be829b6f9b6133fb977b8210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53aee803000000000000695121032de62a3be617d98553ee069c5415adf2e8d32100a9bfe9e71326179566a96dba2102798c8dbe83459806ea82fcdc03ebeca8169f50c304eada1a849a8f255b8841d4210281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f53aec36d22fc060000001600147fe57e1fa9d634b73d344e77a53d74837f310ea902000002000002000002000002000002000000000000", + "rawtransaction": "020000000001067d8cb2e922d3c889515df1beafb9deef06736db65888a0178acfa3a8c88239bd000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff002eeb08adc6485da52527394aaea37ad7fa3d10b7f041474c9554c18abb3f74000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff6ff9202edc132df8446768ff0abeb2cc9c540e6d9359512adc49529f443f97b8000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff12cab7d7ed02ff3b76c2d7bf3ee826f2ff89dedabd5880fd324bf09a00f176cb000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff3adcf4e23bc1c205be1c896dec2bbd570b4a1f534b110642a390586df3e73b56000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff84df0624b3eb9db1f4b76d9d8659e08222bd29c4063bd472529a3b20c18f415f000000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27abffffffff04e803000000000000695121033020883d166ee0dc26744f859a957a416709c30b09f1087802d505fe497cf0e22102679d842f89fc3a82a87c17982a72f639385fa2f29a08b6a03bd5fc9c4d08b98e2103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9753aee803000000000000695121033020883d166ee0dc267148d4ddd473556f5bc35558a00922058102a1556ca51a210323978521c0b66bc1fd7c16c27b20f1397f01fdacc903a3ed37d0fa901802b93f2103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9753aee803000000000000695121021a20883d166ee0dc26741dd3dddb784c0f21f51b0fa90d2334e73199310dc446210314f3b142f18608f8c91d24f44c4490584c39cc99fc60c5dc0fb698a47c3bdfaa2103e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec9753aec36d22fc060000001600147d93ff5e96d2aa8302b09d3661285dec7e9d27ab02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4710,8 +4769,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8:1", - "destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739:1", + "destination": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4724,12 +4783,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964396363373963303765386330323530323339383365653637613463366433643666633934666135313864336331353437623537636630373162386339313866383a317c626372743171306c6a6875386166366336747730663566656d363230743573646c6e7a7234666e733563636a7c5843507c31303030", + "data": "434e54525052545964636131316138376236623039313433363236636166666662633332626536386432366434336466356661636262343861613931396365383537633161613733393a317c626372743171306b666c3768356b36323467787134736e356d787a327a6161336c6636666174666e6b6668737c5843507c31303030", "btc_in": 4949874900, "btc_out": 3000, "btc_change": 4949846467, "btc_fee": 25433, - "rawtransaction": "02000000000101f818c9b871f07cb547153c8d51fa94fcd6d3c6a467ee83390225c0e8079cc79c01000000160014338d7fb117242eb4ef93a7317ac319fb8778a488ffffffff04e80300000000000069512103ef3e3113c1cc0018b532a49727fe7d22641ab2b26693e28460b652ca4cf5d535210282e024724d1fa596f4cecec830ca6c1ad8bf9bb03046310e4f806668507deb742103f413b7debdf8216ec2698972b6a7993790f6ab9b2698a217c89f1074047a301853aee80300000000000069512103ef3e3113c1cc0018b530adc375ab7c226d1cefec3d99e1cd32e7138745b780c621028bbc7b66411df5c4a49c8cd963956d1adce79cba6401674c1ed83f70177eee6e2103f413b7debdf8216ec2698972b6a7993790f6ab9b2698a217c89f1074047a301853aee80300000000000069512103c53e3113c1cc0018b538eec127aa2e3d0c6e87f63493e081508461f374c6b01e2102e7d61313797c93f2c7aaf8ae53f3587cb98aaa885475523f7ab4510a654a88652103f413b7debdf8216ec2698972b6a7993790f6ab9b2698a217c89f1074047a301853aec3a9082701000000160014338d7fb117242eb4ef93a7317ac319fb8778a48802000000000000", + "rawtransaction": "0200000000010139a71a7c85ce19a98ab4cbfaf53dd4268de62bc3fbffca263614096b7ba811ca010000001600145b88e6da64ebeaa0be3554ef3959f4a53df33890ffffffff04e8030000000000006951210210d50c8daebda6b010603530418bc9a76f7f1e8360bc4e7c9fc05b65dec99e562103a06e744bbf2979e65a932731a4d6b2d4a2d82026289fe192ae066fadb0051a2a2102fdf9332096c9238549fc008b2487598d632d40766dc05d6b9ae7c8658e75ba9a53aee8030000000000006951210310d50c8daebda6b010673369458dcbae397c1fd269bf4e34ce951b278cd9c83a2103ad6e7a1fe42e70b55e9f247be386f589f3d36d3a7b86e291a95268faef5557552102fdf9332096c9238549fc008b2487598d632d40766dc05d6b9ae7c8658e75ba9a53aee803000000000000695121033ad50c8daebda6b01062383a16d2dbe3005e789d61b54f78acf66953bda8f8072103c60816288c1b1b836cab430392b286e7c6be154049fc83f09a3e0ecc893423e52102fdf9332096c9238549fc008b2487598d632d40766dc05d6b9ae7c8658e75ba9a53aec3a90827010000001600145b88e6da64ebeaa0be3554ef3959f4a53df3389002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 67, @@ -4745,8 +4804,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 10000000000, @@ -4754,16 +4813,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1727197795, - "last_issuance_block_time": 1727197803, + "first_issuance_block_time": 1727200871, + "last_issuance_block_time": 1727200880, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", - "owner": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", + "issuer": "bcrt1qtwywdknya042p0342nhnjk05557lxwysfw6vuj", + "owner": "bcrt1qtwywdknya042p0342nhnjk05557lxwysfw6vuj", "divisible": true, "locked": false, "supply": 100000000000, @@ -4771,16 +4830,16 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 156, "confirmed": true, - "first_issuance_block_time": 1727197791, - "last_issuance_block_time": 1727197791, + "first_issuance_block_time": 1727200867, + "last_issuance_block_time": 1727200867, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 100000000000, @@ -4788,16 +4847,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1727197757, - "last_issuance_block_time": 1727197757, + "first_issuance_block_time": 1727200832, + "last_issuance_block_time": 1727200832, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 40, @@ -4805,16 +4864,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1727197692, - "last_issuance_block_time": 1727197697, + "first_issuance_block_time": 1727200777, + "last_issuance_block_time": 1727200781, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 19, @@ -4822,8 +4881,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1727197675, - "last_issuance_block_time": 1727197688, + "first_issuance_block_time": 1727200760, + "last_issuance_block_time": 1727200773, "supply_normalized": "0.00000019" } ], @@ -4835,8 +4894,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 10000000000, @@ -4844,15 +4903,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1727197638, - "last_issuance_block_time": 1727197651, + "first_issuance_block_time": 1727200723, + "last_issuance_block_time": 1727200736, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4860,14 +4919,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -4875,7 +4934,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -4887,7 +4946,7 @@ }, "/v2/assets//balances/
": { "result": { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4906,9 +4965,9 @@ "result": [ { "tx_index": 48, - "tx_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "tx_hash": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926", "block_index": 183, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4923,7 +4982,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727197823, + "block_time": 1727200899, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4949,9 +5008,9 @@ }, { "tx_index": 50, - "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", "block_index": 187, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4966,7 +5025,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727197905, + "block_time": 1727200986, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4992,9 +5051,9 @@ }, { "tx_index": 56, - "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "block_index": 191, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5009,7 +5068,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727197921, + "block_time": 1727201003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5035,9 +5094,9 @@ }, { "tx_index": 58, - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "block_index": 192, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5052,7 +5111,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727197936, + "block_time": 1727201008, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5078,9 +5137,9 @@ }, { "tx_index": 51, - "tx_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx_hash": "e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "block_index": 186, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5095,7 +5154,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727197901, + "block_time": 1727200982, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5126,13 +5185,13 @@ "/v2/assets//matches": { "result": [ { - "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "tx0_index": 50, - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 53, - "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", - "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "tx1_hash": "467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", + "tx1_address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5146,7 +5205,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727197905, + "block_time": 1727200986, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5166,13 +5225,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "tx0_index": 50, - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 51, - "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", - "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "tx1_hash": "e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", + "tx1_address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5186,7 +5245,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727197901, + "block_time": 1727200982, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5206,13 +5265,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "id": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926_3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", "tx0_index": 48, - "tx0_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 49, - "tx1_hash": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", - "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "tx1_hash": "3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", + "tx1_address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5226,7 +5285,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727197823, + "block_time": 1727200899, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5253,20 +5312,20 @@ "result": [ { "block_index": 193, - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5274,20 +5333,20 @@ }, { "block_index": 125, - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "126a427f976fdfdf94d07c4794ffa1c70fe1efe20825d5a56a7512cdc80d032c", + "event": "0690942f2dfd840ad6ff6b5cfd4f06d86e77dbce303980758bd99ac034e4d803", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197651, + "block_time": 1727200736, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5295,20 +5354,20 @@ }, { "block_index": 124, - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e", + "event": "c7de2f976583158832e195c5e06c91be234ea8f11f3dec44a14e41ee44e25238", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197647, + "block_time": 1727200732, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5316,20 +5375,20 @@ }, { "block_index": 124, - "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", + "event": "5a391ff7c4ab9f62237b4734451c3765753c6424c9d0cded3325f895e75ff06f", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197647, + "block_time": 1727200732, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5341,16 +5400,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e", + "event": "c7de2f976583158832e195c5e06c91be234ea8f11f3dec44a14e41ee44e25238", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197647, + "block_time": 1727200732, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5364,16 +5423,16 @@ "result": [ { "block_index": 194, - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "event": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -5385,16 +5444,16 @@ }, { "block_index": 193, - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -5406,16 +5465,16 @@ }, { "block_index": 193, - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -5427,16 +5486,16 @@ }, { "block_index": 192, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "event": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197936, + "block_time": 1727201008, "asset_info": { "divisible": true, "asset_longname": null, @@ -5448,16 +5507,16 @@ }, { "block_index": 190, - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "event": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197917, + "block_time": 1727200999, "asset_info": { "divisible": true, "asset_longname": null, @@ -5475,20 +5534,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "tx_hash": "1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4", "block_index": 154, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727197783, + "block_time": 1727200857, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5510,14 +5569,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "126a427f976fdfdf94d07c4794ffa1c70fe1efe20825d5a56a7512cdc80d032c", + "tx_hash": "0690942f2dfd840ad6ff6b5cfd4f06d86e77dbce303980758bd99ac034e4d803", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -5532,20 +5591,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727197651, + "block_time": 1727200736, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e", + "tx_hash": "c7de2f976583158832e195c5e06c91be234ea8f11f3dec44a14e41ee44e25238", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -5560,20 +5619,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727197647, + "block_time": 1727200732, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", + "tx_hash": "5a391ff7c4ab9f62237b4734451c3765753c6424c9d0cded3325f895e75ff06f", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -5588,20 +5647,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1727197643, + "block_time": 1727200727, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -5616,7 +5675,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1727197638, + "block_time": 1727200723, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5628,10 +5687,10 @@ "result": [ { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5639,7 +5698,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "divisible": true, "asset_longname": null, @@ -5652,10 +5711,10 @@ }, { "tx_index": 54, - "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0", + "tx_hash": "e7989369eefaec09cec5770c6128eb548023225e666d57bbed74b3d03240e9c3", "block_index": 188, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5663,7 +5722,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197909, + "block_time": 1727200991, "asset_info": { "divisible": true, "asset_longname": null, @@ -5676,10 +5735,10 @@ }, { "tx_index": 43, - "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "tx_hash": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739", "block_index": 156, - "source": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9:0", - "destination": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8:1", + "source": "9d347b5453e8bf2608768d2b109367ce3aaf5a12d4bc63526fa6fb59eab1901d:0", + "destination": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5687,7 +5746,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197791, + "block_time": 1727200867, "asset_info": { "divisible": true, "asset_longname": null, @@ -5700,10 +5759,10 @@ }, { "tx_index": 42, - "tx_hash": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9", + "tx_hash": "9d347b5453e8bf2608768d2b109367ce3aaf5a12d4bc63526fa6fb59eab1901d", "block_index": 155, - "source": "0ab8c6a06380b63fb1c5aa5529b2847ec820017a6b0fbfaebafbbfcbe88236fa:0", - "destination": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9:0", + "source": "99ac4db802d5262ae35de8b542d298d4a28719ccffb6ffd8d462f40e8435bdd8:0", + "destination": "9d347b5453e8bf2608768d2b109367ce3aaf5a12d4bc63526fa6fb59eab1901d:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5711,7 +5770,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197787, + "block_time": 1727200861, "asset_info": { "divisible": true, "asset_longname": null, @@ -5730,9 +5789,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5741,7 +5800,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5751,7 +5810,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -5767,9 +5826,9 @@ }, { "tx_index": 29, - "tx_hash": "d334afca2c925114b90133fa7b9b4d09721e2afe7f50f39c525c05e459d6f6f4", + "tx_hash": "aa785aa095076658df4575becc62c26d1e549a540599459cf332e9f44ae51019", "block_index": 142, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5778,7 +5837,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "origin": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -5788,7 +5847,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727197722, + "block_time": 1727200806, "asset_info": { "divisible": true, "asset_longname": null, @@ -5804,9 +5863,9 @@ }, { "tx_index": 30, - "tx_hash": "d8c4d9743c70dc60ca111fcd9049da47ff04b408893eb8a73659046caf40e9d1", + "tx_hash": "e6a18e565cab14aec4ba641f48a311c8643793f8fa84b25141ced517eaefc6f9", "block_index": 150, - "source": "mmMQv1E9m8quqXXYXh9u1wxK5Yao7BFUfG", + "source": "mtFzzdWHLZqWVVMGKENQscisyMTejQamk6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -5814,10 +5873,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "d95ff0a851d0ba16d0c432d33f48fa3a7ee893c96aa3084199fad3dfaa568c01", - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "last_status_tx_hash": "d2fb8bc72b0250cee9a35d9f657f0d4eb12286a93b930f502d166903f57fafb9", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "last_status_tx_source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "close_block_index": "150", "confirmed": true, "fiat_price": null, @@ -5825,7 +5884,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727197765, + "block_time": 1727200840, "asset_info": { "divisible": true, "asset_longname": null, @@ -5841,18 +5900,18 @@ }, { "tx_index": 33, - "tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "tx_hash": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea", "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "oracle_address": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "last_status_tx_hash": null, - "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "origin": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5862,7 +5921,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1727197754, + "block_time": 1727200827, "asset_info": { "divisible": true, "asset_longname": null, @@ -5883,9 +5942,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5894,7 +5953,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5904,7 +5963,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -5932,7 +5991,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5940,7 +5999,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -5949,7 +6008,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5957,7 +6016,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -5966,7 +6025,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5974,7 +6033,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -5983,7 +6042,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -5998,27 +6057,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "tx_hash": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12", "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", - "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", + "destination": "bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "dispenser_tx_hash": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "oracle_address": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "last_status_tx_hash": null, - "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "origin": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6033,7 +6092,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727197754, + "block_time": 1727200827, "asset_info": { "divisible": true, "asset_longname": null, @@ -6047,19 +6106,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", + "tx_hash": "6ae257db1a77e44eb808057e9944b6f6e15eebf699db2c77f3009100a550b7fa", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6067,7 +6126,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6082,7 +6141,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -6096,19 +6155,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", + "tx_hash": "2a07cfa93bced14f59b80e10872f5fe4a406622078c0b85295c5c4149820d102", "block_index": 140, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6116,7 +6175,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6131,7 +6190,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197714, + "block_time": 1727200798, "asset_info": { "divisible": true, "asset_longname": null, @@ -6152,8 +6211,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "owner": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "owner": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false, "supply": 0, @@ -6161,8 +6220,8 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1727197799, - "last_issuance_block_time": 1727197799, + "first_issuance_block_time": 1727200875, + "last_issuance_block_time": 1727200875, "supply_normalized": "0.00000000" } ], @@ -6172,10 +6231,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6200,7 +6259,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727197651 + "block_time": 1727200736 } ], "next_cursor": null, @@ -6209,64 +6268,64 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "126a427f976fdfdf94d07c4794ffa1c70fe1efe20825d5a56a7512cdc80d032c", + "tx_hash": "0690942f2dfd840ad6ff6b5cfd4f06d86e77dbce303980758bd99ac034e4d803", "tx_index": 13, "block_index": 125, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", - "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", + "fairminter_tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197651, + "block_time": 1727200736, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } }, { - "tx_hash": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e", + "tx_hash": "c7de2f976583158832e195c5e06c91be234ea8f11f3dec44a14e41ee44e25238", "tx_index": 12, "block_index": 124, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", - "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", + "fairminter_tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197647, + "block_time": 1727200732, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } }, { - "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", + "tx_hash": "5a391ff7c4ab9f62237b4734451c3765753c6424c9d0cded3325f895e75ff06f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "fairminter_tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197643, + "block_time": 1727200727, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } @@ -6278,22 +6337,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "2395a5a4a67b49dffd9bc0bb26943e5af65de8cab81bc0385bafaf1c7969f9a6", + "tx_hash": "5a391ff7c4ab9f62237b4734451c3765753c6424c9d0cded3325f895e75ff06f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "fairminter_tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "fairminter_tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1727197643, + "block_time": 1727200727, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } @@ -6306,9 +6365,9 @@ "result": [ { "tx_index": 48, - "tx_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "tx_hash": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926", "block_index": 183, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6323,7 +6382,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1727197823, + "block_time": 1727200899, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6349,9 +6408,9 @@ }, { "tx_index": 51, - "tx_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx_hash": "e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "block_index": 186, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6366,7 +6425,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1727197901, + "block_time": 1727200982, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6392,9 +6451,9 @@ }, { "tx_index": 50, - "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", "block_index": 187, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6409,7 +6468,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727197905, + "block_time": 1727200986, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6435,9 +6494,9 @@ }, { "tx_index": 53, - "tx_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx_hash": "467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "block_index": 187, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6452,7 +6511,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727197905, + "block_time": 1727200986, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6478,9 +6537,9 @@ }, { "tx_index": 56, - "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "block_index": 191, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6495,7 +6554,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1727197921, + "block_time": 1727201003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6526,9 +6585,9 @@ "/v2/orders/": { "result": { "tx_index": 58, - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "block_index": 192, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6543,7 +6602,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1727197936, + "block_time": 1727201008, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6571,13 +6630,13 @@ "/v2/orders//matches": { "result": [ { - "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "tx0_index": 50, - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 53, - "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", - "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "tx1_hash": "467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", + "tx1_address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6591,7 +6650,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727197905, + "block_time": 1727200986, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6611,13 +6670,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "tx0_index": 50, - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 51, - "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", - "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "tx1_hash": "e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", + "tx1_address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6631,7 +6690,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727197901, + "block_time": 1727200982, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6658,15 +6717,15 @@ "result": [ { "tx_index": 52, - "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "tx_hash": "c78a916b13975e32514ea6fac0324481adfcc972f1db2cbabb96677db4d026cb", "block_index": 186, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "destination": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "btc_amount": 2000, - "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "order_match_id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "status": "valid", "confirmed": true, - "block_time": 1727197901, + "block_time": 1727200982, "btc_amount_normalized": "0.00002000" } ], @@ -6677,9 +6736,9 @@ "result": [ { "tx_index": 51, - "tx_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "tx_hash": "e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "block_index": 186, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6697,7 +6756,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727197901, + "block_time": 1727200982, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6723,9 +6782,9 @@ }, { "tx_index": 53, - "tx_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx_hash": "467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "block_index": 187, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6743,7 +6802,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1727197905, + "block_time": 1727200986, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6769,9 +6828,9 @@ }, { "tx_index": 48, - "tx_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", + "tx_hash": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926", "block_index": 183, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6789,7 +6848,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727197823, + "block_time": 1727200899, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6815,9 +6874,9 @@ }, { "tx_index": 50, - "tx_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", "block_index": 187, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6835,7 +6894,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727197905, + "block_time": 1727200986, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6861,9 +6920,9 @@ }, { "tx_index": 56, - "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "tx_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "block_index": 191, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6881,7 +6940,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727197921, + "block_time": 1727201003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6912,13 +6971,13 @@ "/v2/orders///matches": { "result": [ { - "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "tx0_index": 50, - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 53, - "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", - "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "tx1_hash": "467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", + "tx1_address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6935,7 +6994,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727197905, + "block_time": 1727200986, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6955,13 +7014,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "tx0_index": 50, - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 51, - "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", - "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "tx1_hash": "e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", + "tx1_address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6978,7 +7037,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727197901, + "block_time": 1727200982, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6998,13 +7057,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "id": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926_3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", "tx0_index": 48, - "tx0_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 49, - "tx1_hash": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", - "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "tx1_hash": "3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", + "tx1_address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7021,7 +7080,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1727197823, + "block_time": 1727200899, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7047,13 +7106,13 @@ "/v2/order_matches": { "result": [ { - "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "tx0_index": 50, - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 53, - "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", - "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "tx1_hash": "467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", + "tx1_address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7067,7 +7126,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1727197905, + "block_time": 1727200986, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7087,13 +7146,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "tx0_index": 50, - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 51, - "tx1_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", - "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "tx1_hash": "e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", + "tx1_address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7107,7 +7166,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1727197901, + "block_time": 1727200982, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7127,13 +7186,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", + "id": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926_3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", "tx0_index": 48, - "tx0_hash": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_hash": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx1_index": 49, - "tx1_hash": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", - "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "tx1_hash": "3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", + "tx1_address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7147,7 +7206,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1727197823, + "block_time": 1727200899, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7192,66 +7251,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "4425334c064a07609b1049b0e61f4368bf0e83b7743d8b0dfa6c08c631ca5015", + "tx_hash": "bb35e686d434cae9951da80cf904917280d38b8251f1626625123d1a058d4a6d", "block_index": 121, - "source": "bcrt1qyxerv7nywhqduhyezl3s8kpvw9ts8svpuu3vka", + "source": "bcrt1quygvuzd7gsxym55nf7w85agucgajyp9p5jduqp", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1727197635, + "block_time": 1727200719, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "0d22da1045dfdc843155acafa62e3d459f3d426c0b6dd63a90dc79bd6a834c4f", + "tx_hash": "b51b2867cf3c155fd34050bdca7366bee0cdec885a9d99baf3528307a7e27db6", "block_index": 120, - "source": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", + "source": "bcrt1qtwywdknya042p0342nhnjk05557lxwysfw6vuj", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1727197631, + "block_time": 1727200715, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "cd354d7390652af33bc7bd4151f568ae0610b7bf757cbdb17758a169a909b1ab", + "tx_hash": "328eaf6b9d4677ede9e9e97effbd0d13104f5055317a9974961d8de95cba585c", "block_index": 119, - "source": "bcrt1qxv2xktsndh0qf7kxa3pkw4dcvkfa9vrq58367j", + "source": "bcrt1qtmd9xj5r7dlk044rn35kqqdmy62jpnf6u52x9z", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1727197626, + "block_time": 1727200710, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "a5c4ab8dcae81a685b55251b11ac83df108bc970b09e7e3ec3d0a5683c9c2c47", + "tx_hash": "3881d5577b826809c73539506d45d0ba91960069911a94563115003d1bd1427b", "block_index": 118, - "source": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", + "source": "bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1727197622, + "block_time": 1727200706, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "268304583613b628ceaac31f5f0d4b3ccc6557fa2c7eef037287e902c9f6e05f", + "tx_hash": "3a8d701d6ce7937fb5069dda57641ea7218382a8654ad0344f861e12ca6717d1", "block_index": 117, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1727197618, + "block_time": 1727200702, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7262,29 +7321,29 @@ "/v2/dispensers": { "result": [ { - "tx_index": 33, - "tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", - "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "tx_index": 26, + "tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", + "block_index": 141, + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, - "status": 0, - "give_remaining": 9334, - "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "status": 10, + "give_remaining": 0, + "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", - "dispense_count": 1, + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "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": 1727197754, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -7293,35 +7352,35 @@ "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009334", + "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" + "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 30, - "tx_hash": "d8c4d9743c70dc60ca111fcd9049da47ff04b408893eb8a73659046caf40e9d1", - "block_index": 150, - "source": "mmMQv1E9m8quqXXYXh9u1wxK5Yao7BFUfG", + "tx_index": 29, + "tx_hash": "aa785aa095076658df4575becc62c26d1e549a540599459cf332e9f44ae51019", + "block_index": 142, + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "give_quantity": 1, - "escrow_quantity": 10, + "escrow_quantity": 10000, "satoshirate": 1, - "status": 10, - "give_remaining": 0, + "status": 0, + "give_remaining": 10000, "oracle_address": null, - "last_status_tx_hash": "d95ff0a851d0ba16d0c432d33f48fa3a7ee893c96aa3084199fad3dfaa568c01", - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "last_status_tx_hash": null, + "origin": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "close_block_index": "150", + "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": 1727197765, + "block_time": 1727200806, "asset_info": { "divisible": true, "asset_longname": null, @@ -7330,35 +7389,35 @@ "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00000010", + "give_remaining_normalized": "0.00010000", + "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 29, - "tx_hash": "d334afca2c925114b90133fa7b9b4d09721e2afe7f50f39c525c05e459d6f6f4", - "block_index": 142, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "tx_index": 33, + "tx_hash": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea", + "block_index": 147, + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, - "give_remaining": 10000, - "oracle_address": null, + "give_remaining": 9334, + "oracle_address": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "last_status_tx_hash": null, - "origin": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", - "dispense_count": 0, + "origin": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", + "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": 1727197722, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "block_time": 1727200827, "asset_info": { "divisible": true, "asset_longname": null, @@ -7367,35 +7426,35 @@ "issuer": null }, "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00010000", + "give_remaining_normalized": "0.00009334", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000016" }, { - "tx_index": 26, - "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", - "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx_index": 30, + "tx_hash": "e6a18e565cab14aec4ba641f48a311c8643793f8fa84b25141ced517eaefc6f9", + "block_index": 150, + "source": "mtFzzdWHLZqWVVMGKENQscisyMTejQamk6", "asset": "XCP", "give_quantity": 1, - "escrow_quantity": 10000, + "escrow_quantity": 10, "satoshirate": 1, "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, + "last_status_tx_hash": "d2fb8bc72b0250cee9a35d9f657f0d4eb12286a93b930f502d166903f57fafb9", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "dispense_count": 0, + "last_status_tx_source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "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": 1727197718, + "block_time": 1727200840, "asset_info": { "divisible": true, "asset_longname": null, @@ -7405,7 +7464,7 @@ }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", + "escrow_quantity_normalized": "0.00000010", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" } @@ -7416,9 +7475,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7427,7 +7486,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7437,7 +7496,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -7457,19 +7516,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", + "tx_hash": "6ae257db1a77e44eb808057e9944b6f6e15eebf699db2c77f3009100a550b7fa", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7477,7 +7536,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7492,7 +7551,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -7506,19 +7565,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", + "tx_hash": "2a07cfa93bced14f59b80e10872f5fe4a406622078c0b85295c5c4149820d102", "block_index": 140, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7526,7 +7585,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7541,7 +7600,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197714, + "block_time": 1727200798, "asset_info": { "divisible": true, "asset_longname": null, @@ -7560,20 +7619,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "tx_hash": "1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4", "block_index": 154, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727197783, + "block_time": 1727200857, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -7594,20 +7653,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "tx_hash": "1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4", "block_index": 154, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1727197783, + "block_time": 1727200857, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -7630,12 +7689,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "event": "1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4", "tx_index": 41, - "utxo": "0ab8c6a06380b63fb1c5aa5529b2847ec820017a6b0fbfaebafbbfcbe88236fa:0", - "utxo_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "utxo": "99ac4db802d5262ae35de8b542d298d4a28719ccffb6ffd8d462f40e8435bdd8:0", + "utxo_address": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "confirmed": true, - "block_time": 1727197783, + "block_time": 1727200857, "asset_info": { "divisible": true, "asset_longname": null, @@ -7647,16 +7706,16 @@ }, { "block_index": 154, - "address": "bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p", + "address": "bcrt1qe4v63z8qa2kvy5yzt4ssr8zhwxgqw84j8nmhvg", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "event": "1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1727197783, + "block_time": 1727200857, "asset_info": { "divisible": true, "asset_longname": null, @@ -7677,27 +7736,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 194, - "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", - "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", + "ledger_hash": "d16329e826a589a6af06767a820f5914ee69e22398c8612ed0c73909a1ab9b1f", + "messages_hash": "1bc8906db34e5bf45f47eca127e2b4cc60e46bbc8cf4301617e02c6f29b32301", "transaction_count": 1, - "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", - "block_time": 1727197944 + "txlist_hash": "555a7b8103a776f23b649ec297d2177fe885443dc976750a259547be47cd26e7", + "block_time": 1727201016 }, "tx_hash": null, "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 }, { "event_index": 541, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "tx_index": 60 }, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 }, { "event_index": 540, @@ -7706,12 +7765,12 @@ "asset": "XCP", "block_index": 194, "quantity": 1, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "status": "valid", "tag": "64657374726f79", - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "tx_index": 60, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -7721,24 +7780,24 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 }, { "event_index": 539, "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 194, - "event": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "event": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "quantity": 1, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -7748,25 +7807,25 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 }, { "event_index": 538, "event": "NEW_TRANSACTION", "params": { - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", "block_index": 194, - "block_time": 1727197944, + "block_time": 1727201016, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "tx_index": 60, - "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", + "utxos_info": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -7786,9 +7845,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 } ], "next_cursor": 537, @@ -7800,15 +7859,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 194, - "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", - "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", + "ledger_hash": "d16329e826a589a6af06767a820f5914ee69e22398c8612ed0c73909a1ab9b1f", + "messages_hash": "1bc8906db34e5bf45f47eca127e2b4cc60e46bbc8cf4301617e02c6f29b32301", "transaction_count": 1, - "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", - "block_time": 1727197944 + "txlist_hash": "555a7b8103a776f23b649ec297d2177fe885443dc976750a259547be47cd26e7", + "block_time": 1727201016 }, "tx_hash": null, "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 } }, "/v2/events/counts": { @@ -7843,16 +7902,16 @@ "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -7862,78 +7921,78 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 531, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 10, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 529, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "FAIRMINTA", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 500000000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 }, { "event_index": 515, "event": "CREDIT", "params": { - "address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "XCP", "block_index": 191, "calling_function": "cancel order", - "event": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", + "event": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", "quantity": 1000, "tx_index": 57, "utxo": null, "utxo_address": null, - "block_time": 1727197921, + "block_time": 1727201003, "asset_info": { "divisible": true, "asset_longname": null, @@ -7943,24 +8002,24 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "block_index": 191, - "block_time": 1727197921 + "block_time": 1727201003 }, { "event_index": 498, "event": "CREDIT", "params": { - "address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "block_index": 189, "calling_function": "mpma send", - "event": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "event": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "quantity": 10, "tx_index": 55, "utxo": null, "utxo_address": null, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "divisible": true, "asset_longname": null, @@ -7970,9 +8029,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "block_time": 1727197914 + "block_time": 1727200995 } ], "next_cursor": 497, @@ -7989,27 +8048,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "tx_hash": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12", "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", - "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", + "destination": "bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "dispenser_tx_hash": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 147, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9334, - "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "oracle_address": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "last_status_tx_hash": null, - "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "origin": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8024,7 +8083,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1727197754, + "block_time": 1727200827, "asset_info": { "divisible": true, "asset_longname": null, @@ -8038,19 +8097,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b090347893a91ef1f4f0a44926aba5a189502b49de70bc7ed3ec0737e53d3f55", + "tx_hash": "6ae257db1a77e44eb808057e9944b6f6e15eebf699db2c77f3009100a550b7fa", "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8058,7 +8117,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8073,7 +8132,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197718, + "block_time": 1727200803, "asset_info": { "divisible": true, "asset_longname": null, @@ -8087,19 +8146,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "7a56d875ec6c3b7c6c96ffe297e6670a8a4be6faad9da4e79a85d8636b772757", + "tx_hash": "2a07cfa93bced14f59b80e10872f5fe4a406622078c0b85295c5c4149820d102", "block_index": 140, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8be247e59bab79c334357999f83ac963f0295ca57c0dc64fb19d461b3a0cb00c", + "dispenser_tx_hash": "3df6d90991175a0c2aabbe0dc87cacd5d92c90cb996ce5b1514492f2585c61fc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8107,7 +8166,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "origin": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8122,7 +8181,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1727197714, + "block_time": 1727200798, "asset_info": { "divisible": true, "asset_longname": null, @@ -8141,10 +8200,10 @@ "result": [ { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8152,7 +8211,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "divisible": true, "asset_longname": null, @@ -8165,10 +8224,10 @@ }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8176,11 +8235,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -8189,10 +8248,10 @@ }, { "tx_index": 55, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8200,11 +8259,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -8213,10 +8272,10 @@ }, { "tx_index": 54, - "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0", + "tx_hash": "e7989369eefaec09cec5770c6128eb548023225e666d57bbed74b3d03240e9c3", "block_index": 188, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -8224,7 +8283,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197909, + "block_time": 1727200991, "asset_info": { "divisible": true, "asset_longname": null, @@ -8237,10 +8296,10 @@ }, { "tx_index": 43, - "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "tx_hash": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739", "block_index": 156, - "source": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9:0", - "destination": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8:1", + "source": "9d347b5453e8bf2608768d2b109367ce3aaf5a12d4bc63526fa6fb59eab1901d:0", + "destination": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8248,7 +8307,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1727197791, + "block_time": 1727200867, "asset_info": { "divisible": true, "asset_longname": null, @@ -8267,14 +8326,14 @@ "result": [ { "tx_index": 47, - "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "tx_hash": "efd20bb15eb6a7ce22645a0fb33b1873d00dc0cdeb9533d37037e0fd6a63f512", "msg_index": 0, "block_index": 160, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -8289,20 +8348,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197808, + "block_time": 1727200884, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "fd639c3216214bfc566ce6bff85523d1f912ae2ea06663639e0c84c52baf380b", + "tx_hash": "af9f8fab45dd2130f26f25edacaa4de3e37feaa202ad6a578e5a60d0aa935b46", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -8317,20 +8376,20 @@ "fair_minting": false, "asset_events": "lock_description reissuance", "confirmed": true, - "block_time": 1727197803, + "block_time": 1727200880, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "417d8004a24a08dbe43e8fa95a96c26e6cef20b05e59a0c4fc594f801d9e4be5", + "tx_hash": "54776b690fc35e38368ab8ddb01f39437d6ad2177f025473e278802b9748e23c", "msg_index": 0, "block_index": 158, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -8345,20 +8404,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197799, + "block_time": 1727200875, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 44, - "tx_hash": "a4e645fc06d32b7988f633b99547ea5edd3803374c8cb442482d4f0511c34d93", + "tx_hash": "e12a079169fa7227aca6b168eafdf85cc67738b746b00fb0efa698d2c977b8f1", "msg_index": 0, "block_index": 157, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -8373,20 +8432,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197795, + "block_time": 1727200871, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 43, - "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "tx_hash": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739", "msg_index": 0, "block_index": 156, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", - "issuer": "bcrt1qxwxhlvghyshtfmun5uch4scelwrh3fyg6vrezp", + "source": "bcrt1qtwywdknya042p0342nhnjk05557lxwysfw6vuj", + "issuer": "bcrt1qtwywdknya042p0342nhnjk05557lxwysfw6vuj", "transfer": false, "callable": false, "call_date": 0, @@ -8401,7 +8460,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197791, + "block_time": 1727200867, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8412,14 +8471,14 @@ "/v2/issuances/": { "result": { "tx_index": 47, - "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "tx_hash": "efd20bb15eb6a7ce22645a0fb33b1873d00dc0cdeb9533d37037e0fd6a63f512", "msg_index": 0, "block_index": 160, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "transfer": false, "callable": false, "call_date": 0, @@ -8434,7 +8493,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1727197808, + "block_time": 1727200884, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8443,16 +8502,16 @@ "result": [ { "tx_index": 59, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "fee_paid_normalized": "0.00600000" } ], @@ -8463,16 +8522,16 @@ "result": [ { "tx_index": 59, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1727197940, + "block_time": 1727201012, "fee_paid_normalized": "0.00600000" } ], @@ -8483,9 +8542,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a", + "tx_hash": "28499c6a50363ce063ee5e7f5de4d43ea5bf86a19dc05ea650443b343c00e258", "block_index": 138, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8493,14 +8552,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727197705, + "block_time": 1727200790, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "c1af0d1895e7e32748751e45ad78af2d4b67c387c3ed9683a08452e211a39e38", + "tx_hash": "929b85b0f022a54c6904a36e51da0339ca9b0583ac7d003a91cd601964f53da5", "block_index": 137, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8508,7 +8567,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727197701, + "block_time": 1727200786, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8518,9 +8577,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a", + "tx_hash": "28499c6a50363ce063ee5e7f5de4d43ea5bf86a19dc05ea650443b343c00e258", "block_index": 138, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8528,17 +8587,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1727197705, + "block_time": 1727200790, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", + "tx_hash": "5f1bb112a42ace59fa09d6a6fc1916eec2a940d44682b160c97bbae14494b127", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8563,13 +8622,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727197692 + "block_time": 1727200777 }, { - "tx_hash": "d651f8fda5b0c3fae87e37b0ac7c96f61fce3bcd9bcfe50302ca1289f4b314ee", + "tx_hash": "bf4d673a1117a0391adcac895de8ac4f234e093b9257df4ce473fe1e01bebf8b", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8594,13 +8653,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727197675 + "block_time": 1727200760 }, { - "tx_hash": "ed54030f74b75858f08f505f277c85ca7c83e98e45fa2466d05fa442687341c8", + "tx_hash": "ef8994a7c4750636583ff8d92fe09ac8c38d280813f2e2e923e07c9b9a3d9cda", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8625,13 +8684,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727197672 + "block_time": 1727200756 }, { - "tx_hash": "586ebb7da5b4567a2310cf4399da4d4c5f98c1a6023c55184a5cb516b238e480", + "tx_hash": "15f8f2368ab00936a53063e0f92508f82a1d6018e7495426e7dc81fc02f6d6f1", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8656,7 +8715,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1727197651 + "block_time": 1727200736 } ], "next_cursor": null, @@ -8670,8 +8729,8 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", - "address": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85" + "txid": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12", + "address": "bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p" }, { "vout": 2, @@ -8679,8 +8738,8 @@ "value": 100000, "confirmations": 39, "amount": 0.001, - "txid": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", - "address": "bcrt1qxv2xktsndh0qf7kxa3pkw4dcvkfa9vrq58367j" + "txid": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739", + "address": "bcrt1qtmd9xj5r7dlk044rn35kqqdmy62jpnf6u52x9z" } ], "next_cursor": null, @@ -8689,28 +8748,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18" + "tx_hash": "1e3535ba7d55784565a1ebd370a14fdde23ba46de1398689d8e4dd3886a34714" }, { - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e" + "tx_hash": "2e8af63264d4d2130abba102b9d8a867d2b35b41e878e037f328cb46b727a415" }, { - "tx_hash": "f89af7ed1390229137af7da33893d833c7c18ccc1c86228185590bcd373f2d3e" + "tx_hash": "664b33a2858e0961f08c6a45f5ec6b98042d62a4f4e98faf6862f374be802724" }, { - "tx_hash": "843d7cbeb9b210125b38b597d2ed41917fb22acd6436c121783609b58b9c537d" + "tx_hash": "601d3f3304f74f8dd7dce71bd22011f57da8c83a23e9ae8bb8b30b2f9a202338" }, { - "tx_hash": "a1c5d79bf44808c8e24f848b3f4d7a846e2593e2578163675c2fea77878f8595" + "tx_hash": "c7de2f976583158832e195c5e06c91be234ea8f11f3dec44a14e41ee44e25238" }, { - "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0" + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774" }, { - "tx_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7" + "tx_hash": "467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7" }, { - "tx_hash": "b206c25c0bc100ebc583dc2f65b41a4bfd7733288f93306ac4a8c5ff87f91dfc" + "tx_hash": "e7989369eefaec09cec5770c6128eb548023225e666d57bbed74b3d03240e9c3" } ], "next_cursor": null, @@ -8718,8 +8777,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 3, - "tx_hash": "903cbc8965e6acb6b2ea3ef8ece17abe2c2b64fc1aa3afb5210c6e2c60b3878d" + "block_index": 2, + "tx_hash": "ef65836cc15a965615ff2edb77455cb8b91b9db8494c794f96d2652c7f1f5a21" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -8730,17 +8789,17 @@ "value": 4949970000, "confirmations": 48, "amount": 49.4997, - "txid": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c" + "txid": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "0281088a9f5d0bf0ca1e2f9f3baf848c29eb877cd0b00377fdeee9b3a81b43766f" + "result": "03e9ae92eabb90ca74fe993bac25a34afb53dbfd9ee15d1434f46704cbef38ec97" }, "/v2/bitcoin/transactions/": { - "result": "020000000001017d16d49bb1c104f0a2f90a3471adefdef5c0e72a32ea7f426661c73c8a665e4e0300000000ffffffff020000000000000000226a20db1122b15c221f4eef3e201c33c1968a3a8b0bdcb78e7419fe31dec159fb8b16680b0a2701000000160014be3be0105284b008bb9cde97ec522d4b83e996940247304402202c38a782cd9d3d68111d7a3a2464e4bcd4863d926543fb78e69d6331f23e463602201bcd55ae851de5cec23db0867d3bd0fbf2f7e1f7f4f35536ce55c2c280779092012102fe9567defb89c4a13984578115e212f8baf547436155a46ddd5d36d93476881500000000" + "result": "02000000000101b6d782df6b5c2f06c0c7af0c8c4d60f0aa556ff6f727703a94f74ba118e609f40300000000ffffffff020000000000000000226a20bdb345b43fda7b9a18a9666a3c0969176fba41ebfa02e4533597d73786663d8e680b0a27010000001600146c45b04730370dc7e778ed200c19f22a08c064a90247304402203d873dec7dfcb9e89aa9e315200792e26864340166149cab6836a7546859a72902206bc567bc0d510087b95dbc9fc763e9058df75cad340b8deba4aab9186e73d92b012103b5e165703c3ef7b3eb8feb32c82da0679166b81eae0830c1d0d0803fe78048b000000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58603 @@ -8763,26 +8822,26 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "tx_index": 61 } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "memo": null, "quantity": 10000, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "status": "valid", - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "tx_index": 61, "asset_info": { "divisible": true, @@ -8795,19 +8854,19 @@ } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "CREDIT", "params": { - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "XCP", "block_index": 194, "calling_function": "send", - "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "event": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "quantity": 10000, "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -8819,19 +8878,19 @@ } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 194, - "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "event": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "quantity": 10000, "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -8843,27 +8902,27 @@ } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727197948.7673035, + "block_time": 1727201019.8965485, "btc_amount": 0, - "data": "020000000000000001000000000000271080d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a5", + "data": "0200000000000000010000000000002710802e12acb6aeb47c0265e777c21744bff0466743dd", "destination": "", "fee": 10000, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "tx_index": 61, - "utxos_info": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1:1", + "utxos_info": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "memo": null, "asset_info": { "divisible": true, @@ -8885,19 +8944,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "CREDIT", "params": { - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "XCP", "block_index": 194, "calling_function": "send", - "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "event": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "quantity": 10000, "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -8915,26 +8974,26 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "tx_index": 61 } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "destination": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "memo": null, "quantity": 10000, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "status": "valid", - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "tx_index": 61, "asset_info": { "divisible": true, @@ -8947,19 +9006,19 @@ } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "CREDIT", "params": { - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "asset": "XCP", "block_index": 194, "calling_function": "send", - "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "event": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "quantity": 10000, "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -8971,19 +9030,19 @@ } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 194, - "event": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "event": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "quantity": 10000, "tx_index": 61, "utxo": null, "utxo_address": null, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -8995,27 +9054,27 @@ } }, { - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1727197948.7673035, + "block_time": 1727201019.8965485, "btc_amount": 0, - "data": "020000000000000001000000000000271080d260c2aa7198795e1c8b0aa5c2ff19a9718fb0a5", + "data": "0200000000000000010000000000002710802e12acb6aeb47c0265e777c21744bff0466743dd", "destination": "", "fee": 10000, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", - "tx_hash": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", + "tx_hash": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a", "tx_index": 61, - "utxos_info": "c6a83f8ee0b6d4912b8a2d9d015190342f29a1c7dd9f8ac7eaaaf717466613d1:1", + "utxos_info": "044206e67491ff5d4c325bca6bbf5704dfbc3794e8948a39aae3ab0e11b23e2a:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "memo": null, "asset_info": { "divisible": true, @@ -9050,15 +9109,15 @@ "event_index": 537, "event": "NEW_BLOCK", "params": { - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", "block_index": 194, - "block_time": 1727197944, + "block_time": 1727201016, "difficulty": 545259519, - "previous_block_hash": "4b37da06f9b1cf772e7cea6312e1de15cb1e99134b8f7ebba689c9573c758da6" + "previous_block_hash": "72aff9bcfbc6a9f61cd1c192dc2322be91c061a847e81cc3b45854c9af31a6d5" }, "tx_hash": null, "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 } ], "next_cursor": 525, @@ -9070,17 +9129,17 @@ "event_index": 538, "event": "NEW_TRANSACTION", "params": { - "block_hash": "209a82c67ae0b7a333aac2c11519ef6d7c4b6c68b523ae8db458866cf4c4b364", + "block_hash": "52ace614bdf700970fae116cbd930af95fe09c4faee117d3d3c0c24860eedf93", "block_index": 194, - "block_time": 1727197944, + "block_time": 1727201016, "btc_amount": 0, "data": "6e0000000000000001000000000000000164657374726f79", "destination": "", "fee": 10000, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "tx_index": 60, - "utxos_info": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d:1", + "utxos_info": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb:1", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -9100,9 +9159,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 } ], "next_cursor": 526, @@ -9116,16 +9175,16 @@ "params": { "block_index": 147, "btc_amount": 10000, - "destination": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "destination": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "out_index": 0, - "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "tx_hash": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12", "tx_index": 34, - "block_time": 1727197754, + "block_time": 1727200827, "btc_amount_normalized": "0.00010000" }, - "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "tx_hash": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12", "block_index": 147, - "block_time": 1727197754 + "block_time": 1727200827 } ], "next_cursor": 237, @@ -9138,15 +9197,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 194, - "ledger_hash": "16381874665225577b7cd80338f76707ba0dd29dee5eef001cd0507a947a5fe3", - "messages_hash": "a40641404ab17b129ab9719bbf4d455eae61f813aa7eeeda0e2b6ade8dd73f3c", + "ledger_hash": "d16329e826a589a6af06767a820f5914ee69e22398c8612ed0c73909a1ab9b1f", + "messages_hash": "1bc8906db34e5bf45f47eca127e2b4cc60e46bbc8cf4301617e02c6f29b32301", "transaction_count": 1, - "txlist_hash": "cb9a303295d05f8eba813d906048842b354eef1de9d3b1f50ca630f2efa37f40", - "block_time": 1727197944 + "txlist_hash": "555a7b8103a776f23b649ec297d2177fe885443dc976750a259547be47cd26e7", + "block_time": 1727201016 }, "tx_hash": null, "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 } ], "next_cursor": 536, @@ -9159,12 +9218,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "tx_index": 60 }, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 } ], "next_cursor": 535, @@ -9177,15 +9236,15 @@ "event": "DEBIT", "params": { "action": "destroy", - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 194, - "event": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "event": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "quantity": 1, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -9195,9 +9254,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 } ], "next_cursor": 532, @@ -9209,16 +9268,16 @@ "event_index": 533, "event": "CREDIT", "params": { - "address": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "address": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "asset": "XCP", "block_index": 193, "calling_function": "sweep", - "event": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "event": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "quantity": 74499387833, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1727197940, + "block_time": 1727201012, "asset_info": { "divisible": true, "asset_longname": null, @@ -9228,9 +9287,9 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 } ], "next_cursor": 531, @@ -9244,14 +9303,14 @@ "params": { "asset": "XCP", "block_index": 188, - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "memo": null, "quantity": 10000, - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "status": "valid", - "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0", + "tx_hash": "e7989369eefaec09cec5770c6128eb548023225e666d57bbed74b3d03240e9c3", "tx_index": 54, - "block_time": 1727197909, + "block_time": 1727200991, "asset_info": { "divisible": true, "asset_longname": null, @@ -9261,9 +9320,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "396116982a7535d9189a658d0d50902c4e22a374ff4ada93a615bbb8b0190cd0", + "tx_hash": "e7989369eefaec09cec5770c6128eb548023225e666d57bbed74b3d03240e9c3", "block_index": 188, - "block_time": 1727197909 + "block_time": 1727200991 } ], "next_cursor": null, @@ -9277,15 +9336,15 @@ "params": { "asset": "XCP", "block_index": 189, - "destination": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "destination": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "status": "valid", - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "tx_index": 55, - "block_time": 1727197914, + "block_time": 1727200995, "asset_info": { "divisible": true, "asset_longname": null, @@ -9295,9 +9354,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5f5d1574edd22cb9617bbd5461763ba293c4b53002fcb6528b1858e80666d152", + "tx_hash": "4cd813fae2558e89f2f9411f38daa7d4c10c94a267daa38155cf18fb4d9fd055", "block_index": 189, - "block_time": 1727197914 + "block_time": 1727200995 } ], "next_cursor": 502, @@ -9320,20 +9379,20 @@ "event": "SWEEP", "params": { "block_index": 193, - "destination": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "destination": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "source": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "status": "valid", - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "tx_index": 59, - "block_time": 1727197940, + "block_time": 1727201012, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "e723f005b868d16f9244e5e0fa33f5b25f086cf0434f191789e781cae3413f1e", + "tx_hash": "ef57fe404a275352ef8de6701efaf60dd0225ba63f29cfa502ceed9e51804774", "block_index": 193, - "block_time": 1727197940 + "block_time": 1727201012 } ], "next_cursor": null, @@ -9350,15 +9409,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "status": "valid", - "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "tx_hash": "1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4", "tx_index": 41, - "block_time": 1727197783, + "block_time": 1727200857, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, @@ -9372,9 +9431,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "87d52f23e02b1c32039da1736ac9f62a82ac6760fc18e9a0e6005ca5fe7cd28f", + "tx_hash": "1b9303b3959067c0857fe1abb4fdd4b3684c7534c12691382004cc31a9afcca4", "block_index": 154, - "block_time": 1727197783 + "block_time": 1727200857 } ], "next_cursor": null, @@ -9395,11 +9454,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 160, - "block_time": 1727197808 + "block_time": 1727200884 }, - "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "tx_hash": "efd20bb15eb6a7ce22645a0fb33b1873d00dc0cdeb9533d37037e0fd6a63f512", "block_index": 160, - "block_time": 1727197808 + "block_time": 1727200884 } ], "next_cursor": 374, @@ -9422,22 +9481,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "status": "valid", "transfer": false, - "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "tx_hash": "efd20bb15eb6a7ce22645a0fb33b1873d00dc0cdeb9533d37037e0fd6a63f512", "tx_index": 47, - "block_time": 1727197808, + "block_time": 1727200884, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "47b2fc83527036923550cd1ea6bc6dd8e3c30b7b3b97228d7a43f07b5404ac7f", + "tx_hash": "efd20bb15eb6a7ce22645a0fb33b1873d00dc0cdeb9533d37037e0fd6a63f512", "block_index": 160, - "block_time": 1727197808 + "block_time": 1727200884 } ], "next_cursor": 381, @@ -9452,12 +9511,12 @@ "asset": "XCP", "block_index": 194, "quantity": 1, - "source": "bcrt1qhca7qyzjsjcq3wuum6t7c53dfwp7n9550xjug2", + "source": "bcrt1qd3zmq3esxuxu0emca5sqcx0j9gyvqe9ftwxxct", "status": "valid", "tag": "64657374726f79", - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "tx_index": 60, - "block_time": 1727197944, + "block_time": 1727201016, "asset_info": { "divisible": true, "asset_longname": null, @@ -9467,9 +9526,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "dfbce0fb347e27f6fb7465949b76a500b23af2438357e891128511000c57924d", + "tx_hash": "da0a0e76bfc982e2bbed2679a71f4e2d3ebc01140b448f430bb01b50f7ceaabb", "block_index": 194, - "block_time": 1727197944 + "block_time": 1727201016 } ], "next_cursor": 157, @@ -9494,11 +9553,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "status": "open", - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "tx_index": 58, - "block_time": 1727197936, + "block_time": 1727201008, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9522,9 +9581,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "57dc98435a9d28991bd401ead08d736cb38bbd52a6155f0a9398e711387e7aac", + "tx_hash": "132d67269995e3bc9e40d83bc0badefad56d85f0229eedfb0e2ccdf829d03d28", "block_index": 192, - "block_time": 1727197936 + "block_time": 1727201008 } ], "next_cursor": 509, @@ -9542,20 +9601,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "match_expire_index": 207, "status": "pending", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "tx0_block_index": 185, "tx0_expiration": 21, - "tx0_hash": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9", + "tx0_hash": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6", "tx0_index": 50, - "tx1_address": "bcrt1q6fsv92n3npu4u8ytp2ju9lce49cclv99puemde", + "tx1_address": "bcrt1q9cf2ed4wk37qye08wlppw39l7prxws7afa3krk", "tx1_block_index": 187, "tx1_expiration": 21, - "tx1_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx1_hash": "467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "tx1_index": 53, - "block_time": 1727197905, + "block_time": 1727200986, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9574,9 +9633,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "cf93b0732aebd7544ffd216971b9a0c8953e010135fe40e1f9f9c56d993259f7", + "tx_hash": "467f7e82754021f4a8a7e07800c1785d2619004c75fd9200884f7aa4def7caa7", "block_index": 187, - "block_time": 1727197905 + "block_time": 1727200986 } ], "next_cursor": 468, @@ -9589,11 +9648,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b" + "tx_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57" }, - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "block_index": 191, - "block_time": 1727197921 + "block_time": 1727201003 } ], "next_cursor": 483, @@ -9606,11 +9665,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf" + "tx_hash": "e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63" }, - "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "tx_hash": "c78a916b13975e32514ea6fac0324481adfcc972f1db2cbabb96677db4d026cb", "block_index": 186, - "block_time": 1727197901 + "block_time": 1727200982 } ], "next_cursor": null, @@ -9622,13 +9681,13 @@ "event_index": 474, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", - "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", + "id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", + "order_match_id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", "status": "completed" }, - "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "tx_hash": "c78a916b13975e32514ea6fac0324481adfcc972f1db2cbabb96677db4d026cb", "block_index": 186, - "block_time": 1727197901 + "block_time": 1727200982 } ], "next_cursor": 447, @@ -9642,18 +9701,18 @@ "params": { "block_index": 186, "btc_amount": 2000, - "destination": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "order_match_id": "272414062403b3496b793cc3695ef45befd934e9c75e4b59a3171941442d8ae9_e8137cacf2174e939491ff697ea84330ced98c61060c262113fa97403dec2ebf", - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "destination": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "order_match_id": "4844c5f31805a95e25af849d3e888b41d4cba82846300010c82895f4072e57f6_e2f9612faf4a7e6249958ba9d24aaf9e3d7a70b0dafaa5fb94dc51a088e6cf63", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "status": "valid", - "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "tx_hash": "c78a916b13975e32514ea6fac0324481adfcc972f1db2cbabb96677db4d026cb", "tx_index": 52, - "block_time": 1727197901, + "block_time": 1727200982, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "bdf59d2a2e5d103dcc11576e72003bc35c09a1b91655de1dd33d6205f338ed35", + "tx_hash": "c78a916b13975e32514ea6fac0324481adfcc972f1db2cbabb96677db4d026cb", "block_index": 186, - "block_time": 1727197901 + "block_time": 1727200982 } ], "next_cursor": null, @@ -9666,16 +9725,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 191, - "offer_hash": "6ecba9c2e1759fc3fc147319886dcd9b28af31d2b84d40c218a232c96d165f9b", - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "offer_hash": "83919cf82dd5eb1e2e1f6d3f3f752d34d41636ed00ab8ff78369eb81475b8e57", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "status": "valid", - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "tx_index": 57, - "block_time": 1727197921 + "block_time": 1727201003 }, - "tx_hash": "2931441524be69ad53514dcbddd4ccd4012ba53a743731a923e4411f48678c43", + "tx_hash": "1d314894d90254c43598647c4ebca9b8f3f0d20a522eb8130d9955e95ea1c197", "block_index": 191, - "block_time": 1727197921 + "block_time": 1727201003 } ], "next_cursor": null, @@ -9688,13 +9747,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 183, - "order_hash": "0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "block_time": 1727197823 + "order_hash": "3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "block_time": 1727200899 }, "tx_hash": null, "block_index": 183, - "block_time": 1727197823 + "block_time": 1727200899 } ], "next_cursor": 453, @@ -9707,14 +9766,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 183, - "order_match_id": "27bb4249f5b10ca1bc2243db016483f22c15c66cc74878577f7a8117401867eb_0dbd8a210369b0beabdc1497143cab14c587789fd6882a29a1ba504e86f58cef", - "tx0_address": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "tx1_address": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", - "block_time": 1727197823 + "order_match_id": "f90bb3520b4cd8e8f43ae4a416ea102f6a45a4cfd10b4620066271057abde926_3a7ea4dc466a608d47050ca02aa94f8d84ae9ea60b94dcf727b3e6eb8728e8d8", + "tx0_address": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "tx1_address": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", + "block_time": 1727200899 }, "tx_hash": null, "block_index": 183, - "block_time": 1727197823 + "block_time": 1727200899 } ], "next_cursor": null, @@ -9732,14 +9791,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", - "origin": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "oracle_address": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", + "origin": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "satoshirate": 1, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "status": 0, - "tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "tx_hash": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea", "tx_index": 33, - "block_time": 1727197749, + "block_time": 1727200823, "asset_info": { "divisible": true, "asset_longname": null, @@ -9752,9 +9811,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", + "tx_hash": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea", "block_index": 146, - "block_time": 1727197749 + "block_time": 1727200823 } ], "next_cursor": 254, @@ -9768,9 +9827,9 @@ "params": { "asset": "XCP", "give_remaining": 0, - "source": "mmMQv1E9m8quqXXYXh9u1wxK5Yao7BFUfG", + "source": "mtFzzdWHLZqWVVMGKENQscisyMTejQamk6", "status": 10, - "tx_hash": "d8c4d9743c70dc60ca111fcd9049da47ff04b408893eb8a73659046caf40e9d1", + "tx_hash": "e6a18e565cab14aec4ba641f48a311c8643793f8fa84b25141ced517eaefc6f9", "asset_info": { "divisible": true, "asset_longname": null, @@ -9780,9 +9839,9 @@ }, "give_remaining_normalized": "0.00000000" }, - "tx_hash": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18", + "tx_hash": "664b33a2858e0961f08c6a45f5ec6b98042d62a4f4e98faf6862f374be802724", "block_index": 150, - "block_time": 1727197765 + "block_time": 1727200840 } ], "next_cursor": 279, @@ -9796,13 +9855,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mmMQv1E9m8quqXXYXh9u1wxK5Yao7BFUfG", + "destination": "mtFzzdWHLZqWVVMGKENQscisyMTejQamk6", "dispense_quantity": 10, - "dispenser_tx_hash": "d8c4d9743c70dc60ca111fcd9049da47ff04b408893eb8a73659046caf40e9d1", - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", - "tx_hash": "4ef9bf3c6b9845c8479bd4df25a1ce8dd0706f42b3d93f1e934ac6472755b20d", + "dispenser_tx_hash": "e6a18e565cab14aec4ba641f48a311c8643793f8fa84b25141ced517eaefc6f9", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", + "tx_hash": "b1e16747a30649a1850561f22204365ba5a8721325f1509544a91cbd364ea876", "tx_index": 31, - "block_time": 1727197731, + "block_time": 1727200815, "asset_info": { "divisible": true, "asset_longname": null, @@ -9812,9 +9871,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "4ef9bf3c6b9845c8479bd4df25a1ce8dd0706f42b3d93f1e934ac6472755b20d", + "tx_hash": "b1e16747a30649a1850561f22204365ba5a8721325f1509544a91cbd364ea876", "block_index": 144, - "block_time": 1727197731 + "block_time": 1727200815 } ], "next_cursor": null, @@ -9829,14 +9888,14 @@ "asset": "XCP", "block_index": 147, "btc_amount": 10000, - "destination": "bcrt1qwnyzk063yhuf65jqlxydqyluamst2ltrckxj85", + "destination": "bcrt1qfvucymcd7u04hpd7eafsmxwnashcmaqs54q79p", "dispense_index": 0, "dispense_quantity": 666, - "dispenser_tx_hash": "aa3f6c0814b54f2613e45e27a0ad77dedc3bd65b9d420e656e2c98501d87b59b", - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", - "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "dispenser_tx_hash": "1e7bea513de78cabf444b974fdb0efb4304b18bd990a889d7a0f8b0e3d21b6ea", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", + "tx_hash": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12", "tx_index": 34, - "block_time": 1727197754, + "block_time": 1727200827, "asset_info": { "divisible": true, "asset_longname": null, @@ -9847,9 +9906,9 @@ "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" }, - "tx_hash": "928ae814a7a34fc4ef824234a21f2a90a40bf0e76456751d66219492ef0ffd0c", + "tx_hash": "6b21482e6e461d42ded8e74826ff88a8b23621baaa45e714c7c2a20457bd6c12", "block_index": 147, - "block_time": 1727197754 + "block_time": 1727200827 } ], "next_cursor": 240, @@ -9864,19 +9923,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qq7h3d3zdrjcay2q24ckdwkay6xeh8lwdscyj0w", + "source": "bcrt1qeshrsce6vyx833j2p85aesnx0aj9sxjtt79jak", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a", + "tx_hash": "28499c6a50363ce063ee5e7f5de4d43ea5bf86a19dc05ea650443b343c00e258", "tx_index": 25, "value": 66600.0, - "block_time": 1727197705, + "block_time": 1727200790, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "0c3c9ea724b3b711491e97e68d3531f550ecea1985eb965e20a35773dcb8d16a", + "tx_hash": "28499c6a50363ce063ee5e7f5de4d43ea5bf86a19dc05ea650443b343c00e258", "block_index": 138, - "block_time": 1727197705 + "block_time": 1727200790 } ], "next_cursor": 213, @@ -9907,16 +9966,16 @@ "quantity_by_price": 60, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "start_block": 0, "status": "open", - "tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", + "tx_hash": "5f1bb112a42ace59fa09d6a6fc1916eec2a940d44682b160c97bbae14494b127", "tx_index": 22, - "block_time": 1727197692 + "block_time": 1727200777 }, - "tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", + "tx_hash": "5f1bb112a42ace59fa09d6a6fc1916eec2a940d44682b160c97bbae14494b127", "block_index": 135, - "block_time": 1727197692 + "block_time": 1727200777 } ], "next_cursor": 161, @@ -9929,11 +9988,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "ed54030f74b75858f08f505f277c85ca7c83e98e45fa2466d05fa442687341c8" + "tx_hash": "ef8994a7c4750636583ff8d92fe09ac8c38d280813f2e2e923e07c9b9a3d9cda" }, "tx_hash": null, "block_index": 130, - "block_time": 1727197672 + "block_time": 1727200756 } ], "next_cursor": 110, @@ -9949,24 +10008,24 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "3d65b6cc5729389e6128d3c1c4eddb613fac7642abd139a2253711684ef6fd4d", + "fairminter_tx_hash": "5f1bb112a42ace59fa09d6a6fc1916eec2a940d44682b160c97bbae14494b127", "paid_quantity": 34, - "source": "bcrt1q3uemn2m05j4zlftuhzxkac9g3ul74e7h0wz40u", + "source": "bcrt1q2nqm5v62ryf0jc6n7ygf8zf8cezllyryfdfnk9", "status": "valid", - "tx_hash": "201f88f9894c716c618457972af68ef54a92b3eeb8876fb18286c0ea68a88c25", + "tx_hash": "bccbb42deef048209e07d9fb0f7340bb2b1e8f10c5e54f1cfa55accb8ac66283", "tx_index": 23, - "block_time": 1727197697, + "block_time": 1727200781, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false } }, - "tx_hash": "201f88f9894c716c618457972af68ef54a92b3eeb8876fb18286c0ea68a88c25", + "tx_hash": "bccbb42deef048209e07d9fb0f7340bb2b1e8f10c5e54f1cfa55accb8ac66283", "block_index": 136, - "block_time": 1727197697 + "block_time": 1727200781 } ], "next_cursor": 190, @@ -9980,28 +10039,28 @@ "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f:1", + "destination": "10c98431b6929b14e27a040b17f2d22aafc7813478587e2bbaca26c1c6197538:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "source": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "status": "valid", - "tx_hash": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "tx_hash": "10c98431b6929b14e27a040b17f2d22aafc7813478587e2bbaca26c1c6197538", "tx_index": 39, - "block_time": 1727197774, + "block_time": 1727200849, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "584eeaba5a458b221a9c08b46e34f8cfa3671b738bd6e8408f6292b7f0ddc34f", + "tx_hash": "10c98431b6929b14e27a040b17f2d22aafc7813478587e2bbaca26c1c6197538", "block_index": 152, - "block_time": 1727197774 + "block_time": 1727200849 } ], "next_cursor": 296, @@ -10015,28 +10074,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qq4p2fw7kt494hn7hmq5g359dhqt56nu5u2gu9p", + "destination": "bcrt1qe4v63z8qa2kvy5yzt4ssr8zhwxgqw84j8nmhvg", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "5ca9872e8c15fef788e8a9150b0773af2f48c168ebcce30460ebc75e2b7efd18:0", + "source": "664b33a2858e0961f08c6a45f5ec6b98042d62a4f4e98faf6862f374be802724:0", "status": "valid", - "tx_hash": "4e5e668a3cc76166427fea322ae7c0f5deefad71340af9a2f004c1b19bd4167d", + "tx_hash": "f409e618a14bf7943a7027f7f66f55aaf0604d8c0cafc7c0062f5c6bdf82d7b6", "tx_index": 38, - "block_time": 1727197770, + "block_time": 1727200844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ljhu8af6c6tw0f5fem620t5sdlnzr4fns5ccj", + "issuer": "bcrt1q0kfl7h5k624gxq4sn5mxz2zaa3lf6fatfnkfhs", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "4e5e668a3cc76166427fea322ae7c0f5deefad71340af9a2f004c1b19bd4167d", + "tx_hash": "f409e618a14bf7943a7027f7f66f55aaf0604d8c0cafc7c0062f5c6bdf82d7b6", "block_index": 151, - "block_time": 1727197770 + "block_time": 1727200844 } ], "next_cursor": null, @@ -10050,14 +10109,14 @@ "params": { "asset": "XCP", "block_index": 156, - "destination": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8:1", + "destination": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739:1", "msg_index": 1, "quantity": 1500000000, - "source": "cdf72c3a87898c26c34987139effdc8792eac0e8b234418fdb4844523f3510c9:0", + "source": "9d347b5453e8bf2608768d2b109367ce3aaf5a12d4bc63526fa6fb59eab1901d:0", "status": "valid", - "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "tx_hash": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739", "tx_index": 43, - "block_time": 1727197791, + "block_time": 1727200867, "asset_info": { "divisible": true, "asset_longname": null, @@ -10067,9 +10126,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9cc79c07e8c025023983ee67a4c6d3d6fc94fa518d3c1547b57cf071b8c918f8", + "tx_hash": "ca11a87b6b09143626cafffbc32be68d26d43df5facbb48aa919ce857c1aa739", "block_index": 156, - "block_time": 1727197791 + "block_time": 1727200867 } ], "next_cursor": 353, @@ -10084,17 +10143,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qyxerv7nywhqduhyezl3s8kpvw9ts8svpuu3vka", + "source": "bcrt1quygvuzd7gsxym55nf7w85agucgajyp9p5jduqp", "status": "valid", - "tx_hash": "4425334c064a07609b1049b0e61f4368bf0e83b7743d8b0dfa6c08c631ca5015", + "tx_hash": "bb35e686d434cae9951da80cf904917280d38b8251f1626625123d1a058d4a6d", "tx_index": 9, - "block_time": 1727197635, + "block_time": 1727200719, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "4425334c064a07609b1049b0e61f4368bf0e83b7743d8b0dfa6c08c631ca5015", + "tx_hash": "bb35e686d434cae9951da80cf904917280d38b8251f1626625123d1a058d4a6d", "block_index": 121, - "block_time": 1727197635 + "block_time": 1727200719 } ], "next_cursor": 65, From b55daffe2d5928eb3fbb4b573f72412dcf3e045c Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 24 Sep 2024 18:18:48 +0000 Subject: [PATCH 39/46] bump version --- apiary.apib | 2 +- counterparty-core/counterpartycore/lib/config.py | 2 +- .../counterpartycore/test/regtest/apidoc/blueprint-template.md | 2 +- counterparty-core/requirements.txt | 2 +- counterparty-rs/Cargo.lock | 2 +- counterparty-rs/Cargo.toml | 2 +- counterparty-wallet/requirements.txt | 2 +- docker-compose.yml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/apiary.apib b/apiary.apib index 0c0cb76198..6e5c4da8ca 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1446,7 +1446,7 @@ Returns server information and the list of documented routes in JSON format. "result": { "server_ready": true, "network": "mainnet", - "version": "10.4.0", + "version": "10.4.1", "backend_height": 850214, "counterparty_height": 850214, "documentation": "https://counterpartycore.docs.apiary.io/", diff --git a/counterparty-core/counterpartycore/lib/config.py b/counterparty-core/counterpartycore/lib/config.py index 8ba23c9916..f5e38bed65 100644 --- a/counterparty-core/counterpartycore/lib/config.py +++ b/counterparty-core/counterpartycore/lib/config.py @@ -5,7 +5,7 @@ # Semantic Version -__version__ = "10.4.0" # for hatch +__version__ = "10.4.1" # for hatch VERSION_STRING = __version__ version = VERSION_STRING.split("-")[0].split(".") VERSION_MAJOR = int(version[0]) diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/blueprint-template.md b/counterparty-core/counterpartycore/test/regtest/apidoc/blueprint-template.md index 9b6ad49d65..4a50dd6bf4 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.4.0", + "version": "10.4.1", "backend_height": 850214, "counterparty_height": 850214, "documentation": "https://counterpartycore.docs.apiary.io/", diff --git a/counterparty-core/requirements.txt b/counterparty-core/requirements.txt index f28f343b4e..5cdaee9200 100644 --- a/counterparty-core/requirements.txt +++ b/counterparty-core/requirements.txt @@ -32,4 +32,4 @@ python-gnupg==0.5.2 pyzmq==26.0.3 JSON-log-formatter==1.0 yoyo-migrations==8.2.0 -counterparty-rs==10.4.0 +counterparty-rs==10.4.1 diff --git a/counterparty-rs/Cargo.lock b/counterparty-rs/Cargo.lock index 37a2635d79..7a5b5980a6 100644 --- a/counterparty-rs/Cargo.lock +++ b/counterparty-rs/Cargo.lock @@ -382,7 +382,7 @@ checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" [[package]] name = "counterparty-rs" -version = "10.4.0" +version = "10.4.1" dependencies = [ "bip32", "bitcoin 0.29.2", diff --git a/counterparty-rs/Cargo.toml b/counterparty-rs/Cargo.toml index 40cb22dfd1..39fb02dda9 100644 --- a/counterparty-rs/Cargo.toml +++ b/counterparty-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "counterparty-rs" -version = "10.4.0" +version = "10.4.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/counterparty-wallet/requirements.txt b/counterparty-wallet/requirements.txt index 6893dc127f..e7c0aef068 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.4.0 +counterparty-core==10.4.1 diff --git a/docker-compose.yml b/docker-compose.yml index 3f774162c1..d1a2a46775 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.4.0 + image: counterparty/counterparty:v10.4.1 stop_grace_period: 1m volumes: - data:/root/.bitcoin From 3329cd0cfd7ed6f27098e52fb00317b178c3b250 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Tue, 24 Sep 2024 14:47:30 -0400 Subject: [PATCH 40/46] Tweak Release Notes for v10.4.1 --- release-notes/release-notes-v10.4.1.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/release-notes/release-notes-v10.4.1.md b/release-notes/release-notes-v10.4.1.md index ce544d0d1d..872db73565 100644 --- a/release-notes/release-notes-v10.4.1.md +++ b/release-notes/release-notes-v10.4.1.md @@ -1,6 +1,6 @@ # Release Notes - Counterparty Core v10.4.1 (2024-??-??) -This release is a minor update with some bugfixes. +This release is a minor update with miscellaneous bugfixes. # Upgrading @@ -25,13 +25,13 @@ This release is not a protocol change and does not require any reparsing. * Use `trace` instead of `warning` for "Prefetch queue is empty." message * Use debug for expected and handled `yoyo` migration error * Support Python 3.10 and 3.11 only -* Refactoring and cleanup of `transaction.py`. The contents of this file are now distributed between `lib/api/compose.py`, `lib/transaction_helper/transaction_outputs.py`, and `lib/transaction_helper/transaction_inputs.py`. +* Refactor and clean up `transaction.py`. The contents of this file are now distributed across `lib/api/compose.py`, `lib/transaction_helper/transaction_outputs.py`, and `lib/transaction_helper/transaction_inputs.py`. ## API * Add support for `inputs_set` parameter * Rename the `fee` argument to `exact_fee` (the `fee` argument is still available in API v1) -* The composition API returns, in addition to a `rawtransaction` or a `psbt`, the following fields: `data`, `btc_in`, `btc_out`, `btc_change`, and `btc_fee` +* Have the composition API return, in addition to a `rawtransaction` or a `psbt`, the following fields: `data`, `btc_in`, `btc_out`, `btc_change`, and `btc_fee` * Add `sort` argument for `orders`, `order_matches` and `dispenser` * Add the following route: - `/v2/transactions//info` (This route works if the tx is in the mempool of the queried node) From 35e8374f365a4d013a04783591c8815b23ca4698 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Tue, 24 Sep 2024 14:53:15 -0400 Subject: [PATCH 41/46] Tweak Release Notes for v10.4.1 --- release-notes/release-notes-v10.4.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-notes/release-notes-v10.4.1.md b/release-notes/release-notes-v10.4.1.md index 872db73565..851d262630 100644 --- a/release-notes/release-notes-v10.4.1.md +++ b/release-notes/release-notes-v10.4.1.md @@ -4,7 +4,7 @@ This release is a minor update with miscellaneous bugfixes. # Upgrading -This release is not a protocol change and does not require any reparsing. +This release fixes an old bug leading to potential undefined behavior for dispenser refills. No database reparse is required. # ChangeLog From 57ff5d51919f60c6ea7bd2ff2ba2b67f84a92332 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 24 Sep 2024 18:37:41 +0000 Subject: [PATCH 42/46] update fixtures --- .../counterpartycore/test/fixtures/api_v2_fixtures.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 3ee4eaf36c..1a740bbcb8 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -15123,7 +15123,7 @@ "default": null, "required": false, "type": "str", - "description": "The sort order of the dispensers to return (overrides the `cursor` parameter) (e.g. give_quantity:desc)" + "description": "The sort order of the dispensers to return (overrides the `cursor` parameter) (e.g. block_index:asc)" }, { "name": "verbose", From 2a17ce13b5e593ec478c27a1d56f77b4c68c8728 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 24 Sep 2024 19:04:48 +0000 Subject: [PATCH 43/46] disable testnet on docker-compose test --- .github/workflows/test_compose.sh | 46 +++++++++++++++---------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/.github/workflows/test_compose.sh b/.github/workflows/test_compose.sh index 482cf5e8ee..9a989715d0 100644 --- a/.github/workflows/test_compose.sh +++ b/.github/workflows/test_compose.sh @@ -23,7 +23,7 @@ sed -i 's/#- "--verbose"/- "-vv"/g' docker-compose.yml # stop the running containers docker compose --profile mainnet stop counterparty-core -docker compose --profile testnet stop counterparty-core-testnet +#docker compose --profile testnet stop counterparty-core-testnet # remove counterparty-core container #docker rm counterparty-core-counterparty-core-1 @@ -39,7 +39,7 @@ cat build.txt # re-start containers docker compose --profile mainnet up -d -docker compose --profile testnet up -d +#docker compose --profile testnet up -d # wait for counterparty-core to be ready while [ "$(docker compose logs counterparty-core 2>&1 | grep 'Watching for new blocks')" = "" ]; do @@ -47,10 +47,10 @@ while [ "$(docker compose logs counterparty-core 2>&1 | grep 'Watching for new b sleep 1 done -while [ "$(docker compose logs counterparty-core-testnet 2>&1 | grep 'Watching for new blocks')" = "" ]; do - echo "Waiting for counterparty-core testnet to be ready" - sleep 1 -done +#while [ "$(docker compose logs counterparty-core-testnet 2>&1 | grep 'Watching for new blocks')" = "" ]; do +# echo "Waiting for counterparty-core testnet to be ready" +# sleep 1 +#done # check running info with API v1 mainnet @@ -67,17 +67,17 @@ if [ "$response_v1_mainnet" -ne 200 ]; then fi # check running info with API v1 testnet -response_v1_testnet=$(curl -X POST http://127.0.0.1:14100/v1/ \ - --user rpc:rpc \ - -H 'Content-Type: application/json; charset=UTF-8'\ - -H 'Accept: application/json, text/javascript' \ - --data-binary '{ "jsonrpc": "2.0", "id": 0, "method": "get_running_info" }' \ - --write-out '%{http_code}' --silent --output /dev/null) - -if [ "$response_v1_testnet" -ne 200 ]; then - echo "Failed to get_running_info testnet" - exit 1 -fi +#response_v1_testnet=$(curl -X POST http://127.0.0.1:14100/v1/ \ +# --user rpc:rpc \ +# -H 'Content-Type: application/json; charset=UTF-8'\ +# -H 'Accept: application/json, text/javascript' \ +# --data-binary '{ "jsonrpc": "2.0", "id": 0, "method": "get_running_info" }' \ +# --write-out '%{http_code}' --silent --output /dev/null) + +#if [ "$response_v1_testnet" -ne 200 ]; then +# echo "Failed to get_running_info testnet" +# exit 1 +#fi # check running info with API v2 mainnet response_v2_mainnet=$(curl http://localhost:4000/v2/ \ @@ -89,13 +89,13 @@ if [ "$response_v2_mainnet" -ne 200 ]; then fi # check running info with API v2 testnet -response_v2_testnet=$(curl http://localhost:14000/v2/ \ - --write-out '%{http_code}' --silent --output /dev/null) +#response_v2_testnet=$(curl http://localhost:14000/v2/ \ +# --write-out '%{http_code}' --silent --output /dev/null) -if [ "$response_v2_mainnet" -ne 200 ]; then - echo "Failed to get API v2 root mainnet" - exit 1 -fi +#if [ "$response_v2_testnet" -ne 200 ]; then +# echo "Failed to get API v2 root testnet" +# exit 1 +#fi # Let's reparse 50 blocks before Dredd and compare hashes tests CURRENT_HEIGHT=$(curl http://localhost:4000/v2/ --silent | jq '.result.counterparty_height') From cf5b76b497634a004685a07790ade4f8c5f33ab0 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 24 Sep 2024 19:09:24 +0000 Subject: [PATCH 44/46] set snap path --- .github/workflows/test_compose.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test_compose.sh b/.github/workflows/test_compose.sh index 9a989715d0..ce44fe8183 100644 --- a/.github/workflows/test_compose.sh +++ b/.github/workflows/test_compose.sh @@ -3,6 +3,8 @@ set -e set -x +export PATH="/snap/bin:$PATH" + if [ -f "./DOCKER_COMPOSE_TEST_LOCK" ]; then echo "A test is already running or the last one failed. Exiting." exit 1 From f24b1d8fc775e32e1d858b77f76fe821456efea9 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 24 Sep 2024 19:30:11 +0000 Subject: [PATCH 45/46] disable test compose --- .github/workflows/test_compose.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test_compose.sh b/.github/workflows/test_compose.sh index ce44fe8183..ac18947555 100644 --- a/.github/workflows/test_compose.sh +++ b/.github/workflows/test_compose.sh @@ -3,6 +3,8 @@ set -e set -x +exit 0 + export PATH="/snap/bin:$PATH" if [ -f "./DOCKER_COMPOSE_TEST_LOCK" ]; then From 8af929221d50b22e642d4868898a80b506173553 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 24 Sep 2024 19:37:49 +0000 Subject: [PATCH 46/46] update date in release notes --- release-notes/release-notes-v10.3.2.md | 2 +- release-notes/release-notes-v10.4.1.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/release-notes/release-notes-v10.3.2.md b/release-notes/release-notes-v10.3.2.md index 9ffedc1950..e8f62af8c3 100644 --- a/release-notes/release-notes-v10.3.2.md +++ b/release-notes/release-notes-v10.3.2.md @@ -4,7 +4,7 @@ This release is a minor update with some bugfixes. # Upgrading -This release is not a protocol change and does not require any reparsing. +This release is not a protocol change and does not require any reparsing. # ChangeLog diff --git a/release-notes/release-notes-v10.4.1.md b/release-notes/release-notes-v10.4.1.md index 851d262630..14a819c7de 100644 --- a/release-notes/release-notes-v10.4.1.md +++ b/release-notes/release-notes-v10.4.1.md @@ -1,4 +1,4 @@ -# Release Notes - Counterparty Core v10.4.1 (2024-??-??) +# Release Notes - Counterparty Core v10.4.1 (2024-09-24) This release is a minor update with miscellaneous bugfixes.